From 2b2311eaa2c3e3ad5dc4e7fbcd5d8ef5df607043 Mon Sep 17 00:00:00 2001 From: Leonardo de Moura Date: Tue, 3 Aug 2021 19:53:38 -0700 Subject: [PATCH] chore: update stage0 --- stage0/src/Lean/Elab/App.lean | 271 +- stage0/src/Lean/Elab/Binders.lean | 26 +- .../PrettyPrinter/Delaborator/Builtins.lean | 17 +- stage0/stdlib/Lean/Elab/App.c | 6248 ++++--- stage0/stdlib/Lean/Elab/Binders.c | 14678 ++++++++-------- .../Lean/PrettyPrinter/Delaborator/Builtins.c | 2187 +-- 6 files changed, 11779 insertions(+), 11648 deletions(-) diff --git a/stage0/src/Lean/Elab/App.lean b/stage0/src/Lean/Elab/App.lean index 920273258d..a66c0951fd 100644 --- a/stage0/src/Lean/Elab/App.lean +++ b/stage0/src/Lean/Elab/App.lean @@ -282,16 +282,6 @@ private def propagateExpectedType (arg : Arg) : M Unit := do /- Note that we only set `propagateExpected := false` when propagation has succeeded. -/ modify fun s => { s with propagateExpected := false } -/- - Create a fresh local variable with the current binder name and argument type, add it to `etaArgs` and `f`, - and then execute the continuation `k`.-/ -private def addEtaArg (k : M Expr) : M Expr := do - let n ← getBindingName - let type ← getArgExpectedType - withLocalDeclD n type fun x => do - modify fun s => { s with etaArgs := s.etaArgs.push x } - addNewArg x - k /- This method execute after all application arguments have been processed. -/ private def finalize : M Expr := do @@ -320,13 +310,6 @@ private def finalize : M Expr := do synthesizeAppInstMVars pure e -private def addImplicitArg (k : M Expr) : M Expr := do - let argType ← getArgExpectedType - let arg ← mkFreshExprMVar argType - modify fun s => { s with toSetErrorCtx := s.toSetErrorCtx.push arg.mvarId! } - addNewArg arg - k - /- Return true if there is a named argument that depends on the next argument. -/ private def anyNamedArgDependsOnCurrent : M Bool := do let s ← get @@ -342,60 +325,11 @@ private def anyNamedArgDependsOnCurrent : M Bool := do return true return false -/- - Process a `fType` of the form `(x : A) → B x`. - This method assume `fType` is a function type -/ -private def processExplictArg (k : M Expr) : M Expr := do - let s ← get - match s.args with - | arg::args => - propagateExpectedType arg - modify fun s => { s with args := args } - elabAndAddNewArg arg - k - | _ => - let argType ← getArgExpectedType - match s.explicit, argType.getOptParamDefault?, argType.getAutoParamTactic? with - | false, some defVal, _ => addNewArg defVal; k - | false, _, some (Expr.const tacticDecl _ _) => - let env ← getEnv - let opts ← getOptions - match evalSyntaxConstant env opts tacticDecl with - | Except.error err => throwError err - | Except.ok tacticSyntax => - -- TODO(Leo): does this work correctly for tactic sequences? - let tacticBlock ← `(by $tacticSyntax) - let argType := argType.getArg! 0 -- `autoParam type := by tactic` ==> `type` - let argNew := Arg.stx tacticBlock - propagateExpectedType argNew - elabAndAddNewArg argNew - k - | false, _, some _ => - throwError "invalid autoParam, argument must be a constant" - | _, _, _ => - if !s.namedArgs.isEmpty then - if (← anyNamedArgDependsOnCurrent) then - addImplicitArg k - else - addEtaArg k - else if !s.explicit then - if (← fTypeHasOptAutoParams) then - addEtaArg k - else if (← get).ellipsis then - addImplicitArg k - else - finalize - else - finalize -/- - Process a `fType` of the form `{x : A} → B x`. - This method assume `fType` is a function type -/ -private def processImplicitArg (k : M Expr) : M Expr := do - if (← get).explicit then - processExplictArg k - else - addImplicitArg k +/- Return true if there are regular or named arguments to be processed. -/ +private def hasArgsToProcess : M Bool := do + let s ← get + return !s.args.isEmpty || !s.namedArgs.isEmpty /- Return true if the next argument at `args` is of the form `_` -/ private def isNextArgHole : M Bool := do @@ -403,55 +337,139 @@ private def isNextArgHole : M Bool := do | Arg.stx (Syntax.node ``Lean.Parser.Term.hole _) :: _ => pure true | _ => pure false -/- - Process a `fType` of the form `[x : A] → B x`. - This method assume `fType` is a function type -/ -private def processInstImplicitArg (k : M Expr) : M Expr := do - if (← get).explicit then - if (← isNextArgHole) then - /- Recall that if '@' has been used, and the argument is '_', then we still use type class resolution -/ + +mutual + /- + Create a fresh local variable with the current binder name and argument type, add it to `etaArgs` and `f`, + and then execute the main loop.-/ + private partial def addEtaArg : M Expr := do + let n ← getBindingName + let type ← getArgExpectedType + withLocalDeclD n type fun x => do + modify fun s => { s with etaArgs := s.etaArgs.push x } + addNewArg x + main + + private partial def addImplicitArg : M Expr := do + let argType ← getArgExpectedType + let arg ← mkFreshExprMVar argType + modify fun s => { s with toSetErrorCtx := s.toSetErrorCtx.push arg.mvarId! } + addNewArg arg + main + + /- + Process a `fType` of the form `(x : A) → B x`. + This method assume `fType` is a function type -/ + private partial def processExplictArg : M Expr := do + let s ← get + match s.args with + | arg::args => + propagateExpectedType arg + modify fun s => { s with args := args } + elabAndAddNewArg arg + main + | _ => + let argType ← getArgExpectedType + match s.explicit, argType.getOptParamDefault?, argType.getAutoParamTactic? with + | false, some defVal, _ => addNewArg defVal; main + | false, _, some (Expr.const tacticDecl _ _) => + let env ← getEnv + let opts ← getOptions + match evalSyntaxConstant env opts tacticDecl with + | Except.error err => throwError err + | Except.ok tacticSyntax => + -- TODO(Leo): does this work correctly for tactic sequences? + let tacticBlock ← `(by $tacticSyntax) + let argType := argType.getArg! 0 -- `autoParam type := by tactic` ==> `type` + let argNew := Arg.stx tacticBlock + propagateExpectedType argNew + elabAndAddNewArg argNew + main + | false, _, some _ => + throwError "invalid autoParam, argument must be a constant" + | _, _, _ => + if !s.namedArgs.isEmpty then + if (← anyNamedArgDependsOnCurrent) then + addImplicitArg + else + addEtaArg + else if !s.explicit then + if (← fTypeHasOptAutoParams) then + addEtaArg + else if (← get).ellipsis then + addImplicitArg + else + finalize + else + finalize + + /- + Process a `fType` of the form `{x : A} → B x`. + This method assume `fType` is a function type -/ + private partial def processImplicitArg : M Expr := do + if (← get).explicit then + processExplictArg + else + addImplicitArg + + /- + Process a `fType` of the form `{{x : A}} → B x`. + This method assume `fType` is a function type -/ + private partial def processStrictImplicitArg : M Expr := do + if (← get).explicit then + processExplictArg + else if (← hasArgsToProcess) then + addImplicitArg + else + finalize + + /- + Process a `fType` of the form `[x : A] → B x`. + This method assume `fType` is a function type -/ + private partial def processInstImplicitArg : M Expr := do + if (← get).explicit then + if (← isNextArgHole) then + /- Recall that if '@' has been used, and the argument is '_', then we still use type class resolution -/ + let arg ← mkFreshExprMVar (← getArgExpectedType) MetavarKind.synthetic + modify fun s => { s with args := s.args.tail! } + addInstMVar arg.mvarId! + addNewArg arg + main + else + processExplictArg + else let arg ← mkFreshExprMVar (← getArgExpectedType) MetavarKind.synthetic - modify fun s => { s with args := s.args.tail! } addInstMVar arg.mvarId! addNewArg arg - k - else - processExplictArg k - else - let arg ← mkFreshExprMVar (← getArgExpectedType) MetavarKind.synthetic - addInstMVar arg.mvarId! - addNewArg arg - k - -/- Return true if there are regular or named arguments to be processed. -/ -private def hasArgsToProcess : M Bool := do - let s ← get - pure $ !s.args.isEmpty || !s.namedArgs.isEmpty - -/- Elaborate function application arguments. -/ -partial def main : M Expr := do - let s ← get - let fType ← normalizeFunType - if fType.isForall then - let binderName := fType.bindingName! - let binfo := fType.bindingInfo! - let s ← get - match s.namedArgs.find? fun (namedArg : NamedArg) => namedArg.name == binderName with - | some namedArg => - propagateExpectedType namedArg.val - eraseNamedArg binderName - elabAndAddNewArg namedArg.val main - | none => - match binfo with - | BinderInfo.implicit => processImplicitArg main - | BinderInfo.instImplicit => processInstImplicitArg main - | _ => processExplictArg main - else if (← hasArgsToProcess) then - synthesizePendingAndNormalizeFunType - main - else - finalize + + /- Elaborate function application arguments. -/ + partial def main : M Expr := do + let s ← get + let fType ← normalizeFunType + if fType.isForall then + let binderName := fType.bindingName! + let binfo := fType.bindingInfo! + let s ← get + match s.namedArgs.find? fun (namedArg : NamedArg) => namedArg.name == binderName with + | some namedArg => + propagateExpectedType namedArg.val + eraseNamedArg binderName + elabAndAddNewArg namedArg.val + main + | none => + match binfo with + | BinderInfo.implicit => processImplicitArg + | BinderInfo.instImplicit => processInstImplicitArg + | BinderInfo.strictImplicit => processStrictImplicitArg + | _ => processExplictArg + else if (← hasArgsToProcess) then + synthesizePendingAndNormalizeFunType + main + else + finalize + +end end ElabAppArgs @@ -572,25 +590,25 @@ private def resolveLValAux (e : Expr) (eType : Expr) (lval : LVal) : TermElabM L /- whnfCore + implicit consumption. Example: given `e` with `eType := {α : Type} → (fun β => List β) α `, it produces `(e ?m, List ?m)` where `?m` is fresh metavariable. -/ -private partial def consumeImplicits (stx : Syntax) (e eType : Expr) : TermElabM (Expr × Expr) := do +private partial def consumeImplicits (stx : Syntax) (e eType : Expr) (hasArgs : Bool) : TermElabM (Expr × Expr) := do let eType ← whnfCore eType match eType with | Expr.forallE n d b c => - if c.binderInfo.isImplicit then + if c.binderInfo.isImplicit || (hasArgs && c.binderInfo.isStrictImplicit) then let mvar ← mkFreshExprMVar d registerMVarErrorHoleInfo mvar.mvarId! stx - consumeImplicits stx (mkApp e mvar) (b.instantiate1 mvar) + consumeImplicits stx (mkApp e mvar) (b.instantiate1 mvar) hasArgs else if c.binderInfo.isInstImplicit then let mvar ← mkInstMVar d - consumeImplicits stx (mkApp e mvar) (b.instantiate1 mvar) + consumeImplicits stx (mkApp e mvar) (b.instantiate1 mvar) hasArgs else match d.getOptParamDefault? with - | some defVal => consumeImplicits stx (mkApp e defVal) (b.instantiate1 defVal) + | some defVal => consumeImplicits stx (mkApp e defVal) (b.instantiate1 defVal) hasArgs -- TODO: we do not handle autoParams here. | _ => pure (e, eType) | _ => pure (e, eType) -private partial def resolveLValLoop (lval : LVal) (e eType : Expr) (previousExceptions : Array Exception) : TermElabM (Expr × LValResolution) := do - let (e, eType) ← consumeImplicits lval.getRef e eType +private partial def resolveLValLoop (lval : LVal) (e eType : Expr) (previousExceptions : Array Exception) (hasArgs : Bool) : TermElabM (Expr × LValResolution) := do + let (e, eType) ← consumeImplicits lval.getRef e eType hasArgs tryPostponeIfMVar eType try let lvalRes ← resolveLValAux e eType lval @@ -599,15 +617,15 @@ private partial def resolveLValLoop (lval : LVal) (e eType : Expr) (previousExce | ex@(Exception.error _ _) => let eType? ← unfoldDefinition? eType match eType? with - | some eType => resolveLValLoop lval e eType (previousExceptions.push ex) + | some eType => resolveLValLoop lval e eType (previousExceptions.push ex) hasArgs | none => previousExceptions.forM fun ex => logException ex throw ex | ex@(Exception.internal _ _) => throw ex -private def resolveLVal (e : Expr) (lval : LVal) : TermElabM (Expr × LValResolution) := do +private def resolveLVal (e : Expr) (lval : LVal) (hasArgs : Bool) : TermElabM (Expr × LValResolution) := do let eType ← inferType e - resolveLValLoop lval e eType #[] + resolveLValLoop lval e eType #[] hasArgs private partial def mkBaseProjections (baseStructName : Name) (structName : Name) (e : Expr) : TermElabM Expr := do let env ← getEnv @@ -675,7 +693,8 @@ private def elabAppLValsAux (namedArgs : Array NamedArg) (args : Array Arg) (exp | f, lval::lvals => do if let LVal.fieldName (ref := fieldStx) (targetStx := targetStx) .. := lval then addDotCompletionInfo targetStx f expectedType? fieldStx - let (f, lvalRes) ← resolveLVal f lval + let hasArgs := !namedArgs.isEmpty || !args.isEmpty + let (f, lvalRes) ← resolveLVal f lval hasArgs match lvalRes with | LValResolution.projIdx structName idx => let f := mkProj structName idx f diff --git a/stage0/src/Lean/Elab/Binders.lean b/stage0/src/Lean/Elab/Binders.lean index e7fe909904..55b8bcedd2 100644 --- a/stage0/src/Lean/Elab/Binders.lean +++ b/stage0/src/Lean/Elab/Binders.lean @@ -104,24 +104,29 @@ private def getBinderIds (ids : Syntax) : TermElabM (Array Syntax) := private def matchBinder (stx : Syntax) : TermElabM (Array BinderView) := do let k := stx.getKind - if k == `Lean.Parser.Term.simpleBinder then + if k == ``Lean.Parser.Term.simpleBinder then -- binderIdent+ >> optType let ids ← getBinderIds stx[0] let type := expandOptType (mkNullNode ids) stx[1] ids.mapM fun id => do pure { id := (← expandBinderIdent id), type := type, bi := BinderInfo.default } - else if k == `Lean.Parser.Term.explicitBinder then + else if k == ``Lean.Parser.Term.explicitBinder then -- `(` binderIdent+ binderType (binderDefault <|> binderTactic)? `)` let ids ← getBinderIds stx[1] let type := expandBinderType (mkNullNode ids) stx[2] let optModifier := stx[3] let type ← expandBinderModifier type optModifier ids.mapM fun id => do pure { id := (← expandBinderIdent id), type := type, bi := BinderInfo.default } - else if k == `Lean.Parser.Term.implicitBinder then + else if k == ``Lean.Parser.Term.implicitBinder then -- `{` binderIdent+ binderType `}` let ids ← getBinderIds stx[1] let type := expandBinderType (mkNullNode ids) stx[2] ids.mapM fun id => do pure { id := (← expandBinderIdent id), type := type, bi := BinderInfo.implicit } - else if k == `Lean.Parser.Term.instBinder then + else if k == ``Lean.Parser.Term.strictImplicitBinder then + -- `⦃` binderIdent+ binderType `⦄` + let ids ← getBinderIds stx[1] + let type := expandBinderType (mkNullNode ids) stx[2] + ids.mapM fun id => do pure { id := (← expandBinderIdent id), type := type, bi := BinderInfo.strictImplicit } + else if k == ``Lean.Parser.Term.instBinder then -- `[` optIdent type `]` let id ← expandOptIdent stx[1] let type := stx[2] @@ -256,15 +261,16 @@ partial def expandFunBinders (binders : Array Syntax) (body : Syntax) : MacroM ( let newBody ← `(match $major:ident with | $pattern => $newBody) pure (binders, newBody, true) match binder with - | Syntax.node `Lean.Parser.Term.implicitBinder _ => loop body (i+1) (newBinders.push binder) - | Syntax.node `Lean.Parser.Term.instBinder _ => loop body (i+1) (newBinders.push binder) - | Syntax.node `Lean.Parser.Term.explicitBinder _ => loop body (i+1) (newBinders.push binder) - | Syntax.node `Lean.Parser.Term.simpleBinder _ => loop body (i+1) (newBinders.push binder) - | Syntax.node `Lean.Parser.Term.hole _ => + | Syntax.node ``Lean.Parser.Term.implicitBinder _ => loop body (i+1) (newBinders.push binder) + | Syntax.node ``Lean.Parser.Term.strictImplicitBinder _ => loop body (i+1) (newBinders.push binder) + | Syntax.node ``Lean.Parser.Term.instBinder _ => loop body (i+1) (newBinders.push binder) + | Syntax.node ``Lean.Parser.Term.explicitBinder _ => loop body (i+1) (newBinders.push binder) + | Syntax.node ``Lean.Parser.Term.simpleBinder _ => loop body (i+1) (newBinders.push binder) + | Syntax.node ``Lean.Parser.Term.hole _ => let ident ← mkFreshIdent binder let type := binder loop body (i+1) (newBinders.push <| mkExplicitBinder ident type) - | Syntax.node `Lean.Parser.Term.paren args => + | Syntax.node ``Lean.Parser.Term.paren args => -- `(` (termParser >> parenSpecial)? `)` -- parenSpecial := (tupleTail <|> typeAscription)? let binderBody := binder[1] diff --git a/stage0/src/Lean/PrettyPrinter/Delaborator/Builtins.lean b/stage0/src/Lean/PrettyPrinter/Delaborator/Builtins.lean index 6caaa51e03..0bf5cfe377 100644 --- a/stage0/src/Lean/PrettyPrinter/Delaborator/Builtins.lean +++ b/stage0/src/Lean/PrettyPrinter/Delaborator/Builtins.lean @@ -506,10 +506,12 @@ def delabLam : Delab := else pure $ curNames.get! 0; `(funBinder| ($stxCurNames : $stxT)) - | BinderInfo.default, false => pure curNames.back -- here `curNames.size == 1` - | BinderInfo.implicit, true => `(funBinder| {$curNames* : $stxT}) - | BinderInfo.implicit, false => `(funBinder| {$curNames*}) - | BinderInfo.instImplicit, _ => + | BinderInfo.default, false => pure curNames.back -- here `curNames.size == 1` + | BinderInfo.implicit, true => `(funBinder| {$curNames* : $stxT}) + | BinderInfo.implicit, false => `(funBinder| {$curNames*}) + | BinderInfo.strictImplicit, true => `(funBinder| ⦃$curNames* : $stxT⦄) + | BinderInfo.strictImplicit, false => `(funBinder| ⦃$curNames*⦄) + | BinderInfo.instImplicit, _ => if usedDownstream then `(funBinder| [$curNames.back : $stxT]) -- here `curNames.size == 1` else `(funBinder| [$stxT]) | _ , _ => unreachable!; @@ -524,10 +526,11 @@ def delabForall : Delab := let prop ← try isProp e catch _ => false let stxT ← withBindingDomain delab let group ← match e.binderInfo with - | BinderInfo.implicit => `(bracketedBinderF|{$curNames* : $stxT}) + | BinderInfo.implicit => `(bracketedBinderF|{$curNames* : $stxT}) + | BinderInfo.strictImplicit => `(bracketedBinderF|⦃$curNames* : $stxT⦄) -- here `curNames.size == 1` - | BinderInfo.instImplicit => `(bracketedBinderF|[$curNames.back : $stxT]) - | _ => + | BinderInfo.instImplicit => `(bracketedBinderF|[$curNames.back : $stxT]) + | _ => -- heuristic: use non-dependent arrows only if possible for whole group to avoid -- noisy mix like `(α : Type) → Type → (γ : Type) → ...`. let dependent := curNames.any $ fun n => hasIdent n.getId stxBody diff --git a/stage0/stdlib/Lean/Elab/App.c b/stage0/stdlib/Lean/Elab/App.c index 226cbbe9e7..70bb498437 100644 --- a/stage0/stdlib/Lean/Elab/App.c +++ b/stage0/stdlib/Lean/Elab/App.c @@ -78,8 +78,7 @@ lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFnId_toName_matc lean_object* l_Lean_Expr_bindingDomain_x21(lean_object*); lean_object* l_Lean_Meta_forallTelescopeReducing___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_hasOptAutoParams___spec__2___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*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabApp___closed__4; -static lean_object* l_Lean_Elab_Term_ElabAppArgs_main___closed__1; -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLVal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLVal(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Std_Format_defWidth; static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__7; @@ -87,7 +86,7 @@ lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_findMethod_x3f_match__1 static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___closed__11; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__1___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_shouldPropagateExpectedTypeFor___closed__6; -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLVal___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLVal___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SourceInfo_fromRef(lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_throwInvalidNamedArg___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -163,7 +162,7 @@ lean_object* lean_string_append(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_4____closed__2; lean_object* l_Lean_addTrace___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType___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_App_0__Lean_Elab_Term_addLValArg_match__3___rarg(lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processImplicitArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processImplicitArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_elabWithoutExpectedTypeAttr___lambda__3___closed__3; uint8_t l_Lean_isPrivateNameFromImportedModule(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__2; @@ -205,7 +204,7 @@ lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_mergeFailures(lean_obje lean_object* l_Lean_throwUnknownConstant___at___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__10; lean_object* l_Lean_throwError___at___private_Lean_Elab_App_0__Lean_Elab_Term_mergeFailures___spec__2(lean_object*); -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValLoop___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValLoop___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType___closed__5; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__2___rarg(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__7; @@ -295,7 +294,7 @@ lean_object* l_Lean_Elab_Term_elabExplicit(lean_object*, lean_object*, lean_obje uint8_t l_Lean_Elab_Term_ElabAppArgs_State_ellipsis___default; static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___lambda__2___closed__1; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_finalize___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_ElabAppArgs_main_match__1___rarg(uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_ElabAppArgs_main_match__1___rarg(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_logException___at___private_Lean_Elab_Term_0__Lean_Elab_Term_exceptionToSorry___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg___spec__1___closed__6; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_toMessageData___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -322,6 +321,7 @@ lean_object* l_Lean_Elab_Term_mkInstMVar(lean_object*, lean_object*, lean_object lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValLoop_match__1(lean_object*); lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_toString(lean_object*, uint8_t); +uint8_t l_Lean_BinderInfo_isStrictImplicit(uint8_t); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_toMessageList___closed__1; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_mergeFailures___rarg___boxed__const__1; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__3(lean_object*); @@ -330,7 +330,7 @@ lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_List_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_synthesizePendingAndNormalizeFunType___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkLambdaFVars(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processInstImplicitArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processInstImplicitArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg___spec__2___lambda__4___boxed(lean_object**); lean_object* l_Lean_Expr_fvarId_x21(lean_object*); lean_object* l_Lean_Elab_Term_throwInvalidNamedArg_match__1(lean_object*); @@ -358,11 +358,11 @@ static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_shou lean_object* l_Nat_repr(lean_object*); static lean_object* l_Lean_Elab_Term_instToStringNamedArg___closed__1; static lean_object* l___regBuiltin_Lean_Elab_Term_elabExplicitUniv___closed__1; -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___lambda__1(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_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___closed__7; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_throwLValError___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_LocalDecl_binderInfo(lean_object*); -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_consumeImplicits(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_App_0__Lean_Elab_Term_consumeImplicits(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at___private_Lean_Elab_App_0__Lean_Elab_Term_mergeFailures___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at___private_Lean_Elab_App_0__Lean_Elab_Term_throwLValError___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabNamedPattern___closed__3; @@ -440,7 +440,7 @@ lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_mkBaseProjections(lean_ lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_isEmpty___rarg(lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_mkBaseProjections_match__1___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getForallBody_match__1(lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___closed__5; static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType___closed__10; @@ -470,7 +470,8 @@ lean_object* l_Lean_Elab_Term_elabTermEnsuringType___boxed(lean_object*, lean_ob static lean_object* l_Lean_Elab_Term_elabAppArgs___closed__6; lean_object* lean_whnf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___spec__2___rarg___closed__1; -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValLoop(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_App_0__Lean_Elab_Term_resolveLValLoop(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processStrictImplicitArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_Data_binderInfo(uint64_t); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_finalize___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__1; @@ -575,6 +576,7 @@ lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore(lean_object*, lean_object*, static lean_object* l_Lean_throwUnknownConstant___at___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___spec__1___closed__2; lean_object* l_List_foldr___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___closed__1; static lean_object* l_Lean_Elab_Term_throwInvalidNamedArg___rarg___closed__5; lean_object* l_Lean_Elab_Term_addTermInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); @@ -613,7 +615,7 @@ static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_prop lean_object* l_List_foldlM___at___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFnId___spec__1___boxed(lean_object**); lean_object* l_Lean_Meta_getLevel(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabApp___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_tryPostponeIfMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_elabAppArgs___closed__8; lean_object* l_Lean_Elab_Term_resolveName_x27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -625,7 +627,7 @@ static lean_object* l___regBuiltin_Lean_Elab_Term_elabChoice___closed__1; static lean_object* l_Lean_Elab_Term_elabWithoutExpectedTypeAttr___closed__9; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_finalize___lambda__1(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_App_0__Lean_Elab_Term_ElabAppArgs_getForallBody___lambda__1___boxed(lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_9635_(lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_9680_(lean_object*); lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_4_(lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppAux(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_propagateExpectedTypeFor___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -672,7 +674,7 @@ lean_object* l_instMonadControlReaderT___lambda__2(lean_object*, lean_object*, l static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_shouldPropagateExpectedTypeFor___closed__9; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___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_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_consumeImplicits___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_App_0__Lean_Elab_Term_consumeImplicits___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType___closed__1; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux_match__3(lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___closed__13; @@ -727,7 +729,7 @@ static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_shou lean_object* l_Lean_Expr_getAppFn(lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg___lambda__1___closed__3; static lean_object* l___regBuiltin_Lean_Elab_Term_elabPipeProj___closed__1; -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addImplicitArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addImplicitArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_elabWithoutExpectedTypeAttr___closed__5; lean_object* l_Array_findIdx_x3f_loop___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_elabAppArgs___closed__13; @@ -740,7 +742,7 @@ lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); uint8_t l_List_isEmpty___rarg(lean_object*); lean_object* l_List_lengthAux___rarg(lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_findMethod_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); -lean_object* l_Lean_Elab_Term_ElabAppArgs_main_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_ElabAppArgs_main_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___closed__9; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_tryCoeFun_x3f_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getForallBody_match__2(lean_object*); @@ -6833,194 +6835,6 @@ lean_dec(x_5); return x_14; } } -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___spec__1___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = lean_apply_9(x_1, x_5, x_2, x_3, x_4, x_6, x_7, x_8, x_9, x_10); -return x_11; -} -} -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___spec__1___rarg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -lean_object* x_13; lean_object* x_14; -x_13 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___spec__1___rarg___lambda__1), 10, 4); -lean_closure_set(x_13, 0, x_4); -lean_closure_set(x_13, 1, x_5); -lean_closure_set(x_13, 2, x_6); -lean_closure_set(x_13, 3, x_7); -x_14 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp___rarg(x_1, x_2, x_3, x_13, x_8, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_14) == 0) -{ -uint8_t x_15; -x_15 = !lean_is_exclusive(x_14); -if (x_15 == 0) -{ -return x_14; -} -else -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_16 = lean_ctor_get(x_14, 0); -x_17 = lean_ctor_get(x_14, 1); -lean_inc(x_17); -lean_inc(x_16); -lean_dec(x_14); -x_18 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_18, 0, x_16); -lean_ctor_set(x_18, 1, x_17); -return x_18; -} -} -else -{ -uint8_t x_19; -x_19 = !lean_is_exclusive(x_14); -if (x_19 == 0) -{ -return x_14; -} -else -{ -lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_20 = lean_ctor_get(x_14, 0); -x_21 = lean_ctor_get(x_14, 1); -lean_inc(x_21); -lean_inc(x_20); -lean_dec(x_14); -x_22 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_22, 0, x_20); -lean_ctor_set(x_22, 1, x_21); -return x_22; -} -} -} -} -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___spec__1(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___spec__1___rarg___boxed), 12, 0); -return x_2; -} -} -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; -x_11 = lean_st_ref_get(x_9, x_10); -x_12 = lean_ctor_get(x_11, 1); -lean_inc(x_12); -lean_dec(x_11); -x_13 = lean_st_ref_take(x_3, x_12); -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -x_15 = lean_ctor_get(x_13, 1); -lean_inc(x_15); -lean_dec(x_13); -x_16 = !lean_is_exclusive(x_14); -if (x_16 == 0) -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_17 = lean_ctor_get(x_14, 5); -lean_inc(x_2); -x_18 = lean_array_push(x_17, x_2); -lean_ctor_set(x_14, 5, x_18); -x_19 = lean_st_ref_set(x_3, x_14, x_15); -x_20 = lean_ctor_get(x_19, 1); -lean_inc(x_20); -lean_dec(x_19); -x_21 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addNewArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_20); -x_22 = lean_ctor_get(x_21, 1); -lean_inc(x_22); -lean_dec(x_21); -x_23 = lean_apply_8(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_22); -return x_23; -} -else -{ -uint8_t x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_24 = lean_ctor_get_uint8(x_14, sizeof(void*)*8); -x_25 = lean_ctor_get(x_14, 0); -x_26 = lean_ctor_get(x_14, 1); -x_27 = lean_ctor_get(x_14, 2); -x_28 = lean_ctor_get(x_14, 3); -x_29 = lean_ctor_get_uint8(x_14, sizeof(void*)*8 + 1); -x_30 = lean_ctor_get(x_14, 4); -x_31 = lean_ctor_get(x_14, 5); -x_32 = lean_ctor_get(x_14, 6); -x_33 = lean_ctor_get(x_14, 7); -x_34 = lean_ctor_get_uint8(x_14, sizeof(void*)*8 + 2); -lean_inc(x_33); -lean_inc(x_32); -lean_inc(x_31); -lean_inc(x_30); -lean_inc(x_28); -lean_inc(x_27); -lean_inc(x_26); -lean_inc(x_25); -lean_dec(x_14); -lean_inc(x_2); -x_35 = lean_array_push(x_31, x_2); -x_36 = lean_alloc_ctor(0, 8, 3); -lean_ctor_set(x_36, 0, x_25); -lean_ctor_set(x_36, 1, x_26); -lean_ctor_set(x_36, 2, x_27); -lean_ctor_set(x_36, 3, x_28); -lean_ctor_set(x_36, 4, x_30); -lean_ctor_set(x_36, 5, x_35); -lean_ctor_set(x_36, 6, x_32); -lean_ctor_set(x_36, 7, x_33); -lean_ctor_set_uint8(x_36, sizeof(void*)*8, x_24); -lean_ctor_set_uint8(x_36, sizeof(void*)*8 + 1, x_29); -lean_ctor_set_uint8(x_36, sizeof(void*)*8 + 2, x_34); -x_37 = lean_st_ref_set(x_3, x_36, x_15); -x_38 = lean_ctor_get(x_37, 1); -lean_inc(x_38); -lean_dec(x_37); -x_39 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addNewArg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_38); -x_40 = lean_ctor_get(x_39, 1); -lean_inc(x_40); -lean_dec(x_39); -x_41 = lean_apply_8(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_40); -return x_41; -} -} -} -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg(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_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; lean_object* x_18; -x_10 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getBindingName(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -x_11 = lean_ctor_get(x_10, 0); -lean_inc(x_11); -x_12 = lean_ctor_get(x_10, 1); -lean_inc(x_12); -lean_dec(x_10); -x_13 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getArgExpectedType(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_12); -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -x_15 = lean_ctor_get(x_13, 1); -lean_inc(x_15); -lean_dec(x_13); -x_16 = lean_alloc_closure((void*)(l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___lambda__1), 10, 1); -lean_closure_set(x_16, 0, x_1); -x_17 = 0; -x_18 = l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___spec__1___rarg(x_11, x_17, x_14, x_16, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_15); -return x_18; -} -} -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -uint8_t x_13; lean_object* x_14; -x_13 = lean_unbox(x_2); -lean_dec(x_2); -x_14 = l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___spec__1___rarg(x_1, x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -return x_14; -} -} lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_finalize___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { @@ -7699,106 +7513,6 @@ lean_dec(x_4); return x_13; } } -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addImplicitArg(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_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; -x_10 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getArgExpectedType(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -x_11 = lean_ctor_get(x_10, 0); -lean_inc(x_11); -x_12 = lean_ctor_get(x_10, 1); -lean_inc(x_12); -lean_dec(x_10); -x_13 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_13, 0, x_11); -x_14 = 0; -x_15 = lean_box(0); -lean_inc(x_5); -x_16 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_13, x_14, x_15, x_5, x_6, x_7, x_8, x_12); -x_17 = lean_ctor_get(x_16, 0); -lean_inc(x_17); -x_18 = lean_ctor_get(x_16, 1); -lean_inc(x_18); -lean_dec(x_16); -x_19 = lean_st_ref_get(x_8, x_18); -x_20 = lean_ctor_get(x_19, 1); -lean_inc(x_20); -lean_dec(x_19); -x_21 = lean_st_ref_take(x_2, x_20); -x_22 = lean_ctor_get(x_21, 0); -lean_inc(x_22); -x_23 = lean_ctor_get(x_21, 1); -lean_inc(x_23); -lean_dec(x_21); -x_24 = !lean_is_exclusive(x_22); -if (x_24 == 0) -{ -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; -x_25 = lean_ctor_get(x_22, 6); -x_26 = l_Lean_Expr_mvarId_x21(x_17); -x_27 = lean_array_push(x_25, x_26); -lean_ctor_set(x_22, 6, x_27); -x_28 = lean_st_ref_set(x_2, x_22, x_23); -x_29 = lean_ctor_get(x_28, 1); -lean_inc(x_29); -lean_dec(x_28); -x_30 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addNewArg(x_17, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_29); -x_31 = lean_ctor_get(x_30, 1); -lean_inc(x_31); -lean_dec(x_30); -x_32 = lean_apply_8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_31); -return x_32; -} -else -{ -uint8_t x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_33 = lean_ctor_get_uint8(x_22, sizeof(void*)*8); -x_34 = lean_ctor_get(x_22, 0); -x_35 = lean_ctor_get(x_22, 1); -x_36 = lean_ctor_get(x_22, 2); -x_37 = lean_ctor_get(x_22, 3); -x_38 = lean_ctor_get_uint8(x_22, sizeof(void*)*8 + 1); -x_39 = lean_ctor_get(x_22, 4); -x_40 = lean_ctor_get(x_22, 5); -x_41 = lean_ctor_get(x_22, 6); -x_42 = lean_ctor_get(x_22, 7); -x_43 = lean_ctor_get_uint8(x_22, sizeof(void*)*8 + 2); -lean_inc(x_42); -lean_inc(x_41); -lean_inc(x_40); -lean_inc(x_39); -lean_inc(x_37); -lean_inc(x_36); -lean_inc(x_35); -lean_inc(x_34); -lean_dec(x_22); -x_44 = l_Lean_Expr_mvarId_x21(x_17); -x_45 = lean_array_push(x_41, x_44); -x_46 = lean_alloc_ctor(0, 8, 3); -lean_ctor_set(x_46, 0, x_34); -lean_ctor_set(x_46, 1, x_35); -lean_ctor_set(x_46, 2, x_36); -lean_ctor_set(x_46, 3, x_37); -lean_ctor_set(x_46, 4, x_39); -lean_ctor_set(x_46, 5, x_40); -lean_ctor_set(x_46, 6, x_45); -lean_ctor_set(x_46, 7, x_42); -lean_ctor_set_uint8(x_46, sizeof(void*)*8, x_33); -lean_ctor_set_uint8(x_46, sizeof(void*)*8 + 1, x_38); -lean_ctor_set_uint8(x_46, sizeof(void*)*8 + 2, x_43); -x_47 = lean_st_ref_set(x_2, x_46, x_23); -x_48 = lean_ctor_get(x_47, 1); -lean_inc(x_48); -lean_dec(x_47); -x_49 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addNewArg(x_17, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_48); -x_50 = lean_ctor_get(x_49, 1); -lean_inc(x_50); -lean_dec(x_49); -x_51 = lean_apply_8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_50); -return x_51; -} -} -} lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -8355,1084 +8069,127 @@ lean_dec(x_1); return x_12; } } -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_hasArgsToProcess(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: { -if (lean_obj_tag(x_1) == 0) -{ -lean_object* x_4; lean_object* x_5; -lean_dec(x_3); -x_4 = lean_ctor_get(x_1, 0); -lean_inc(x_4); -lean_dec(x_1); -x_5 = lean_apply_1(x_2, x_4); -return x_5; -} -else -{ -lean_object* x_6; lean_object* x_7; -lean_dec(x_2); -x_6 = lean_ctor_get(x_1, 0); -lean_inc(x_6); -lean_dec(x_1); -x_7 = lean_apply_1(x_3, x_6); -return x_7; -} -} -} -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__1(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__1___rarg), 3, 0); -return x_2; -} -} -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__2___rarg(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { -_start: -{ -if (x_1 == 0) -{ -if (lean_obj_tag(x_2) == 0) -{ -lean_dec(x_4); -if (lean_obj_tag(x_3) == 0) -{ -lean_object* x_8; lean_object* x_9; -lean_dec(x_6); -lean_dec(x_5); -x_8 = lean_box(x_1); -x_9 = lean_apply_3(x_7, x_8, x_3, x_3); -return x_9; -} -else -{ -lean_object* x_10; -lean_dec(x_7); -x_10 = lean_ctor_get(x_3, 0); +lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_9 = lean_st_ref_get(x_7, x_8); +x_10 = lean_ctor_get(x_9, 1); lean_inc(x_10); -lean_dec(x_3); -if (lean_obj_tag(x_10) == 4) -{ -lean_object* x_11; lean_object* x_12; uint64_t x_13; lean_object* x_14; lean_object* x_15; -lean_dec(x_6); -x_11 = lean_ctor_get(x_10, 0); -lean_inc(x_11); -x_12 = lean_ctor_get(x_10, 1); -lean_inc(x_12); -x_13 = lean_ctor_get_uint64(x_10, sizeof(void*)*2); -lean_dec(x_10); -x_14 = lean_box_uint64(x_13); -x_15 = lean_apply_4(x_5, x_2, x_11, x_12, x_14); -return x_15; -} -else -{ -lean_object* x_16; -lean_dec(x_5); -x_16 = lean_apply_2(x_6, x_2, x_10); -return x_16; -} -} -} -else -{ -lean_object* x_17; lean_object* x_18; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_17 = lean_ctor_get(x_2, 0); -lean_inc(x_17); -lean_dec(x_2); -x_18 = lean_apply_2(x_4, x_17, x_3); -return x_18; -} -} -else -{ -lean_object* x_19; lean_object* x_20; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_19 = lean_box(x_1); -x_20 = lean_apply_3(x_7, x_19, x_2, x_3); -return x_20; -} -} -} -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__2(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__2___rarg___boxed), 7, 0); -return x_2; -} -} -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__2___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { -_start: -{ -uint8_t x_8; lean_object* x_9; -x_8 = lean_unbox(x_1); -lean_dec(x_1); -x_9 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__2___rarg(x_8, x_2, x_3, x_4, x_5, x_6, x_7); -return x_9; -} -} -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__3___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -lean_object* x_4; -lean_dec(x_2); -x_4 = lean_apply_1(x_3, x_1); -return x_4; -} -else -{ -lean_object* x_5; lean_object* x_6; lean_object* x_7; -lean_dec(x_3); -x_5 = lean_ctor_get(x_1, 0); -lean_inc(x_5); -x_6 = lean_ctor_get(x_1, 1); -lean_inc(x_6); -lean_dec(x_1); -x_7 = lean_apply_2(x_2, x_5, x_6); -return x_7; -} -} -} -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__3(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__3___rarg), 3, 0); -return x_2; -} -} -lean_object* l_Lean_throwError___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { -_start: -{ -lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = lean_ctor_get(x_7, 3); -x_11 = l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(x_1, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_9); +x_11 = lean_st_ref_get(x_1, x_10); x_12 = !lean_is_exclusive(x_11); if (x_12 == 0) { -lean_object* x_13; lean_object* x_14; +lean_object* x_13; lean_object* x_14; uint8_t x_15; x_13 = lean_ctor_get(x_11, 0); -lean_inc(x_10); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_10); -lean_ctor_set(x_14, 1, x_13); -lean_ctor_set_tag(x_11, 1); -lean_ctor_set(x_11, 0, x_14); +x_14 = lean_ctor_get(x_13, 2); +lean_inc(x_14); +x_15 = l_List_isEmpty___rarg(x_14); +lean_dec(x_14); +if (x_15 == 0) +{ +uint8_t x_16; lean_object* x_17; +lean_dec(x_13); +x_16 = 1; +x_17 = lean_box(x_16); +lean_ctor_set(x_11, 0, x_17); return x_11; } else { -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_15 = lean_ctor_get(x_11, 0); -x_16 = lean_ctor_get(x_11, 1); -lean_inc(x_16); -lean_inc(x_15); -lean_dec(x_11); -lean_inc(x_10); -x_17 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_17, 0, x_10); -lean_ctor_set(x_17, 1, x_15); -x_18 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_18, 0, x_17); -lean_ctor_set(x_18, 1, x_16); -return x_18; -} -} -} -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__2___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_4 = lean_ctor_get(x_1, 3); -x_5 = l_Lean_SourceInfo_fromRef(x_4); -x_6 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_6, 0, x_5); -lean_ctor_set(x_6, 1, x_3); -return x_6; -} -} -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; -x_6 = lean_alloc_closure((void*)(l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__2___rarg___boxed), 3, 0); -return x_6; -} -} -static lean_object* _init_l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("invalid autoParam, argument must be a constant"); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__1; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("by"); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("Tactic"); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_shouldPropagateExpectedTypeFor___closed__4; -x_2 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__4; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("tacticSeq"); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__5; -x_2 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__6; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(1u); -x_2 = lean_mk_empty_array_with_capacity(x_1); -return x_2; -} -} -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg(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_12; lean_object* x_13; lean_object* x_14; -x_10 = lean_st_ref_get(x_8, x_9); -x_11 = lean_ctor_get(x_10, 1); -lean_inc(x_11); -lean_dec(x_10); -x_12 = lean_st_ref_get(x_2, x_11); -x_13 = lean_ctor_get(x_12, 0); -lean_inc(x_13); -x_14 = lean_ctor_get(x_13, 2); -lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) -{ -lean_object* x_15; lean_object* x_16; uint8_t x_17; -x_15 = lean_ctor_get(x_12, 1); -lean_inc(x_15); -lean_dec(x_12); -x_16 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getArgExpectedType(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_15); -x_17 = lean_ctor_get_uint8(x_13, sizeof(void*)*8); -if (x_17 == 0) -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_16, 0); +lean_object* x_18; uint8_t x_19; +x_18 = lean_ctor_get(x_13, 3); lean_inc(x_18); -x_19 = lean_ctor_get(x_16, 1); -lean_inc(x_19); -lean_dec(x_16); -x_20 = l_Lean_Expr_getOptParamDefault_x3f(x_18); -if (lean_obj_tag(x_20) == 0) -{ -lean_object* x_21; -x_21 = l_Lean_Expr_getAutoParamTactic_x3f(x_18); -lean_dec(x_18); -if (lean_obj_tag(x_21) == 0) -{ -lean_object* x_22; uint8_t x_23; -x_22 = lean_ctor_get(x_13, 3); -lean_inc(x_22); lean_dec(x_13); -x_23 = l_List_isEmpty___rarg(x_22); -lean_dec(x_22); -if (x_23 == 0) +x_19 = l_List_isEmpty___rarg(x_18); +lean_dec(x_18); +if (x_19 == 0) { -lean_object* x_24; -lean_inc(x_8); -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_24 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_19); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; uint8_t x_26; -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -x_26 = lean_unbox(x_25); -lean_dec(x_25); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_24, 1); -lean_inc(x_27); -lean_dec(x_24); -x_28 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_27); -return x_28; +uint8_t x_20; lean_object* x_21; +x_20 = 1; +x_21 = lean_box(x_20); +lean_ctor_set(x_11, 0, x_21); +return x_11; } else { -lean_object* x_29; lean_object* x_30; -x_29 = lean_ctor_get(x_24, 1); -lean_inc(x_29); +uint8_t x_22; lean_object* x_23; +x_22 = 0; +x_23 = lean_box(x_22); +lean_ctor_set(x_11, 0, x_23); +return x_11; +} +} +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_24 = lean_ctor_get(x_11, 0); +x_25 = lean_ctor_get(x_11, 1); +lean_inc(x_25); +lean_inc(x_24); +lean_dec(x_11); +x_26 = lean_ctor_get(x_24, 2); +lean_inc(x_26); +x_27 = l_List_isEmpty___rarg(x_26); +lean_dec(x_26); +if (x_27 == 0) +{ +uint8_t x_28; lean_object* x_29; lean_object* x_30; lean_dec(x_24); -x_30 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addImplicitArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_29); +x_28 = 1; +x_29 = lean_box(x_28); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_25); return x_30; } -} else { -uint8_t x_31; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_31 = !lean_is_exclusive(x_24); -if (x_31 == 0) -{ -return x_24; -} -else -{ -lean_object* x_32; lean_object* x_33; lean_object* x_34; -x_32 = lean_ctor_get(x_24, 0); -x_33 = lean_ctor_get(x_24, 1); -lean_inc(x_33); -lean_inc(x_32); +lean_object* x_31; uint8_t x_32; +x_31 = lean_ctor_get(x_24, 3); +lean_inc(x_31); lean_dec(x_24); -x_34 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_34, 0, x_32); -lean_ctor_set(x_34, 1, x_33); -return x_34; -} -} -} -else -{ -lean_object* x_35; -lean_inc(x_8); -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_35 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_fTypeHasOptAutoParams(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_19); -if (lean_obj_tag(x_35) == 0) -{ -lean_object* x_36; uint8_t x_37; -x_36 = lean_ctor_get(x_35, 0); -lean_inc(x_36); -x_37 = lean_unbox(x_36); -lean_dec(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; uint8_t x_43; -x_38 = lean_ctor_get(x_35, 1); -lean_inc(x_38); -lean_dec(x_35); -x_39 = lean_st_ref_get(x_8, x_38); -x_40 = lean_ctor_get(x_39, 1); -lean_inc(x_40); -lean_dec(x_39); -x_41 = lean_st_ref_get(x_2, x_40); -x_42 = lean_ctor_get(x_41, 0); -lean_inc(x_42); -x_43 = lean_ctor_get_uint8(x_42, sizeof(void*)*8 + 1); -lean_dec(x_42); -if (x_43 == 0) -{ -lean_object* x_44; lean_object* x_45; -lean_dec(x_1); -x_44 = lean_ctor_get(x_41, 1); -lean_inc(x_44); -lean_dec(x_41); -x_45 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_finalize(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_44); -return x_45; -} -else -{ -lean_object* x_46; lean_object* x_47; -x_46 = lean_ctor_get(x_41, 1); -lean_inc(x_46); -lean_dec(x_41); -x_47 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addImplicitArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_46); -return x_47; -} -} -else -{ -lean_object* x_48; lean_object* x_49; -x_48 = lean_ctor_get(x_35, 1); -lean_inc(x_48); -lean_dec(x_35); -x_49 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_48); -return x_49; -} -} -else -{ -uint8_t x_50; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_50 = !lean_is_exclusive(x_35); -if (x_50 == 0) +x_32 = l_List_isEmpty___rarg(x_31); +lean_dec(x_31); +if (x_32 == 0) { +uint8_t x_33; lean_object* x_34; lean_object* x_35; +x_33 = 1; +x_34 = lean_box(x_33); +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_25); return x_35; } else { -lean_object* x_51; lean_object* x_52; lean_object* x_53; -x_51 = lean_ctor_get(x_35, 0); -x_52 = lean_ctor_get(x_35, 1); -lean_inc(x_52); -lean_inc(x_51); -lean_dec(x_35); -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; -} -} -} -} -else -{ -lean_object* x_54; -lean_dec(x_13); -x_54 = lean_ctor_get(x_21, 0); -lean_inc(x_54); -lean_dec(x_21); -if (lean_obj_tag(x_54) == 4) -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; -x_55 = lean_ctor_get(x_54, 0); -lean_inc(x_55); -lean_dec(x_54); -x_56 = lean_st_ref_get(x_8, x_19); -x_57 = lean_ctor_get(x_56, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_56, 1); -lean_inc(x_58); -lean_dec(x_56); -x_59 = lean_ctor_get(x_57, 0); -lean_inc(x_59); -lean_dec(x_57); -x_60 = lean_ctor_get(x_7, 0); -lean_inc(x_60); -x_61 = l___private_Lean_Elab_Util_0__Lean_Elab_evalSyntaxConstantUnsafe(x_59, x_60, x_55); -lean_dec(x_60); -if (lean_obj_tag(x_61) == 0) -{ -lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; -lean_dec(x_1); -x_62 = lean_ctor_get(x_61, 0); -lean_inc(x_62); -lean_dec(x_61); -x_63 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_63, 0, x_62); -x_64 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_64, 0, x_63); -x_65 = l_Lean_throwError___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__1(x_64, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_58); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_65; -} -else -{ -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 = lean_ctor_get(x_61, 0); -lean_inc(x_66); -lean_dec(x_61); -x_67 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__2___rarg(x_7, x_8, x_58); -x_68 = lean_ctor_get(x_67, 0); -lean_inc(x_68); -x_69 = lean_ctor_get(x_67, 1); -lean_inc(x_69); -lean_dec(x_67); -x_70 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_69); -x_71 = lean_ctor_get(x_70, 1); -lean_inc(x_71); -lean_dec(x_70); -x_72 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_71); -x_73 = lean_ctor_get(x_72, 1); -lean_inc(x_73); -lean_dec(x_72); -x_74 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__3; -x_75 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_75, 0, x_68); -lean_ctor_set(x_75, 1, x_74); -x_76 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__8; -x_77 = lean_array_push(x_76, x_66); -x_78 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__7; -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___private_Lean_Elab_App_0__Lean_Elab_Term_tryCoeFun_x3f___closed__3; -x_81 = lean_array_push(x_80, x_75); -x_82 = lean_array_push(x_81, x_79); -x_83 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_shouldPropagateExpectedTypeFor___closed__12; -x_84 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_84, 0, x_83); -lean_ctor_set(x_84, 1, x_82); -x_85 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_85, 0, x_84); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_2); -lean_inc(x_85); -x_86 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType(x_85, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_73); -if (lean_obj_tag(x_86) == 0) -{ -lean_object* x_87; lean_object* x_88; -x_87 = lean_ctor_get(x_86, 1); -lean_inc(x_87); -lean_dec(x_86); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_88 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_elabAndAddNewArg(x_85, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_87); -if (lean_obj_tag(x_88) == 0) -{ -lean_object* x_89; lean_object* x_90; -x_89 = lean_ctor_get(x_88, 1); -lean_inc(x_89); -lean_dec(x_88); -x_90 = lean_apply_8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_89); -return x_90; -} -else -{ -uint8_t x_91; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_91 = !lean_is_exclusive(x_88); -if (x_91 == 0) -{ -return x_88; -} -else -{ -lean_object* x_92; lean_object* x_93; lean_object* x_94; -x_92 = lean_ctor_get(x_88, 0); -x_93 = lean_ctor_get(x_88, 1); -lean_inc(x_93); -lean_inc(x_92); -lean_dec(x_88); -x_94 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_94, 0, x_92); -lean_ctor_set(x_94, 1, x_93); -return x_94; -} -} -} -else -{ -uint8_t x_95; -lean_dec(x_85); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_95 = !lean_is_exclusive(x_86); -if (x_95 == 0) -{ -return x_86; -} -else -{ -lean_object* x_96; lean_object* x_97; lean_object* x_98; -x_96 = lean_ctor_get(x_86, 0); -x_97 = lean_ctor_get(x_86, 1); -lean_inc(x_97); -lean_inc(x_96); -lean_dec(x_86); -x_98 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_98, 0, x_96); -lean_ctor_set(x_98, 1, x_97); -return x_98; -} -} -} -} -else -{ -lean_object* x_99; lean_object* x_100; -lean_dec(x_54); -lean_dec(x_1); -x_99 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__2; -x_100 = l_Lean_throwError___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__1(x_99, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_19); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_100; -} -} -} -else -{ -lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; -lean_dec(x_18); -lean_dec(x_13); -x_101 = lean_ctor_get(x_20, 0); -lean_inc(x_101); -lean_dec(x_20); -x_102 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addNewArg(x_101, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_19); -x_103 = lean_ctor_get(x_102, 1); -lean_inc(x_103); -lean_dec(x_102); -x_104 = lean_apply_8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_103); -return x_104; -} -} -else -{ -lean_object* x_105; lean_object* x_106; uint8_t x_107; -x_105 = lean_ctor_get(x_16, 1); -lean_inc(x_105); -lean_dec(x_16); -x_106 = lean_ctor_get(x_13, 3); -lean_inc(x_106); -lean_dec(x_13); -x_107 = l_List_isEmpty___rarg(x_106); -lean_dec(x_106); -if (x_107 == 0) -{ -lean_object* x_108; -lean_inc(x_8); -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_108 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_105); -if (lean_obj_tag(x_108) == 0) -{ -lean_object* x_109; uint8_t x_110; -x_109 = lean_ctor_get(x_108, 0); -lean_inc(x_109); -x_110 = lean_unbox(x_109); -lean_dec(x_109); -if (x_110 == 0) -{ -lean_object* x_111; lean_object* x_112; -x_111 = lean_ctor_get(x_108, 1); -lean_inc(x_111); -lean_dec(x_108); -x_112 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_111); -return x_112; -} -else -{ -lean_object* x_113; lean_object* x_114; -x_113 = lean_ctor_get(x_108, 1); -lean_inc(x_113); -lean_dec(x_108); -x_114 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addImplicitArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_113); -return x_114; -} -} -else -{ -uint8_t x_115; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_115 = !lean_is_exclusive(x_108); -if (x_115 == 0) -{ -return x_108; -} -else -{ -lean_object* x_116; lean_object* x_117; lean_object* x_118; -x_116 = lean_ctor_get(x_108, 0); -x_117 = lean_ctor_get(x_108, 1); -lean_inc(x_117); -lean_inc(x_116); -lean_dec(x_108); -x_118 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_118, 0, x_116); -lean_ctor_set(x_118, 1, x_117); -return x_118; -} -} -} -else -{ -lean_object* x_119; -lean_dec(x_1); -x_119 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_finalize(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_105); -return x_119; -} -} -} -else -{ -lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; -lean_dec(x_13); -x_120 = lean_ctor_get(x_12, 1); -lean_inc(x_120); -lean_dec(x_12); -x_121 = lean_ctor_get(x_14, 0); -lean_inc(x_121); -x_122 = lean_ctor_get(x_14, 1); -lean_inc(x_122); -lean_dec(x_14); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_2); -lean_inc(x_121); -x_123 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType(x_121, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_120); -if (lean_obj_tag(x_123) == 0) -{ -lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; uint8_t x_130; -x_124 = lean_ctor_get(x_123, 1); -lean_inc(x_124); -lean_dec(x_123); -x_125 = lean_st_ref_get(x_8, x_124); -x_126 = lean_ctor_get(x_125, 1); -lean_inc(x_126); -lean_dec(x_125); -x_127 = lean_st_ref_take(x_2, x_126); -x_128 = lean_ctor_get(x_127, 0); -lean_inc(x_128); -x_129 = lean_ctor_get(x_127, 1); -lean_inc(x_129); -lean_dec(x_127); -x_130 = !lean_is_exclusive(x_128); -if (x_130 == 0) -{ -lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; -x_131 = lean_ctor_get(x_128, 2); -lean_dec(x_131); -lean_ctor_set(x_128, 2, x_122); -x_132 = lean_st_ref_set(x_2, x_128, x_129); -x_133 = lean_ctor_get(x_132, 1); -lean_inc(x_133); -lean_dec(x_132); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_134 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_elabAndAddNewArg(x_121, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_133); -if (lean_obj_tag(x_134) == 0) -{ -lean_object* x_135; lean_object* x_136; -x_135 = lean_ctor_get(x_134, 1); -lean_inc(x_135); -lean_dec(x_134); -x_136 = lean_apply_8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_135); -return x_136; -} -else -{ -uint8_t x_137; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_137 = !lean_is_exclusive(x_134); -if (x_137 == 0) -{ -return x_134; -} -else -{ -lean_object* x_138; lean_object* x_139; lean_object* x_140; -x_138 = lean_ctor_get(x_134, 0); -x_139 = lean_ctor_get(x_134, 1); -lean_inc(x_139); -lean_inc(x_138); -lean_dec(x_134); -x_140 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_140, 0, x_138); -lean_ctor_set(x_140, 1, x_139); -return x_140; -} -} -} -else -{ -uint8_t x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; uint8_t x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; uint8_t x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; -x_141 = lean_ctor_get_uint8(x_128, sizeof(void*)*8); -x_142 = lean_ctor_get(x_128, 0); -x_143 = lean_ctor_get(x_128, 1); -x_144 = lean_ctor_get(x_128, 3); -x_145 = lean_ctor_get_uint8(x_128, sizeof(void*)*8 + 1); -x_146 = lean_ctor_get(x_128, 4); -x_147 = lean_ctor_get(x_128, 5); -x_148 = lean_ctor_get(x_128, 6); -x_149 = lean_ctor_get(x_128, 7); -x_150 = lean_ctor_get_uint8(x_128, sizeof(void*)*8 + 2); -lean_inc(x_149); -lean_inc(x_148); -lean_inc(x_147); -lean_inc(x_146); -lean_inc(x_144); -lean_inc(x_143); -lean_inc(x_142); -lean_dec(x_128); -x_151 = lean_alloc_ctor(0, 8, 3); -lean_ctor_set(x_151, 0, x_142); -lean_ctor_set(x_151, 1, x_143); -lean_ctor_set(x_151, 2, x_122); -lean_ctor_set(x_151, 3, x_144); -lean_ctor_set(x_151, 4, x_146); -lean_ctor_set(x_151, 5, x_147); -lean_ctor_set(x_151, 6, x_148); -lean_ctor_set(x_151, 7, x_149); -lean_ctor_set_uint8(x_151, sizeof(void*)*8, x_141); -lean_ctor_set_uint8(x_151, sizeof(void*)*8 + 1, x_145); -lean_ctor_set_uint8(x_151, sizeof(void*)*8 + 2, x_150); -x_152 = lean_st_ref_set(x_2, x_151, x_129); -x_153 = lean_ctor_get(x_152, 1); -lean_inc(x_153); -lean_dec(x_152); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_154 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_elabAndAddNewArg(x_121, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_153); -if (lean_obj_tag(x_154) == 0) -{ -lean_object* x_155; lean_object* x_156; -x_155 = lean_ctor_get(x_154, 1); -lean_inc(x_155); -lean_dec(x_154); -x_156 = lean_apply_8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_155); -return x_156; -} -else -{ -lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_157 = lean_ctor_get(x_154, 0); -lean_inc(x_157); -x_158 = lean_ctor_get(x_154, 1); -lean_inc(x_158); -if (lean_is_exclusive(x_154)) { - lean_ctor_release(x_154, 0); - lean_ctor_release(x_154, 1); - x_159 = x_154; -} else { - lean_dec_ref(x_154); - x_159 = lean_box(0); -} -if (lean_is_scalar(x_159)) { - x_160 = lean_alloc_ctor(1, 2, 0); -} else { - x_160 = x_159; -} -lean_ctor_set(x_160, 0, x_157); -lean_ctor_set(x_160, 1, x_158); -return x_160; -} -} -} -else -{ -uint8_t x_161; -lean_dec(x_122); -lean_dec(x_121); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_161 = !lean_is_exclusive(x_123); -if (x_161 == 0) -{ -return x_123; -} -else -{ -lean_object* x_162; lean_object* x_163; lean_object* x_164; -x_162 = lean_ctor_get(x_123, 0); -x_163 = lean_ctor_get(x_123, 1); -lean_inc(x_163); -lean_inc(x_162); -lean_dec(x_123); -x_164 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_164, 0, x_162); -lean_ctor_set(x_164, 1, x_163); -return x_164; +uint8_t x_36; lean_object* x_37; lean_object* x_38; +x_36 = 0; +x_37 = lean_box(x_36); +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_37); +lean_ctor_set(x_38, 1, x_25); +return x_38; } } } } } -lean_object* l_Lean_throwError___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_hasArgsToProcess___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_10; -x_10 = l_Lean_throwError___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_8); +lean_object* x_9; +x_9 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_hasArgsToProcess(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -return x_10; -} -} -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__2___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__2___rarg(x_1, x_2, x_3); -lean_dec(x_2); lean_dec(x_1); -return x_4; -} -} -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; -x_6 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__2(x_1, x_2, x_3, x_4, x_5); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -return x_6; -} -} -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processImplicitArg(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_12; lean_object* x_13; uint8_t x_14; -x_10 = lean_st_ref_get(x_8, x_9); -x_11 = lean_ctor_get(x_10, 1); -lean_inc(x_11); -lean_dec(x_10); -x_12 = lean_st_ref_get(x_2, x_11); -x_13 = lean_ctor_get(x_12, 0); -lean_inc(x_13); -x_14 = lean_ctor_get_uint8(x_13, sizeof(void*)*8); -lean_dec(x_13); -if (x_14 == 0) -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_ctor_get(x_12, 1); -lean_inc(x_15); -lean_dec(x_12); -x_16 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addImplicitArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_15); -return x_16; -} -else -{ -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_12, 1); -lean_inc(x_17); -lean_dec(x_12); -x_18 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_17); -return x_18; -} +return x_9; } } lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_isNextArgHole_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { @@ -11704,344 +10461,207 @@ lean_dec(x_1); return x_9; } } -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processInstImplicitArg(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* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; -x_10 = lean_st_ref_get(x_8, x_9); -x_11 = lean_ctor_get(x_10, 1); -lean_inc(x_11); -lean_dec(x_10); -x_12 = lean_st_ref_get(x_2, x_11); -x_13 = lean_ctor_get(x_12, 0); -lean_inc(x_13); -x_14 = lean_ctor_get_uint8(x_13, sizeof(void*)*8); -lean_dec(x_13); -if (x_14 == 0) +if (lean_obj_tag(x_1) == 0) { -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; lean_object* x_21; 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; -x_15 = lean_ctor_get(x_12, 1); -lean_inc(x_15); -lean_dec(x_12); -x_16 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getArgExpectedType(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_15); -x_17 = lean_ctor_get(x_16, 0); -lean_inc(x_17); -x_18 = lean_ctor_get(x_16, 1); -lean_inc(x_18); -lean_dec(x_16); -x_19 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_19, 0, x_17); -x_20 = 1; -x_21 = lean_box(0); -lean_inc(x_5); -x_22 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_19, x_20, x_21, x_5, x_6, x_7, x_8, x_18); -x_23 = lean_ctor_get(x_22, 0); -lean_inc(x_23); -x_24 = lean_ctor_get(x_22, 1); -lean_inc(x_24); -lean_dec(x_22); -x_25 = l_Lean_Expr_mvarId_x21(x_23); -x_26 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addInstMVar(x_25, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_24); -x_27 = lean_ctor_get(x_26, 1); -lean_inc(x_27); -lean_dec(x_26); -x_28 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addNewArg(x_23, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_27); -x_29 = lean_ctor_get(x_28, 1); -lean_inc(x_29); -lean_dec(x_28); -x_30 = lean_apply_8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_29); -return x_30; +lean_object* x_4; lean_object* x_5; +lean_dec(x_3); +x_4 = lean_ctor_get(x_1, 0); +lean_inc(x_4); +lean_dec(x_1); +x_5 = lean_apply_1(x_2, x_4); +return x_5; } else { -lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; -x_31 = lean_ctor_get(x_12, 1); -lean_inc(x_31); -lean_dec(x_12); -x_32 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_isNextArgHole(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_31); -x_33 = lean_ctor_get(x_32, 0); -lean_inc(x_33); -x_34 = lean_unbox(x_33); -lean_dec(x_33); -if (x_34 == 0) -{ -lean_object* x_35; lean_object* x_36; -x_35 = lean_ctor_get(x_32, 1); -lean_inc(x_35); -lean_dec(x_32); -x_36 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_35); -return x_36; -} -else -{ -lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t 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; uint8_t x_52; -x_37 = lean_ctor_get(x_32, 1); -lean_inc(x_37); -lean_dec(x_32); -x_38 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getArgExpectedType(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_37); -x_39 = lean_ctor_get(x_38, 0); -lean_inc(x_39); -x_40 = lean_ctor_get(x_38, 1); -lean_inc(x_40); -lean_dec(x_38); -x_41 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_41, 0, x_39); -x_42 = 1; -x_43 = lean_box(0); -lean_inc(x_5); -x_44 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_41, x_42, x_43, x_5, x_6, x_7, x_8, x_40); -x_45 = lean_ctor_get(x_44, 0); -lean_inc(x_45); -x_46 = lean_ctor_get(x_44, 1); -lean_inc(x_46); -lean_dec(x_44); -x_47 = lean_st_ref_get(x_8, x_46); -x_48 = lean_ctor_get(x_47, 1); -lean_inc(x_48); -lean_dec(x_47); -x_49 = lean_st_ref_take(x_2, x_48); -x_50 = lean_ctor_get(x_49, 0); -lean_inc(x_50); -x_51 = lean_ctor_get(x_49, 1); -lean_inc(x_51); -lean_dec(x_49); -x_52 = !lean_is_exclusive(x_50); -if (x_52 == 0) -{ -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_53 = lean_ctor_get(x_50, 2); -x_54 = l_List_tail_x21___rarg(x_53); -lean_dec(x_53); -lean_ctor_set(x_50, 2, x_54); -x_55 = lean_st_ref_set(x_2, x_50, x_51); -x_56 = lean_ctor_get(x_55, 1); -lean_inc(x_56); -lean_dec(x_55); -x_57 = l_Lean_Expr_mvarId_x21(x_45); -x_58 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addInstMVar(x_57, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_56); -x_59 = lean_ctor_get(x_58, 1); -lean_inc(x_59); -lean_dec(x_58); -x_60 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addNewArg(x_45, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_59); -x_61 = lean_ctor_get(x_60, 1); -lean_inc(x_61); -lean_dec(x_60); -x_62 = lean_apply_8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_61); -return x_62; -} -else -{ -uint8_t x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint8_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; uint8_t x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; -x_63 = lean_ctor_get_uint8(x_50, sizeof(void*)*8); -x_64 = lean_ctor_get(x_50, 0); -x_65 = lean_ctor_get(x_50, 1); -x_66 = lean_ctor_get(x_50, 2); -x_67 = lean_ctor_get(x_50, 3); -x_68 = lean_ctor_get_uint8(x_50, sizeof(void*)*8 + 1); -x_69 = lean_ctor_get(x_50, 4); -x_70 = lean_ctor_get(x_50, 5); -x_71 = lean_ctor_get(x_50, 6); -x_72 = lean_ctor_get(x_50, 7); -x_73 = lean_ctor_get_uint8(x_50, sizeof(void*)*8 + 2); -lean_inc(x_72); -lean_inc(x_71); -lean_inc(x_70); -lean_inc(x_69); -lean_inc(x_67); -lean_inc(x_66); -lean_inc(x_65); -lean_inc(x_64); -lean_dec(x_50); -x_74 = l_List_tail_x21___rarg(x_66); -lean_dec(x_66); -x_75 = lean_alloc_ctor(0, 8, 3); -lean_ctor_set(x_75, 0, x_64); -lean_ctor_set(x_75, 1, x_65); -lean_ctor_set(x_75, 2, x_74); -lean_ctor_set(x_75, 3, x_67); -lean_ctor_set(x_75, 4, x_69); -lean_ctor_set(x_75, 5, x_70); -lean_ctor_set(x_75, 6, x_71); -lean_ctor_set(x_75, 7, x_72); -lean_ctor_set_uint8(x_75, sizeof(void*)*8, x_63); -lean_ctor_set_uint8(x_75, sizeof(void*)*8 + 1, x_68); -lean_ctor_set_uint8(x_75, sizeof(void*)*8 + 2, x_73); -x_76 = lean_st_ref_set(x_2, x_75, x_51); -x_77 = lean_ctor_get(x_76, 1); -lean_inc(x_77); -lean_dec(x_76); -x_78 = l_Lean_Expr_mvarId_x21(x_45); -x_79 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addInstMVar(x_78, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_77); -x_80 = lean_ctor_get(x_79, 1); -lean_inc(x_80); -lean_dec(x_79); -x_81 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addNewArg(x_45, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_80); -x_82 = lean_ctor_get(x_81, 1); -lean_inc(x_82); -lean_dec(x_81); -x_83 = lean_apply_8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_82); -return x_83; +lean_object* x_6; lean_object* x_7; +lean_dec(x_2); +x_6 = lean_ctor_get(x_1, 0); +lean_inc(x_6); +lean_dec(x_1); +x_7 = lean_apply_1(x_3, x_6); +return x_7; } } } -} -} -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_hasArgsToProcess(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* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__1(lean_object* x_1) { _start: { -lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_9 = lean_st_ref_get(x_7, x_8); -x_10 = lean_ctor_get(x_9, 1); +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__1___rarg), 3, 0); +return x_2; +} +} +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__2___rarg(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +if (x_1 == 0) +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_dec(x_4); +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_8; lean_object* x_9; +lean_dec(x_6); +lean_dec(x_5); +x_8 = lean_box(x_1); +x_9 = lean_apply_3(x_7, x_8, x_3, x_3); +return x_9; +} +else +{ +lean_object* x_10; +lean_dec(x_7); +x_10 = lean_ctor_get(x_3, 0); lean_inc(x_10); -lean_dec(x_9); -x_11 = lean_st_ref_get(x_1, x_10); -x_12 = !lean_is_exclusive(x_11); -if (x_12 == 0) +lean_dec(x_3); +if (lean_obj_tag(x_10) == 4) { -lean_object* x_13; lean_object* x_14; uint8_t x_15; -x_13 = lean_ctor_get(x_11, 0); -x_14 = lean_ctor_get(x_13, 2); -lean_inc(x_14); -x_15 = l_List_isEmpty___rarg(x_14); -lean_dec(x_14); -if (x_15 == 0) -{ -uint8_t x_16; lean_object* x_17; -lean_dec(x_13); -x_16 = 1; -x_17 = lean_box(x_16); -lean_ctor_set(x_11, 0, x_17); -return x_11; +lean_object* x_11; lean_object* x_12; uint64_t x_13; lean_object* x_14; lean_object* x_15; +lean_dec(x_6); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +x_13 = lean_ctor_get_uint64(x_10, sizeof(void*)*2); +lean_dec(x_10); +x_14 = lean_box_uint64(x_13); +x_15 = lean_apply_4(x_5, x_2, x_11, x_12, x_14); +return x_15; } else { -lean_object* x_18; uint8_t x_19; -x_18 = lean_ctor_get(x_13, 3); -lean_inc(x_18); -lean_dec(x_13); -x_19 = l_List_isEmpty___rarg(x_18); -lean_dec(x_18); -if (x_19 == 0) -{ -uint8_t x_20; lean_object* x_21; -x_20 = 1; -x_21 = lean_box(x_20); -lean_ctor_set(x_11, 0, x_21); -return x_11; -} -else -{ -uint8_t x_22; lean_object* x_23; -x_22 = 0; -x_23 = lean_box(x_22); -lean_ctor_set(x_11, 0, x_23); -return x_11; +lean_object* x_16; +lean_dec(x_5); +x_16 = lean_apply_2(x_6, x_2, x_10); +return x_16; } } } else { -lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; -x_24 = lean_ctor_get(x_11, 0); -x_25 = lean_ctor_get(x_11, 1); -lean_inc(x_25); -lean_inc(x_24); -lean_dec(x_11); -x_26 = lean_ctor_get(x_24, 2); -lean_inc(x_26); -x_27 = l_List_isEmpty___rarg(x_26); -lean_dec(x_26); -if (x_27 == 0) -{ -uint8_t x_28; lean_object* x_29; lean_object* x_30; -lean_dec(x_24); -x_28 = 1; -x_29 = lean_box(x_28); -x_30 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_30, 0, x_29); -lean_ctor_set(x_30, 1, x_25); -return x_30; -} -else -{ -lean_object* x_31; uint8_t x_32; -x_31 = lean_ctor_get(x_24, 3); -lean_inc(x_31); -lean_dec(x_24); -x_32 = l_List_isEmpty___rarg(x_31); -lean_dec(x_31); -if (x_32 == 0) -{ -uint8_t x_33; lean_object* x_34; lean_object* x_35; -x_33 = 1; -x_34 = lean_box(x_33); -x_35 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_35, 0, x_34); -lean_ctor_set(x_35, 1, x_25); -return x_35; -} -else -{ -uint8_t x_36; lean_object* x_37; lean_object* x_38; -x_36 = 0; -x_37 = lean_box(x_36); -x_38 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_38, 0, x_37); -lean_ctor_set(x_38, 1, x_25); -return x_38; -} -} -} -} -} -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_hasArgsToProcess___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: -{ -lean_object* x_9; -x_9 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_hasArgsToProcess(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_object* x_17; lean_object* x_18; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); +x_17 = lean_ctor_get(x_2, 0); +lean_inc(x_17); lean_dec(x_2); -lean_dec(x_1); -return x_9; +x_18 = lean_apply_2(x_4, x_17, x_3); +return x_18; } } -lean_object* l_Lean_Elab_Term_ElabAppArgs_main_match__1___rarg(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +else +{ +lean_object* x_19; lean_object* x_20; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_19 = lean_box(x_1); +x_20 = lean_apply_3(x_7, x_19, x_2, x_3); +return x_20; +} +} +} +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__2(lean_object* x_1) { _start: { -lean_object* x_5; -x_5 = lean_box(x_1); -switch (lean_obj_tag(x_5)) { -case 1: -{ -lean_object* x_6; lean_object* x_7; -lean_dec(x_4); -lean_dec(x_3); -x_6 = lean_box(0); -x_7 = lean_apply_1(x_2, x_6); -return x_7; +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__2___rarg___boxed), 7, 0); +return x_2; } -case 3: +} +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__2___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: { -lean_object* x_8; lean_object* x_9; -lean_dec(x_4); -lean_dec(x_2); -x_8 = lean_box(0); -x_9 = lean_apply_1(x_3, x_8); +uint8_t x_8; lean_object* x_9; +x_8 = lean_unbox(x_1); +lean_dec(x_1); +x_9 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__2___rarg(x_8, x_2, x_3, x_4, x_5, x_6, x_7); return x_9; } -default: +} +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__3___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: { -lean_object* x_10; lean_object* x_11; +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_4; +lean_dec(x_2); +x_4 = lean_apply_1(x_3, x_1); +return x_4; +} +else +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; +lean_dec(x_3); +x_5 = lean_ctor_get(x_1, 0); +lean_inc(x_5); +x_6 = lean_ctor_get(x_1, 1); +lean_inc(x_6); +lean_dec(x_1); +x_7 = lean_apply_2(x_2, x_5, x_6); +return x_7; +} +} +} +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__3(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__3___rarg), 3, 0); +return x_2; +} +} +lean_object* l_Lean_Elab_Term_ElabAppArgs_main_match__1___rarg(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = lean_box(x_1); +switch (lean_obj_tag(x_6)) { +case 1: +{ +lean_object* x_7; lean_object* x_8; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_7 = lean_box(0); +x_8 = lean_apply_1(x_2, x_7); +return x_8; +} +case 2: +{ +lean_object* x_9; lean_object* x_10; lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); -x_10 = lean_box(x_1); -x_11 = lean_apply_1(x_4, x_10); -return x_11; +x_9 = lean_box(0); +x_10 = lean_apply_1(x_4, x_9); +return x_10; +} +case 3: +{ +lean_object* x_11; lean_object* x_12; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_11 = lean_box(0); +x_12 = lean_apply_1(x_3, x_11); +return x_12; +} +default: +{ +lean_object* x_13; lean_object* x_14; +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_13 = lean_box(x_1); +x_14 = lean_apply_1(x_5, x_13); +return x_14; } } } @@ -12050,28 +10670,205 @@ lean_object* l_Lean_Elab_Term_ElabAppArgs_main_match__1(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Term_ElabAppArgs_main_match__1___rarg___boxed), 4, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Term_ElabAppArgs_main_match__1___rarg___boxed), 5, 0); return x_2; } } -lean_object* l_Lean_Elab_Term_ElabAppArgs_main_match__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_Elab_Term_ElabAppArgs_main_match__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { -uint8_t x_5; lean_object* x_6; -x_5 = lean_unbox(x_1); +uint8_t x_6; lean_object* x_7; +x_6 = lean_unbox(x_1); lean_dec(x_1); -x_6 = l_Lean_Elab_Term_ElabAppArgs_main_match__1___rarg(x_5, x_2, x_3, x_4); -return x_6; +x_7 = l_Lean_Elab_Term_ElabAppArgs_main_match__1___rarg(x_6, x_2, x_3, x_4, x_5); +return x_7; } } -static lean_object* _init_l_Lean_Elab_Term_ElabAppArgs_main___closed__1() { +lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___spec__1___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = lean_apply_9(x_1, x_5, x_2, x_3, x_4, x_6, x_7, x_8, x_9, x_10); +return x_11; +} +} +lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___spec__1___rarg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___spec__1___rarg___lambda__1), 10, 4); +lean_closure_set(x_13, 0, x_4); +lean_closure_set(x_13, 1, x_5); +lean_closure_set(x_13, 2, x_6); +lean_closure_set(x_13, 3, x_7); +x_14 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp___rarg(x_1, x_2, x_3, x_13, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_14) == 0) +{ +uint8_t x_15; +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +return x_14; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_14, 0); +x_17 = lean_ctor_get(x_14, 1); +lean_inc(x_17); +lean_inc(x_16); +lean_dec(x_14); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_16); +lean_ctor_set(x_18, 1, x_17); +return x_18; +} +} +else +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_14); +if (x_19 == 0) +{ +return x_14; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_14, 0); +x_21 = lean_ctor_get(x_14, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_14); +x_22 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; +} +} +} +} +lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___spec__1___rarg___boxed), 12, 0); +return x_2; +} +} +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_10 = lean_st_ref_get(x_8, x_9); +x_11 = lean_ctor_get(x_10, 1); +lean_inc(x_11); +lean_dec(x_10); +x_12 = lean_st_ref_take(x_2, x_11); +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_12, 1); +lean_inc(x_14); +lean_dec(x_12); +x_15 = !lean_is_exclusive(x_13); +if (x_15 == 0) +{ +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_16 = lean_ctor_get(x_13, 5); +lean_inc(x_1); +x_17 = lean_array_push(x_16, x_1); +lean_ctor_set(x_13, 5, x_17); +x_18 = lean_st_ref_set(x_2, x_13, x_14); +x_19 = lean_ctor_get(x_18, 1); +lean_inc(x_19); +lean_dec(x_18); +x_20 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addNewArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_19); +x_21 = lean_ctor_get(x_20, 1); +lean_inc(x_21); +lean_dec(x_20); +x_22 = l_Lean_Elab_Term_ElabAppArgs_main(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_21); +return x_22; +} +else +{ +uint8_t x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t 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; +x_23 = lean_ctor_get_uint8(x_13, sizeof(void*)*8); +x_24 = lean_ctor_get(x_13, 0); +x_25 = lean_ctor_get(x_13, 1); +x_26 = lean_ctor_get(x_13, 2); +x_27 = lean_ctor_get(x_13, 3); +x_28 = lean_ctor_get_uint8(x_13, sizeof(void*)*8 + 1); +x_29 = lean_ctor_get(x_13, 4); +x_30 = lean_ctor_get(x_13, 5); +x_31 = lean_ctor_get(x_13, 6); +x_32 = lean_ctor_get(x_13, 7); +x_33 = lean_ctor_get_uint8(x_13, sizeof(void*)*8 + 2); +lean_inc(x_32); +lean_inc(x_31); +lean_inc(x_30); +lean_inc(x_29); +lean_inc(x_27); +lean_inc(x_26); +lean_inc(x_25); +lean_inc(x_24); +lean_dec(x_13); +lean_inc(x_1); +x_34 = lean_array_push(x_30, x_1); +x_35 = lean_alloc_ctor(0, 8, 3); +lean_ctor_set(x_35, 0, x_24); +lean_ctor_set(x_35, 1, x_25); +lean_ctor_set(x_35, 2, x_26); +lean_ctor_set(x_35, 3, x_27); +lean_ctor_set(x_35, 4, x_29); +lean_ctor_set(x_35, 5, x_34); +lean_ctor_set(x_35, 6, x_31); +lean_ctor_set(x_35, 7, x_32); +lean_ctor_set_uint8(x_35, sizeof(void*)*8, x_23); +lean_ctor_set_uint8(x_35, sizeof(void*)*8 + 1, x_28); +lean_ctor_set_uint8(x_35, sizeof(void*)*8 + 2, x_33); +x_36 = lean_st_ref_set(x_2, x_35, x_14); +x_37 = lean_ctor_get(x_36, 1); +lean_inc(x_37); +lean_dec(x_36); +x_38 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addNewArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_37); +x_39 = lean_ctor_get(x_38, 1); +lean_inc(x_39); +lean_dec(x_38); +x_40 = l_Lean_Elab_Term_ElabAppArgs_main(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_39); +return x_40; +} +} +} +static lean_object* _init_l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_ElabAppArgs_main), 8, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___lambda__1), 9, 0); return x_1; } } +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg(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; uint8_t x_15; lean_object* x_16; lean_object* x_17; +x_9 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getBindingName(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec(x_9); +x_12 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getArgExpectedType(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_11); +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_12, 1); +lean_inc(x_14); +lean_dec(x_12); +x_15 = 0; +x_16 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___closed__1; +x_17 = l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___spec__1___rarg(x_10, x_15, x_13, x_16, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_14); +return x_17; +} +} lean_object* l_Lean_Elab_Term_ElabAppArgs_main(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: { @@ -12200,37 +10997,40 @@ x_40 = lean_box(x_31); switch (lean_obj_tag(x_40)) { case 1: { -lean_object* x_41; lean_object* x_42; -x_41 = l_Lean_Elab_Term_ElabAppArgs_main___closed__1; -x_42 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processImplicitArg(x_41, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_36); +lean_object* x_41; +x_41 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processImplicitArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_36); +return x_41; +} +case 2: +{ +lean_object* x_42; +x_42 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processStrictImplicitArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_36); return x_42; } case 3: { -lean_object* x_43; lean_object* x_44; -x_43 = l_Lean_Elab_Term_ElabAppArgs_main___closed__1; -x_44 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processInstImplicitArg(x_43, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_36); -return x_44; +lean_object* x_43; +x_43 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processInstImplicitArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_36); +return x_43; } default: { -lean_object* x_45; lean_object* x_46; +lean_object* x_44; lean_dec(x_40); -x_45 = l_Lean_Elab_Term_ElabAppArgs_main___closed__1; -x_46 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg(x_45, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_36); -return x_46; +x_44 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_36); +return x_44; } } } else { -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_39, 0); -lean_inc(x_47); +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_39, 0); +lean_inc(x_45); lean_dec(x_39); -x_48 = lean_ctor_get(x_47, 2); -lean_inc(x_48); -lean_dec(x_47); +x_46 = lean_ctor_get(x_45, 2); +lean_inc(x_46); +lean_dec(x_45); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); @@ -12238,38 +11038,38 @@ lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); lean_inc(x_1); -lean_inc(x_48); -x_49 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType(x_48, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_36); -if (lean_obj_tag(x_49) == 0) +lean_inc(x_46); +x_47 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType(x_46, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_36); +if (lean_obj_tag(x_47) == 0) { -lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_48 = lean_ctor_get(x_47, 1); +lean_inc(x_48); +lean_dec(x_47); +x_49 = l_Lean_Elab_Term_ElabAppArgs_eraseNamedArg(x_30, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_48); +lean_dec(x_30); x_50 = lean_ctor_get(x_49, 1); lean_inc(x_50); lean_dec(x_49); -x_51 = l_Lean_Elab_Term_ElabAppArgs_eraseNamedArg(x_30, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_50); -lean_dec(x_30); -x_52 = lean_ctor_get(x_51, 1); -lean_inc(x_52); -lean_dec(x_51); 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_53 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_elabAndAddNewArg(x_48, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_52); -if (lean_obj_tag(x_53) == 0) +x_51 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_elabAndAddNewArg(x_46, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_50); +if (lean_obj_tag(x_51) == 0) { -lean_object* x_54; -x_54 = lean_ctor_get(x_53, 1); -lean_inc(x_54); -lean_dec(x_53); -x_8 = x_54; +lean_object* x_52; +x_52 = lean_ctor_get(x_51, 1); +lean_inc(x_52); +lean_dec(x_51); +x_8 = x_52; goto _start; } else { -uint8_t x_56; +uint8_t x_54; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -12277,30 +11077,30 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_56 = !lean_is_exclusive(x_53); -if (x_56 == 0) +x_54 = !lean_is_exclusive(x_51); +if (x_54 == 0) { -return x_53; +return x_51; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_53, 0); -x_58 = lean_ctor_get(x_53, 1); -lean_inc(x_58); -lean_inc(x_57); -lean_dec(x_53); -x_59 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_59, 0, x_57); -lean_ctor_set(x_59, 1, x_58); -return x_59; +lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_55 = lean_ctor_get(x_51, 0); +x_56 = lean_ctor_get(x_51, 1); +lean_inc(x_56); +lean_inc(x_55); +lean_dec(x_51); +x_57 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_57, 0, x_55); +lean_ctor_set(x_57, 1, x_56); +return x_57; } } } else { -uint8_t x_60; -lean_dec(x_48); +uint8_t x_58; +lean_dec(x_46); lean_dec(x_30); lean_dec(x_7); lean_dec(x_6); @@ -12309,23 +11109,23 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_60 = !lean_is_exclusive(x_49); -if (x_60 == 0) +x_58 = !lean_is_exclusive(x_47); +if (x_58 == 0) { -return x_49; +return x_47; } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_61 = lean_ctor_get(x_49, 0); -x_62 = lean_ctor_get(x_49, 1); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_49); -x_63 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_63, 0, x_61); -lean_ctor_set(x_63, 1, x_62); -return x_63; +lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_59 = lean_ctor_get(x_47, 0); +x_60 = lean_ctor_get(x_47, 1); +lean_inc(x_60); +lean_inc(x_59); +lean_dec(x_47); +x_61 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_61, 0, x_59); +lean_ctor_set(x_61, 1, x_60); +return x_61; } } } @@ -12333,7 +11133,7 @@ return x_63; } else { -uint8_t x_64; +uint8_t x_62; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -12341,27 +11141,1286 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_64 = !lean_is_exclusive(x_13); -if (x_64 == 0) +x_62 = !lean_is_exclusive(x_13); +if (x_62 == 0) { return x_13; } else { -lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_65 = lean_ctor_get(x_13, 0); -x_66 = lean_ctor_get(x_13, 1); +lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_63 = lean_ctor_get(x_13, 0); +x_64 = lean_ctor_get(x_13, 1); +lean_inc(x_64); +lean_inc(x_63); +lean_dec(x_13); +x_65 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_65, 0, x_63); +lean_ctor_set(x_65, 1, x_64); +return x_65; +} +} +} +} +lean_object* l_Lean_throwError___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_10 = lean_ctor_get(x_7, 3); +x_11 = l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(x_1, x_5, x_6, x_7, x_8, x_9); +x_12 = !lean_is_exclusive(x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_ctor_get(x_11, 0); +lean_inc(x_10); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_10); +lean_ctor_set(x_14, 1, x_13); +lean_ctor_set_tag(x_11, 1); +lean_ctor_set(x_11, 0, x_14); +return x_11; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_ctor_get(x_11, 0); +x_16 = lean_ctor_get(x_11, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_11); +lean_inc(x_10); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_10); +lean_ctor_set(x_17, 1, x_15); +x_18 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_18, 0, x_17); +lean_ctor_set(x_18, 1, x_16); +return x_18; +} +} +} +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__2___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_4 = lean_ctor_get(x_1, 3); +x_5 = l_Lean_SourceInfo_fromRef(x_4); +x_6 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_6, 0, x_5); +lean_ctor_set(x_6, 1, x_3); +return x_6; +} +} +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = lean_alloc_closure((void*)(l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__2___rarg___boxed), 3, 0); +return x_6; +} +} +static lean_object* _init_l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("invalid autoParam, argument must be a constant"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("by"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Tactic"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_shouldPropagateExpectedTypeFor___closed__4; +x_2 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__4; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("tacticSeq"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__5; +x_2 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__6; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(1u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg(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; +x_9 = lean_st_ref_get(x_7, x_8); +x_10 = lean_ctor_get(x_9, 1); +lean_inc(x_10); +lean_dec(x_9); +x_11 = lean_st_ref_get(x_1, x_10); +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_ctor_get(x_12, 2); +lean_inc(x_13); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_14 = lean_ctor_get(x_11, 1); +lean_inc(x_14); +lean_dec(x_11); +x_15 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getArgExpectedType(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_14); +x_16 = lean_ctor_get_uint8(x_12, sizeof(void*)*8); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_ctor_get(x_15, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_15, 1); +lean_inc(x_18); +lean_dec(x_15); +x_19 = l_Lean_Expr_getOptParamDefault_x3f(x_17); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; +x_20 = l_Lean_Expr_getAutoParamTactic_x3f(x_17); +lean_dec(x_17); +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; uint8_t x_22; +x_21 = lean_ctor_get(x_12, 3); +lean_inc(x_21); +lean_dec(x_12); +x_22 = l_List_isEmpty___rarg(x_21); +lean_dec(x_21); +if (x_22 == 0) +{ +lean_object* x_23; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_23 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_18); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; uint8_t x_25; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_unbox(x_24); +lean_dec(x_24); +if (x_25 == 0) +{ +lean_object* x_26; lean_object* x_27; +x_26 = lean_ctor_get(x_23, 1); +lean_inc(x_26); +lean_dec(x_23); +x_27 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_26); +return x_27; +} +else +{ +lean_object* x_28; lean_object* x_29; +x_28 = lean_ctor_get(x_23, 1); +lean_inc(x_28); +lean_dec(x_23); +x_29 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addImplicitArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_28); +return x_29; +} +} +else +{ +uint8_t x_30; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_30 = !lean_is_exclusive(x_23); +if (x_30 == 0) +{ +return x_23; +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_23, 0); +x_32 = lean_ctor_get(x_23, 1); +lean_inc(x_32); +lean_inc(x_31); +lean_dec(x_23); +x_33 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +return x_33; +} +} +} +else +{ +lean_object* x_34; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_34 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_fTypeHasOptAutoParams(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_18); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; uint8_t x_36; +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_unbox(x_35); +lean_dec(x_35); +if (x_36 == 0) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_42; +x_37 = lean_ctor_get(x_34, 1); +lean_inc(x_37); +lean_dec(x_34); +x_38 = lean_st_ref_get(x_7, x_37); +x_39 = lean_ctor_get(x_38, 1); +lean_inc(x_39); +lean_dec(x_38); +x_40 = lean_st_ref_get(x_1, x_39); +x_41 = lean_ctor_get(x_40, 0); +lean_inc(x_41); +x_42 = lean_ctor_get_uint8(x_41, sizeof(void*)*8 + 1); +lean_dec(x_41); +if (x_42 == 0) +{ +lean_object* x_43; lean_object* x_44; +x_43 = lean_ctor_get(x_40, 1); +lean_inc(x_43); +lean_dec(x_40); +x_44 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_finalize(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_43); +return x_44; +} +else +{ +lean_object* x_45; lean_object* x_46; +x_45 = lean_ctor_get(x_40, 1); +lean_inc(x_45); +lean_dec(x_40); +x_46 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addImplicitArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_45); +return x_46; +} +} +else +{ +lean_object* x_47; lean_object* x_48; +x_47 = lean_ctor_get(x_34, 1); +lean_inc(x_47); +lean_dec(x_34); +x_48 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_47); +return x_48; +} +} +else +{ +uint8_t x_49; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_49 = !lean_is_exclusive(x_34); +if (x_49 == 0) +{ +return x_34; +} +else +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_50 = lean_ctor_get(x_34, 0); +x_51 = lean_ctor_get(x_34, 1); +lean_inc(x_51); +lean_inc(x_50); +lean_dec(x_34); +x_52 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_52, 0, x_50); +lean_ctor_set(x_52, 1, x_51); +return x_52; +} +} +} +} +else +{ +lean_object* x_53; +lean_dec(x_12); +x_53 = lean_ctor_get(x_20, 0); +lean_inc(x_53); +lean_dec(x_20); +if (lean_obj_tag(x_53) == 4) +{ +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; +x_54 = lean_ctor_get(x_53, 0); +lean_inc(x_54); +lean_dec(x_53); +x_55 = lean_st_ref_get(x_7, x_18); +x_56 = lean_ctor_get(x_55, 0); +lean_inc(x_56); +x_57 = lean_ctor_get(x_55, 1); +lean_inc(x_57); +lean_dec(x_55); +x_58 = lean_ctor_get(x_56, 0); +lean_inc(x_58); +lean_dec(x_56); +x_59 = lean_ctor_get(x_6, 0); +lean_inc(x_59); +x_60 = l___private_Lean_Elab_Util_0__Lean_Elab_evalSyntaxConstantUnsafe(x_58, x_59, x_54); +lean_dec(x_59); +if (lean_obj_tag(x_60) == 0) +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_61 = lean_ctor_get(x_60, 0); +lean_inc(x_61); +lean_dec(x_60); +x_62 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_62, 0, x_61); +x_63 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_63, 0, x_62); +x_64 = l_Lean_throwError___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__1(x_63, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_57); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_64; +} +else +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; +x_65 = lean_ctor_get(x_60, 0); +lean_inc(x_65); +lean_dec(x_60); +x_66 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__2___rarg(x_6, x_7, x_57); +x_67 = lean_ctor_get(x_66, 0); +lean_inc(x_67); +x_68 = lean_ctor_get(x_66, 1); +lean_inc(x_68); +lean_dec(x_66); +x_69 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_68); +x_70 = lean_ctor_get(x_69, 1); +lean_inc(x_70); +lean_dec(x_69); +x_71 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_70); +x_72 = lean_ctor_get(x_71, 1); +lean_inc(x_72); +lean_dec(x_71); +x_73 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__3; +x_74 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_74, 0, x_67); +lean_ctor_set(x_74, 1, x_73); +x_75 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__8; +x_76 = lean_array_push(x_75, x_65); +x_77 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__7; +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___private_Lean_Elab_App_0__Lean_Elab_Term_tryCoeFun_x3f___closed__3; +x_80 = lean_array_push(x_79, x_74); +x_81 = lean_array_push(x_80, x_78); +x_82 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_shouldPropagateExpectedTypeFor___closed__12; +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 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_84, 0, x_83); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +lean_inc(x_84); +x_85 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType(x_84, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_72); +if (lean_obj_tag(x_85) == 0) +{ +lean_object* x_86; lean_object* x_87; +x_86 = lean_ctor_get(x_85, 1); +lean_inc(x_86); +lean_dec(x_85); +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_87 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_elabAndAddNewArg(x_84, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_86); +if (lean_obj_tag(x_87) == 0) +{ +lean_object* x_88; lean_object* x_89; +x_88 = lean_ctor_get(x_87, 1); +lean_inc(x_88); +lean_dec(x_87); +x_89 = l_Lean_Elab_Term_ElabAppArgs_main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_88); +return x_89; +} +else +{ +uint8_t x_90; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_90 = !lean_is_exclusive(x_87); +if (x_90 == 0) +{ +return x_87; +} +else +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_91 = lean_ctor_get(x_87, 0); +x_92 = lean_ctor_get(x_87, 1); +lean_inc(x_92); +lean_inc(x_91); +lean_dec(x_87); +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; +} +} +} +else +{ +uint8_t x_94; +lean_dec(x_84); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_94 = !lean_is_exclusive(x_85); +if (x_94 == 0) +{ +return x_85; +} +else +{ +lean_object* x_95; lean_object* x_96; lean_object* x_97; +x_95 = lean_ctor_get(x_85, 0); +x_96 = lean_ctor_get(x_85, 1); +lean_inc(x_96); +lean_inc(x_95); +lean_dec(x_85); +x_97 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_97, 0, x_95); +lean_ctor_set(x_97, 1, x_96); +return x_97; +} +} +} +} +else +{ +lean_object* x_98; lean_object* x_99; +lean_dec(x_53); +x_98 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__2; +x_99 = l_Lean_throwError___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__1(x_98, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_18); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_99; +} +} +} +else +{ +lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; +lean_dec(x_17); +lean_dec(x_12); +x_100 = lean_ctor_get(x_19, 0); +lean_inc(x_100); +lean_dec(x_19); +x_101 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addNewArg(x_100, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_18); +x_102 = lean_ctor_get(x_101, 1); +lean_inc(x_102); +lean_dec(x_101); +x_103 = l_Lean_Elab_Term_ElabAppArgs_main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_102); +return x_103; +} +} +else +{ +lean_object* x_104; lean_object* x_105; uint8_t x_106; +x_104 = lean_ctor_get(x_15, 1); +lean_inc(x_104); +lean_dec(x_15); +x_105 = lean_ctor_get(x_12, 3); +lean_inc(x_105); +lean_dec(x_12); +x_106 = l_List_isEmpty___rarg(x_105); +lean_dec(x_105); +if (x_106 == 0) +{ +lean_object* x_107; +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_107 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_104); +if (lean_obj_tag(x_107) == 0) +{ +lean_object* x_108; uint8_t x_109; +x_108 = lean_ctor_get(x_107, 0); +lean_inc(x_108); +x_109 = lean_unbox(x_108); +lean_dec(x_108); +if (x_109 == 0) +{ +lean_object* x_110; lean_object* x_111; +x_110 = lean_ctor_get(x_107, 1); +lean_inc(x_110); +lean_dec(x_107); +x_111 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_110); +return x_111; +} +else +{ +lean_object* x_112; lean_object* x_113; +x_112 = lean_ctor_get(x_107, 1); +lean_inc(x_112); +lean_dec(x_107); +x_113 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addImplicitArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_112); +return x_113; +} +} +else +{ +uint8_t x_114; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_114 = !lean_is_exclusive(x_107); +if (x_114 == 0) +{ +return x_107; +} +else +{ +lean_object* x_115; lean_object* x_116; lean_object* x_117; +x_115 = lean_ctor_get(x_107, 0); +x_116 = lean_ctor_get(x_107, 1); +lean_inc(x_116); +lean_inc(x_115); +lean_dec(x_107); +x_117 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_117, 0, x_115); +lean_ctor_set(x_117, 1, x_116); +return x_117; +} +} +} +else +{ +lean_object* x_118; +x_118 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_finalize(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_104); +return x_118; +} +} +} +else +{ +lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; +lean_dec(x_12); +x_119 = lean_ctor_get(x_11, 1); +lean_inc(x_119); +lean_dec(x_11); +x_120 = lean_ctor_get(x_13, 0); +lean_inc(x_120); +x_121 = lean_ctor_get(x_13, 1); +lean_inc(x_121); +lean_dec(x_13); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +lean_inc(x_120); +x_122 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType(x_120, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_119); +if (lean_obj_tag(x_122) == 0) +{ +lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; uint8_t x_129; +x_123 = lean_ctor_get(x_122, 1); +lean_inc(x_123); +lean_dec(x_122); +x_124 = lean_st_ref_get(x_7, x_123); +x_125 = lean_ctor_get(x_124, 1); +lean_inc(x_125); +lean_dec(x_124); +x_126 = lean_st_ref_take(x_1, x_125); +x_127 = lean_ctor_get(x_126, 0); +lean_inc(x_127); +x_128 = lean_ctor_get(x_126, 1); +lean_inc(x_128); +lean_dec(x_126); +x_129 = !lean_is_exclusive(x_127); +if (x_129 == 0) +{ +lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; +x_130 = lean_ctor_get(x_127, 2); +lean_dec(x_130); +lean_ctor_set(x_127, 2, x_121); +x_131 = lean_st_ref_set(x_1, x_127, x_128); +x_132 = lean_ctor_get(x_131, 1); +lean_inc(x_132); +lean_dec(x_131); +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_133 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_elabAndAddNewArg(x_120, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_132); +if (lean_obj_tag(x_133) == 0) +{ +lean_object* x_134; lean_object* x_135; +x_134 = lean_ctor_get(x_133, 1); +lean_inc(x_134); +lean_dec(x_133); +x_135 = l_Lean_Elab_Term_ElabAppArgs_main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_134); +return x_135; +} +else +{ +uint8_t x_136; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_136 = !lean_is_exclusive(x_133); +if (x_136 == 0) +{ +return x_133; +} +else +{ +lean_object* x_137; lean_object* x_138; lean_object* x_139; +x_137 = lean_ctor_get(x_133, 0); +x_138 = lean_ctor_get(x_133, 1); +lean_inc(x_138); +lean_inc(x_137); +lean_dec(x_133); +x_139 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_139, 0, x_137); +lean_ctor_set(x_139, 1, x_138); +return x_139; +} +} +} +else +{ +uint8_t x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; uint8_t x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; +x_140 = lean_ctor_get_uint8(x_127, sizeof(void*)*8); +x_141 = lean_ctor_get(x_127, 0); +x_142 = lean_ctor_get(x_127, 1); +x_143 = lean_ctor_get(x_127, 3); +x_144 = lean_ctor_get_uint8(x_127, sizeof(void*)*8 + 1); +x_145 = lean_ctor_get(x_127, 4); +x_146 = lean_ctor_get(x_127, 5); +x_147 = lean_ctor_get(x_127, 6); +x_148 = lean_ctor_get(x_127, 7); +x_149 = lean_ctor_get_uint8(x_127, sizeof(void*)*8 + 2); +lean_inc(x_148); +lean_inc(x_147); +lean_inc(x_146); +lean_inc(x_145); +lean_inc(x_143); +lean_inc(x_142); +lean_inc(x_141); +lean_dec(x_127); +x_150 = lean_alloc_ctor(0, 8, 3); +lean_ctor_set(x_150, 0, x_141); +lean_ctor_set(x_150, 1, x_142); +lean_ctor_set(x_150, 2, x_121); +lean_ctor_set(x_150, 3, x_143); +lean_ctor_set(x_150, 4, x_145); +lean_ctor_set(x_150, 5, x_146); +lean_ctor_set(x_150, 6, x_147); +lean_ctor_set(x_150, 7, x_148); +lean_ctor_set_uint8(x_150, sizeof(void*)*8, x_140); +lean_ctor_set_uint8(x_150, sizeof(void*)*8 + 1, x_144); +lean_ctor_set_uint8(x_150, sizeof(void*)*8 + 2, x_149); +x_151 = lean_st_ref_set(x_1, x_150, x_128); +x_152 = lean_ctor_get(x_151, 1); +lean_inc(x_152); +lean_dec(x_151); +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_153 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_elabAndAddNewArg(x_120, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_152); +if (lean_obj_tag(x_153) == 0) +{ +lean_object* x_154; lean_object* x_155; +x_154 = lean_ctor_get(x_153, 1); +lean_inc(x_154); +lean_dec(x_153); +x_155 = l_Lean_Elab_Term_ElabAppArgs_main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_154); +return x_155; +} +else +{ +lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_156 = lean_ctor_get(x_153, 0); +lean_inc(x_156); +x_157 = lean_ctor_get(x_153, 1); +lean_inc(x_157); +if (lean_is_exclusive(x_153)) { + lean_ctor_release(x_153, 0); + lean_ctor_release(x_153, 1); + x_158 = x_153; +} else { + lean_dec_ref(x_153); + x_158 = lean_box(0); +} +if (lean_is_scalar(x_158)) { + x_159 = lean_alloc_ctor(1, 2, 0); +} else { + x_159 = x_158; +} +lean_ctor_set(x_159, 0, x_156); +lean_ctor_set(x_159, 1, x_157); +return x_159; +} +} +} +else +{ +uint8_t x_160; +lean_dec(x_121); +lean_dec(x_120); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_160 = !lean_is_exclusive(x_122); +if (x_160 == 0) +{ +return x_122; +} +else +{ +lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_161 = lean_ctor_get(x_122, 0); +x_162 = lean_ctor_get(x_122, 1); +lean_inc(x_162); +lean_inc(x_161); +lean_dec(x_122); +x_163 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_163, 0, x_161); +lean_ctor_set(x_163, 1, x_162); +return x_163; +} +} +} +} +} +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addImplicitArg(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; uint8_t x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; +x_9 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getArgExpectedType(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec(x_9); +x_12 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_12, 0, x_10); +x_13 = 0; +x_14 = lean_box(0); +lean_inc(x_4); +x_15 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_12, x_13, x_14, x_4, x_5, x_6, x_7, x_11); +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); +lean_inc(x_17); +lean_dec(x_15); +x_18 = lean_st_ref_get(x_7, x_17); +x_19 = lean_ctor_get(x_18, 1); +lean_inc(x_19); +lean_dec(x_18); +x_20 = lean_st_ref_take(x_1, x_19); +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_20, 1); +lean_inc(x_22); +lean_dec(x_20); +x_23 = !lean_is_exclusive(x_21); +if (x_23 == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_24 = lean_ctor_get(x_21, 6); +x_25 = l_Lean_Expr_mvarId_x21(x_16); +x_26 = lean_array_push(x_24, x_25); +lean_ctor_set(x_21, 6, x_26); +x_27 = lean_st_ref_set(x_1, x_21, x_22); +x_28 = lean_ctor_get(x_27, 1); +lean_inc(x_28); +lean_dec(x_27); +x_29 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addNewArg(x_16, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_28); +x_30 = lean_ctor_get(x_29, 1); +lean_inc(x_30); +lean_dec(x_29); +x_31 = l_Lean_Elab_Term_ElabAppArgs_main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_30); +return x_31; +} +else +{ +uint8_t x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_32 = lean_ctor_get_uint8(x_21, sizeof(void*)*8); +x_33 = lean_ctor_get(x_21, 0); +x_34 = lean_ctor_get(x_21, 1); +x_35 = lean_ctor_get(x_21, 2); +x_36 = lean_ctor_get(x_21, 3); +x_37 = lean_ctor_get_uint8(x_21, sizeof(void*)*8 + 1); +x_38 = lean_ctor_get(x_21, 4); +x_39 = lean_ctor_get(x_21, 5); +x_40 = lean_ctor_get(x_21, 6); +x_41 = lean_ctor_get(x_21, 7); +x_42 = lean_ctor_get_uint8(x_21, sizeof(void*)*8 + 2); +lean_inc(x_41); +lean_inc(x_40); +lean_inc(x_39); +lean_inc(x_38); +lean_inc(x_36); +lean_inc(x_35); +lean_inc(x_34); +lean_inc(x_33); +lean_dec(x_21); +x_43 = l_Lean_Expr_mvarId_x21(x_16); +x_44 = lean_array_push(x_40, x_43); +x_45 = lean_alloc_ctor(0, 8, 3); +lean_ctor_set(x_45, 0, x_33); +lean_ctor_set(x_45, 1, x_34); +lean_ctor_set(x_45, 2, x_35); +lean_ctor_set(x_45, 3, x_36); +lean_ctor_set(x_45, 4, x_38); +lean_ctor_set(x_45, 5, x_39); +lean_ctor_set(x_45, 6, x_44); +lean_ctor_set(x_45, 7, x_41); +lean_ctor_set_uint8(x_45, sizeof(void*)*8, x_32); +lean_ctor_set_uint8(x_45, sizeof(void*)*8 + 1, x_37); +lean_ctor_set_uint8(x_45, sizeof(void*)*8 + 2, x_42); +x_46 = lean_st_ref_set(x_1, x_45, x_22); +x_47 = lean_ctor_get(x_46, 1); +lean_inc(x_47); +lean_dec(x_46); +x_48 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addNewArg(x_16, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_47); +x_49 = lean_ctor_get(x_48, 1); +lean_inc(x_49); +lean_dec(x_48); +x_50 = l_Lean_Elab_Term_ElabAppArgs_main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_49); +return x_50; +} +} +} +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processStrictImplicitArg(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; uint8_t x_13; +x_9 = lean_st_ref_get(x_7, x_8); +x_10 = lean_ctor_get(x_9, 1); +lean_inc(x_10); +lean_dec(x_9); +x_11 = lean_st_ref_get(x_1, x_10); +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_ctor_get_uint8(x_12, sizeof(void*)*8); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_14 = lean_ctor_get(x_11, 1); +lean_inc(x_14); +lean_dec(x_11); +x_15 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_hasArgsToProcess(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_14); +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_unbox(x_16); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; +x_18 = lean_ctor_get(x_15, 1); +lean_inc(x_18); +lean_dec(x_15); +x_19 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_finalize(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_18); +return x_19; +} +else +{ +lean_object* x_20; lean_object* x_21; +x_20 = lean_ctor_get(x_15, 1); +lean_inc(x_20); +lean_dec(x_15); +x_21 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addImplicitArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_20); +return x_21; +} +} +else +{ +lean_object* x_22; lean_object* x_23; +x_22 = lean_ctor_get(x_11, 1); +lean_inc(x_22); +lean_dec(x_11); +x_23 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_22); +return x_23; +} +} +} +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processInstImplicitArg(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; uint8_t x_13; +x_9 = lean_st_ref_get(x_7, x_8); +x_10 = lean_ctor_get(x_9, 1); +lean_inc(x_10); +lean_dec(x_9); +x_11 = lean_st_ref_get(x_1, x_10); +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_ctor_get_uint8(x_12, sizeof(void*)*8); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t 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; +x_14 = lean_ctor_get(x_11, 1); +lean_inc(x_14); +lean_dec(x_11); +x_15 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getArgExpectedType(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_14); +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); +lean_inc(x_17); +lean_dec(x_15); +x_18 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_18, 0, x_16); +x_19 = 1; +x_20 = lean_box(0); +lean_inc(x_4); +x_21 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_18, x_19, x_20, x_4, x_5, x_6, x_7, x_17); +x_22 = lean_ctor_get(x_21, 0); +lean_inc(x_22); +x_23 = lean_ctor_get(x_21, 1); +lean_inc(x_23); +lean_dec(x_21); +x_24 = l_Lean_Expr_mvarId_x21(x_22); +x_25 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addInstMVar(x_24, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_23); +x_26 = lean_ctor_get(x_25, 1); +lean_inc(x_26); +lean_dec(x_25); +x_27 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addNewArg(x_22, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_26); +x_28 = lean_ctor_get(x_27, 1); +lean_inc(x_28); +lean_dec(x_27); +x_29 = l_Lean_Elab_Term_ElabAppArgs_main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_28); +return x_29; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; +x_30 = lean_ctor_get(x_11, 1); +lean_inc(x_30); +lean_dec(x_11); +x_31 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_isNextArgHole(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_30); +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +x_33 = lean_unbox(x_32); +lean_dec(x_32); +if (x_33 == 0) +{ +lean_object* x_34; lean_object* x_35; +x_34 = lean_ctor_get(x_31, 1); +lean_inc(x_34); +lean_dec(x_31); +x_35 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_34); +return x_35; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; uint8_t 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; uint8_t x_51; +x_36 = lean_ctor_get(x_31, 1); +lean_inc(x_36); +lean_dec(x_31); +x_37 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getArgExpectedType(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_36); +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +x_39 = lean_ctor_get(x_37, 1); +lean_inc(x_39); +lean_dec(x_37); +x_40 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_40, 0, x_38); +x_41 = 1; +x_42 = lean_box(0); +lean_inc(x_4); +x_43 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_40, x_41, x_42, x_4, x_5, x_6, x_7, x_39); +x_44 = lean_ctor_get(x_43, 0); +lean_inc(x_44); +x_45 = lean_ctor_get(x_43, 1); +lean_inc(x_45); +lean_dec(x_43); +x_46 = lean_st_ref_get(x_7, x_45); +x_47 = lean_ctor_get(x_46, 1); +lean_inc(x_47); +lean_dec(x_46); +x_48 = lean_st_ref_take(x_1, x_47); +x_49 = lean_ctor_get(x_48, 0); +lean_inc(x_49); +x_50 = lean_ctor_get(x_48, 1); +lean_inc(x_50); +lean_dec(x_48); +x_51 = !lean_is_exclusive(x_49); +if (x_51 == 0) +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_52 = lean_ctor_get(x_49, 2); +x_53 = l_List_tail_x21___rarg(x_52); +lean_dec(x_52); +lean_ctor_set(x_49, 2, x_53); +x_54 = lean_st_ref_set(x_1, x_49, x_50); +x_55 = lean_ctor_get(x_54, 1); +lean_inc(x_55); +lean_dec(x_54); +x_56 = l_Lean_Expr_mvarId_x21(x_44); +x_57 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addInstMVar(x_56, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_55); +x_58 = lean_ctor_get(x_57, 1); +lean_inc(x_58); +lean_dec(x_57); +x_59 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addNewArg(x_44, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_58); +x_60 = lean_ctor_get(x_59, 1); +lean_inc(x_60); +lean_dec(x_59); +x_61 = l_Lean_Elab_Term_ElabAppArgs_main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_60); +return x_61; +} +else +{ +uint8_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; uint8_t x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_62 = lean_ctor_get_uint8(x_49, sizeof(void*)*8); +x_63 = lean_ctor_get(x_49, 0); +x_64 = lean_ctor_get(x_49, 1); +x_65 = lean_ctor_get(x_49, 2); +x_66 = lean_ctor_get(x_49, 3); +x_67 = lean_ctor_get_uint8(x_49, sizeof(void*)*8 + 1); +x_68 = lean_ctor_get(x_49, 4); +x_69 = lean_ctor_get(x_49, 5); +x_70 = lean_ctor_get(x_49, 6); +x_71 = lean_ctor_get(x_49, 7); +x_72 = lean_ctor_get_uint8(x_49, sizeof(void*)*8 + 2); +lean_inc(x_71); +lean_inc(x_70); +lean_inc(x_69); +lean_inc(x_68); lean_inc(x_66); lean_inc(x_65); -lean_dec(x_13); -x_67 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_67, 0, x_65); -lean_ctor_set(x_67, 1, x_66); -return x_67; +lean_inc(x_64); +lean_inc(x_63); +lean_dec(x_49); +x_73 = l_List_tail_x21___rarg(x_65); +lean_dec(x_65); +x_74 = lean_alloc_ctor(0, 8, 3); +lean_ctor_set(x_74, 0, x_63); +lean_ctor_set(x_74, 1, x_64); +lean_ctor_set(x_74, 2, x_73); +lean_ctor_set(x_74, 3, x_66); +lean_ctor_set(x_74, 4, x_68); +lean_ctor_set(x_74, 5, x_69); +lean_ctor_set(x_74, 6, x_70); +lean_ctor_set(x_74, 7, x_71); +lean_ctor_set_uint8(x_74, sizeof(void*)*8, x_62); +lean_ctor_set_uint8(x_74, sizeof(void*)*8 + 1, x_67); +lean_ctor_set_uint8(x_74, sizeof(void*)*8 + 2, x_72); +x_75 = lean_st_ref_set(x_1, x_74, x_50); +x_76 = lean_ctor_get(x_75, 1); +lean_inc(x_76); +lean_dec(x_75); +x_77 = l_Lean_Expr_mvarId_x21(x_44); +x_78 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addInstMVar(x_77, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_76); +x_79 = lean_ctor_get(x_78, 1); +lean_inc(x_79); +lean_dec(x_78); +x_80 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addNewArg(x_44, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_79); +x_81 = lean_ctor_get(x_80, 1); +lean_inc(x_81); +lean_dec(x_80); +x_82 = l_Lean_Elab_Term_ElabAppArgs_main(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_81); +return x_82; } } } } +} +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processImplicitArg(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; uint8_t x_13; +x_9 = lean_st_ref_get(x_7, x_8); +x_10 = lean_ctor_get(x_9, 1); +lean_inc(x_10); +lean_dec(x_9); +x_11 = lean_st_ref_get(x_1, x_10); +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_ctor_get_uint8(x_12, sizeof(void*)*8); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_11, 1); +lean_inc(x_14); +lean_dec(x_11); +x_15 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addImplicitArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_14); +return x_15; +} +else +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_11, 1); +lean_inc(x_16); +lean_dec(x_11); +x_17 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_16); +return x_17; +} +} +} +lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; lean_object* x_14; +x_13 = lean_unbox(x_2); +lean_dec(x_2); +x_14 = l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___spec__1___rarg(x_1, x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_14; +} +} +lean_object* l_Lean_throwError___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_throwError___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_10; +} +} +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__2___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__2___rarg(x_1, x_2, x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_4; +} +} +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___spec__2(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_6; +} +} lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_propagateExpectedTypeFor_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -15244,403 +15303,301 @@ x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_App_0__Lean_Elab_Term_con return x_2; } } -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_consumeImplicits(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_consumeImplicits(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_11; -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -x_11 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore___spec__2(x_3, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_11) == 0) -{ lean_object* x_12; -x_12 = lean_ctor_get(x_11, 0); -lean_inc(x_12); -if (lean_obj_tag(x_12) == 7) -{ -uint8_t x_13; -x_13 = !lean_is_exclusive(x_11); -if (x_13 == 0) -{ -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint64_t x_18; uint8_t x_19; uint8_t x_20; -x_14 = lean_ctor_get(x_11, 1); -x_15 = lean_ctor_get(x_11, 0); -lean_dec(x_15); -x_16 = lean_ctor_get(x_12, 1); -lean_inc(x_16); -x_17 = lean_ctor_get(x_12, 2); -lean_inc(x_17); -x_18 = lean_ctor_get_uint64(x_12, sizeof(void*)*3); -x_19 = (uint8_t)((x_18 << 24) >> 61); -x_20 = l_Lean_BinderInfo_isImplicit(x_19); -if (x_20 == 0) -{ -uint8_t x_21; -x_21 = l_Lean_BinderInfo_isInstImplicit(x_19); -if (x_21 == 0) -{ -lean_object* x_22; -x_22 = l_Lean_Expr_getOptParamDefault_x3f(x_16); -lean_dec(x_16); -if (lean_obj_tag(x_22) == 0) -{ -lean_object* x_23; -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_4); -lean_dec(x_1); -x_23 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_23, 0, x_2); -lean_ctor_set(x_23, 1, x_12); -lean_ctor_set(x_11, 0, x_23); -return x_11; -} -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; -lean_free_object(x_11); -lean_dec(x_12); -x_24 = lean_ctor_get(x_22, 0); -lean_inc(x_24); -lean_dec(x_22); -lean_inc(x_24); -x_25 = l_Lean_mkApp(x_2, x_24); -x_26 = lean_expr_instantiate1(x_17, x_24); -lean_dec(x_24); -lean_dec(x_17); -x_2 = x_25; -x_3 = x_26; -x_10 = x_14; -goto _start; -} -} -else -{ -lean_object* x_28; -lean_free_object(x_11); -lean_dec(x_12); +lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_4); -x_28 = l_Lean_Elab_Term_mkInstMVar(x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_14); -if (lean_obj_tag(x_28) == 0) +x_12 = l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore___spec__2(x_3, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_12) == 0) { -lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_29 = lean_ctor_get(x_28, 0); -lean_inc(x_29); -x_30 = lean_ctor_get(x_28, 1); -lean_inc(x_30); -lean_dec(x_28); -lean_inc(x_29); -x_31 = l_Lean_mkApp(x_2, x_29); -x_32 = lean_expr_instantiate1(x_17, x_29); -lean_dec(x_29); -lean_dec(x_17); -x_2 = x_31; -x_3 = x_32; -x_10 = x_30; -goto _start; +lean_object* x_13; +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +if (lean_obj_tag(x_13) == 7) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint64_t x_18; lean_object* x_19; uint8_t x_33; lean_object* x_34; uint8_t x_54; +x_14 = lean_ctor_get(x_12, 1); +lean_inc(x_14); +if (lean_is_exclusive(x_12)) { + lean_ctor_release(x_12, 0); + lean_ctor_release(x_12, 1); + x_15 = x_12; +} else { + lean_dec_ref(x_12); + x_15 = lean_box(0); +} +x_16 = lean_ctor_get(x_13, 1); +lean_inc(x_16); +x_17 = lean_ctor_get(x_13, 2); +lean_inc(x_17); +x_18 = lean_ctor_get_uint64(x_13, sizeof(void*)*3); +x_33 = (uint8_t)((x_18 << 24) >> 61); +x_54 = l_Lean_BinderInfo_isImplicit(x_33); +if (x_54 == 0) +{ +if (x_4 == 0) +{ +lean_object* x_55; +x_55 = lean_box(0); +x_34 = x_55; +goto block_53; } else { -uint8_t x_34; -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_4); -lean_dec(x_2); -lean_dec(x_1); -x_34 = !lean_is_exclusive(x_28); -if (x_34 == 0) -{ -return x_28; -} -else -{ -lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_35 = lean_ctor_get(x_28, 0); -x_36 = lean_ctor_get(x_28, 1); -lean_inc(x_36); -lean_inc(x_35); -lean_dec(x_28); -x_37 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_37, 0, x_35); -lean_ctor_set(x_37, 1, x_36); -return x_37; -} -} -} -} -else -{ -lean_object* x_38; uint8_t 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_free_object(x_11); -lean_dec(x_12); -x_38 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_38, 0, x_16); -x_39 = 0; -x_40 = lean_box(0); -lean_inc(x_6); -x_41 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_38, x_39, x_40, x_6, x_7, x_8, x_9, x_14); -x_42 = lean_ctor_get(x_41, 0); -lean_inc(x_42); -x_43 = lean_ctor_get(x_41, 1); -lean_inc(x_43); -lean_dec(x_41); -x_44 = l_Lean_Expr_mvarId_x21(x_42); -lean_inc(x_1); -x_45 = l_Lean_Elab_Term_registerMVarErrorHoleInfo(x_44, x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_43); -x_46 = lean_ctor_get(x_45, 1); -lean_inc(x_46); -lean_dec(x_45); -lean_inc(x_42); -x_47 = l_Lean_mkApp(x_2, x_42); -x_48 = lean_expr_instantiate1(x_17, x_42); -lean_dec(x_42); -lean_dec(x_17); -x_2 = x_47; -x_3 = x_48; -x_10 = x_46; -goto _start; -} -} -else -{ -lean_object* x_50; lean_object* x_51; lean_object* x_52; uint64_t x_53; uint8_t x_54; uint8_t x_55; -x_50 = lean_ctor_get(x_11, 1); -lean_inc(x_50); -lean_dec(x_11); -x_51 = lean_ctor_get(x_12, 1); -lean_inc(x_51); -x_52 = lean_ctor_get(x_12, 2); -lean_inc(x_52); -x_53 = lean_ctor_get_uint64(x_12, sizeof(void*)*3); -x_54 = (uint8_t)((x_53 << 24) >> 61); -x_55 = l_Lean_BinderInfo_isImplicit(x_54); -if (x_55 == 0) -{ uint8_t x_56; -x_56 = l_Lean_BinderInfo_isInstImplicit(x_54); +x_56 = l_Lean_BinderInfo_isStrictImplicit(x_33); if (x_56 == 0) { lean_object* x_57; -x_57 = l_Lean_Expr_getOptParamDefault_x3f(x_51); -lean_dec(x_51); -if (lean_obj_tag(x_57) == 0) -{ -lean_object* x_58; lean_object* x_59; -lean_dec(x_52); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_4); -lean_dec(x_1); -x_58 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_58, 0, x_2); -lean_ctor_set(x_58, 1, x_12); -x_59 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_59, 0, x_58); -lean_ctor_set(x_59, 1, x_50); -return x_59; +x_57 = lean_box(0); +x_34 = x_57; +goto block_53; } else { -lean_object* x_60; lean_object* x_61; lean_object* x_62; -lean_dec(x_12); -x_60 = lean_ctor_get(x_57, 0); -lean_inc(x_60); -lean_dec(x_57); -lean_inc(x_60); -x_61 = l_Lean_mkApp(x_2, x_60); -x_62 = lean_expr_instantiate1(x_52, x_60); -lean_dec(x_60); -lean_dec(x_52); -x_2 = x_61; -x_3 = x_62; -x_10 = x_50; +lean_object* x_58; +lean_dec(x_15); +lean_dec(x_13); +x_58 = lean_box(0); +x_19 = x_58; +goto block_32; +} +} +} +else +{ +lean_object* x_59; +lean_dec(x_15); +lean_dec(x_13); +x_59 = lean_box(0); +x_19 = x_59; +goto block_32; +} +block_32: +{ +lean_object* x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; +lean_dec(x_19); +x_20 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_20, 0, x_16); +x_21 = 0; +x_22 = lean_box(0); +lean_inc(x_7); +x_23 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_20, x_21, x_22, x_7, x_8, x_9, x_10, x_14); +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +x_26 = l_Lean_Expr_mvarId_x21(x_24); +lean_inc(x_1); +x_27 = l_Lean_Elab_Term_registerMVarErrorHoleInfo(x_26, x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_25); +x_28 = lean_ctor_get(x_27, 1); +lean_inc(x_28); +lean_dec(x_27); +lean_inc(x_24); +x_29 = l_Lean_mkApp(x_2, x_24); +x_30 = lean_expr_instantiate1(x_17, x_24); +lean_dec(x_24); +lean_dec(x_17); +x_2 = x_29; +x_3 = x_30; +x_11 = x_28; +goto _start; +} +block_53: +{ +uint8_t x_35; +lean_dec(x_34); +x_35 = l_Lean_BinderInfo_isInstImplicit(x_33); +if (x_35 == 0) +{ +lean_object* x_36; +x_36 = l_Lean_Expr_getOptParamDefault_x3f(x_16); +lean_dec(x_16); +if (lean_obj_tag(x_36) == 0) +{ +lean_object* x_37; lean_object* x_38; +lean_dec(x_17); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_1); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_2); +lean_ctor_set(x_37, 1, x_13); +if (lean_is_scalar(x_15)) { + x_38 = lean_alloc_ctor(0, 2, 0); +} else { + x_38 = x_15; +} +lean_ctor_set(x_38, 0, x_37); +lean_ctor_set(x_38, 1, x_14); +return x_38; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +lean_dec(x_15); +lean_dec(x_13); +x_39 = lean_ctor_get(x_36, 0); +lean_inc(x_39); +lean_dec(x_36); +lean_inc(x_39); +x_40 = l_Lean_mkApp(x_2, x_39); +x_41 = lean_expr_instantiate1(x_17, x_39); +lean_dec(x_39); +lean_dec(x_17); +x_2 = x_40; +x_3 = x_41; +x_11 = x_14; goto _start; } } else { -lean_object* x_64; -lean_dec(x_12); +lean_object* x_43; +lean_dec(x_15); +lean_dec(x_13); +lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_4); -x_64 = l_Lean_Elab_Term_mkInstMVar(x_51, x_4, x_5, x_6, x_7, x_8, x_9, x_50); -if (lean_obj_tag(x_64) == 0) +lean_inc(x_5); +x_43 = l_Lean_Elab_Term_mkInstMVar(x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_14); +if (lean_obj_tag(x_43) == 0) { -lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; -x_65 = lean_ctor_get(x_64, 0); -lean_inc(x_65); -x_66 = lean_ctor_get(x_64, 1); -lean_inc(x_66); -lean_dec(x_64); -lean_inc(x_65); -x_67 = l_Lean_mkApp(x_2, x_65); -x_68 = lean_expr_instantiate1(x_52, x_65); -lean_dec(x_65); -lean_dec(x_52); -x_2 = x_67; -x_3 = x_68; -x_10 = x_66; +lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_44 = lean_ctor_get(x_43, 0); +lean_inc(x_44); +x_45 = lean_ctor_get(x_43, 1); +lean_inc(x_45); +lean_dec(x_43); +lean_inc(x_44); +x_46 = l_Lean_mkApp(x_2, x_44); +x_47 = lean_expr_instantiate1(x_17, x_44); +lean_dec(x_44); +lean_dec(x_17); +x_2 = x_46; +x_3 = x_47; +x_11 = x_45; goto _start; } else { -lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; -lean_dec(x_52); +uint8_t x_49; +lean_dec(x_17); +lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_4); +lean_dec(x_5); lean_dec(x_2); lean_dec(x_1); -x_70 = lean_ctor_get(x_64, 0); -lean_inc(x_70); -x_71 = lean_ctor_get(x_64, 1); -lean_inc(x_71); -if (lean_is_exclusive(x_64)) { - lean_ctor_release(x_64, 0); - lean_ctor_release(x_64, 1); - x_72 = x_64; -} else { - lean_dec_ref(x_64); - x_72 = lean_box(0); +x_49 = !lean_is_exclusive(x_43); +if (x_49 == 0) +{ +return x_43; +} +else +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_50 = lean_ctor_get(x_43, 0); +x_51 = lean_ctor_get(x_43, 1); +lean_inc(x_51); +lean_inc(x_50); +lean_dec(x_43); +x_52 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_52, 0, x_50); +lean_ctor_set(x_52, 1, x_51); +return x_52; } -if (lean_is_scalar(x_72)) { - x_73 = lean_alloc_ctor(1, 2, 0); -} else { - x_73 = x_72; } -lean_ctor_set(x_73, 0, x_70); -lean_ctor_set(x_73, 1, x_71); -return x_73; } } } else { -lean_object* x_74; uint8_t 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; +uint8_t x_60; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_1); +x_60 = !lean_is_exclusive(x_12); +if (x_60 == 0) +{ +lean_object* x_61; lean_object* x_62; +x_61 = lean_ctor_get(x_12, 0); +lean_dec(x_61); +x_62 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_62, 0, x_2); +lean_ctor_set(x_62, 1, x_13); +lean_ctor_set(x_12, 0, x_62); +return x_12; +} +else +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_63 = lean_ctor_get(x_12, 1); +lean_inc(x_63); lean_dec(x_12); -x_74 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_74, 0, x_51); -x_75 = 0; -x_76 = lean_box(0); -lean_inc(x_6); -x_77 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_74, x_75, x_76, x_6, x_7, x_8, x_9, x_50); -x_78 = lean_ctor_get(x_77, 0); -lean_inc(x_78); -x_79 = lean_ctor_get(x_77, 1); -lean_inc(x_79); -lean_dec(x_77); -x_80 = l_Lean_Expr_mvarId_x21(x_78); -lean_inc(x_1); -x_81 = l_Lean_Elab_Term_registerMVarErrorHoleInfo(x_80, x_1, x_4, x_5, x_6, x_7, x_8, x_9, x_79); -x_82 = lean_ctor_get(x_81, 1); -lean_inc(x_82); -lean_dec(x_81); -lean_inc(x_78); -x_83 = l_Lean_mkApp(x_2, x_78); -x_84 = lean_expr_instantiate1(x_52, x_78); -lean_dec(x_78); -lean_dec(x_52); -x_2 = x_83; -x_3 = x_84; -x_10 = x_82; -goto _start; +x_64 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_64, 0, x_2); +lean_ctor_set(x_64, 1, x_13); +x_65 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_65, 0, x_64); +lean_ctor_set(x_65, 1, x_63); +return x_65; } } } else { -uint8_t x_86; +uint8_t x_66; +lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_4); -lean_dec(x_1); -x_86 = !lean_is_exclusive(x_11); -if (x_86 == 0) -{ -lean_object* x_87; lean_object* x_88; -x_87 = lean_ctor_get(x_11, 0); -lean_dec(x_87); -x_88 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_88, 0, x_2); -lean_ctor_set(x_88, 1, x_12); -lean_ctor_set(x_11, 0, x_88); -return x_11; -} -else -{ -lean_object* x_89; lean_object* x_90; lean_object* x_91; -x_89 = lean_ctor_get(x_11, 1); -lean_inc(x_89); -lean_dec(x_11); -x_90 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_90, 0, x_2); -lean_ctor_set(x_90, 1, x_12); -x_91 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_91, 0, x_90); -lean_ctor_set(x_91, 1, x_89); -return x_91; -} -} -} -else -{ -uint8_t x_92; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_4); +lean_dec(x_5); lean_dec(x_2); lean_dec(x_1); -x_92 = !lean_is_exclusive(x_11); -if (x_92 == 0) +x_66 = !lean_is_exclusive(x_12); +if (x_66 == 0) { -return x_11; +return x_12; } else { -lean_object* x_93; lean_object* x_94; lean_object* x_95; -x_93 = lean_ctor_get(x_11, 0); -x_94 = lean_ctor_get(x_11, 1); -lean_inc(x_94); -lean_inc(x_93); -lean_dec(x_11); -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; +lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_67 = lean_ctor_get(x_12, 0); +x_68 = lean_ctor_get(x_12, 1); +lean_inc(x_68); +lean_inc(x_67); +lean_dec(x_12); +x_69 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_69, 0, x_67); +lean_ctor_set(x_69, 1, x_68); +return x_69; } } } } -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_consumeImplicits___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_consumeImplicits___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_11; -x_11 = l___private_Lean_Elab_App_0__Lean_Elab_Term_consumeImplicits(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_5); -return x_11; +uint8_t x_12; lean_object* x_13; +x_12 = lean_unbox(x_4); +lean_dec(x_4); +x_13 = l___private_Lean_Elab_App_0__Lean_Elab_Term_consumeImplicits(x_1, x_2, x_3, x_12, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_6); +return x_13; } } lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValLoop_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { @@ -15758,209 +15715,209 @@ return x_24; } } } -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValLoop(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValLoop(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_12; lean_object* x_13; -x_12 = l_Lean_Elab_Term_LVal_getRef(x_1); +lean_object* x_13; lean_object* x_14; +x_13 = l_Lean_Elab_Term_LVal_getRef(x_1); +lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_5); -x_13 = l___private_Lean_Elab_App_0__Lean_Elab_Term_consumeImplicits(x_12, x_2, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_13) == 0) +lean_inc(x_6); +x_14 = l___private_Lean_Elab_App_0__Lean_Elab_Term_consumeImplicits(x_13, x_2, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_14) == 0) { -lean_object* x_14; lean_object* x_15; uint8_t x_16; -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -x_15 = lean_ctor_get(x_13, 1); +lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_15 = lean_ctor_get(x_14, 0); lean_inc(x_15); -lean_dec(x_13); -x_16 = !lean_is_exclusive(x_14); -if (x_16 == 0) +x_16 = lean_ctor_get(x_14, 1); +lean_inc(x_16); +lean_dec(x_14); +x_17 = !lean_is_exclusive(x_15); +if (x_17 == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_17 = lean_ctor_get(x_14, 0); -x_18 = lean_ctor_get(x_14, 1); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_15, 0); +x_19 = lean_ctor_get(x_15, 1); +lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_18); -x_19 = l_Lean_Elab_Term_tryPostponeIfMVar(x_18, x_5, x_6, x_7, x_8, x_9, x_10, x_15); -if (lean_obj_tag(x_19) == 0) +lean_inc(x_19); +x_20 = l_Lean_Elab_Term_tryPostponeIfMVar(x_19, x_6, x_7, x_8, x_9, x_10, x_11, x_16); +if (lean_obj_tag(x_20) == 0) { -lean_object* x_20; lean_object* x_21; -x_20 = lean_ctor_get(x_19, 1); -lean_inc(x_20); -lean_dec(x_19); -lean_inc(x_7); -lean_inc(x_5); +lean_object* x_21; lean_object* x_22; +x_21 = lean_ctor_get(x_20, 1); +lean_inc(x_21); +lean_dec(x_20); +lean_inc(x_8); +lean_inc(x_6); lean_inc(x_1); +lean_inc(x_19); lean_inc(x_18); -lean_inc(x_17); -x_21 = l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux(x_17, x_18, x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_20); -if (lean_obj_tag(x_21) == 0) +x_22 = l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux(x_18, x_19, x_1, x_6, x_7, x_8, x_9, x_10, x_11, x_21); +if (lean_obj_tag(x_22) == 0) { -uint8_t x_22; -lean_dec(x_18); +uint8_t x_23; +lean_dec(x_19); +lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); +lean_dec(x_6); lean_dec(x_4); lean_dec(x_1); -x_22 = !lean_is_exclusive(x_21); -if (x_22 == 0) +x_23 = !lean_is_exclusive(x_22); +if (x_23 == 0) { -lean_object* x_23; -x_23 = lean_ctor_get(x_21, 0); -lean_ctor_set(x_14, 1, x_23); -lean_ctor_set(x_21, 0, x_14); -return x_21; +lean_object* x_24; +x_24 = lean_ctor_get(x_22, 0); +lean_ctor_set(x_15, 1, x_24); +lean_ctor_set(x_22, 0, x_15); +return x_22; } else { -lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_24 = lean_ctor_get(x_21, 0); -x_25 = lean_ctor_get(x_21, 1); +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_22, 0); +x_26 = lean_ctor_get(x_22, 1); +lean_inc(x_26); lean_inc(x_25); -lean_inc(x_24); -lean_dec(x_21); -lean_ctor_set(x_14, 1, x_24); -x_26 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_26, 0, x_14); -lean_ctor_set(x_26, 1, x_25); -return x_26; +lean_dec(x_22); +lean_ctor_set(x_15, 1, x_25); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_15); +lean_ctor_set(x_27, 1, x_26); +return x_27; } } else { -lean_object* x_27; lean_object* x_28; lean_object* x_29; -lean_free_object(x_14); -x_27 = lean_ctor_get(x_21, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_21, 1); +lean_object* x_28; lean_object* x_29; lean_object* x_30; +lean_free_object(x_15); +x_28 = lean_ctor_get(x_22, 0); lean_inc(x_28); -lean_dec(x_21); +x_29 = lean_ctor_get(x_22, 1); +lean_inc(x_29); +lean_dec(x_22); +lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -lean_inc(x_7); -x_29 = l_Lean_Meta_unfoldDefinition_x3f(x_18, x_7, x_8, x_9, x_10, x_28); -if (lean_obj_tag(x_29) == 0) -{ -lean_object* x_30; -x_30 = lean_ctor_get(x_29, 0); -lean_inc(x_30); +x_30 = l_Lean_Meta_unfoldDefinition_x3f(x_19, x_8, x_9, x_10, x_11, x_29); if (lean_obj_tag(x_30) == 0) { -uint8_t x_31; -lean_dec(x_17); +lean_object* x_31; +x_31 = lean_ctor_get(x_30, 0); +lean_inc(x_31); +if (lean_obj_tag(x_31) == 0) +{ +uint8_t x_32; +lean_dec(x_18); lean_dec(x_1); -x_31 = !lean_is_exclusive(x_29); -if (x_31 == 0) -{ -lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; -x_32 = lean_ctor_get(x_29, 1); -x_33 = lean_ctor_get(x_29, 0); -lean_dec(x_33); -x_34 = lean_array_get_size(x_4); -x_35 = lean_unsigned_to_nat(0u); -x_36 = lean_nat_dec_lt(x_35, x_34); -if (x_36 == 0) +x_32 = !lean_is_exclusive(x_30); +if (x_32 == 0) { +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; +x_33 = lean_ctor_get(x_30, 1); +x_34 = lean_ctor_get(x_30, 0); lean_dec(x_34); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec(x_4); -lean_ctor_set_tag(x_29, 1); -lean_ctor_set(x_29, 0, x_27); -return x_29; -} -else -{ -uint8_t x_37; -x_37 = lean_nat_dec_le(x_34, x_34); +x_35 = lean_array_get_size(x_4); +x_36 = lean_unsigned_to_nat(0u); +x_37 = lean_nat_dec_lt(x_36, x_35); if (x_37 == 0) { -lean_dec(x_34); +lean_dec(x_35); +lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); +lean_dec(x_6); lean_dec(x_4); -lean_ctor_set_tag(x_29, 1); -lean_ctor_set(x_29, 0, x_27); -return x_29; +lean_ctor_set_tag(x_30, 1); +lean_ctor_set(x_30, 0, x_28); +return x_30; } else { -size_t x_38; size_t x_39; lean_object* x_40; lean_object* x_41; -lean_free_object(x_29); -x_38 = 0; -x_39 = lean_usize_of_nat(x_34); -lean_dec(x_34); -x_40 = lean_box(0); -x_41 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValLoop___spec__1(x_4, x_38, x_39, x_40, x_5, x_6, x_7, x_8, x_9, x_10, x_32); +uint8_t x_38; +x_38 = lean_nat_dec_le(x_35, x_35); +if (x_38 == 0) +{ +lean_dec(x_35); +lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); +lean_dec(x_6); lean_dec(x_4); -if (lean_obj_tag(x_41) == 0) -{ -uint8_t x_42; -x_42 = !lean_is_exclusive(x_41); -if (x_42 == 0) -{ -lean_object* x_43; -x_43 = lean_ctor_get(x_41, 0); -lean_dec(x_43); -lean_ctor_set_tag(x_41, 1); -lean_ctor_set(x_41, 0, x_27); -return x_41; +lean_ctor_set_tag(x_30, 1); +lean_ctor_set(x_30, 0, x_28); +return x_30; } else { -lean_object* x_44; lean_object* x_45; -x_44 = lean_ctor_get(x_41, 1); -lean_inc(x_44); -lean_dec(x_41); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_27); -lean_ctor_set(x_45, 1, x_44); -return x_45; +size_t x_39; size_t x_40; lean_object* x_41; lean_object* x_42; +lean_free_object(x_30); +x_39 = 0; +x_40 = lean_usize_of_nat(x_35); +lean_dec(x_35); +x_41 = lean_box(0); +x_42 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValLoop___spec__1(x_4, x_39, x_40, x_41, x_6, x_7, x_8, x_9, x_10, x_11, x_33); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_4); +if (lean_obj_tag(x_42) == 0) +{ +uint8_t x_43; +x_43 = !lean_is_exclusive(x_42); +if (x_43 == 0) +{ +lean_object* x_44; +x_44 = lean_ctor_get(x_42, 0); +lean_dec(x_44); +lean_ctor_set_tag(x_42, 1); +lean_ctor_set(x_42, 0, x_28); +return x_42; +} +else +{ +lean_object* x_45; lean_object* x_46; +x_45 = lean_ctor_get(x_42, 1); +lean_inc(x_45); +lean_dec(x_42); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_28); +lean_ctor_set(x_46, 1, x_45); +return x_46; } } else { -uint8_t x_46; -lean_dec(x_27); -x_46 = !lean_is_exclusive(x_41); -if (x_46 == 0) +uint8_t x_47; +lean_dec(x_28); +x_47 = !lean_is_exclusive(x_42); +if (x_47 == 0) { -return x_41; +return x_42; } else { -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_41, 0); -x_48 = lean_ctor_get(x_41, 1); +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_42, 0); +x_49 = lean_ctor_get(x_42, 1); +lean_inc(x_49); lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_41); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; +lean_dec(x_42); +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; } } } @@ -15968,108 +15925,108 @@ return x_49; } else { -lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; -x_50 = lean_ctor_get(x_29, 1); -lean_inc(x_50); -lean_dec(x_29); -x_51 = lean_array_get_size(x_4); -x_52 = lean_unsigned_to_nat(0u); -x_53 = lean_nat_dec_lt(x_52, x_51); -if (x_53 == 0) +lean_object* x_51; lean_object* x_52; lean_object* x_53; uint8_t x_54; +x_51 = lean_ctor_get(x_30, 1); +lean_inc(x_51); +lean_dec(x_30); +x_52 = lean_array_get_size(x_4); +x_53 = lean_unsigned_to_nat(0u); +x_54 = lean_nat_dec_lt(x_53, x_52); +if (x_54 == 0) { -lean_object* x_54; -lean_dec(x_51); +lean_object* x_55; +lean_dec(x_52); +lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); +lean_dec(x_6); lean_dec(x_4); -x_54 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_54, 0, x_27); -lean_ctor_set(x_54, 1, x_50); -return x_54; +x_55 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_55, 0, x_28); +lean_ctor_set(x_55, 1, x_51); +return x_55; } else { -uint8_t x_55; -x_55 = lean_nat_dec_le(x_51, x_51); -if (x_55 == 0) +uint8_t x_56; +x_56 = lean_nat_dec_le(x_52, x_52); +if (x_56 == 0) { -lean_object* x_56; -lean_dec(x_51); +lean_object* x_57; +lean_dec(x_52); +lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); +lean_dec(x_6); lean_dec(x_4); -x_56 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_56, 0, x_27); -lean_ctor_set(x_56, 1, x_50); -return x_56; +x_57 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_57, 0, x_28); +lean_ctor_set(x_57, 1, x_51); +return x_57; } else { -size_t x_57; size_t x_58; lean_object* x_59; lean_object* x_60; -x_57 = 0; -x_58 = lean_usize_of_nat(x_51); -lean_dec(x_51); -x_59 = lean_box(0); -x_60 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValLoop___spec__1(x_4, x_57, x_58, x_59, x_5, x_6, x_7, x_8, x_9, x_10, x_50); +size_t x_58; size_t x_59; lean_object* x_60; lean_object* x_61; +x_58 = 0; +x_59 = lean_usize_of_nat(x_52); +lean_dec(x_52); +x_60 = lean_box(0); +x_61 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValLoop___spec__1(x_4, x_58, x_59, x_60, x_6, x_7, x_8, x_9, x_10, x_11, x_51); +lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); +lean_dec(x_6); lean_dec(x_4); -if (lean_obj_tag(x_60) == 0) +if (lean_obj_tag(x_61) == 0) { -lean_object* x_61; lean_object* x_62; lean_object* x_63; -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; +lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_62 = lean_ctor_get(x_61, 1); +lean_inc(x_62); +if (lean_is_exclusive(x_61)) { + lean_ctor_release(x_61, 0); + lean_ctor_release(x_61, 1); + x_63 = x_61; } else { - lean_dec_ref(x_60); - x_62 = lean_box(0); + lean_dec_ref(x_61); + x_63 = lean_box(0); } -if (lean_is_scalar(x_62)) { - x_63 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_63)) { + x_64 = lean_alloc_ctor(1, 2, 0); } else { - x_63 = x_62; - lean_ctor_set_tag(x_63, 1); + x_64 = x_63; + lean_ctor_set_tag(x_64, 1); } -lean_ctor_set(x_63, 0, x_27); -lean_ctor_set(x_63, 1, x_61); -return x_63; +lean_ctor_set(x_64, 0, x_28); +lean_ctor_set(x_64, 1, x_62); +return x_64; } else { -lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; -lean_dec(x_27); -x_64 = lean_ctor_get(x_60, 0); -lean_inc(x_64); -x_65 = lean_ctor_get(x_60, 1); +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; +lean_dec(x_28); +x_65 = lean_ctor_get(x_61, 0); lean_inc(x_65); -if (lean_is_exclusive(x_60)) { - lean_ctor_release(x_60, 0); - lean_ctor_release(x_60, 1); - x_66 = x_60; +x_66 = lean_ctor_get(x_61, 1); +lean_inc(x_66); +if (lean_is_exclusive(x_61)) { + lean_ctor_release(x_61, 0); + lean_ctor_release(x_61, 1); + x_67 = x_61; } else { - lean_dec_ref(x_60); - x_66 = lean_box(0); + lean_dec_ref(x_61); + x_67 = lean_box(0); } -if (lean_is_scalar(x_66)) { - x_67 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_67)) { + x_68 = lean_alloc_ctor(1, 2, 0); } else { - x_67 = x_66; + x_68 = x_67; } -lean_ctor_set(x_67, 0, x_64); -lean_ctor_set(x_67, 1, x_65); -return x_67; +lean_ctor_set(x_68, 0, x_65); +lean_ctor_set(x_68, 1, x_66); +return x_68; } } } @@ -16077,408 +16034,408 @@ return x_67; } else { -lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_68 = lean_ctor_get(x_29, 1); -lean_inc(x_68); -lean_dec(x_29); -x_69 = lean_ctor_get(x_30, 0); +lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_69 = lean_ctor_get(x_30, 1); lean_inc(x_69); lean_dec(x_30); -x_70 = lean_array_push(x_4, x_27); -x_2 = x_17; -x_3 = x_69; -x_4 = x_70; -x_11 = x_68; +x_70 = lean_ctor_get(x_31, 0); +lean_inc(x_70); +lean_dec(x_31); +x_71 = lean_array_push(x_4, x_28); +x_2 = x_18; +x_3 = x_70; +x_4 = x_71; +x_12 = x_69; goto _start; } } else { -uint8_t x_72; -lean_dec(x_27); -lean_dec(x_17); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_72 = !lean_is_exclusive(x_29); -if (x_72 == 0) -{ -return x_29; -} -else -{ -lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_73 = lean_ctor_get(x_29, 0); -x_74 = lean_ctor_get(x_29, 1); -lean_inc(x_74); -lean_inc(x_73); -lean_dec(x_29); -x_75 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_75, 0, x_73); -lean_ctor_set(x_75, 1, x_74); -return x_75; -} -} -} -} -else -{ -uint8_t x_76; -lean_free_object(x_14); +uint8_t x_73; +lean_dec(x_28); lean_dec(x_18); -lean_dec(x_17); +lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); +lean_dec(x_6); lean_dec(x_4); lean_dec(x_1); -x_76 = !lean_is_exclusive(x_19); -if (x_76 == 0) +x_73 = !lean_is_exclusive(x_30); +if (x_73 == 0) { -return x_19; +return x_30; } else { -lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_77 = lean_ctor_get(x_19, 0); -x_78 = lean_ctor_get(x_19, 1); -lean_inc(x_78); -lean_inc(x_77); +lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_74 = lean_ctor_get(x_30, 0); +x_75 = lean_ctor_get(x_30, 1); +lean_inc(x_75); +lean_inc(x_74); +lean_dec(x_30); +x_76 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_76, 0, x_74); +lean_ctor_set(x_76, 1, x_75); +return x_76; +} +} +} +} +else +{ +uint8_t x_77; +lean_free_object(x_15); lean_dec(x_19); -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 -{ -lean_object* x_80; lean_object* x_81; lean_object* x_82; -x_80 = lean_ctor_get(x_14, 0); -x_81 = lean_ctor_get(x_14, 1); -lean_inc(x_81); -lean_inc(x_80); -lean_dec(x_14); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_81); -x_82 = l_Lean_Elab_Term_tryPostponeIfMVar(x_81, x_5, x_6, x_7, x_8, x_9, x_10, x_15); -if (lean_obj_tag(x_82) == 0) -{ -lean_object* x_83; lean_object* x_84; -x_83 = lean_ctor_get(x_82, 1); -lean_inc(x_83); -lean_dec(x_82); -lean_inc(x_7); -lean_inc(x_5); -lean_inc(x_1); -lean_inc(x_81); -lean_inc(x_80); -x_84 = l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux(x_80, x_81, x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_83); -if (lean_obj_tag(x_84) == 0) -{ -lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; -lean_dec(x_81); +lean_dec(x_18); +lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); +lean_dec(x_6); lean_dec(x_4); lean_dec(x_1); -x_85 = lean_ctor_get(x_84, 0); -lean_inc(x_85); -x_86 = lean_ctor_get(x_84, 1); -lean_inc(x_86); -if (lean_is_exclusive(x_84)) { - lean_ctor_release(x_84, 0); - lean_ctor_release(x_84, 1); - x_87 = x_84; -} else { - lean_dec_ref(x_84); - x_87 = lean_box(0); -} -x_88 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_88, 0, x_80); -lean_ctor_set(x_88, 1, x_85); -if (lean_is_scalar(x_87)) { - x_89 = lean_alloc_ctor(0, 2, 0); -} else { - x_89 = x_87; -} -lean_ctor_set(x_89, 0, x_88); -lean_ctor_set(x_89, 1, x_86); -return x_89; +x_77 = !lean_is_exclusive(x_20); +if (x_77 == 0) +{ +return x_20; } else { -lean_object* x_90; lean_object* x_91; lean_object* x_92; -x_90 = lean_ctor_get(x_84, 0); -lean_inc(x_90); -x_91 = lean_ctor_get(x_84, 1); -lean_inc(x_91); -lean_dec(x_84); +lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_78 = lean_ctor_get(x_20, 0); +x_79 = lean_ctor_get(x_20, 1); +lean_inc(x_79); +lean_inc(x_78); +lean_dec(x_20); +x_80 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_80, 0, x_78); +lean_ctor_set(x_80, 1, x_79); +return x_80; +} +} +} +else +{ +lean_object* x_81; lean_object* x_82; lean_object* x_83; +x_81 = lean_ctor_get(x_15, 0); +x_82 = lean_ctor_get(x_15, 1); +lean_inc(x_82); +lean_inc(x_81); +lean_dec(x_15); +lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -lean_inc(x_7); -x_92 = l_Lean_Meta_unfoldDefinition_x3f(x_81, x_7, x_8, x_9, x_10, x_91); -if (lean_obj_tag(x_92) == 0) +lean_inc(x_82); +x_83 = l_Lean_Elab_Term_tryPostponeIfMVar(x_82, x_6, x_7, x_8, x_9, x_10, x_11, x_16); +if (lean_obj_tag(x_83) == 0) { -lean_object* x_93; -x_93 = lean_ctor_get(x_92, 0); -lean_inc(x_93); +lean_object* x_84; lean_object* x_85; +x_84 = lean_ctor_get(x_83, 1); +lean_inc(x_84); +lean_dec(x_83); +lean_inc(x_8); +lean_inc(x_6); +lean_inc(x_1); +lean_inc(x_82); +lean_inc(x_81); +x_85 = l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux(x_81, x_82, x_1, x_6, x_7, x_8, x_9, x_10, x_11, x_84); +if (lean_obj_tag(x_85) == 0) +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; +lean_dec(x_82); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_1); +x_86 = lean_ctor_get(x_85, 0); +lean_inc(x_86); +x_87 = lean_ctor_get(x_85, 1); +lean_inc(x_87); +if (lean_is_exclusive(x_85)) { + lean_ctor_release(x_85, 0); + lean_ctor_release(x_85, 1); + x_88 = x_85; +} else { + lean_dec_ref(x_85); + x_88 = lean_box(0); +} +x_89 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_89, 0, x_81); +lean_ctor_set(x_89, 1, x_86); +if (lean_is_scalar(x_88)) { + x_90 = lean_alloc_ctor(0, 2, 0); +} else { + x_90 = x_88; +} +lean_ctor_set(x_90, 0, x_89); +lean_ctor_set(x_90, 1, x_87); +return x_90; +} +else +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_91 = lean_ctor_get(x_85, 0); +lean_inc(x_91); +x_92 = lean_ctor_get(x_85, 1); +lean_inc(x_92); +lean_dec(x_85); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_93 = l_Lean_Meta_unfoldDefinition_x3f(x_82, x_8, x_9, x_10, x_11, x_92); if (lean_obj_tag(x_93) == 0) { -lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; uint8_t x_98; -lean_dec(x_80); -lean_dec(x_1); -x_94 = lean_ctor_get(x_92, 1); +lean_object* x_94; +x_94 = lean_ctor_get(x_93, 0); lean_inc(x_94); -if (lean_is_exclusive(x_92)) { - lean_ctor_release(x_92, 0); - lean_ctor_release(x_92, 1); - x_95 = x_92; -} else { - lean_dec_ref(x_92); - x_95 = lean_box(0); -} -x_96 = lean_array_get_size(x_4); -x_97 = lean_unsigned_to_nat(0u); -x_98 = lean_nat_dec_lt(x_97, x_96); -if (x_98 == 0) +if (lean_obj_tag(x_94) == 0) { -lean_object* x_99; -lean_dec(x_96); +lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; uint8_t x_99; +lean_dec(x_81); +lean_dec(x_1); +x_95 = lean_ctor_get(x_93, 1); +lean_inc(x_95); +if (lean_is_exclusive(x_93)) { + lean_ctor_release(x_93, 0); + lean_ctor_release(x_93, 1); + x_96 = x_93; +} else { + lean_dec_ref(x_93); + x_96 = lean_box(0); +} +x_97 = lean_array_get_size(x_4); +x_98 = lean_unsigned_to_nat(0u); +x_99 = lean_nat_dec_lt(x_98, x_97); +if (x_99 == 0) +{ +lean_object* x_100; +lean_dec(x_97); +lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); +lean_dec(x_6); lean_dec(x_4); -if (lean_is_scalar(x_95)) { - x_99 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_96)) { + x_100 = lean_alloc_ctor(1, 2, 0); } else { - x_99 = x_95; - lean_ctor_set_tag(x_99, 1); + x_100 = x_96; + lean_ctor_set_tag(x_100, 1); } -lean_ctor_set(x_99, 0, x_90); -lean_ctor_set(x_99, 1, x_94); -return x_99; +lean_ctor_set(x_100, 0, x_91); +lean_ctor_set(x_100, 1, x_95); +return x_100; } else { -uint8_t x_100; -x_100 = lean_nat_dec_le(x_96, x_96); -if (x_100 == 0) +uint8_t x_101; +x_101 = lean_nat_dec_le(x_97, x_97); +if (x_101 == 0) { -lean_object* x_101; -lean_dec(x_96); +lean_object* x_102; +lean_dec(x_97); +lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); +lean_dec(x_6); lean_dec(x_4); -if (lean_is_scalar(x_95)) { - x_101 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_96)) { + x_102 = lean_alloc_ctor(1, 2, 0); } else { - x_101 = x_95; - lean_ctor_set_tag(x_101, 1); + x_102 = x_96; + lean_ctor_set_tag(x_102, 1); } -lean_ctor_set(x_101, 0, x_90); -lean_ctor_set(x_101, 1, x_94); -return x_101; +lean_ctor_set(x_102, 0, x_91); +lean_ctor_set(x_102, 1, x_95); +return x_102; } else { -size_t x_102; size_t x_103; lean_object* x_104; lean_object* x_105; -lean_dec(x_95); -x_102 = 0; -x_103 = lean_usize_of_nat(x_96); +size_t x_103; size_t x_104; lean_object* x_105; lean_object* x_106; lean_dec(x_96); -x_104 = lean_box(0); -x_105 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValLoop___spec__1(x_4, x_102, x_103, x_104, x_5, x_6, x_7, x_8, x_9, x_10, x_94); +x_103 = 0; +x_104 = lean_usize_of_nat(x_97); +lean_dec(x_97); +x_105 = lean_box(0); +x_106 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValLoop___spec__1(x_4, x_103, x_104, x_105, x_6, x_7, x_8, x_9, x_10, x_11, x_95); +lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); +lean_dec(x_6); lean_dec(x_4); -if (lean_obj_tag(x_105) == 0) +if (lean_obj_tag(x_106) == 0) { -lean_object* x_106; lean_object* x_107; lean_object* x_108; -x_106 = lean_ctor_get(x_105, 1); -lean_inc(x_106); -if (lean_is_exclusive(x_105)) { - lean_ctor_release(x_105, 0); - lean_ctor_release(x_105, 1); - x_107 = x_105; +lean_object* x_107; lean_object* x_108; lean_object* x_109; +x_107 = lean_ctor_get(x_106, 1); +lean_inc(x_107); +if (lean_is_exclusive(x_106)) { + lean_ctor_release(x_106, 0); + lean_ctor_release(x_106, 1); + x_108 = x_106; } else { - lean_dec_ref(x_105); - x_107 = lean_box(0); + lean_dec_ref(x_106); + x_108 = lean_box(0); } -if (lean_is_scalar(x_107)) { - x_108 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_108)) { + x_109 = lean_alloc_ctor(1, 2, 0); } else { - x_108 = x_107; - lean_ctor_set_tag(x_108, 1); + x_109 = x_108; + lean_ctor_set_tag(x_109, 1); } -lean_ctor_set(x_108, 0, x_90); -lean_ctor_set(x_108, 1, x_106); -return x_108; +lean_ctor_set(x_109, 0, x_91); +lean_ctor_set(x_109, 1, x_107); +return x_109; } else { -lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -lean_dec(x_90); -x_109 = lean_ctor_get(x_105, 0); -lean_inc(x_109); -x_110 = lean_ctor_get(x_105, 1); +lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; +lean_dec(x_91); +x_110 = lean_ctor_get(x_106, 0); lean_inc(x_110); -if (lean_is_exclusive(x_105)) { - lean_ctor_release(x_105, 0); - lean_ctor_release(x_105, 1); - x_111 = x_105; +x_111 = lean_ctor_get(x_106, 1); +lean_inc(x_111); +if (lean_is_exclusive(x_106)) { + lean_ctor_release(x_106, 0); + lean_ctor_release(x_106, 1); + x_112 = x_106; } else { - lean_dec_ref(x_105); - x_111 = lean_box(0); + lean_dec_ref(x_106); + x_112 = lean_box(0); } -if (lean_is_scalar(x_111)) { - x_112 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_112)) { + x_113 = lean_alloc_ctor(1, 2, 0); } else { - x_112 = x_111; + x_113 = x_112; } -lean_ctor_set(x_112, 0, x_109); -lean_ctor_set(x_112, 1, x_110); -return x_112; +lean_ctor_set(x_113, 0, x_110); +lean_ctor_set(x_113, 1, x_111); +return x_113; } } } } else { -lean_object* x_113; lean_object* x_114; lean_object* x_115; -x_113 = lean_ctor_get(x_92, 1); -lean_inc(x_113); -lean_dec(x_92); -x_114 = lean_ctor_get(x_93, 0); +lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_114 = lean_ctor_get(x_93, 1); lean_inc(x_114); lean_dec(x_93); -x_115 = lean_array_push(x_4, x_90); -x_2 = x_80; -x_3 = x_114; -x_4 = x_115; -x_11 = x_113; +x_115 = lean_ctor_get(x_94, 0); +lean_inc(x_115); +lean_dec(x_94); +x_116 = lean_array_push(x_4, x_91); +x_2 = x_81; +x_3 = x_115; +x_4 = x_116; +x_12 = x_114; goto _start; } } else { -lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; -lean_dec(x_90); -lean_dec(x_80); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -x_117 = lean_ctor_get(x_92, 0); -lean_inc(x_117); -x_118 = lean_ctor_get(x_92, 1); -lean_inc(x_118); -if (lean_is_exclusive(x_92)) { - lean_ctor_release(x_92, 0); - lean_ctor_release(x_92, 1); - x_119 = x_92; -} else { - lean_dec_ref(x_92); - x_119 = lean_box(0); -} -if (lean_is_scalar(x_119)) { - x_120 = lean_alloc_ctor(1, 2, 0); -} else { - x_120 = x_119; -} -lean_ctor_set(x_120, 0, x_117); -lean_ctor_set(x_120, 1, x_118); -return x_120; -} -} -} -else -{ -lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; +lean_dec(x_91); lean_dec(x_81); -lean_dec(x_80); +lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); +lean_dec(x_6); lean_dec(x_4); lean_dec(x_1); -x_121 = lean_ctor_get(x_82, 0); -lean_inc(x_121); -x_122 = lean_ctor_get(x_82, 1); +x_118 = lean_ctor_get(x_93, 0); +lean_inc(x_118); +x_119 = lean_ctor_get(x_93, 1); +lean_inc(x_119); +if (lean_is_exclusive(x_93)) { + lean_ctor_release(x_93, 0); + lean_ctor_release(x_93, 1); + x_120 = x_93; +} else { + lean_dec_ref(x_93); + x_120 = lean_box(0); +} +if (lean_is_scalar(x_120)) { + x_121 = lean_alloc_ctor(1, 2, 0); +} else { + x_121 = x_120; +} +lean_ctor_set(x_121, 0, x_118); +lean_ctor_set(x_121, 1, x_119); +return x_121; +} +} +} +else +{ +lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; +lean_dec(x_82); +lean_dec(x_81); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_1); +x_122 = lean_ctor_get(x_83, 0); lean_inc(x_122); -if (lean_is_exclusive(x_82)) { - lean_ctor_release(x_82, 0); - lean_ctor_release(x_82, 1); - x_123 = x_82; +x_123 = lean_ctor_get(x_83, 1); +lean_inc(x_123); +if (lean_is_exclusive(x_83)) { + lean_ctor_release(x_83, 0); + lean_ctor_release(x_83, 1); + x_124 = x_83; } else { - lean_dec_ref(x_82); - x_123 = lean_box(0); + lean_dec_ref(x_83); + x_124 = lean_box(0); } -if (lean_is_scalar(x_123)) { - x_124 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_124)) { + x_125 = lean_alloc_ctor(1, 2, 0); } else { - x_124 = x_123; + x_125 = x_124; } -lean_ctor_set(x_124, 0, x_121); -lean_ctor_set(x_124, 1, x_122); -return x_124; +lean_ctor_set(x_125, 0, x_122); +lean_ctor_set(x_125, 1, x_123); +return x_125; } } } else { -uint8_t x_125; +uint8_t x_126; +lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); +lean_dec(x_6); lean_dec(x_4); lean_dec(x_1); -x_125 = !lean_is_exclusive(x_13); -if (x_125 == 0) +x_126 = !lean_is_exclusive(x_14); +if (x_126 == 0) { -return x_13; +return x_14; } else { -lean_object* x_126; lean_object* x_127; lean_object* x_128; -x_126 = lean_ctor_get(x_13, 0); -x_127 = lean_ctor_get(x_13, 1); +lean_object* x_127; lean_object* x_128; lean_object* x_129; +x_127 = lean_ctor_get(x_14, 0); +x_128 = lean_ctor_get(x_14, 1); +lean_inc(x_128); lean_inc(x_127); -lean_inc(x_126); -lean_dec(x_13); -x_128 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_128, 0, x_126); -lean_ctor_set(x_128, 1, x_127); -return x_128; +lean_dec(x_14); +x_129 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_129, 0, x_127); +lean_ctor_set(x_129, 1, x_128); +return x_129; } } } @@ -16502,75 +16459,79 @@ lean_dec(x_1); return x_14; } } -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValLoop___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValLoop___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_12; -x_12 = l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValLoop(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_6); -return x_12; +uint8_t x_13; lean_object* x_14; +x_13 = lean_unbox(x_5); +lean_dec(x_5); +x_14 = l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValLoop(x_1, x_2, x_3, x_4, x_13, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_7); +return x_14; } } -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLVal(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* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLVal(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { -lean_object* x_10; +lean_object* x_11; +lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -lean_inc(x_5); lean_inc(x_1); -x_10 = lean_infer_type(x_1, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_10) == 0) +x_11 = lean_infer_type(x_1, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_11) == 0) { -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_11 = lean_ctor_get(x_10, 0); -lean_inc(x_11); -x_12 = lean_ctor_get(x_10, 1); +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); -lean_dec(x_10); -x_13 = l_Lean_Elab_Term_elabWithoutExpectedTypeAttr___lambda__5___closed__1; -x_14 = l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValLoop(x_2, x_1, x_11, x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_12); -return x_14; +x_13 = lean_ctor_get(x_11, 1); +lean_inc(x_13); +lean_dec(x_11); +x_14 = l_Lean_Elab_Term_elabWithoutExpectedTypeAttr___lambda__5___closed__1; +x_15 = l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValLoop(x_2, x_1, x_12, x_14, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_13); +return x_15; } else { -uint8_t x_15; +uint8_t x_16; +lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); -x_15 = !lean_is_exclusive(x_10); -if (x_15 == 0) +x_16 = !lean_is_exclusive(x_11); +if (x_16 == 0) { -return x_10; +return x_11; } else { -lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_16 = lean_ctor_get(x_10, 0); -x_17 = lean_ctor_get(x_10, 1); +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_ctor_get(x_11, 0); +x_18 = lean_ctor_get(x_11, 1); +lean_inc(x_18); lean_inc(x_17); -lean_inc(x_16); -lean_dec(x_10); -x_18 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_18, 0, x_16); -lean_ctor_set(x_18, 1, x_17); -return x_18; +lean_dec(x_11); +x_19 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_19, 0, x_17); +lean_ctor_set(x_19, 1, x_18); +return x_19; } } } } -lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLVal___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLVal___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { -lean_object* x_10; -x_10 = l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLVal(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_4); -return x_10; +uint8_t x_11; lean_object* x_12; +x_11 = lean_unbox(x_3); +lean_dec(x_3); +x_12 = l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLVal(x_1, x_2, x_11, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +return x_12; } } lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_mkBaseProjections_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { @@ -19732,7 +19693,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__2; x_2 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__3; -x_3 = lean_unsigned_to_nat(698u); +x_3 = lean_unsigned_to_nat(717u); x_4 = lean_unsigned_to_nat(8u); x_5 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__4; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -19811,173 +19772,203 @@ return x_3; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { -lean_object* x_17; +uint8_t x_17; uint8_t x_210; +x_210 = l_Array_isEmpty___rarg(x_4); +if (x_210 == 0) +{ +uint8_t x_211; +x_211 = 1; +x_17 = x_211; +goto block_209; +} +else +{ +uint8_t x_212; +x_212 = l_Array_isEmpty___rarg(x_5); +if (x_212 == 0) +{ +uint8_t x_213; +x_213 = 1; +x_17 = x_213; +goto block_209; +} +else +{ +uint8_t x_214; +x_214 = 0; +x_17 = x_214; +goto block_209; +} +} +block_209: +{ +lean_object* x_18; lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_10); lean_inc(x_2); -x_17 = l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLVal(x_1, x_2, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_17) == 0) +x_18 = l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLVal(x_1, x_2, x_17, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_18) == 0) { -lean_object* x_18; lean_object* x_19; -x_18 = lean_ctor_get(x_17, 0); -lean_inc(x_18); -x_19 = lean_ctor_get(x_18, 1); +lean_object* x_19; lean_object* x_20; +x_19 = lean_ctor_get(x_18, 0); lean_inc(x_19); -switch (lean_obj_tag(x_19)) { +x_20 = lean_ctor_get(x_19, 1); +lean_inc(x_20); +switch (lean_obj_tag(x_20)) { case 0: { -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_20 = lean_ctor_get(x_17, 1); -lean_inc(x_20); -lean_dec(x_17); -x_21 = lean_ctor_get(x_18, 0); +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); lean_dec(x_18); x_22 = lean_ctor_get(x_19, 0); lean_inc(x_22); -x_23 = lean_ctor_get(x_19, 1); -lean_inc(x_23); -x_24 = lean_ctor_get(x_19, 2); -lean_inc(x_24); lean_dec(x_19); +x_23 = lean_ctor_get(x_20, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_20, 1); +lean_inc(x_24); +x_25 = lean_ctor_get(x_20, 2); +lean_inc(x_25); +lean_dec(x_20); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -lean_inc(x_23); -x_25 = l___private_Lean_Elab_App_0__Lean_Elab_Term_mkBaseProjections(x_22, x_23, x_21, x_10, x_11, x_12, x_13, x_14, x_15, x_20); -if (lean_obj_tag(x_25) == 0) +lean_inc(x_24); +x_26 = l___private_Lean_Elab_App_0__Lean_Elab_Term_mkBaseProjections(x_23, x_24, x_22, x_10, x_11, x_12, x_13, x_14, x_15, x_21); +if (lean_obj_tag(x_26) == 0) { -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; -x_26 = lean_ctor_get(x_25, 0); -lean_inc(x_26); -x_27 = lean_ctor_get(x_25, 1); +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; +x_27 = lean_ctor_get(x_26, 0); lean_inc(x_27); -lean_dec(x_25); -x_28 = lean_st_ref_get(x_15, x_27); -x_29 = lean_ctor_get(x_28, 0); -lean_inc(x_29); -x_30 = lean_ctor_get(x_28, 1); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +x_29 = lean_st_ref_get(x_15, x_28); +x_30 = lean_ctor_get(x_29, 0); lean_inc(x_30); -lean_dec(x_28); -x_31 = lean_ctor_get(x_29, 0); +x_31 = lean_ctor_get(x_29, 1); lean_inc(x_31); lean_dec(x_29); -lean_inc(x_24); -x_32 = l_Lean_getFieldInfo_x3f(x_31, x_22, x_24); -lean_dec(x_31); -if (lean_obj_tag(x_32) == 0) +x_32 = lean_ctor_get(x_30, 0); +lean_inc(x_32); +lean_dec(x_30); +lean_inc(x_25); +x_33 = l_Lean_getFieldInfo_x3f(x_32, x_23, x_25); +lean_dec(x_32); +if (lean_obj_tag(x_33) == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; -lean_dec(x_26); +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +lean_dec(x_27); +lean_dec(x_25); lean_dec(x_24); -lean_dec(x_23); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_33 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__1; -x_34 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__5; -x_35 = lean_panic_fn(x_33, x_34); -x_36 = lean_apply_7(x_35, x_10, x_11, x_12, x_13, x_14, x_15, x_30); -return x_36; +x_34 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__1; +x_35 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__5; +x_36 = lean_panic_fn(x_34, x_35); +x_37 = lean_apply_7(x_36, x_10, x_11, x_12, x_13, x_14, x_15, x_31); +return x_37; } else { -lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; -x_37 = lean_ctor_get(x_32, 0); -lean_inc(x_37); -lean_dec(x_32); -x_38 = lean_st_ref_get(x_15, x_30); -x_39 = lean_ctor_get(x_38, 0); -lean_inc(x_39); -x_40 = lean_ctor_get(x_38, 1); +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; +x_38 = lean_ctor_get(x_33, 0); +lean_inc(x_38); +lean_dec(x_33); +x_39 = lean_st_ref_get(x_15, x_31); +x_40 = lean_ctor_get(x_39, 0); lean_inc(x_40); -lean_dec(x_38); -x_41 = lean_ctor_get(x_39, 0); +x_41 = lean_ctor_get(x_39, 1); lean_inc(x_41); lean_dec(x_39); -x_42 = lean_ctor_get(x_37, 1); +x_42 = lean_ctor_get(x_40, 0); lean_inc(x_42); -x_43 = l_Lean_isPrivateNameFromImportedModule(x_41, x_42); -if (x_43 == 0) +lean_dec(x_40); +x_43 = lean_ctor_get(x_38, 1); +lean_inc(x_43); +x_44 = l_Lean_isPrivateNameFromImportedModule(x_42, x_43); +if (x_44 == 0) { -lean_object* x_44; lean_object* x_45; +lean_object* x_45; lean_object* x_46; +lean_dec(x_25); lean_dec(x_24); -lean_dec(x_23); -x_44 = lean_box(0); -x_45 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__1(x_37, x_2, x_3, x_26, x_4, x_5, x_6, x_7, x_8, x_44, x_10, x_11, x_12, x_13, x_14, x_15, x_40); +x_45 = lean_box(0); +x_46 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__1(x_38, x_2, x_3, x_27, x_4, x_5, x_6, x_7, x_8, x_45, x_10, x_11, x_12, x_13, x_14, x_15, x_41); lean_dec(x_2); -return x_45; +return x_46; } else { -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; uint8_t x_56; -lean_dec(x_37); -lean_dec(x_26); +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; uint8_t x_57; +lean_dec(x_38); +lean_dec(x_27); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_46 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_46, 0, x_24); -x_47 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__7; -x_48 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_48, 1, x_46); -x_49 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__9; -x_50 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_50, 0, x_48); -lean_ctor_set(x_50, 1, x_49); -x_51 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_51, 0, x_23); -x_52 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_52, 0, x_50); -lean_ctor_set(x_52, 1, x_51); -x_53 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__11; -x_54 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_54, 0, x_52); -lean_ctor_set(x_54, 1, x_53); -x_55 = l_Lean_throwError___at___private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore___spec__1(x_54, x_10, x_11, x_12, x_13, x_14, x_15, x_40); +x_47 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_47, 0, x_25); +x_48 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__7; +x_49 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_49, 1, x_47); +x_50 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__9; +x_51 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_51, 0, x_49); +lean_ctor_set(x_51, 1, x_50); +x_52 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_52, 0, x_24); +x_53 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +x_54 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__11; +x_55 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_55, 0, x_53); +lean_ctor_set(x_55, 1, x_54); +x_56 = l_Lean_throwError___at___private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore___spec__1(x_55, x_10, x_11, x_12, x_13, x_14, x_15, x_41); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); -x_56 = !lean_is_exclusive(x_55); -if (x_56 == 0) +x_57 = !lean_is_exclusive(x_56); +if (x_57 == 0) { -return x_55; +return x_56; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_55, 0); -x_58 = lean_ctor_get(x_55, 1); +lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_58 = lean_ctor_get(x_56, 0); +x_59 = lean_ctor_get(x_56, 1); +lean_inc(x_59); lean_inc(x_58); -lean_inc(x_57); -lean_dec(x_55); -x_59 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_59, 0, x_57); -lean_ctor_set(x_59, 1, x_58); -return x_59; +lean_dec(x_56); +x_60 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_60, 0, x_58); +lean_ctor_set(x_60, 1, x_59); +return x_60; } } } } else { -uint8_t x_60; +uint8_t x_61; +lean_dec(x_25); lean_dec(x_24); lean_dec(x_23); -lean_dec(x_22); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -19989,67 +19980,67 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_60 = !lean_is_exclusive(x_25); -if (x_60 == 0) +x_61 = !lean_is_exclusive(x_26); +if (x_61 == 0) { -return x_25; +return x_26; } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_61 = lean_ctor_get(x_25, 0); -x_62 = lean_ctor_get(x_25, 1); +lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_62 = lean_ctor_get(x_26, 0); +x_63 = lean_ctor_get(x_26, 1); +lean_inc(x_63); lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_25); -x_63 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_63, 0, x_61); -lean_ctor_set(x_63, 1, x_62); -return x_63; +lean_dec(x_26); +x_64 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_64, 0, x_62); +lean_ctor_set(x_64, 1, x_63); +return x_64; } } } case 1: { -lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; uint8_t x_72; lean_object* x_73; -x_64 = lean_ctor_get(x_17, 1); -lean_inc(x_64); -lean_dec(x_17); -x_65 = lean_ctor_get(x_18, 0); +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_65 = lean_ctor_get(x_18, 1); lean_inc(x_65); lean_dec(x_18); x_66 = lean_ctor_get(x_19, 0); lean_inc(x_66); -x_67 = lean_ctor_get(x_19, 1); -lean_inc(x_67); lean_dec(x_19); -x_68 = l_Lean_mkProj(x_66, x_67, x_65); -x_69 = l_Lean_Elab_Term_LVal_getRef(x_2); +x_67 = lean_ctor_get(x_20, 0); +lean_inc(x_67); +x_68 = lean_ctor_get(x_20, 1); +lean_inc(x_68); +lean_dec(x_20); +x_69 = l_Lean_mkProj(x_67, x_68, x_66); +x_70 = l_Lean_Elab_Term_LVal_getRef(x_2); lean_dec(x_2); -x_70 = lean_box(0); x_71 = lean_box(0); -x_72 = 0; +x_72 = lean_box(0); +x_73 = 0; lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -lean_inc(x_68); -x_73 = l_Lean_Elab_Term_addTermInfo(x_69, x_68, x_70, x_70, x_71, x_72, x_10, x_11, x_12, x_13, x_14, x_15, x_64); -if (lean_obj_tag(x_73) == 0) +lean_inc(x_69); +x_74 = l_Lean_Elab_Term_addTermInfo(x_70, x_69, x_71, x_71, x_72, x_73, x_10, x_11, x_12, x_13, x_14, x_15, x_65); +if (lean_obj_tag(x_74) == 0) { -lean_object* x_74; lean_object* x_75; -x_74 = lean_ctor_get(x_73, 1); -lean_inc(x_74); -lean_dec(x_73); -x_75 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop(x_4, x_5, x_6, x_7, x_8, x_68, x_3, x_10, x_11, x_12, x_13, x_14, x_15, x_74); -return x_75; +lean_object* x_75; lean_object* x_76; +x_75 = lean_ctor_get(x_74, 1); +lean_inc(x_75); +lean_dec(x_74); +x_76 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop(x_4, x_5, x_6, x_7, x_8, x_69, x_3, x_10, x_11, x_12, x_13, x_14, x_15, x_75); +return x_76; } else { -uint8_t x_76; -lean_dec(x_68); +uint8_t x_77; +lean_dec(x_69); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -20060,70 +20051,70 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_76 = !lean_is_exclusive(x_73); -if (x_76 == 0) +x_77 = !lean_is_exclusive(x_74); +if (x_77 == 0) { -return x_73; +return x_74; } else { -lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_77 = lean_ctor_get(x_73, 0); -x_78 = lean_ctor_get(x_73, 1); +lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_78 = lean_ctor_get(x_74, 0); +x_79 = lean_ctor_get(x_74, 1); +lean_inc(x_79); lean_inc(x_78); -lean_inc(x_77); -lean_dec(x_73); -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; +lean_dec(x_74); +x_80 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_80, 0, x_78); +lean_ctor_set(x_80, 1, x_79); +return x_80; } } } case 2: { -lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; uint8_t x_85; -x_80 = lean_ctor_get(x_17, 1); -lean_inc(x_80); -lean_dec(x_17); -x_81 = lean_ctor_get(x_18, 0); +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; uint8_t x_86; +x_81 = lean_ctor_get(x_18, 1); lean_inc(x_81); lean_dec(x_18); x_82 = lean_ctor_get(x_19, 0); lean_inc(x_82); -x_83 = lean_ctor_get(x_19, 1); -lean_inc(x_83); -x_84 = lean_ctor_get(x_19, 2); -lean_inc(x_84); lean_dec(x_19); -x_85 = lean_name_eq(x_82, x_83); -if (x_85 == 0) +x_83 = lean_ctor_get(x_20, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_20, 1); +lean_inc(x_84); +x_85 = lean_ctor_get(x_20, 2); +lean_inc(x_85); +lean_dec(x_20); +x_86 = lean_name_eq(x_83, x_84); +if (x_86 == 0) { -lean_object* x_86; +lean_object* x_87; lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -x_86 = l___private_Lean_Elab_App_0__Lean_Elab_Term_mkBaseProjections(x_82, x_83, x_81, x_10, x_11, x_12, x_13, x_14, x_15, x_80); -if (lean_obj_tag(x_86) == 0) +x_87 = l___private_Lean_Elab_App_0__Lean_Elab_Term_mkBaseProjections(x_83, x_84, x_82, x_10, x_11, x_12, x_13, x_14, x_15, x_81); +if (lean_obj_tag(x_87) == 0) { -lean_object* x_87; lean_object* x_88; lean_object* x_89; -x_87 = lean_ctor_get(x_86, 0); -lean_inc(x_87); -x_88 = lean_ctor_get(x_86, 1); +lean_object* x_88; lean_object* x_89; lean_object* x_90; +x_88 = lean_ctor_get(x_87, 0); lean_inc(x_88); -lean_dec(x_86); -x_89 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__2(x_84, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_82, x_87, x_10, x_11, x_12, x_13, x_14, x_15, x_88); +x_89 = lean_ctor_get(x_87, 1); +lean_inc(x_89); +lean_dec(x_87); +x_90 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__2(x_85, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_83, x_88, x_10, x_11, x_12, x_13, x_14, x_15, x_89); lean_dec(x_2); -return x_89; +return x_90; } else { -uint8_t x_90; -lean_dec(x_84); -lean_dec(x_82); +uint8_t x_91; +lean_dec(x_85); +lean_dec(x_83); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -20135,102 +20126,102 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_90 = !lean_is_exclusive(x_86); -if (x_90 == 0) +x_91 = !lean_is_exclusive(x_87); +if (x_91 == 0) { -return x_86; +return x_87; } else { -lean_object* x_91; lean_object* x_92; lean_object* x_93; -x_91 = lean_ctor_get(x_86, 0); -x_92 = lean_ctor_get(x_86, 1); +lean_object* x_92; lean_object* x_93; lean_object* x_94; +x_92 = lean_ctor_get(x_87, 0); +x_93 = lean_ctor_get(x_87, 1); +lean_inc(x_93); lean_inc(x_92); -lean_inc(x_91); -lean_dec(x_86); -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; +lean_dec(x_87); +x_94 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_94, 0, x_92); +lean_ctor_set(x_94, 1, x_93); +return x_94; } } } else { -lean_object* x_94; -lean_dec(x_83); -x_94 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__2(x_84, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_82, x_81, x_10, x_11, x_12, x_13, x_14, x_15, x_80); +lean_object* x_95; +lean_dec(x_84); +x_95 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__2(x_85, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_83, x_82, x_10, x_11, x_12, x_13, x_14, x_15, x_81); lean_dec(x_2); -return x_94; +return x_95; } } case 3: { -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; -x_95 = lean_ctor_get(x_17, 1); -lean_inc(x_95); -lean_dec(x_17); -x_96 = lean_ctor_get(x_18, 0); +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; uint8_t x_104; lean_object* x_105; +x_96 = lean_ctor_get(x_18, 1); lean_inc(x_96); lean_dec(x_18); x_97 = lean_ctor_get(x_19, 0); lean_inc(x_97); -x_98 = lean_ctor_get(x_19, 1); -lean_inc(x_98); -x_99 = lean_ctor_get(x_19, 2); -lean_inc(x_99); lean_dec(x_19); -x_100 = l_Lean_Elab_Term_LVal_getRef(x_2); +x_98 = lean_ctor_get(x_20, 0); +lean_inc(x_98); +x_99 = lean_ctor_get(x_20, 1); +lean_inc(x_99); +x_100 = lean_ctor_get(x_20, 2); +lean_inc(x_100); +lean_dec(x_20); +x_101 = l_Lean_Elab_Term_LVal_getRef(x_2); lean_dec(x_2); -x_101 = lean_box(0); x_102 = lean_box(0); -x_103 = 0; +x_103 = lean_box(0); +x_104 = 0; lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -lean_inc(x_99); -x_104 = l_Lean_Elab_Term_addTermInfo(x_100, x_99, x_101, x_101, x_102, x_103, x_10, x_11, x_12, x_13, x_14, x_15, x_95); -if (lean_obj_tag(x_104) == 0) +lean_inc(x_100); +x_105 = l_Lean_Elab_Term_addTermInfo(x_101, x_100, x_102, x_102, x_103, x_104, x_10, x_11, x_12, x_13, x_14, x_15, x_96); +if (lean_obj_tag(x_105) == 0) { -lean_object* x_105; uint8_t x_106; -x_105 = lean_ctor_get(x_104, 1); -lean_inc(x_105); -lean_dec(x_104); -x_106 = l_List_isEmpty___rarg(x_3); -if (x_106 == 0) +lean_object* x_106; uint8_t x_107; +x_106 = lean_ctor_get(x_105, 1); +lean_inc(x_106); +lean_dec(x_105); +x_107 = l_List_isEmpty___rarg(x_3); +if (x_107 == 0) { -lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; +lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; +lean_dec(x_99); lean_dec(x_98); -lean_dec(x_97); -x_107 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_107, 0, x_96); -x_108 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__8; -x_109 = lean_array_push(x_108, x_107); -x_110 = l_Lean_Elab_Term_elabWithoutExpectedTypeAttr___lambda__5___closed__1; +x_108 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_108, 0, x_97); +x_109 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__8; +x_110 = lean_array_push(x_109, x_108); +x_111 = l_Lean_Elab_Term_elabWithoutExpectedTypeAttr___lambda__5___closed__1; lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -x_111 = l_Lean_Elab_Term_elabAppArgs(x_99, x_110, x_109, x_101, x_103, x_103, x_10, x_11, x_12, x_13, x_14, x_15, x_105); -if (lean_obj_tag(x_111) == 0) +x_112 = l_Lean_Elab_Term_elabAppArgs(x_100, x_111, x_110, x_102, x_104, x_104, x_10, x_11, x_12, x_13, x_14, x_15, x_106); +if (lean_obj_tag(x_112) == 0) { -lean_object* x_112; lean_object* x_113; lean_object* x_114; -x_112 = lean_ctor_get(x_111, 0); -lean_inc(x_112); -x_113 = lean_ctor_get(x_111, 1); +lean_object* x_113; lean_object* x_114; lean_object* x_115; +x_113 = lean_ctor_get(x_112, 0); lean_inc(x_113); -lean_dec(x_111); -x_114 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop(x_4, x_5, x_6, x_7, x_8, x_112, x_3, x_10, x_11, x_12, x_13, x_14, x_15, x_113); -return x_114; +x_114 = lean_ctor_get(x_112, 1); +lean_inc(x_114); +lean_dec(x_112); +x_115 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop(x_4, x_5, x_6, x_7, x_8, x_113, x_3, x_10, x_11, x_12, x_13, x_14, x_15, x_114); +return x_115; } else { -uint8_t x_115; +uint8_t x_116; lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -20241,142 +20232,142 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_115 = !lean_is_exclusive(x_111); -if (x_115 == 0) +x_116 = !lean_is_exclusive(x_112); +if (x_116 == 0) { -return x_111; +return x_112; } else { -lean_object* x_116; lean_object* x_117; lean_object* x_118; -x_116 = lean_ctor_get(x_111, 0); -x_117 = lean_ctor_get(x_111, 1); +lean_object* x_117; lean_object* x_118; lean_object* x_119; +x_117 = lean_ctor_get(x_112, 0); +x_118 = lean_ctor_get(x_112, 1); +lean_inc(x_118); lean_inc(x_117); -lean_inc(x_116); -lean_dec(x_111); -x_118 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_118, 0, x_116); -lean_ctor_set(x_118, 1, x_117); -return x_118; -} -} -} -else -{ -lean_object* x_119; -lean_dec(x_3); -lean_inc(x_15); -lean_inc(x_14); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_99); -x_119 = lean_infer_type(x_99, x_12, x_13, x_14, x_15, x_105); -if (lean_obj_tag(x_119) == 0) -{ -lean_object* x_120; lean_object* x_121; lean_object* x_122; -x_120 = lean_ctor_get(x_119, 0); -lean_inc(x_120); -x_121 = lean_ctor_get(x_119, 1); -lean_inc(x_121); -lean_dec(x_119); -lean_inc(x_15); -lean_inc(x_14); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -x_122 = l___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg(x_97, x_98, x_96, x_5, x_4, x_120, x_10, x_11, x_12, x_13, x_14, x_15, x_121); -if (lean_obj_tag(x_122) == 0) -{ -lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; -x_123 = lean_ctor_get(x_122, 0); -lean_inc(x_123); -x_124 = lean_ctor_get(x_122, 1); -lean_inc(x_124); -lean_dec(x_122); -x_125 = lean_ctor_get(x_123, 0); -lean_inc(x_125); -x_126 = lean_ctor_get(x_123, 1); -lean_inc(x_126); -lean_dec(x_123); -x_127 = l_Lean_Elab_Term_elabAppArgs(x_99, x_126, x_125, x_6, x_7, x_8, x_10, x_11, x_12, x_13, x_14, x_15, x_124); -return x_127; -} -else -{ -uint8_t x_128; -lean_dec(x_99); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_6); -x_128 = !lean_is_exclusive(x_122); -if (x_128 == 0) -{ -return x_122; -} -else -{ -lean_object* x_129; lean_object* x_130; lean_object* x_131; -x_129 = lean_ctor_get(x_122, 0); -x_130 = lean_ctor_get(x_122, 1); -lean_inc(x_130); -lean_inc(x_129); -lean_dec(x_122); -x_131 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_131, 0, x_129); -lean_ctor_set(x_131, 1, x_130); -return x_131; -} -} -} -else -{ -uint8_t x_132; -lean_dec(x_99); -lean_dec(x_98); -lean_dec(x_97); -lean_dec(x_96); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_132 = !lean_is_exclusive(x_119); -if (x_132 == 0) -{ +lean_dec(x_112); +x_119 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_119, 0, x_117); +lean_ctor_set(x_119, 1, x_118); return x_119; } +} +} else { -lean_object* x_133; lean_object* x_134; lean_object* x_135; -x_133 = lean_ctor_get(x_119, 0); -x_134 = lean_ctor_get(x_119, 1); -lean_inc(x_134); -lean_inc(x_133); -lean_dec(x_119); -x_135 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_135, 0, x_133); -lean_ctor_set(x_135, 1, x_134); -return x_135; +lean_object* x_120; +lean_dec(x_3); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_100); +x_120 = lean_infer_type(x_100, x_12, x_13, x_14, x_15, x_106); +if (lean_obj_tag(x_120) == 0) +{ +lean_object* x_121; lean_object* x_122; lean_object* x_123; +x_121 = lean_ctor_get(x_120, 0); +lean_inc(x_121); +x_122 = lean_ctor_get(x_120, 1); +lean_inc(x_122); +lean_dec(x_120); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +x_123 = l___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg(x_98, x_99, x_97, x_5, x_4, x_121, x_10, x_11, x_12, x_13, x_14, x_15, x_122); +if (lean_obj_tag(x_123) == 0) +{ +lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; +x_124 = lean_ctor_get(x_123, 0); +lean_inc(x_124); +x_125 = lean_ctor_get(x_123, 1); +lean_inc(x_125); +lean_dec(x_123); +x_126 = lean_ctor_get(x_124, 0); +lean_inc(x_126); +x_127 = lean_ctor_get(x_124, 1); +lean_inc(x_127); +lean_dec(x_124); +x_128 = l_Lean_Elab_Term_elabAppArgs(x_100, x_127, x_126, x_6, x_7, x_8, x_10, x_11, x_12, x_13, x_14, x_15, x_125); +return x_128; } +else +{ +uint8_t x_129; +lean_dec(x_100); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_6); +x_129 = !lean_is_exclusive(x_123); +if (x_129 == 0) +{ +return x_123; +} +else +{ +lean_object* x_130; lean_object* x_131; lean_object* x_132; +x_130 = lean_ctor_get(x_123, 0); +x_131 = lean_ctor_get(x_123, 1); +lean_inc(x_131); +lean_inc(x_130); +lean_dec(x_123); +x_132 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_132, 0, x_130); +lean_ctor_set(x_132, 1, x_131); +return x_132; } } } else { -uint8_t x_136; +uint8_t x_133; +lean_dec(x_100); +lean_dec(x_99); +lean_dec(x_98); +lean_dec(x_97); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_133 = !lean_is_exclusive(x_120); +if (x_133 == 0) +{ +return x_120; +} +else +{ +lean_object* x_134; lean_object* x_135; lean_object* x_136; +x_134 = lean_ctor_get(x_120, 0); +x_135 = lean_ctor_get(x_120, 1); +lean_inc(x_135); +lean_inc(x_134); +lean_dec(x_120); +x_136 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_136, 0, x_134); +lean_ctor_set(x_136, 1, x_135); +return x_136; +} +} +} +} +else +{ +uint8_t x_137; +lean_dec(x_100); lean_dec(x_99); lean_dec(x_98); lean_dec(x_97); -lean_dec(x_96); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -20387,114 +20378,114 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_136 = !lean_is_exclusive(x_104); -if (x_136 == 0) +x_137 = !lean_is_exclusive(x_105); +if (x_137 == 0) { -return x_104; +return x_105; } else { -lean_object* x_137; lean_object* x_138; lean_object* x_139; -x_137 = lean_ctor_get(x_104, 0); -x_138 = lean_ctor_get(x_104, 1); +lean_object* x_138; lean_object* x_139; lean_object* x_140; +x_138 = lean_ctor_get(x_105, 0); +x_139 = lean_ctor_get(x_105, 1); +lean_inc(x_139); lean_inc(x_138); -lean_inc(x_137); -lean_dec(x_104); -x_139 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_139, 0, x_137); -lean_ctor_set(x_139, 1, x_138); -return x_139; +lean_dec(x_105); +x_140 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_140, 0, x_138); +lean_ctor_set(x_140, 1, x_139); +return x_140; } } } default: { -lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; -x_140 = lean_ctor_get(x_17, 1); -lean_inc(x_140); -lean_dec(x_17); -x_141 = lean_ctor_get(x_18, 0); +lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; +x_141 = lean_ctor_get(x_18, 1); lean_inc(x_141); lean_dec(x_18); x_142 = lean_ctor_get(x_19, 0); lean_inc(x_142); -x_143 = lean_ctor_get(x_19, 1); -lean_inc(x_143); lean_dec(x_19); -x_144 = lean_box(0); +x_143 = lean_ctor_get(x_20, 0); +lean_inc(x_143); +x_144 = lean_ctor_get(x_20, 1); +lean_inc(x_144); +lean_dec(x_20); +x_145 = lean_box(0); lean_inc(x_10); -x_145 = l_Lean_Elab_Term_mkConst(x_142, x_144, x_10, x_11, x_12, x_13, x_14, x_15, x_140); -if (lean_obj_tag(x_145) == 0) +x_146 = l_Lean_Elab_Term_mkConst(x_143, x_145, x_10, x_11, x_12, x_13, x_14, x_15, x_141); +if (lean_obj_tag(x_146) == 0) { -lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; uint8_t x_151; lean_object* x_152; -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -x_147 = lean_ctor_get(x_145, 1); +lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; uint8_t x_152; lean_object* x_153; +x_147 = lean_ctor_get(x_146, 0); lean_inc(x_147); -lean_dec(x_145); -x_148 = l_Lean_Elab_Term_LVal_getRef(x_2); +x_148 = lean_ctor_get(x_146, 1); +lean_inc(x_148); +lean_dec(x_146); +x_149 = l_Lean_Elab_Term_LVal_getRef(x_2); lean_dec(x_2); -x_149 = lean_box(0); x_150 = lean_box(0); -x_151 = 0; +x_151 = lean_box(0); +x_152 = 0; lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -lean_inc(x_146); -x_152 = l_Lean_Elab_Term_addTermInfo(x_148, x_146, x_149, x_149, x_150, x_151, x_10, x_11, x_12, x_13, x_14, x_15, x_147); -if (lean_obj_tag(x_152) == 0) +lean_inc(x_147); +x_153 = l_Lean_Elab_Term_addTermInfo(x_149, x_147, x_150, x_150, x_151, x_152, x_10, x_11, x_12, x_13, x_14, x_15, x_148); +if (lean_obj_tag(x_153) == 0) { -lean_object* x_153; uint8_t x_154; -x_153 = lean_ctor_get(x_152, 1); -lean_inc(x_153); -lean_dec(x_152); -x_154 = l_List_isEmpty___rarg(x_3); -if (x_154 == 0) +lean_object* x_154; uint8_t x_155; +x_154 = lean_ctor_get(x_153, 1); +lean_inc(x_154); +lean_dec(x_153); +x_155 = l_List_isEmpty___rarg(x_3); +if (x_155 == 0) { -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; -x_155 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_155, 0, x_141); -x_156 = lean_box(0); -x_157 = l_List_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_mkBaseProjections___spec__1___closed__2; -x_158 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_158, 0, x_156); -lean_ctor_set(x_158, 1, x_157); -lean_ctor_set(x_158, 2, x_155); -x_159 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_159, 0, x_143); -x_160 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__13; -x_161 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_161, 0, x_156); -lean_ctor_set(x_161, 1, x_160); -lean_ctor_set(x_161, 2, x_159); -x_162 = l___private_Lean_Elab_App_0__Lean_Elab_Term_tryCoeFun_x3f___closed__3; -x_163 = lean_array_push(x_162, x_158); -x_164 = lean_array_push(x_163, x_161); -x_165 = l_Lean_Elab_Term_elabWithoutExpectedTypeAttr___lambda__5___closed__1; +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; +x_156 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_156, 0, x_142); +x_157 = lean_box(0); +x_158 = l_List_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_mkBaseProjections___spec__1___closed__2; +x_159 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_159, 0, x_157); +lean_ctor_set(x_159, 1, x_158); +lean_ctor_set(x_159, 2, x_156); +x_160 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_160, 0, x_144); +x_161 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__13; +x_162 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_162, 0, x_157); +lean_ctor_set(x_162, 1, x_161); +lean_ctor_set(x_162, 2, x_160); +x_163 = l___private_Lean_Elab_App_0__Lean_Elab_Term_tryCoeFun_x3f___closed__3; +x_164 = lean_array_push(x_163, x_159); +x_165 = lean_array_push(x_164, x_162); +x_166 = l_Lean_Elab_Term_elabWithoutExpectedTypeAttr___lambda__5___closed__1; lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -x_166 = l_Lean_Elab_Term_elabAppArgs(x_146, x_164, x_165, x_149, x_151, x_151, x_10, x_11, x_12, x_13, x_14, x_15, x_153); -if (lean_obj_tag(x_166) == 0) +x_167 = l_Lean_Elab_Term_elabAppArgs(x_147, x_165, x_166, x_150, x_152, x_152, x_10, x_11, x_12, x_13, x_14, x_15, x_154); +if (lean_obj_tag(x_167) == 0) { -lean_object* x_167; lean_object* x_168; lean_object* x_169; -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; +x_168 = lean_ctor_get(x_167, 0); lean_inc(x_168); -lean_dec(x_166); -x_169 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop(x_4, x_5, x_6, x_7, x_8, x_167, x_3, x_10, x_11, x_12, x_13, x_14, x_15, x_168); -return x_169; +x_169 = lean_ctor_get(x_167, 1); +lean_inc(x_169); +lean_dec(x_167); +x_170 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop(x_4, x_5, x_6, x_7, x_8, x_168, x_3, x_10, x_11, x_12, x_13, x_14, x_15, x_169); +return x_170; } else { -uint8_t x_170; +uint8_t x_171; lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -20505,72 +20496,72 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_170 = !lean_is_exclusive(x_166); -if (x_170 == 0) +x_171 = !lean_is_exclusive(x_167); +if (x_171 == 0) { -return x_166; +return x_167; } else { -lean_object* x_171; lean_object* x_172; lean_object* x_173; -x_171 = lean_ctor_get(x_166, 0); -x_172 = lean_ctor_get(x_166, 1); +lean_object* x_172; lean_object* x_173; lean_object* x_174; +x_172 = lean_ctor_get(x_167, 0); +x_173 = lean_ctor_get(x_167, 1); +lean_inc(x_173); lean_inc(x_172); -lean_inc(x_171); -lean_dec(x_166); -x_173 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_173, 0, x_171); -lean_ctor_set(x_173, 1, x_172); -return x_173; +lean_dec(x_167); +x_174 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_174, 0, x_172); +lean_ctor_set(x_174, 1, x_173); +return x_174; } } } else { -lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; +lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_dec(x_3); -x_174 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_174, 0, x_141); -x_175 = lean_box(0); -x_176 = l_List_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_mkBaseProjections___spec__1___closed__2; -x_177 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_177, 0, x_175); -lean_ctor_set(x_177, 1, x_176); -lean_ctor_set(x_177, 2, x_174); +x_175 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_175, 0, x_142); +x_176 = lean_box(0); +x_177 = l_List_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_mkBaseProjections___spec__1___closed__2; +x_178 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_178, 0, x_176); +lean_ctor_set(x_178, 1, x_177); +lean_ctor_set(x_178, 2, x_175); lean_inc(x_10); -x_178 = l_Lean_Elab_Term_addNamedArg(x_4, x_177, x_10, x_11, x_12, x_13, x_14, x_15, x_153); -if (lean_obj_tag(x_178) == 0) +x_179 = l_Lean_Elab_Term_addNamedArg(x_4, x_178, x_10, x_11, x_12, x_13, x_14, x_15, x_154); +if (lean_obj_tag(x_179) == 0) { -lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; -x_179 = lean_ctor_get(x_178, 0); -lean_inc(x_179); -x_180 = lean_ctor_get(x_178, 1); +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_180 = lean_ctor_get(x_179, 0); lean_inc(x_180); -lean_dec(x_178); -x_181 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_181, 0, x_143); -x_182 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__13; -x_183 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_183, 0, x_175); -lean_ctor_set(x_183, 1, x_182); -lean_ctor_set(x_183, 2, x_181); +x_181 = lean_ctor_get(x_179, 1); +lean_inc(x_181); +lean_dec(x_179); +x_182 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_182, 0, x_144); +x_183 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__13; +x_184 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_184, 0, x_176); +lean_ctor_set(x_184, 1, x_183); +lean_ctor_set(x_184, 2, x_182); lean_inc(x_10); -x_184 = l_Lean_Elab_Term_addNamedArg(x_179, x_183, x_10, x_11, x_12, x_13, x_14, x_15, x_180); -if (lean_obj_tag(x_184) == 0) +x_185 = l_Lean_Elab_Term_addNamedArg(x_180, x_184, x_10, x_11, x_12, x_13, x_14, x_15, x_181); +if (lean_obj_tag(x_185) == 0) { -lean_object* x_185; lean_object* x_186; lean_object* x_187; -x_185 = lean_ctor_get(x_184, 0); -lean_inc(x_185); -x_186 = lean_ctor_get(x_184, 1); +lean_object* x_186; lean_object* x_187; lean_object* x_188; +x_186 = lean_ctor_get(x_185, 0); lean_inc(x_186); -lean_dec(x_184); -x_187 = l_Lean_Elab_Term_elabAppArgs(x_146, x_185, x_5, x_6, x_7, x_8, x_10, x_11, x_12, x_13, x_14, x_15, x_186); -return x_187; +x_187 = lean_ctor_get(x_185, 1); +lean_inc(x_187); +lean_dec(x_185); +x_188 = l_Lean_Elab_Term_elabAppArgs(x_147, x_186, x_5, x_6, x_7, x_8, x_10, x_11, x_12, x_13, x_14, x_15, x_187); +return x_188; } else { -uint8_t x_188; -lean_dec(x_146); +uint8_t x_189; +lean_dec(x_147); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -20579,31 +20570,31 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_6); lean_dec(x_5); -x_188 = !lean_is_exclusive(x_184); -if (x_188 == 0) +x_189 = !lean_is_exclusive(x_185); +if (x_189 == 0) { -return x_184; +return x_185; } else { -lean_object* x_189; lean_object* x_190; lean_object* x_191; -x_189 = lean_ctor_get(x_184, 0); -x_190 = lean_ctor_get(x_184, 1); +lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_190 = lean_ctor_get(x_185, 0); +x_191 = lean_ctor_get(x_185, 1); +lean_inc(x_191); lean_inc(x_190); -lean_inc(x_189); -lean_dec(x_184); -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; +lean_dec(x_185); +x_192 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_192, 0, x_190); +lean_ctor_set(x_192, 1, x_191); +return x_192; } } } else { -uint8_t x_192; -lean_dec(x_146); -lean_dec(x_143); +uint8_t x_193; +lean_dec(x_147); +lean_dec(x_144); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -20612,33 +20603,33 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_6); lean_dec(x_5); -x_192 = !lean_is_exclusive(x_178); -if (x_192 == 0) +x_193 = !lean_is_exclusive(x_179); +if (x_193 == 0) { -return x_178; +return x_179; } else { -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_object* x_194; lean_object* x_195; lean_object* x_196; +x_194 = lean_ctor_get(x_179, 0); +x_195 = lean_ctor_get(x_179, 1); +lean_inc(x_195); lean_inc(x_194); -lean_inc(x_193); -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; +lean_dec(x_179); +x_196 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_196, 0, x_194); +lean_ctor_set(x_196, 1, x_195); +return x_196; } } } } else { -uint8_t x_196; -lean_dec(x_146); -lean_dec(x_143); -lean_dec(x_141); +uint8_t x_197; +lean_dec(x_147); +lean_dec(x_144); +lean_dec(x_142); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -20649,31 +20640,31 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_196 = !lean_is_exclusive(x_152); -if (x_196 == 0) +x_197 = !lean_is_exclusive(x_153); +if (x_197 == 0) { -return x_152; +return x_153; } else { -lean_object* x_197; lean_object* x_198; lean_object* x_199; -x_197 = lean_ctor_get(x_152, 0); -x_198 = lean_ctor_get(x_152, 1); +lean_object* x_198; lean_object* x_199; lean_object* x_200; +x_198 = lean_ctor_get(x_153, 0); +x_199 = lean_ctor_get(x_153, 1); +lean_inc(x_199); lean_inc(x_198); -lean_inc(x_197); -lean_dec(x_152); -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; +lean_dec(x_153); +x_200 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_200, 0, x_198); +lean_ctor_set(x_200, 1, x_199); +return x_200; } } } else { -uint8_t x_200; -lean_dec(x_143); -lean_dec(x_141); +uint8_t x_201; +lean_dec(x_144); +lean_dec(x_142); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -20685,23 +20676,23 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_200 = !lean_is_exclusive(x_145); -if (x_200 == 0) +x_201 = !lean_is_exclusive(x_146); +if (x_201 == 0) { -return x_145; +return x_146; } else { -lean_object* x_201; lean_object* x_202; lean_object* x_203; -x_201 = lean_ctor_get(x_145, 0); -x_202 = lean_ctor_get(x_145, 1); +lean_object* x_202; lean_object* x_203; lean_object* x_204; +x_202 = lean_ctor_get(x_146, 0); +x_203 = lean_ctor_get(x_146, 1); +lean_inc(x_203); lean_inc(x_202); -lean_inc(x_201); -lean_dec(x_145); -x_203 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_203, 0, x_201); -lean_ctor_set(x_203, 1, x_202); -return x_203; +lean_dec(x_146); +x_204 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_204, 0, x_202); +lean_ctor_set(x_204, 1, x_203); +return x_204; } } } @@ -20709,7 +20700,7 @@ return x_203; } else { -uint8_t x_204; +uint8_t x_205; lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -20721,23 +20712,24 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_204 = !lean_is_exclusive(x_17); -if (x_204 == 0) +x_205 = !lean_is_exclusive(x_18); +if (x_205 == 0) { -return x_17; +return x_18; } else { -lean_object* x_205; lean_object* x_206; lean_object* x_207; -x_205 = lean_ctor_get(x_17, 0); -x_206 = lean_ctor_get(x_17, 1); +lean_object* x_206; lean_object* x_207; lean_object* x_208; +x_206 = lean_ctor_get(x_18, 0); +x_207 = lean_ctor_get(x_18, 1); +lean_inc(x_207); lean_inc(x_206); -lean_inc(x_205); -lean_dec(x_17); -x_207 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_207, 0, x_205); -lean_ctor_set(x_207, 1, x_206); -return x_207; +lean_dec(x_18); +x_208 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_208, 0, x_206); +lean_ctor_set(x_208, 1, x_207); +return x_208; +} } } } @@ -26747,7 +26739,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__2; x_2 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_App_0__Lean_Elab_Term_mergeFailures___spec__1___closed__1; -x_3 = lean_unsigned_to_nat(865u); +x_3 = lean_unsigned_to_nat(884u); x_4 = lean_unsigned_to_nat(35u); x_5 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__4; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -27072,7 +27064,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__2; x_2 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppAux___spec__1___closed__1; -x_3 = lean_unsigned_to_nat(882u); +x_3 = lean_unsigned_to_nat(901u); x_4 = lean_unsigned_to_nat(35u); x_5 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__4; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -28376,7 +28368,7 @@ x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_9635_(lean_object* x_1) { +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_9680_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -28605,6 +28597,8 @@ l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurr lean_mark_persistent(l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___lambda__2___closed__1); l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___lambda__2___closed__2 = _init_l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___lambda__2___closed__2(); lean_mark_persistent(l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___lambda__2___closed__2); +l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___closed__1 = _init_l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___closed__1); l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__1 = _init_l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__1(); lean_mark_persistent(l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__1); l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__2 = _init_l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__2(); @@ -28621,8 +28615,6 @@ l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___clos lean_mark_persistent(l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__7); l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__8 = _init_l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__8(); lean_mark_persistent(l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__8); -l_Lean_Elab_Term_ElabAppArgs_main___closed__1 = _init_l_Lean_Elab_Term_ElabAppArgs_main___closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_ElabAppArgs_main___closed__1); l_Lean_Elab_Term_elabAppArgs___closed__1 = _init_l_Lean_Elab_Term_elabAppArgs___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_elabAppArgs___closed__1); l_Lean_Elab_Term_elabAppArgs___closed__2 = _init_l_Lean_Elab_Term_elabAppArgs___closed__2(); @@ -28962,7 +28954,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabArrayRef___closed__3); res = l___regBuiltin_Lean_Elab_Term_elabArrayRef(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_9635_(lean_io_mk_world()); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_9680_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Elab/Binders.c b/stage0/stdlib/Lean/Elab/Binders.c index b26523476e..03372a7b36 100644 --- a/stage0/stdlib/Lean/Elab/Binders.c +++ b/stage0/stdlib/Lean/Elab/Binders.c @@ -22,6 +22,7 @@ static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder_ lean_object* l_Lean_Elab_Term_elabBinder___rarg___lambda__1___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_elabLetDeclCore_match__1(lean_object*); lean_object* l_Lean_Elab_Term_elabBinders(lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__5(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(lean_object*, lean_object*); uint8_t l_Lean_Syntax_isAntiquotSuffixSplice(lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_precheckFun___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -78,8 +79,8 @@ lean_object* l___regBuiltin_Lean_Elab_Term_expandFun(lean_object*); static lean_object* l_Lean_Elab_Term_expandWhereDecls___closed__4; static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__29; lean_object* l_Lean_Elab_Term_mkFreshBinderName___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_getFunBinderIds_x3f___spec__2(lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__5; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SourceInfo_fromRef(lean_object*); static lean_object* l_Lean_Elab_Term_elabArrow___closed__2; @@ -272,8 +273,8 @@ 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_0__Lean_Elab_Term_addLocalVarInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkLambdaFVars(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_5599_(lean_object*); -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086_(lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_5688_(lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138_(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabDepArrow___closed__4; lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__6(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__20; @@ -358,7 +359,6 @@ lean_object* l_Lean_Meta_getLocalInstances(lean_object*, lean_object*, lean_obje lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_quoteAutoTactic___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkSepArray(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_propagateExpectedType_match__2(lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__1; lean_object* l_Lean_ResolveName_resolveGlobalName(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_expandWhereDecls___closed__7; uint8_t l_Lean_BinderInfo_isInstImplicit(uint8_t); @@ -386,6 +386,7 @@ lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__1___boxed(lean_object*, l static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__15; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__5; static lean_object* l_Lean_Elab_Term_declareTacticSyntax___lambda__2___closed__1; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getFunBinderIds_x3f(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__26; @@ -399,7 +400,6 @@ lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabFun___spec__3(lean_object lean_object* lean_local_ctx_mk_local_decl(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__3; extern lean_object* l_Lean_Elab_Term_instMonadQuotationTermElabM; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__2; static lean_object* l___regBuiltin_Lean_Elab_Term_elabLetFunDecl___closed__2; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_identKind; @@ -440,6 +440,7 @@ static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinder static lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__6; lean_object* l_Lean_mkApp(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandFunBinders_loop_match__1(lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__3; static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__35; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_ensureAtomicBinderName___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__39; @@ -470,6 +471,7 @@ static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinder static lean_object* l___regBuiltin_Lean_Elab_Term_elabLetDelayedDecl___closed__1; lean_object* l_Lean_Elab_Term_expandWhereDecls___lambda__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_quoteAutoTactic_match__1(lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__4; lean_object* l_Lean_Meta_forallBoundedTelescope___at_Lean_Elab_Term_elabLetDeclAux___spec__1(lean_object*); static lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__1___closed__2; lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_precheckFun___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -477,6 +479,7 @@ lean_object* l_Lean_Elab_Term_mkExplicitBinder(lean_object*, lean_object*); lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_Quotation_getAntiquotationIds___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_ensureAtomicBinderName___closed__4; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews___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_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__1; lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_precheckFun___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_FunBinders_elabFunBindersAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_precheckFun___spec__1___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -487,9 +490,11 @@ static lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__4; static lean_object* l___regBuiltin_Lean_Elab_Term_expandFun___closed__3; lean_object* l_Lean_mkForall(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandFunBinders(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__9; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkFreshIdent___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_getFunBinderIds_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__10; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux_match__1(lean_object*); static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__23; lean_object* l_Lean_Elab_Term_withFreshMacroScope___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -528,7 +533,6 @@ lean_object* l_Lean_throwError___at_Lean_Elab_Term_quoteAutoTactic___spec__4___b lean_object* l_Lean_Elab_Term_elabBinders___rarg(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_0__Lean_Elab_Term_elabBinderViews___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_precheckFun(lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__3; lean_object* l_Lean_Elab_Term_mkLetIdDeclView(lean_object*); static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__16; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___boxed__const__1; @@ -544,9 +548,10 @@ lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__3___closed__2; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_elabFun___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__8; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__2; static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__11; lean_object* l___regBuiltin_Lean_Elab_Term_elabLetDecl(lean_object*); -lean_object* l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalContextImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabLetDecl___closed__3; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); @@ -601,7 +606,6 @@ lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Ela static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__13; static lean_object* l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg___closed__1; static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__27; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__4; static lean_object* l_Lean_Elab_Term_expandWhereDecls___closed__10; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBinderViews_loop___rarg___lambda__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*); static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__9; @@ -3824,7 +3828,7 @@ lean_inc(x_20); x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); lean_dec(x_19); -x_22 = 1; +x_22 = 2; lean_inc(x_1); x_23 = lean_alloc_ctor(0, 2, 1); lean_ctor_set(x_23, 0, x_20); @@ -3915,7 +3919,7 @@ lean_inc(x_20); x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); lean_dec(x_19); -x_22 = 0; +x_22 = 1; lean_inc(x_1); x_23 = lean_alloc_ctor(0, 2, 1); lean_ctor_set(x_23, 0, x_20); @@ -4054,6 +4058,97 @@ return x_32; } } } +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__5(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +uint8_t x_12; +x_12 = x_3 < x_2; +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_13 = x_4; +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_11); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_15 = lean_array_uget(x_4, x_3); +x_16 = lean_unsigned_to_nat(0u); +x_17 = lean_array_uset(x_4, x_3, x_16); +x_18 = x_15; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_19 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent(x_18, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; size_t x_24; size_t x_25; lean_object* x_26; lean_object* x_27; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_19, 1); +lean_inc(x_21); +lean_dec(x_19); +x_22 = 0; +lean_inc(x_1); +x_23 = lean_alloc_ctor(0, 2, 1); +lean_ctor_set(x_23, 0, x_20); +lean_ctor_set(x_23, 1, x_1); +lean_ctor_set_uint8(x_23, sizeof(void*)*2, x_22); +x_24 = 1; +x_25 = x_3 + x_24; +x_26 = x_23; +x_27 = lean_array_uset(x_17, x_3, x_26); +x_3 = x_25; +x_4 = x_27; +x_11 = x_21; +goto _start; +} +else +{ +uint8_t x_29; +lean_dec(x_17); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_29 = !lean_is_exclusive(x_19); +if (x_29 == 0) +{ +return x_19; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_19, 0); +x_31 = lean_ctor_get(x_19, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_19); +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; +} +} +} +} +} static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__1() { _start: { @@ -4112,7 +4207,7 @@ static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchB _start: { lean_object* x_1; -x_1 = lean_mk_string("instBinder"); +x_1 = lean_mk_string("strictImplicitBinder"); return x_1; } } @@ -4126,6 +4221,24 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } +static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("instBinder"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__6; +x_2 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__9; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___boxed__const__1() { _start: { @@ -4158,10 +4271,15 @@ if (x_15 == 0) lean_object* x_16; uint8_t x_17; x_16 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__8; x_17 = lean_name_eq(x_9, x_16); -lean_dec(x_9); if (x_17 == 0) { -lean_object* x_18; +lean_object* x_18; uint8_t x_19; +x_18 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__10; +x_19 = lean_name_eq(x_9, x_18); +lean_dec(x_9); +if (x_19 == 0) +{ +lean_object* x_20; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -4169,137 +4287,137 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_18 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__1___rarg(x_8); -return x_18; +x_20 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__1___rarg(x_8); +return x_20; } else { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_unsigned_to_nat(1u); -x_20 = l_Lean_Syntax_getArg(x_1, x_19); -x_21 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent(x_20, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_20); -if (lean_obj_tag(x_21) == 0) +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_unsigned_to_nat(1u); +x_22 = l_Lean_Syntax_getArg(x_1, x_21); +x_23 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent(x_22, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_22); +if (lean_obj_tag(x_23) == 0) { -uint8_t x_22; -x_22 = !lean_is_exclusive(x_21); -if (x_22 == 0) +uint8_t x_24; +x_24 = !lean_is_exclusive(x_23); +if (x_24 == 0) { -lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_23 = lean_ctor_get(x_21, 0); -x_24 = lean_unsigned_to_nat(2u); -x_25 = l_Lean_Syntax_getArg(x_1, x_24); +lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_25 = lean_ctor_get(x_23, 0); +x_26 = lean_unsigned_to_nat(2u); +x_27 = l_Lean_Syntax_getArg(x_1, x_26); lean_dec(x_1); -x_26 = 3; -x_27 = lean_alloc_ctor(0, 2, 1); -lean_ctor_set(x_27, 0, x_23); -lean_ctor_set(x_27, 1, x_25); -lean_ctor_set_uint8(x_27, sizeof(void*)*2, x_26); -x_28 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_29 = lean_array_push(x_28, x_27); -lean_ctor_set(x_21, 0, x_29); -return x_21; +x_28 = 3; +x_29 = lean_alloc_ctor(0, 2, 1); +lean_ctor_set(x_29, 0, x_25); +lean_ctor_set(x_29, 1, x_27); +lean_ctor_set_uint8(x_29, sizeof(void*)*2, x_28); +x_30 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_31 = lean_array_push(x_30, x_29); +lean_ctor_set(x_23, 0, x_31); +return x_23; } else { -lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; -x_30 = lean_ctor_get(x_21, 0); -x_31 = lean_ctor_get(x_21, 1); -lean_inc(x_31); -lean_inc(x_30); -lean_dec(x_21); -x_32 = lean_unsigned_to_nat(2u); -x_33 = l_Lean_Syntax_getArg(x_1, x_32); +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_32 = lean_ctor_get(x_23, 0); +x_33 = lean_ctor_get(x_23, 1); +lean_inc(x_33); +lean_inc(x_32); +lean_dec(x_23); +x_34 = lean_unsigned_to_nat(2u); +x_35 = l_Lean_Syntax_getArg(x_1, x_34); lean_dec(x_1); -x_34 = 3; -x_35 = lean_alloc_ctor(0, 2, 1); -lean_ctor_set(x_35, 0, x_30); -lean_ctor_set(x_35, 1, x_33); -lean_ctor_set_uint8(x_35, sizeof(void*)*2, x_34); -x_36 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_37 = lean_array_push(x_36, x_35); -x_38 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_38, 0, x_37); -lean_ctor_set(x_38, 1, x_31); -return x_38; +x_36 = 3; +x_37 = lean_alloc_ctor(0, 2, 1); +lean_ctor_set(x_37, 0, x_32); +lean_ctor_set(x_37, 1, x_35); +lean_ctor_set_uint8(x_37, sizeof(void*)*2, x_36); +x_38 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_39 = lean_array_push(x_38, x_37); +x_40 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_40, 0, x_39); +lean_ctor_set(x_40, 1, x_33); +return x_40; } } else { -uint8_t x_39; +uint8_t x_41; lean_dec(x_1); -x_39 = !lean_is_exclusive(x_21); -if (x_39 == 0) +x_41 = !lean_is_exclusive(x_23); +if (x_41 == 0) { -return x_21; +return x_23; } else { -lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_40 = lean_ctor_get(x_21, 0); -x_41 = lean_ctor_get(x_21, 1); -lean_inc(x_41); -lean_inc(x_40); -lean_dec(x_21); -x_42 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_42, 0, x_40); -lean_ctor_set(x_42, 1, x_41); -return x_42; +lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_42 = lean_ctor_get(x_23, 0); +x_43 = lean_ctor_get(x_23, 1); +lean_inc(x_43); +lean_inc(x_42); +lean_dec(x_23); +x_44 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_44, 0, x_42); +lean_ctor_set(x_44, 1, x_43); +return x_44; } } } } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; +lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_dec(x_9); -x_43 = lean_unsigned_to_nat(1u); -x_44 = l_Lean_Syntax_getArg(x_1, x_43); +x_45 = lean_unsigned_to_nat(1u); +x_46 = l_Lean_Syntax_getArg(x_1, x_45); 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_45 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getBinderIds(x_44, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_44); -if (lean_obj_tag(x_45) == 0) +x_47 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getBinderIds(x_46, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_46); +if (lean_obj_tag(x_47) == 0) { -lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; size_t x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_46 = lean_ctor_get(x_45, 0); -lean_inc(x_46); -x_47 = lean_ctor_get(x_45, 1); -lean_inc(x_47); -lean_dec(x_45); -x_48 = l_Lean_nullKind; -lean_inc(x_46); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set(x_49, 1, x_46); -x_50 = lean_unsigned_to_nat(2u); -x_51 = l_Lean_Syntax_getArg(x_1, x_50); +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; size_t 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_48 = lean_ctor_get(x_47, 0); +lean_inc(x_48); +x_49 = lean_ctor_get(x_47, 1); +lean_inc(x_49); +lean_dec(x_47); +x_50 = l_Lean_nullKind; +lean_inc(x_48); +x_51 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_48); +x_52 = lean_unsigned_to_nat(2u); +x_53 = l_Lean_Syntax_getArg(x_1, x_52); lean_dec(x_1); -x_52 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderType(x_49, x_51); -lean_dec(x_51); -lean_dec(x_49); -x_53 = lean_array_get_size(x_46); -x_54 = lean_usize_of_nat(x_53); +x_54 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderType(x_51, x_53); lean_dec(x_53); -x_55 = x_46; -x_56 = lean_box_usize(x_54); -x_57 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___boxed__const__1; -x_58 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__2___boxed), 11, 4); -lean_closure_set(x_58, 0, x_52); -lean_closure_set(x_58, 1, x_56); -lean_closure_set(x_58, 2, x_57); -lean_closure_set(x_58, 3, x_55); -x_59 = x_58; -x_60 = lean_apply_7(x_59, x_2, x_3, x_4, x_5, x_6, x_7, x_47); -return x_60; +lean_dec(x_51); +x_55 = lean_array_get_size(x_48); +x_56 = lean_usize_of_nat(x_55); +lean_dec(x_55); +x_57 = x_48; +x_58 = lean_box_usize(x_56); +x_59 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___boxed__const__1; +x_60 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__2___boxed), 11, 4); +lean_closure_set(x_60, 0, x_54); +lean_closure_set(x_60, 1, x_58); +lean_closure_set(x_60, 2, x_59); +lean_closure_set(x_60, 3, x_57); +x_61 = x_60; +x_62 = lean_apply_7(x_61, x_2, x_3, x_4, x_5, x_6, x_7, x_49); +return x_62; } else { -uint8_t x_61; +uint8_t x_63; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -4307,205 +4425,205 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_61 = !lean_is_exclusive(x_45); -if (x_61 == 0) +x_63 = !lean_is_exclusive(x_47); +if (x_63 == 0) { -return x_45; +return x_47; } else { -lean_object* x_62; lean_object* x_63; lean_object* x_64; -x_62 = lean_ctor_get(x_45, 0); -x_63 = lean_ctor_get(x_45, 1); -lean_inc(x_63); -lean_inc(x_62); -lean_dec(x_45); -x_64 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_64, 0, x_62); -lean_ctor_set(x_64, 1, x_63); -return x_64; +lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_64 = lean_ctor_get(x_47, 0); +x_65 = lean_ctor_get(x_47, 1); +lean_inc(x_65); +lean_inc(x_64); +lean_dec(x_47); +x_66 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_66, 0, x_64); +lean_ctor_set(x_66, 1, x_65); +return x_66; } } } } else { -lean_object* x_65; lean_object* x_66; lean_object* x_67; +lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_dec(x_9); -x_65 = lean_unsigned_to_nat(1u); -x_66 = l_Lean_Syntax_getArg(x_1, x_65); +x_67 = lean_unsigned_to_nat(1u); +x_68 = l_Lean_Syntax_getArg(x_1, x_67); 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_67 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getBinderIds(x_66, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_66); -if (lean_obj_tag(x_67) == 0) +x_69 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getBinderIds(x_68, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_68); +if (lean_obj_tag(x_69) == 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; -x_68 = lean_ctor_get(x_67, 0); -lean_inc(x_68); -x_69 = lean_ctor_get(x_67, 1); -lean_inc(x_69); -lean_dec(x_67); -x_70 = l_Lean_nullKind; -lean_inc(x_68); -x_71 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_71, 0, x_70); -lean_ctor_set(x_71, 1, x_68); -x_72 = lean_unsigned_to_nat(2u); -x_73 = l_Lean_Syntax_getArg(x_1, x_72); -x_74 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderType(x_71, x_73); -lean_dec(x_73); -lean_dec(x_71); -x_75 = lean_unsigned_to_nat(3u); -x_76 = l_Lean_Syntax_getArg(x_1, x_75); +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; size_t x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_70 = lean_ctor_get(x_69, 0); +lean_inc(x_70); +x_71 = lean_ctor_get(x_69, 1); +lean_inc(x_71); +lean_dec(x_69); +x_72 = l_Lean_nullKind; +lean_inc(x_70); +x_73 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_73, 0, x_72); +lean_ctor_set(x_73, 1, x_70); +x_74 = lean_unsigned_to_nat(2u); +x_75 = l_Lean_Syntax_getArg(x_1, x_74); lean_dec(x_1); -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_77 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier(x_74, x_76, x_2, x_3, x_4, x_5, x_6, x_7, x_69); -lean_dec(x_76); -if (lean_obj_tag(x_77) == 0) -{ -lean_object* x_78; lean_object* x_79; lean_object* x_80; size_t x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; -x_78 = lean_ctor_get(x_77, 0); -lean_inc(x_78); -x_79 = lean_ctor_get(x_77, 1); -lean_inc(x_79); +x_76 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderType(x_73, x_75); +lean_dec(x_75); +lean_dec(x_73); +x_77 = lean_array_get_size(x_70); +x_78 = lean_usize_of_nat(x_77); lean_dec(x_77); -x_80 = lean_array_get_size(x_68); -x_81 = lean_usize_of_nat(x_80); -lean_dec(x_80); -x_82 = x_68; -x_83 = lean_box_usize(x_81); -x_84 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___boxed__const__1; -x_85 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__3___boxed), 11, 4); -lean_closure_set(x_85, 0, x_78); -lean_closure_set(x_85, 1, x_83); -lean_closure_set(x_85, 2, x_84); -lean_closure_set(x_85, 3, x_82); -x_86 = x_85; -x_87 = lean_apply_7(x_86, x_2, x_3, x_4, x_5, x_6, x_7, x_79); -return x_87; +x_79 = x_70; +x_80 = lean_box_usize(x_78); +x_81 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___boxed__const__1; +x_82 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__3___boxed), 11, 4); +lean_closure_set(x_82, 0, x_76); +lean_closure_set(x_82, 1, x_80); +lean_closure_set(x_82, 2, x_81); +lean_closure_set(x_82, 3, x_79); +x_83 = x_82; +x_84 = lean_apply_7(x_83, x_2, x_3, x_4, x_5, x_6, x_7, x_71); +return x_84; } else { -uint8_t x_88; -lean_dec(x_68); +uint8_t x_85; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_88 = !lean_is_exclusive(x_77); -if (x_88 == 0) +lean_dec(x_1); +x_85 = !lean_is_exclusive(x_69); +if (x_85 == 0) { -return x_77; +return x_69; +} +else +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_86 = lean_ctor_get(x_69, 0); +x_87 = lean_ctor_get(x_69, 1); +lean_inc(x_87); +lean_inc(x_86); +lean_dec(x_69); +x_88 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_88, 0, x_86); +lean_ctor_set(x_88, 1, x_87); +return x_88; +} +} +} } else { lean_object* x_89; lean_object* x_90; lean_object* x_91; -x_89 = lean_ctor_get(x_77, 0); -x_90 = lean_ctor_get(x_77, 1); -lean_inc(x_90); -lean_inc(x_89); -lean_dec(x_77); -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_92; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_92 = !lean_is_exclusive(x_67); -if (x_92 == 0) -{ -return x_67; -} -else -{ -lean_object* x_93; lean_object* x_94; lean_object* x_95; -x_93 = lean_ctor_get(x_67, 0); -x_94 = lean_ctor_get(x_67, 1); -lean_inc(x_94); -lean_inc(x_93); -lean_dec(x_67); -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 -{ -lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_dec(x_9); -x_96 = lean_unsigned_to_nat(0u); -x_97 = l_Lean_Syntax_getArg(x_1, x_96); +x_89 = lean_unsigned_to_nat(1u); +x_90 = l_Lean_Syntax_getArg(x_1, x_89); 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_98 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getBinderIds(x_97, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_97); -if (lean_obj_tag(x_98) == 0) +x_91 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getBinderIds(x_90, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_90); +if (lean_obj_tag(x_91) == 0) { -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; size_t 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; -x_99 = lean_ctor_get(x_98, 0); -lean_inc(x_99); -x_100 = lean_ctor_get(x_98, 1); -lean_inc(x_100); -lean_dec(x_98); -x_101 = l_Lean_nullKind; -lean_inc(x_99); -x_102 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_102, 0, x_101); -lean_ctor_set(x_102, 1, x_99); -x_103 = lean_unsigned_to_nat(1u); -x_104 = l_Lean_Syntax_getArg(x_1, x_103); +lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; +x_92 = lean_ctor_get(x_91, 0); +lean_inc(x_92); +x_93 = lean_ctor_get(x_91, 1); +lean_inc(x_93); +lean_dec(x_91); +x_94 = l_Lean_nullKind; +lean_inc(x_92); +x_95 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_95, 0, x_94); +lean_ctor_set(x_95, 1, x_92); +x_96 = lean_unsigned_to_nat(2u); +x_97 = l_Lean_Syntax_getArg(x_1, x_96); +x_98 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderType(x_95, x_97); +lean_dec(x_97); +lean_dec(x_95); +x_99 = lean_unsigned_to_nat(3u); +x_100 = l_Lean_Syntax_getArg(x_1, x_99); lean_dec(x_1); -x_105 = l_Lean_Elab_Term_expandOptType(x_102, x_104); +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_101 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier(x_98, x_100, x_2, x_3, x_4, x_5, x_6, x_7, x_93); +lean_dec(x_100); +if (lean_obj_tag(x_101) == 0) +{ +lean_object* x_102; lean_object* x_103; lean_object* x_104; size_t x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; +x_102 = lean_ctor_get(x_101, 0); +lean_inc(x_102); +x_103 = lean_ctor_get(x_101, 1); +lean_inc(x_103); +lean_dec(x_101); +x_104 = lean_array_get_size(x_92); +x_105 = lean_usize_of_nat(x_104); lean_dec(x_104); -lean_dec(x_102); -x_106 = lean_array_get_size(x_99); -x_107 = lean_usize_of_nat(x_106); -lean_dec(x_106); -x_108 = x_99; -x_109 = lean_box_usize(x_107); -x_110 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___boxed__const__1; -x_111 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__4___boxed), 11, 4); -lean_closure_set(x_111, 0, x_105); -lean_closure_set(x_111, 1, x_109); -lean_closure_set(x_111, 2, x_110); -lean_closure_set(x_111, 3, x_108); -x_112 = x_111; -x_113 = lean_apply_7(x_112, x_2, x_3, x_4, x_5, x_6, x_7, x_100); -return x_113; +x_106 = x_92; +x_107 = lean_box_usize(x_105); +x_108 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___boxed__const__1; +x_109 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__4___boxed), 11, 4); +lean_closure_set(x_109, 0, x_102); +lean_closure_set(x_109, 1, x_107); +lean_closure_set(x_109, 2, x_108); +lean_closure_set(x_109, 3, x_106); +x_110 = x_109; +x_111 = lean_apply_7(x_110, x_2, x_3, x_4, x_5, x_6, x_7, x_103); +return x_111; } else { -uint8_t x_114; +uint8_t x_112; +lean_dec(x_92); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_112 = !lean_is_exclusive(x_101); +if (x_112 == 0) +{ +return x_101; +} +else +{ +lean_object* x_113; lean_object* x_114; lean_object* x_115; +x_113 = lean_ctor_get(x_101, 0); +x_114 = lean_ctor_get(x_101, 1); +lean_inc(x_114); +lean_inc(x_113); +lean_dec(x_101); +x_115 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_115, 0, x_113); +lean_ctor_set(x_115, 1, x_114); +return x_115; +} +} +} +else +{ +uint8_t x_116; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -4513,23 +4631,102 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_114 = !lean_is_exclusive(x_98); -if (x_114 == 0) +x_116 = !lean_is_exclusive(x_91); +if (x_116 == 0) { -return x_98; +return x_91; } else { -lean_object* x_115; lean_object* x_116; lean_object* x_117; -x_115 = lean_ctor_get(x_98, 0); -x_116 = lean_ctor_get(x_98, 1); -lean_inc(x_116); -lean_inc(x_115); -lean_dec(x_98); -x_117 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_117, 0, x_115); -lean_ctor_set(x_117, 1, x_116); -return x_117; +lean_object* x_117; lean_object* x_118; lean_object* x_119; +x_117 = lean_ctor_get(x_91, 0); +x_118 = lean_ctor_get(x_91, 1); +lean_inc(x_118); +lean_inc(x_117); +lean_dec(x_91); +x_119 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_119, 0, x_117); +lean_ctor_set(x_119, 1, x_118); +return x_119; +} +} +} +} +else +{ +lean_object* x_120; lean_object* x_121; lean_object* x_122; +lean_dec(x_9); +x_120 = lean_unsigned_to_nat(0u); +x_121 = l_Lean_Syntax_getArg(x_1, x_120); +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_122 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getBinderIds(x_121, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_121); +if (lean_obj_tag(x_122) == 0) +{ +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; size_t x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; +x_123 = lean_ctor_get(x_122, 0); +lean_inc(x_123); +x_124 = lean_ctor_get(x_122, 1); +lean_inc(x_124); +lean_dec(x_122); +x_125 = l_Lean_nullKind; +lean_inc(x_123); +x_126 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_126, 0, x_125); +lean_ctor_set(x_126, 1, x_123); +x_127 = lean_unsigned_to_nat(1u); +x_128 = l_Lean_Syntax_getArg(x_1, x_127); +lean_dec(x_1); +x_129 = l_Lean_Elab_Term_expandOptType(x_126, x_128); +lean_dec(x_128); +lean_dec(x_126); +x_130 = lean_array_get_size(x_123); +x_131 = lean_usize_of_nat(x_130); +lean_dec(x_130); +x_132 = x_123; +x_133 = lean_box_usize(x_131); +x_134 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___boxed__const__1; +x_135 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__5___boxed), 11, 4); +lean_closure_set(x_135, 0, x_129); +lean_closure_set(x_135, 1, x_133); +lean_closure_set(x_135, 2, x_134); +lean_closure_set(x_135, 3, x_132); +x_136 = x_135; +x_137 = lean_apply_7(x_136, x_2, x_3, x_4, x_5, x_6, x_7, x_124); +return x_137; +} +else +{ +uint8_t x_138; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_138 = !lean_is_exclusive(x_122); +if (x_138 == 0) +{ +return x_122; +} +else +{ +lean_object* x_139; lean_object* x_140; lean_object* x_141; +x_139 = lean_ctor_get(x_122, 0); +x_140 = lean_ctor_get(x_122, 1); +lean_inc(x_140); +lean_inc(x_139); +lean_dec(x_122); +x_141 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_141, 0, x_139); +lean_ctor_set(x_141, 1, x_140); +return x_141; } } } @@ -4585,6 +4782,18 @@ x_14 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term return x_14; } } +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +size_t x_12; size_t x_13; lean_object* x_14; +x_12 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_13 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_14 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__5(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_14; +} +} static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_registerFailedToInferBinderTypeInfo___closed__1() { _start: { @@ -4733,7 +4942,7 @@ lean_dec(x_1); return x_9; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__1() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__1() { _start: { lean_object* x_1; @@ -4741,17 +4950,17 @@ x_1 = lean_mk_string("checkBinderAnnotations"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__2() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__1; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__3() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__3() { _start: { lean_object* x_1; @@ -4759,7 +4968,7 @@ x_1 = lean_mk_string(""); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__4() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__4() { _start: { lean_object* x_1; @@ -4767,13 +4976,13 @@ x_1 = lean_mk_string("check whether type is a class instance whenever the binder return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__5() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__5() { _start: { uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = 1; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__3; -x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__4; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__3; +x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__4; x_4 = lean_box(x_1); x_5 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_5, 0, x_4); @@ -4782,12 +4991,12 @@ lean_ctor_set(x_5, 2, x_3); return x_5; } } -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086_(lean_object* x_1) { +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__2; -x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__5; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__2; +x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__5; x_4 = l_Lean_Option_register___at_Lean_Elab_initFn____x40_Lean_Elab_AutoBound___hyg_4____spec__1(x_2, x_3, x_1); return x_4; } @@ -6580,20 +6789,15 @@ x_1 = lean_mk_string("paren"); return x_1; } } -lean_object* l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg(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* l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg(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: { switch (lean_obj_tag(x_1)) { case 1: { -lean_object* x_10; -lean_dec(x_8); -x_10 = lean_ctor_get(x_1, 0); -lean_inc(x_10); -if (lean_obj_tag(x_10) == 1) -{ lean_object* x_11; -x_11 = lean_ctor_get(x_10, 0); +lean_dec(x_9); +x_11 = lean_ctor_get(x_1, 0); lean_inc(x_11); if (lean_obj_tag(x_11) == 1) { @@ -6610,1902 +6814,62 @@ if (lean_obj_tag(x_13) == 1) lean_object* x_14; x_14 = lean_ctor_get(x_13, 0); lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) +if (lean_obj_tag(x_14) == 1) { -lean_object* x_15; uint8_t x_16; -x_15 = lean_ctor_get(x_1, 1); +lean_object* x_15; +x_15 = lean_ctor_get(x_14, 0); lean_inc(x_15); -x_16 = !lean_is_exclusive(x_10); -if (x_16 == 0) +if (lean_obj_tag(x_15) == 0) { -lean_object* x_17; uint64_t x_18; lean_object* x_19; uint8_t x_20; -x_17 = lean_ctor_get(x_10, 1); -x_18 = lean_ctor_get_uint64(x_10, sizeof(void*)*2); -x_19 = lean_ctor_get(x_10, 0); -lean_dec(x_19); -x_20 = !lean_is_exclusive(x_11); -if (x_20 == 0) +lean_object* x_16; uint8_t x_17; +x_16 = lean_ctor_get(x_1, 1); +lean_inc(x_16); +x_17 = !lean_is_exclusive(x_11); +if (x_17 == 0) { -lean_object* x_21; uint64_t x_22; lean_object* x_23; uint8_t x_24; -x_21 = lean_ctor_get(x_11, 1); -x_22 = lean_ctor_get_uint64(x_11, sizeof(void*)*2); -x_23 = lean_ctor_get(x_11, 0); -lean_dec(x_23); -x_24 = !lean_is_exclusive(x_12); -if (x_24 == 0) +lean_object* x_18; uint64_t x_19; lean_object* x_20; uint8_t x_21; +x_18 = lean_ctor_get(x_11, 1); +x_19 = lean_ctor_get_uint64(x_11, sizeof(void*)*2); +x_20 = lean_ctor_get(x_11, 0); +lean_dec(x_20); +x_21 = !lean_is_exclusive(x_12); +if (x_21 == 0) { -lean_object* x_25; uint64_t x_26; lean_object* x_27; uint8_t x_28; -x_25 = lean_ctor_get(x_12, 1); -x_26 = lean_ctor_get_uint64(x_12, sizeof(void*)*2); -x_27 = lean_ctor_get(x_12, 0); -lean_dec(x_27); -x_28 = !lean_is_exclusive(x_13); -if (x_28 == 0) +lean_object* x_22; uint64_t x_23; lean_object* x_24; uint8_t x_25; +x_22 = lean_ctor_get(x_12, 1); +x_23 = lean_ctor_get_uint64(x_12, sizeof(void*)*2); +x_24 = lean_ctor_get(x_12, 0); +lean_dec(x_24); +x_25 = !lean_is_exclusive(x_13); +if (x_25 == 0) { -lean_object* x_29; uint64_t x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; -x_29 = lean_ctor_get(x_13, 1); -x_30 = lean_ctor_get_uint64(x_13, sizeof(void*)*2); -x_31 = lean_ctor_get(x_13, 0); -lean_dec(x_31); -x_32 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__1; -x_33 = lean_string_dec_eq(x_29, x_32); -lean_dec(x_29); -if (x_33 == 0) +lean_object* x_26; uint64_t x_27; lean_object* x_28; uint8_t x_29; +x_26 = lean_ctor_get(x_13, 1); +x_27 = lean_ctor_get_uint64(x_13, sizeof(void*)*2); +x_28 = lean_ctor_get(x_13, 0); +lean_dec(x_28); +x_29 = !lean_is_exclusive(x_14); +if (x_29 == 0) { -lean_object* x_34; +lean_object* x_30; uint64_t x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; +x_30 = lean_ctor_get(x_14, 1); +x_31 = lean_ctor_get_uint64(x_14, sizeof(void*)*2); +x_32 = lean_ctor_get(x_14, 0); +lean_dec(x_32); +x_33 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__1; +x_34 = lean_string_dec_eq(x_30, x_33); +lean_dec(x_30); +if (x_34 == 0) +{ +lean_object* x_35; +lean_free_object(x_14); lean_free_object(x_13); +lean_dec(x_26); lean_free_object(x_12); -lean_dec(x_25); +lean_dec(x_22); lean_free_object(x_11); -lean_dec(x_21); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_15); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_34 = lean_apply_1(x_9, x_1); -return x_34; -} -else -{ -uint8_t x_35; -x_35 = !lean_is_exclusive(x_1); -if (x_35 == 0) -{ -lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; -x_36 = lean_ctor_get(x_1, 1); -lean_dec(x_36); -x_37 = lean_ctor_get(x_1, 0); -lean_dec(x_37); -x_38 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__3; -x_39 = lean_string_dec_eq(x_25, x_38); -if (x_39 == 0) -{ -lean_object* x_40; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_ctor_set(x_13, 1, x_32); -x_40 = lean_apply_1(x_9, x_1); -return x_40; -} -else -{ -lean_object* x_41; uint8_t x_42; -lean_dec(x_25); -x_41 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__5; -x_42 = lean_string_dec_eq(x_21, x_41); -if (x_42 == 0) -{ -lean_object* x_43; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_ctor_set(x_13, 1, x_32); -lean_ctor_set(x_12, 1, x_38); -x_43 = lean_apply_1(x_9, x_1); -return x_43; -} -else -{ -lean_object* x_44; uint8_t x_45; -lean_dec(x_21); -x_44 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__5; -x_45 = lean_string_dec_eq(x_17, x_44); -if (x_45 == 0) -{ -lean_object* x_46; uint8_t x_47; -lean_dec(x_2); -x_46 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__7; -x_47 = lean_string_dec_eq(x_17, x_46); -if (x_47 == 0) -{ -lean_object* x_48; uint8_t x_49; -lean_dec(x_3); -x_48 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__3; -x_49 = lean_string_dec_eq(x_17, x_48); -if (x_49 == 0) -{ -lean_object* x_50; uint8_t x_51; -lean_dec(x_4); -x_50 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__1; -x_51 = lean_string_dec_eq(x_17, x_50); -if (x_51 == 0) -{ -lean_object* x_52; uint8_t x_53; -lean_dec(x_5); -x_52 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__7; -x_53 = lean_string_dec_eq(x_17, x_52); -if (x_53 == 0) -{ -lean_object* x_54; uint8_t x_55; -lean_dec(x_6); -x_54 = l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg___closed__1; -x_55 = lean_string_dec_eq(x_17, x_54); -if (x_55 == 0) -{ -lean_object* x_56; -lean_dec(x_7); -lean_ctor_set(x_13, 1, x_32); -lean_ctor_set(x_12, 1, x_38); -lean_ctor_set(x_11, 1, x_41); -x_56 = lean_apply_1(x_9, x_1); -return x_56; -} -else -{ -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; -lean_free_object(x_1); -lean_free_object(x_13); -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -x_57 = lean_box_uint64(x_30); -x_58 = lean_box_uint64(x_26); -x_59 = lean_box_uint64(x_22); -x_60 = lean_box_uint64(x_18); -x_61 = lean_apply_5(x_7, x_15, x_57, x_58, x_59, x_60); -return x_61; -} -} -else -{ -lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; -lean_free_object(x_1); -lean_free_object(x_13); -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_7); -x_62 = lean_box_uint64(x_30); -x_63 = lean_box_uint64(x_26); -x_64 = lean_box_uint64(x_22); -x_65 = lean_box_uint64(x_18); -x_66 = lean_apply_5(x_6, x_15, x_62, x_63, x_64, x_65); -return x_66; -} -} -else -{ -lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; -lean_free_object(x_1); -lean_free_object(x_13); -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -x_67 = lean_box_uint64(x_30); -x_68 = lean_box_uint64(x_26); -x_69 = lean_box_uint64(x_22); -x_70 = lean_box_uint64(x_18); -x_71 = lean_apply_5(x_5, x_15, x_67, x_68, x_69, x_70); -return x_71; -} -} -else -{ -lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -lean_free_object(x_1); -lean_free_object(x_13); -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_72 = lean_box_uint64(x_30); -x_73 = lean_box_uint64(x_26); -x_74 = lean_box_uint64(x_22); -x_75 = lean_box_uint64(x_18); -x_76 = lean_apply_5(x_4, x_15, x_72, x_73, x_74, x_75); -return x_76; -} -} -else -{ -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; -lean_free_object(x_1); -lean_free_object(x_13); -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_77 = lean_box_uint64(x_30); -x_78 = lean_box_uint64(x_26); -x_79 = lean_box_uint64(x_22); -x_80 = lean_box_uint64(x_18); -x_81 = lean_apply_5(x_3, x_15, x_77, x_78, x_79, x_80); -return x_81; -} -} -else -{ -lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; -lean_free_object(x_1); -lean_free_object(x_13); -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_82 = lean_box_uint64(x_30); -x_83 = lean_box_uint64(x_26); -x_84 = lean_box_uint64(x_22); -x_85 = lean_box_uint64(x_18); -x_86 = lean_apply_5(x_2, x_15, x_82, x_83, x_84, x_85); -return x_86; -} -} -} -} -else -{ -lean_object* x_87; uint8_t x_88; -lean_dec(x_1); -x_87 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__3; -x_88 = lean_string_dec_eq(x_25, x_87); -if (x_88 == 0) -{ -lean_object* x_89; lean_object* x_90; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_ctor_set(x_13, 1, x_32); -x_89 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_89, 0, x_10); -lean_ctor_set(x_89, 1, x_15); -x_90 = lean_apply_1(x_9, x_89); -return x_90; -} -else -{ -lean_object* x_91; uint8_t x_92; -lean_dec(x_25); -x_91 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__5; -x_92 = lean_string_dec_eq(x_21, x_91); -if (x_92 == 0) -{ -lean_object* x_93; lean_object* x_94; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_ctor_set(x_13, 1, x_32); -lean_ctor_set(x_12, 1, x_87); -x_93 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_93, 0, x_10); -lean_ctor_set(x_93, 1, x_15); -x_94 = lean_apply_1(x_9, x_93); -return x_94; -} -else -{ -lean_object* x_95; uint8_t x_96; -lean_dec(x_21); -x_95 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__5; -x_96 = lean_string_dec_eq(x_17, x_95); -if (x_96 == 0) -{ -lean_object* x_97; uint8_t x_98; -lean_dec(x_2); -x_97 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__7; -x_98 = lean_string_dec_eq(x_17, x_97); -if (x_98 == 0) -{ -lean_object* x_99; uint8_t x_100; -lean_dec(x_3); -x_99 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__3; -x_100 = lean_string_dec_eq(x_17, x_99); -if (x_100 == 0) -{ -lean_object* x_101; uint8_t x_102; -lean_dec(x_4); -x_101 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__1; -x_102 = lean_string_dec_eq(x_17, x_101); -if (x_102 == 0) -{ -lean_object* x_103; uint8_t x_104; -lean_dec(x_5); -x_103 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__7; -x_104 = lean_string_dec_eq(x_17, x_103); -if (x_104 == 0) -{ -lean_object* x_105; uint8_t x_106; -lean_dec(x_6); -x_105 = l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg___closed__1; -x_106 = lean_string_dec_eq(x_17, x_105); -if (x_106 == 0) -{ -lean_object* x_107; lean_object* x_108; -lean_dec(x_7); -lean_ctor_set(x_13, 1, x_32); -lean_ctor_set(x_12, 1, x_87); -lean_ctor_set(x_11, 1, x_91); -x_107 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_107, 0, x_10); -lean_ctor_set(x_107, 1, x_15); -x_108 = lean_apply_1(x_9, x_107); -return x_108; -} -else -{ -lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; -lean_free_object(x_13); -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -x_109 = lean_box_uint64(x_30); -x_110 = lean_box_uint64(x_26); -x_111 = lean_box_uint64(x_22); -x_112 = lean_box_uint64(x_18); -x_113 = lean_apply_5(x_7, x_15, x_109, x_110, x_111, x_112); -return x_113; -} -} -else -{ -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; -lean_free_object(x_13); -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_7); -x_114 = lean_box_uint64(x_30); -x_115 = lean_box_uint64(x_26); -x_116 = lean_box_uint64(x_22); -x_117 = lean_box_uint64(x_18); -x_118 = lean_apply_5(x_6, x_15, x_114, x_115, x_116, x_117); -return x_118; -} -} -else -{ -lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; -lean_free_object(x_13); -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -x_119 = lean_box_uint64(x_30); -x_120 = lean_box_uint64(x_26); -x_121 = lean_box_uint64(x_22); -x_122 = lean_box_uint64(x_18); -x_123 = lean_apply_5(x_5, x_15, x_119, x_120, x_121, x_122); -return x_123; -} -} -else -{ -lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; -lean_free_object(x_13); -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_124 = lean_box_uint64(x_30); -x_125 = lean_box_uint64(x_26); -x_126 = lean_box_uint64(x_22); -x_127 = lean_box_uint64(x_18); -x_128 = lean_apply_5(x_4, x_15, x_124, x_125, x_126, x_127); -return x_128; -} -} -else -{ -lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; -lean_free_object(x_13); -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_129 = lean_box_uint64(x_30); -x_130 = lean_box_uint64(x_26); -x_131 = lean_box_uint64(x_22); -x_132 = lean_box_uint64(x_18); -x_133 = lean_apply_5(x_3, x_15, x_129, x_130, x_131, x_132); -return x_133; -} -} -else -{ -lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; -lean_free_object(x_13); -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_134 = lean_box_uint64(x_30); -x_135 = lean_box_uint64(x_26); -x_136 = lean_box_uint64(x_22); -x_137 = lean_box_uint64(x_18); -x_138 = lean_apply_5(x_2, x_15, x_134, x_135, x_136, x_137); -return x_138; -} -} -} -} -} -} -else -{ -lean_object* x_139; uint64_t x_140; lean_object* x_141; uint8_t x_142; -x_139 = lean_ctor_get(x_13, 1); -x_140 = lean_ctor_get_uint64(x_13, sizeof(void*)*2); -lean_inc(x_139); -lean_dec(x_13); -x_141 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__1; -x_142 = lean_string_dec_eq(x_139, x_141); -lean_dec(x_139); -if (x_142 == 0) -{ -lean_object* x_143; -lean_free_object(x_12); -lean_dec(x_25); -lean_free_object(x_11); -lean_dec(x_21); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_15); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_143 = lean_apply_1(x_9, x_1); -return x_143; -} -else -{ -lean_object* x_144; lean_object* x_145; uint8_t x_146; -if (lean_is_exclusive(x_1)) { - lean_ctor_release(x_1, 0); - lean_ctor_release(x_1, 1); - x_144 = x_1; -} else { - lean_dec_ref(x_1); - x_144 = lean_box(0); -} -x_145 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__3; -x_146 = lean_string_dec_eq(x_25, x_145); -if (x_146 == 0) -{ -lean_object* x_147; lean_object* x_148; lean_object* x_149; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_147 = lean_alloc_ctor(1, 2, 8); -lean_ctor_set(x_147, 0, x_14); -lean_ctor_set(x_147, 1, x_141); -lean_ctor_set_uint64(x_147, sizeof(void*)*2, x_140); -lean_ctor_set(x_12, 0, x_147); -if (lean_is_scalar(x_144)) { - x_148 = lean_alloc_ctor(1, 2, 0); -} else { - x_148 = x_144; -} -lean_ctor_set(x_148, 0, x_10); -lean_ctor_set(x_148, 1, x_15); -x_149 = lean_apply_1(x_9, x_148); -return x_149; -} -else -{ -lean_object* x_150; uint8_t x_151; -lean_dec(x_25); -x_150 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__5; -x_151 = lean_string_dec_eq(x_21, x_150); -if (x_151 == 0) -{ -lean_object* x_152; lean_object* x_153; lean_object* x_154; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_152 = lean_alloc_ctor(1, 2, 8); -lean_ctor_set(x_152, 0, x_14); -lean_ctor_set(x_152, 1, x_141); -lean_ctor_set_uint64(x_152, sizeof(void*)*2, x_140); -lean_ctor_set(x_12, 1, x_145); -lean_ctor_set(x_12, 0, x_152); -if (lean_is_scalar(x_144)) { - x_153 = lean_alloc_ctor(1, 2, 0); -} else { - x_153 = x_144; -} -lean_ctor_set(x_153, 0, x_10); -lean_ctor_set(x_153, 1, x_15); -x_154 = lean_apply_1(x_9, x_153); -return x_154; -} -else -{ -lean_object* x_155; uint8_t x_156; -lean_dec(x_21); -x_155 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__5; -x_156 = lean_string_dec_eq(x_17, x_155); -if (x_156 == 0) -{ -lean_object* x_157; uint8_t x_158; -lean_dec(x_2); -x_157 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__7; -x_158 = lean_string_dec_eq(x_17, x_157); -if (x_158 == 0) -{ -lean_object* x_159; uint8_t x_160; -lean_dec(x_3); -x_159 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__3; -x_160 = lean_string_dec_eq(x_17, x_159); -if (x_160 == 0) -{ -lean_object* x_161; uint8_t x_162; -lean_dec(x_4); -x_161 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__1; -x_162 = lean_string_dec_eq(x_17, x_161); -if (x_162 == 0) -{ -lean_object* x_163; uint8_t x_164; -lean_dec(x_5); -x_163 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__7; -x_164 = lean_string_dec_eq(x_17, x_163); -if (x_164 == 0) -{ -lean_object* x_165; uint8_t x_166; -lean_dec(x_6); -x_165 = l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg___closed__1; -x_166 = lean_string_dec_eq(x_17, x_165); -if (x_166 == 0) -{ -lean_object* x_167; lean_object* x_168; lean_object* x_169; -lean_dec(x_7); -x_167 = lean_alloc_ctor(1, 2, 8); -lean_ctor_set(x_167, 0, x_14); -lean_ctor_set(x_167, 1, x_141); -lean_ctor_set_uint64(x_167, sizeof(void*)*2, x_140); -lean_ctor_set(x_12, 1, x_145); -lean_ctor_set(x_12, 0, x_167); -lean_ctor_set(x_11, 1, x_150); -if (lean_is_scalar(x_144)) { - x_168 = lean_alloc_ctor(1, 2, 0); -} else { - x_168 = x_144; -} -lean_ctor_set(x_168, 0, x_10); -lean_ctor_set(x_168, 1, x_15); -x_169 = lean_apply_1(x_9, x_168); -return x_169; -} -else -{ -lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; -lean_dec(x_144); -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -x_170 = lean_box_uint64(x_140); -x_171 = lean_box_uint64(x_26); -x_172 = lean_box_uint64(x_22); -x_173 = lean_box_uint64(x_18); -x_174 = lean_apply_5(x_7, x_15, x_170, x_171, x_172, x_173); -return x_174; -} -} -else -{ -lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; -lean_dec(x_144); -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_7); -x_175 = lean_box_uint64(x_140); -x_176 = lean_box_uint64(x_26); -x_177 = lean_box_uint64(x_22); -x_178 = lean_box_uint64(x_18); -x_179 = lean_apply_5(x_6, x_15, x_175, x_176, x_177, x_178); -return x_179; -} -} -else -{ -lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; -lean_dec(x_144); -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -x_180 = lean_box_uint64(x_140); -x_181 = lean_box_uint64(x_26); -x_182 = lean_box_uint64(x_22); -x_183 = lean_box_uint64(x_18); -x_184 = lean_apply_5(x_5, x_15, x_180, x_181, x_182, x_183); -return x_184; -} -} -else -{ -lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; -lean_dec(x_144); -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_185 = lean_box_uint64(x_140); -x_186 = lean_box_uint64(x_26); -x_187 = lean_box_uint64(x_22); -x_188 = lean_box_uint64(x_18); -x_189 = lean_apply_5(x_4, x_15, x_185, x_186, x_187, x_188); -return x_189; -} -} -else -{ -lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; -lean_dec(x_144); -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_190 = lean_box_uint64(x_140); -x_191 = lean_box_uint64(x_26); -x_192 = lean_box_uint64(x_22); -x_193 = lean_box_uint64(x_18); -x_194 = lean_apply_5(x_3, x_15, x_190, x_191, x_192, x_193); -return x_194; -} -} -else -{ -lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; -lean_dec(x_144); -lean_free_object(x_12); -lean_free_object(x_11); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_195 = lean_box_uint64(x_140); -x_196 = lean_box_uint64(x_26); -x_197 = lean_box_uint64(x_22); -x_198 = lean_box_uint64(x_18); -x_199 = lean_apply_5(x_2, x_15, x_195, x_196, x_197, x_198); -return x_199; -} -} -} -} -} -} -else -{ -lean_object* x_200; uint64_t x_201; lean_object* x_202; uint64_t x_203; lean_object* x_204; lean_object* x_205; uint8_t x_206; -x_200 = lean_ctor_get(x_12, 1); -x_201 = lean_ctor_get_uint64(x_12, sizeof(void*)*2); -lean_inc(x_200); -lean_dec(x_12); -x_202 = lean_ctor_get(x_13, 1); -lean_inc(x_202); -x_203 = lean_ctor_get_uint64(x_13, sizeof(void*)*2); -if (lean_is_exclusive(x_13)) { - lean_ctor_release(x_13, 0); - lean_ctor_release(x_13, 1); - x_204 = x_13; -} else { - lean_dec_ref(x_13); - x_204 = lean_box(0); -} -x_205 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__1; -x_206 = lean_string_dec_eq(x_202, x_205); -lean_dec(x_202); -if (x_206 == 0) -{ -lean_object* x_207; -lean_dec(x_204); -lean_dec(x_200); -lean_free_object(x_11); -lean_dec(x_21); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_15); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_207 = lean_apply_1(x_9, x_1); -return x_207; -} -else -{ -lean_object* x_208; lean_object* x_209; uint8_t x_210; -if (lean_is_exclusive(x_1)) { - lean_ctor_release(x_1, 0); - lean_ctor_release(x_1, 1); - x_208 = x_1; -} else { - lean_dec_ref(x_1); - x_208 = lean_box(0); -} -x_209 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__3; -x_210 = lean_string_dec_eq(x_200, x_209); -if (x_210 == 0) -{ -lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -if (lean_is_scalar(x_204)) { - x_211 = lean_alloc_ctor(1, 2, 8); -} else { - x_211 = x_204; -} -lean_ctor_set(x_211, 0, x_14); -lean_ctor_set(x_211, 1, x_205); -lean_ctor_set_uint64(x_211, sizeof(void*)*2, x_203); -x_212 = lean_alloc_ctor(1, 2, 8); -lean_ctor_set(x_212, 0, x_211); -lean_ctor_set(x_212, 1, x_200); -lean_ctor_set_uint64(x_212, sizeof(void*)*2, x_201); -lean_ctor_set(x_11, 0, x_212); -if (lean_is_scalar(x_208)) { - x_213 = lean_alloc_ctor(1, 2, 0); -} else { - x_213 = x_208; -} -lean_ctor_set(x_213, 0, x_10); -lean_ctor_set(x_213, 1, x_15); -x_214 = lean_apply_1(x_9, x_213); -return x_214; -} -else -{ -lean_object* x_215; uint8_t x_216; -lean_dec(x_200); -x_215 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__5; -x_216 = lean_string_dec_eq(x_21, x_215); -if (x_216 == 0) -{ -lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -if (lean_is_scalar(x_204)) { - x_217 = lean_alloc_ctor(1, 2, 8); -} else { - x_217 = x_204; -} -lean_ctor_set(x_217, 0, x_14); -lean_ctor_set(x_217, 1, x_205); -lean_ctor_set_uint64(x_217, sizeof(void*)*2, x_203); -x_218 = lean_alloc_ctor(1, 2, 8); -lean_ctor_set(x_218, 0, x_217); -lean_ctor_set(x_218, 1, x_209); -lean_ctor_set_uint64(x_218, sizeof(void*)*2, x_201); -lean_ctor_set(x_11, 0, x_218); -if (lean_is_scalar(x_208)) { - x_219 = lean_alloc_ctor(1, 2, 0); -} else { - x_219 = x_208; -} -lean_ctor_set(x_219, 0, x_10); -lean_ctor_set(x_219, 1, x_15); -x_220 = lean_apply_1(x_9, x_219); -return x_220; -} -else -{ -lean_object* x_221; uint8_t x_222; -lean_dec(x_21); -x_221 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__5; -x_222 = lean_string_dec_eq(x_17, x_221); -if (x_222 == 0) -{ -lean_object* x_223; uint8_t x_224; -lean_dec(x_2); -x_223 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__7; -x_224 = lean_string_dec_eq(x_17, x_223); -if (x_224 == 0) -{ -lean_object* x_225; uint8_t x_226; -lean_dec(x_3); -x_225 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__3; -x_226 = lean_string_dec_eq(x_17, x_225); -if (x_226 == 0) -{ -lean_object* x_227; uint8_t x_228; -lean_dec(x_4); -x_227 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__1; -x_228 = lean_string_dec_eq(x_17, x_227); -if (x_228 == 0) -{ -lean_object* x_229; uint8_t x_230; -lean_dec(x_5); -x_229 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__7; -x_230 = lean_string_dec_eq(x_17, x_229); -if (x_230 == 0) -{ -lean_object* x_231; uint8_t x_232; -lean_dec(x_6); -x_231 = l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg___closed__1; -x_232 = lean_string_dec_eq(x_17, x_231); -if (x_232 == 0) -{ -lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; -lean_dec(x_7); -if (lean_is_scalar(x_204)) { - x_233 = lean_alloc_ctor(1, 2, 8); -} else { - x_233 = x_204; -} -lean_ctor_set(x_233, 0, x_14); -lean_ctor_set(x_233, 1, x_205); -lean_ctor_set_uint64(x_233, sizeof(void*)*2, x_203); -x_234 = lean_alloc_ctor(1, 2, 8); -lean_ctor_set(x_234, 0, x_233); -lean_ctor_set(x_234, 1, x_209); -lean_ctor_set_uint64(x_234, sizeof(void*)*2, x_201); -lean_ctor_set(x_11, 1, x_215); -lean_ctor_set(x_11, 0, x_234); -if (lean_is_scalar(x_208)) { - x_235 = lean_alloc_ctor(1, 2, 0); -} else { - x_235 = x_208; -} -lean_ctor_set(x_235, 0, x_10); -lean_ctor_set(x_235, 1, x_15); -x_236 = lean_apply_1(x_9, x_235); -return x_236; -} -else -{ -lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; -lean_dec(x_208); -lean_dec(x_204); -lean_free_object(x_11); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -x_237 = lean_box_uint64(x_203); -x_238 = lean_box_uint64(x_201); -x_239 = lean_box_uint64(x_22); -x_240 = lean_box_uint64(x_18); -x_241 = lean_apply_5(x_7, x_15, x_237, x_238, x_239, x_240); -return x_241; -} -} -else -{ -lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; -lean_dec(x_208); -lean_dec(x_204); -lean_free_object(x_11); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_7); -x_242 = lean_box_uint64(x_203); -x_243 = lean_box_uint64(x_201); -x_244 = lean_box_uint64(x_22); -x_245 = lean_box_uint64(x_18); -x_246 = lean_apply_5(x_6, x_15, x_242, x_243, x_244, x_245); -return x_246; -} -} -else -{ -lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; -lean_dec(x_208); -lean_dec(x_204); -lean_free_object(x_11); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -x_247 = lean_box_uint64(x_203); -x_248 = lean_box_uint64(x_201); -x_249 = lean_box_uint64(x_22); -x_250 = lean_box_uint64(x_18); -x_251 = lean_apply_5(x_5, x_15, x_247, x_248, x_249, x_250); -return x_251; -} -} -else -{ -lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; -lean_dec(x_208); -lean_dec(x_204); -lean_free_object(x_11); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_252 = lean_box_uint64(x_203); -x_253 = lean_box_uint64(x_201); -x_254 = lean_box_uint64(x_22); -x_255 = lean_box_uint64(x_18); -x_256 = lean_apply_5(x_4, x_15, x_252, x_253, x_254, x_255); -return x_256; -} -} -else -{ -lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; -lean_dec(x_208); -lean_dec(x_204); -lean_free_object(x_11); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_257 = lean_box_uint64(x_203); -x_258 = lean_box_uint64(x_201); -x_259 = lean_box_uint64(x_22); -x_260 = lean_box_uint64(x_18); -x_261 = lean_apply_5(x_3, x_15, x_257, x_258, x_259, x_260); -return x_261; -} -} -else -{ -lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; -lean_dec(x_208); -lean_dec(x_204); -lean_free_object(x_11); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_262 = lean_box_uint64(x_203); -x_263 = lean_box_uint64(x_201); -x_264 = lean_box_uint64(x_22); -x_265 = lean_box_uint64(x_18); -x_266 = lean_apply_5(x_2, x_15, x_262, x_263, x_264, x_265); -return x_266; -} -} -} -} -} -} -else -{ -lean_object* x_267; uint64_t x_268; lean_object* x_269; uint64_t x_270; lean_object* x_271; lean_object* x_272; uint64_t x_273; lean_object* x_274; lean_object* x_275; uint8_t x_276; -x_267 = lean_ctor_get(x_11, 1); -x_268 = lean_ctor_get_uint64(x_11, sizeof(void*)*2); -lean_inc(x_267); -lean_dec(x_11); -x_269 = lean_ctor_get(x_12, 1); -lean_inc(x_269); -x_270 = lean_ctor_get_uint64(x_12, sizeof(void*)*2); -if (lean_is_exclusive(x_12)) { - lean_ctor_release(x_12, 0); - lean_ctor_release(x_12, 1); - x_271 = x_12; -} else { - lean_dec_ref(x_12); - x_271 = lean_box(0); -} -x_272 = lean_ctor_get(x_13, 1); -lean_inc(x_272); -x_273 = lean_ctor_get_uint64(x_13, sizeof(void*)*2); -if (lean_is_exclusive(x_13)) { - lean_ctor_release(x_13, 0); - lean_ctor_release(x_13, 1); - x_274 = x_13; -} else { - lean_dec_ref(x_13); - x_274 = lean_box(0); -} -x_275 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__1; -x_276 = lean_string_dec_eq(x_272, x_275); -lean_dec(x_272); -if (x_276 == 0) -{ -lean_object* x_277; -lean_dec(x_274); -lean_dec(x_271); -lean_dec(x_269); -lean_dec(x_267); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_15); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_277 = lean_apply_1(x_9, x_1); -return x_277; -} -else -{ -lean_object* x_278; lean_object* x_279; uint8_t x_280; -if (lean_is_exclusive(x_1)) { - lean_ctor_release(x_1, 0); - lean_ctor_release(x_1, 1); - x_278 = x_1; -} else { - lean_dec_ref(x_1); - x_278 = lean_box(0); -} -x_279 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__3; -x_280 = lean_string_dec_eq(x_269, x_279); -if (x_280 == 0) -{ -lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -if (lean_is_scalar(x_274)) { - x_281 = lean_alloc_ctor(1, 2, 8); -} else { - x_281 = x_274; -} -lean_ctor_set(x_281, 0, x_14); -lean_ctor_set(x_281, 1, x_275); -lean_ctor_set_uint64(x_281, sizeof(void*)*2, x_273); -if (lean_is_scalar(x_271)) { - x_282 = lean_alloc_ctor(1, 2, 8); -} else { - x_282 = x_271; -} -lean_ctor_set(x_282, 0, x_281); -lean_ctor_set(x_282, 1, x_269); -lean_ctor_set_uint64(x_282, sizeof(void*)*2, x_270); -x_283 = lean_alloc_ctor(1, 2, 8); -lean_ctor_set(x_283, 0, x_282); -lean_ctor_set(x_283, 1, x_267); -lean_ctor_set_uint64(x_283, sizeof(void*)*2, x_268); -lean_ctor_set(x_10, 0, x_283); -if (lean_is_scalar(x_278)) { - x_284 = lean_alloc_ctor(1, 2, 0); -} else { - x_284 = x_278; -} -lean_ctor_set(x_284, 0, x_10); -lean_ctor_set(x_284, 1, x_15); -x_285 = lean_apply_1(x_9, x_284); -return x_285; -} -else -{ -lean_object* x_286; uint8_t x_287; -lean_dec(x_269); -x_286 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__5; -x_287 = lean_string_dec_eq(x_267, x_286); -if (x_287 == 0) -{ -lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -if (lean_is_scalar(x_274)) { - x_288 = lean_alloc_ctor(1, 2, 8); -} else { - x_288 = x_274; -} -lean_ctor_set(x_288, 0, x_14); -lean_ctor_set(x_288, 1, x_275); -lean_ctor_set_uint64(x_288, sizeof(void*)*2, x_273); -if (lean_is_scalar(x_271)) { - x_289 = lean_alloc_ctor(1, 2, 8); -} else { - x_289 = x_271; -} -lean_ctor_set(x_289, 0, x_288); -lean_ctor_set(x_289, 1, x_279); -lean_ctor_set_uint64(x_289, sizeof(void*)*2, x_270); -x_290 = lean_alloc_ctor(1, 2, 8); -lean_ctor_set(x_290, 0, x_289); -lean_ctor_set(x_290, 1, x_267); -lean_ctor_set_uint64(x_290, sizeof(void*)*2, x_268); -lean_ctor_set(x_10, 0, x_290); -if (lean_is_scalar(x_278)) { - x_291 = lean_alloc_ctor(1, 2, 0); -} else { - x_291 = x_278; -} -lean_ctor_set(x_291, 0, x_10); -lean_ctor_set(x_291, 1, x_15); -x_292 = lean_apply_1(x_9, x_291); -return x_292; -} -else -{ -lean_object* x_293; uint8_t x_294; -lean_dec(x_267); -x_293 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__5; -x_294 = lean_string_dec_eq(x_17, x_293); -if (x_294 == 0) -{ -lean_object* x_295; uint8_t x_296; -lean_dec(x_2); -x_295 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__7; -x_296 = lean_string_dec_eq(x_17, x_295); -if (x_296 == 0) -{ -lean_object* x_297; uint8_t x_298; -lean_dec(x_3); -x_297 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__3; -x_298 = lean_string_dec_eq(x_17, x_297); -if (x_298 == 0) -{ -lean_object* x_299; uint8_t x_300; -lean_dec(x_4); -x_299 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__1; -x_300 = lean_string_dec_eq(x_17, x_299); -if (x_300 == 0) -{ -lean_object* x_301; uint8_t x_302; -lean_dec(x_5); -x_301 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__7; -x_302 = lean_string_dec_eq(x_17, x_301); -if (x_302 == 0) -{ -lean_object* x_303; uint8_t x_304; -lean_dec(x_6); -x_303 = l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg___closed__1; -x_304 = lean_string_dec_eq(x_17, x_303); -if (x_304 == 0) -{ -lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; -lean_dec(x_7); -if (lean_is_scalar(x_274)) { - x_305 = lean_alloc_ctor(1, 2, 8); -} else { - x_305 = x_274; -} -lean_ctor_set(x_305, 0, x_14); -lean_ctor_set(x_305, 1, x_275); -lean_ctor_set_uint64(x_305, sizeof(void*)*2, x_273); -if (lean_is_scalar(x_271)) { - x_306 = lean_alloc_ctor(1, 2, 8); -} else { - x_306 = x_271; -} -lean_ctor_set(x_306, 0, x_305); -lean_ctor_set(x_306, 1, x_279); -lean_ctor_set_uint64(x_306, sizeof(void*)*2, x_270); -x_307 = lean_alloc_ctor(1, 2, 8); -lean_ctor_set(x_307, 0, x_306); -lean_ctor_set(x_307, 1, x_286); -lean_ctor_set_uint64(x_307, sizeof(void*)*2, x_268); -lean_ctor_set(x_10, 0, x_307); -if (lean_is_scalar(x_278)) { - x_308 = lean_alloc_ctor(1, 2, 0); -} else { - x_308 = x_278; -} -lean_ctor_set(x_308, 0, x_10); -lean_ctor_set(x_308, 1, x_15); -x_309 = lean_apply_1(x_9, x_308); -return x_309; -} -else -{ -lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; -lean_dec(x_278); -lean_dec(x_274); -lean_dec(x_271); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -x_310 = lean_box_uint64(x_273); -x_311 = lean_box_uint64(x_270); -x_312 = lean_box_uint64(x_268); -x_313 = lean_box_uint64(x_18); -x_314 = lean_apply_5(x_7, x_15, x_310, x_311, x_312, x_313); -return x_314; -} -} -else -{ -lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; -lean_dec(x_278); -lean_dec(x_274); -lean_dec(x_271); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_7); -x_315 = lean_box_uint64(x_273); -x_316 = lean_box_uint64(x_270); -x_317 = lean_box_uint64(x_268); -x_318 = lean_box_uint64(x_18); -x_319 = lean_apply_5(x_6, x_15, x_315, x_316, x_317, x_318); -return x_319; -} -} -else -{ -lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; -lean_dec(x_278); -lean_dec(x_274); -lean_dec(x_271); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -x_320 = lean_box_uint64(x_273); -x_321 = lean_box_uint64(x_270); -x_322 = lean_box_uint64(x_268); -x_323 = lean_box_uint64(x_18); -x_324 = lean_apply_5(x_5, x_15, x_320, x_321, x_322, x_323); -return x_324; -} -} -else -{ -lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; -lean_dec(x_278); -lean_dec(x_274); -lean_dec(x_271); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_325 = lean_box_uint64(x_273); -x_326 = lean_box_uint64(x_270); -x_327 = lean_box_uint64(x_268); -x_328 = lean_box_uint64(x_18); -x_329 = lean_apply_5(x_4, x_15, x_325, x_326, x_327, x_328); -return x_329; -} -} -else -{ -lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; -lean_dec(x_278); -lean_dec(x_274); -lean_dec(x_271); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_330 = lean_box_uint64(x_273); -x_331 = lean_box_uint64(x_270); -x_332 = lean_box_uint64(x_268); -x_333 = lean_box_uint64(x_18); -x_334 = lean_apply_5(x_3, x_15, x_330, x_331, x_332, x_333); -return x_334; -} -} -else -{ -lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; -lean_dec(x_278); -lean_dec(x_274); -lean_dec(x_271); -lean_free_object(x_10); -lean_dec(x_17); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_335 = lean_box_uint64(x_273); -x_336 = lean_box_uint64(x_270); -x_337 = lean_box_uint64(x_268); -x_338 = lean_box_uint64(x_18); -x_339 = lean_apply_5(x_2, x_15, x_335, x_336, x_337, x_338); -return x_339; -} -} -} -} -} -} -else -{ -lean_object* x_340; uint64_t x_341; lean_object* x_342; uint64_t x_343; lean_object* x_344; lean_object* x_345; uint64_t x_346; lean_object* x_347; lean_object* x_348; uint64_t x_349; lean_object* x_350; lean_object* x_351; uint8_t x_352; -x_340 = lean_ctor_get(x_10, 1); -x_341 = lean_ctor_get_uint64(x_10, sizeof(void*)*2); -lean_inc(x_340); -lean_dec(x_10); -x_342 = lean_ctor_get(x_11, 1); -lean_inc(x_342); -x_343 = lean_ctor_get_uint64(x_11, sizeof(void*)*2); -if (lean_is_exclusive(x_11)) { - lean_ctor_release(x_11, 0); - lean_ctor_release(x_11, 1); - x_344 = x_11; -} else { - lean_dec_ref(x_11); - x_344 = lean_box(0); -} -x_345 = lean_ctor_get(x_12, 1); -lean_inc(x_345); -x_346 = lean_ctor_get_uint64(x_12, sizeof(void*)*2); -if (lean_is_exclusive(x_12)) { - lean_ctor_release(x_12, 0); - lean_ctor_release(x_12, 1); - x_347 = x_12; -} else { - lean_dec_ref(x_12); - x_347 = lean_box(0); -} -x_348 = lean_ctor_get(x_13, 1); -lean_inc(x_348); -x_349 = lean_ctor_get_uint64(x_13, sizeof(void*)*2); -if (lean_is_exclusive(x_13)) { - lean_ctor_release(x_13, 0); - lean_ctor_release(x_13, 1); - x_350 = x_13; -} else { - lean_dec_ref(x_13); - x_350 = lean_box(0); -} -x_351 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__1; -x_352 = lean_string_dec_eq(x_348, x_351); -lean_dec(x_348); -if (x_352 == 0) -{ -lean_object* x_353; -lean_dec(x_350); -lean_dec(x_347); -lean_dec(x_345); -lean_dec(x_344); -lean_dec(x_342); -lean_dec(x_340); -lean_dec(x_15); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_353 = lean_apply_1(x_9, x_1); -return x_353; -} -else -{ -lean_object* x_354; lean_object* x_355; uint8_t x_356; -if (lean_is_exclusive(x_1)) { - lean_ctor_release(x_1, 0); - lean_ctor_release(x_1, 1); - x_354 = x_1; -} else { - lean_dec_ref(x_1); - x_354 = lean_box(0); -} -x_355 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__3; -x_356 = lean_string_dec_eq(x_345, x_355); -if (x_356 == 0) -{ -lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -if (lean_is_scalar(x_350)) { - x_357 = lean_alloc_ctor(1, 2, 8); -} else { - x_357 = x_350; -} -lean_ctor_set(x_357, 0, x_14); -lean_ctor_set(x_357, 1, x_351); -lean_ctor_set_uint64(x_357, sizeof(void*)*2, x_349); -if (lean_is_scalar(x_347)) { - x_358 = lean_alloc_ctor(1, 2, 8); -} else { - x_358 = x_347; -} -lean_ctor_set(x_358, 0, x_357); -lean_ctor_set(x_358, 1, x_345); -lean_ctor_set_uint64(x_358, sizeof(void*)*2, x_346); -if (lean_is_scalar(x_344)) { - x_359 = lean_alloc_ctor(1, 2, 8); -} else { - x_359 = x_344; -} -lean_ctor_set(x_359, 0, x_358); -lean_ctor_set(x_359, 1, x_342); -lean_ctor_set_uint64(x_359, sizeof(void*)*2, x_343); -x_360 = lean_alloc_ctor(1, 2, 8); -lean_ctor_set(x_360, 0, x_359); -lean_ctor_set(x_360, 1, x_340); -lean_ctor_set_uint64(x_360, sizeof(void*)*2, x_341); -if (lean_is_scalar(x_354)) { - x_361 = lean_alloc_ctor(1, 2, 0); -} else { - x_361 = x_354; -} -lean_ctor_set(x_361, 0, x_360); -lean_ctor_set(x_361, 1, x_15); -x_362 = lean_apply_1(x_9, x_361); -return x_362; -} -else -{ -lean_object* x_363; uint8_t x_364; -lean_dec(x_345); -x_363 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__5; -x_364 = lean_string_dec_eq(x_342, x_363); -if (x_364 == 0) -{ -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_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -if (lean_is_scalar(x_350)) { - x_365 = lean_alloc_ctor(1, 2, 8); -} else { - x_365 = x_350; -} -lean_ctor_set(x_365, 0, x_14); -lean_ctor_set(x_365, 1, x_351); -lean_ctor_set_uint64(x_365, sizeof(void*)*2, x_349); -if (lean_is_scalar(x_347)) { - x_366 = lean_alloc_ctor(1, 2, 8); -} else { - x_366 = x_347; -} -lean_ctor_set(x_366, 0, x_365); -lean_ctor_set(x_366, 1, x_355); -lean_ctor_set_uint64(x_366, sizeof(void*)*2, x_346); -if (lean_is_scalar(x_344)) { - x_367 = lean_alloc_ctor(1, 2, 8); -} else { - x_367 = x_344; -} -lean_ctor_set(x_367, 0, x_366); -lean_ctor_set(x_367, 1, x_342); -lean_ctor_set_uint64(x_367, sizeof(void*)*2, x_343); -x_368 = lean_alloc_ctor(1, 2, 8); -lean_ctor_set(x_368, 0, x_367); -lean_ctor_set(x_368, 1, x_340); -lean_ctor_set_uint64(x_368, sizeof(void*)*2, x_341); -if (lean_is_scalar(x_354)) { - x_369 = lean_alloc_ctor(1, 2, 0); -} else { - x_369 = x_354; -} -lean_ctor_set(x_369, 0, x_368); -lean_ctor_set(x_369, 1, x_15); -x_370 = lean_apply_1(x_9, x_369); -return x_370; -} -else -{ -lean_object* x_371; uint8_t x_372; -lean_dec(x_342); -x_371 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__5; -x_372 = lean_string_dec_eq(x_340, x_371); -if (x_372 == 0) -{ -lean_object* x_373; uint8_t x_374; -lean_dec(x_2); -x_373 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__7; -x_374 = lean_string_dec_eq(x_340, x_373); -if (x_374 == 0) -{ -lean_object* x_375; uint8_t x_376; -lean_dec(x_3); -x_375 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__3; -x_376 = lean_string_dec_eq(x_340, x_375); -if (x_376 == 0) -{ -lean_object* x_377; uint8_t x_378; -lean_dec(x_4); -x_377 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__1; -x_378 = lean_string_dec_eq(x_340, x_377); -if (x_378 == 0) -{ -lean_object* x_379; uint8_t x_380; -lean_dec(x_5); -x_379 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__7; -x_380 = lean_string_dec_eq(x_340, x_379); -if (x_380 == 0) -{ -lean_object* x_381; uint8_t x_382; -lean_dec(x_6); -x_381 = l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg___closed__1; -x_382 = lean_string_dec_eq(x_340, x_381); -if (x_382 == 0) -{ -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_dec(x_7); -if (lean_is_scalar(x_350)) { - x_383 = lean_alloc_ctor(1, 2, 8); -} else { - x_383 = x_350; -} -lean_ctor_set(x_383, 0, x_14); -lean_ctor_set(x_383, 1, x_351); -lean_ctor_set_uint64(x_383, sizeof(void*)*2, x_349); -if (lean_is_scalar(x_347)) { - x_384 = lean_alloc_ctor(1, 2, 8); -} else { - x_384 = x_347; -} -lean_ctor_set(x_384, 0, x_383); -lean_ctor_set(x_384, 1, x_355); -lean_ctor_set_uint64(x_384, sizeof(void*)*2, x_346); -if (lean_is_scalar(x_344)) { - x_385 = lean_alloc_ctor(1, 2, 8); -} else { - x_385 = x_344; -} -lean_ctor_set(x_385, 0, x_384); -lean_ctor_set(x_385, 1, x_363); -lean_ctor_set_uint64(x_385, sizeof(void*)*2, x_343); -x_386 = lean_alloc_ctor(1, 2, 8); -lean_ctor_set(x_386, 0, x_385); -lean_ctor_set(x_386, 1, x_340); -lean_ctor_set_uint64(x_386, sizeof(void*)*2, x_341); -if (lean_is_scalar(x_354)) { - x_387 = lean_alloc_ctor(1, 2, 0); -} else { - x_387 = x_354; -} -lean_ctor_set(x_387, 0, x_386); -lean_ctor_set(x_387, 1, x_15); -x_388 = lean_apply_1(x_9, x_387); -return x_388; -} -else -{ -lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; -lean_dec(x_354); -lean_dec(x_350); -lean_dec(x_347); -lean_dec(x_344); -lean_dec(x_340); -lean_dec(x_9); -x_389 = lean_box_uint64(x_349); -x_390 = lean_box_uint64(x_346); -x_391 = lean_box_uint64(x_343); -x_392 = lean_box_uint64(x_341); -x_393 = lean_apply_5(x_7, x_15, x_389, x_390, x_391, x_392); -return x_393; -} -} -else -{ -lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; -lean_dec(x_354); -lean_dec(x_350); -lean_dec(x_347); -lean_dec(x_344); -lean_dec(x_340); -lean_dec(x_9); -lean_dec(x_7); -x_394 = lean_box_uint64(x_349); -x_395 = lean_box_uint64(x_346); -x_396 = lean_box_uint64(x_343); -x_397 = lean_box_uint64(x_341); -x_398 = lean_apply_5(x_6, x_15, x_394, x_395, x_396, x_397); -return x_398; -} -} -else -{ -lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; -lean_dec(x_354); -lean_dec(x_350); -lean_dec(x_347); -lean_dec(x_344); -lean_dec(x_340); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -x_399 = lean_box_uint64(x_349); -x_400 = lean_box_uint64(x_346); -x_401 = lean_box_uint64(x_343); -x_402 = lean_box_uint64(x_341); -x_403 = lean_apply_5(x_5, x_15, x_399, x_400, x_401, x_402); -return x_403; -} -} -else -{ -lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; -lean_dec(x_354); -lean_dec(x_350); -lean_dec(x_347); -lean_dec(x_344); -lean_dec(x_340); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_404 = lean_box_uint64(x_349); -x_405 = lean_box_uint64(x_346); -x_406 = lean_box_uint64(x_343); -x_407 = lean_box_uint64(x_341); -x_408 = lean_apply_5(x_4, x_15, x_404, x_405, x_406, x_407); -return x_408; -} -} -else -{ -lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; -lean_dec(x_354); -lean_dec(x_350); -lean_dec(x_347); -lean_dec(x_344); -lean_dec(x_340); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_409 = lean_box_uint64(x_349); -x_410 = lean_box_uint64(x_346); -x_411 = lean_box_uint64(x_343); -x_412 = lean_box_uint64(x_341); -x_413 = lean_apply_5(x_3, x_15, x_409, x_410, x_411, x_412); -return x_413; -} -} -else -{ -lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; -lean_dec(x_354); -lean_dec(x_350); -lean_dec(x_347); -lean_dec(x_344); -lean_dec(x_340); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_414 = lean_box_uint64(x_349); -x_415 = lean_box_uint64(x_346); -x_416 = lean_box_uint64(x_343); -x_417 = lean_box_uint64(x_341); -x_418 = lean_apply_5(x_2, x_15, x_414, x_415, x_416, x_417); -return x_418; -} -} -} -} -} -} -else -{ -lean_object* x_419; -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_419 = lean_apply_1(x_9, x_1); -return x_419; -} -} -else -{ -lean_object* x_420; -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_420 = lean_apply_1(x_9, x_1); -return x_420; -} -} -else -{ -lean_object* x_421; -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_421 = lean_apply_1(x_9, x_1); -return x_421; -} -} -else -{ -lean_object* x_422; -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_422 = lean_apply_1(x_9, x_1); -return x_422; -} -} -else -{ -lean_object* x_423; -lean_dec(x_10); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_423 = lean_apply_1(x_9, x_1); -return x_423; -} -} -case 3: -{ -lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_424 = lean_ctor_get(x_1, 0); -lean_inc(x_424); -x_425 = lean_ctor_get(x_1, 1); -lean_inc(x_425); -x_426 = lean_ctor_get(x_1, 2); -lean_inc(x_426); -x_427 = lean_ctor_get(x_1, 3); -lean_inc(x_427); -lean_dec(x_1); -x_428 = lean_apply_4(x_8, x_424, x_425, x_426, x_427); -return x_428; -} -default: -{ -lean_object* x_429; +lean_dec(x_18); +lean_dec(x_16); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); @@ -8513,8 +6877,2052 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_429 = lean_apply_1(x_9, x_1); -return x_429; +x_35 = lean_apply_1(x_10, x_1); +return x_35; +} +else +{ +uint8_t x_36; +x_36 = !lean_is_exclusive(x_1); +if (x_36 == 0) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_40; +x_37 = lean_ctor_get(x_1, 1); +lean_dec(x_37); +x_38 = lean_ctor_get(x_1, 0); +lean_dec(x_38); +x_39 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__3; +x_40 = lean_string_dec_eq(x_26, x_39); +if (x_40 == 0) +{ +lean_object* x_41; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_ctor_set(x_14, 1, x_33); +x_41 = lean_apply_1(x_10, x_1); +return x_41; +} +else +{ +lean_object* x_42; uint8_t x_43; +lean_dec(x_26); +x_42 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__5; +x_43 = lean_string_dec_eq(x_22, x_42); +if (x_43 == 0) +{ +lean_object* x_44; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_ctor_set(x_14, 1, x_33); +lean_ctor_set(x_13, 1, x_39); +x_44 = lean_apply_1(x_10, x_1); +return x_44; +} +else +{ +lean_object* x_45; uint8_t x_46; +lean_dec(x_22); +x_45 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__5; +x_46 = lean_string_dec_eq(x_18, x_45); +if (x_46 == 0) +{ +lean_object* x_47; uint8_t x_48; +lean_dec(x_2); +x_47 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__7; +x_48 = lean_string_dec_eq(x_18, x_47); +if (x_48 == 0) +{ +lean_object* x_49; uint8_t x_50; +lean_dec(x_3); +x_49 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__9; +x_50 = lean_string_dec_eq(x_18, x_49); +if (x_50 == 0) +{ +lean_object* x_51; uint8_t x_52; +lean_dec(x_4); +x_51 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__3; +x_52 = lean_string_dec_eq(x_18, x_51); +if (x_52 == 0) +{ +lean_object* x_53; uint8_t x_54; +lean_dec(x_5); +x_53 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__1; +x_54 = lean_string_dec_eq(x_18, x_53); +if (x_54 == 0) +{ +lean_object* x_55; uint8_t x_56; +lean_dec(x_6); +x_55 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__7; +x_56 = lean_string_dec_eq(x_18, x_55); +if (x_56 == 0) +{ +lean_object* x_57; uint8_t x_58; +lean_dec(x_7); +x_57 = l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg___closed__1; +x_58 = lean_string_dec_eq(x_18, x_57); +if (x_58 == 0) +{ +lean_object* x_59; +lean_dec(x_8); +lean_ctor_set(x_14, 1, x_33); +lean_ctor_set(x_13, 1, x_39); +lean_ctor_set(x_12, 1, x_42); +x_59 = lean_apply_1(x_10, x_1); +return x_59; +} +else +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +lean_free_object(x_1); +lean_free_object(x_14); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +x_60 = lean_box_uint64(x_31); +x_61 = lean_box_uint64(x_27); +x_62 = lean_box_uint64(x_23); +x_63 = lean_box_uint64(x_19); +x_64 = lean_apply_5(x_8, x_16, x_60, x_61, x_62, x_63); +return x_64; +} +} +else +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; +lean_free_object(x_1); +lean_free_object(x_14); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_8); +x_65 = lean_box_uint64(x_31); +x_66 = lean_box_uint64(x_27); +x_67 = lean_box_uint64(x_23); +x_68 = lean_box_uint64(x_19); +x_69 = lean_apply_5(x_7, x_16, x_65, x_66, x_67, x_68); +return x_69; +} +} +else +{ +lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; +lean_free_object(x_1); +lean_free_object(x_14); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +x_70 = lean_box_uint64(x_31); +x_71 = lean_box_uint64(x_27); +x_72 = lean_box_uint64(x_23); +x_73 = lean_box_uint64(x_19); +x_74 = lean_apply_5(x_6, x_16, x_70, x_71, x_72, x_73); +return x_74; +} +} +else +{ +lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; +lean_free_object(x_1); +lean_free_object(x_14); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_75 = lean_box_uint64(x_31); +x_76 = lean_box_uint64(x_27); +x_77 = lean_box_uint64(x_23); +x_78 = lean_box_uint64(x_19); +x_79 = lean_apply_5(x_5, x_16, x_75, x_76, x_77, x_78); +return x_79; +} +} +else +{ +lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +lean_free_object(x_1); +lean_free_object(x_14); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_80 = lean_box_uint64(x_31); +x_81 = lean_box_uint64(x_27); +x_82 = lean_box_uint64(x_23); +x_83 = lean_box_uint64(x_19); +x_84 = lean_apply_5(x_4, x_16, x_80, x_81, x_82, x_83); +return x_84; +} +} +else +{ +lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; +lean_free_object(x_1); +lean_free_object(x_14); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_85 = lean_box_uint64(x_31); +x_86 = lean_box_uint64(x_27); +x_87 = lean_box_uint64(x_23); +x_88 = lean_box_uint64(x_19); +x_89 = lean_apply_5(x_3, x_16, x_85, x_86, x_87, x_88); +return x_89; +} +} +else +{ +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; +lean_free_object(x_1); +lean_free_object(x_14); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +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_90 = lean_box_uint64(x_31); +x_91 = lean_box_uint64(x_27); +x_92 = lean_box_uint64(x_23); +x_93 = lean_box_uint64(x_19); +x_94 = lean_apply_5(x_2, x_16, x_90, x_91, x_92, x_93); +return x_94; +} +} +} +} +else +{ +lean_object* x_95; uint8_t x_96; +lean_dec(x_1); +x_95 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__3; +x_96 = lean_string_dec_eq(x_26, x_95); +if (x_96 == 0) +{ +lean_object* x_97; lean_object* x_98; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_ctor_set(x_14, 1, x_33); +x_97 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_97, 0, x_11); +lean_ctor_set(x_97, 1, x_16); +x_98 = lean_apply_1(x_10, x_97); +return x_98; +} +else +{ +lean_object* x_99; uint8_t x_100; +lean_dec(x_26); +x_99 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__5; +x_100 = lean_string_dec_eq(x_22, x_99); +if (x_100 == 0) +{ +lean_object* x_101; lean_object* x_102; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_ctor_set(x_14, 1, x_33); +lean_ctor_set(x_13, 1, x_95); +x_101 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_101, 0, x_11); +lean_ctor_set(x_101, 1, x_16); +x_102 = lean_apply_1(x_10, x_101); +return x_102; +} +else +{ +lean_object* x_103; uint8_t x_104; +lean_dec(x_22); +x_103 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__5; +x_104 = lean_string_dec_eq(x_18, x_103); +if (x_104 == 0) +{ +lean_object* x_105; uint8_t x_106; +lean_dec(x_2); +x_105 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__7; +x_106 = lean_string_dec_eq(x_18, x_105); +if (x_106 == 0) +{ +lean_object* x_107; uint8_t x_108; +lean_dec(x_3); +x_107 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__9; +x_108 = lean_string_dec_eq(x_18, x_107); +if (x_108 == 0) +{ +lean_object* x_109; uint8_t x_110; +lean_dec(x_4); +x_109 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__3; +x_110 = lean_string_dec_eq(x_18, x_109); +if (x_110 == 0) +{ +lean_object* x_111; uint8_t x_112; +lean_dec(x_5); +x_111 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__1; +x_112 = lean_string_dec_eq(x_18, x_111); +if (x_112 == 0) +{ +lean_object* x_113; uint8_t x_114; +lean_dec(x_6); +x_113 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__7; +x_114 = lean_string_dec_eq(x_18, x_113); +if (x_114 == 0) +{ +lean_object* x_115; uint8_t x_116; +lean_dec(x_7); +x_115 = l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg___closed__1; +x_116 = lean_string_dec_eq(x_18, x_115); +if (x_116 == 0) +{ +lean_object* x_117; lean_object* x_118; +lean_dec(x_8); +lean_ctor_set(x_14, 1, x_33); +lean_ctor_set(x_13, 1, x_95); +lean_ctor_set(x_12, 1, x_99); +x_117 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_117, 0, x_11); +lean_ctor_set(x_117, 1, x_16); +x_118 = lean_apply_1(x_10, x_117); +return x_118; +} +else +{ +lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; +lean_free_object(x_14); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +x_119 = lean_box_uint64(x_31); +x_120 = lean_box_uint64(x_27); +x_121 = lean_box_uint64(x_23); +x_122 = lean_box_uint64(x_19); +x_123 = lean_apply_5(x_8, x_16, x_119, x_120, x_121, x_122); +return x_123; +} +} +else +{ +lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; +lean_free_object(x_14); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_8); +x_124 = lean_box_uint64(x_31); +x_125 = lean_box_uint64(x_27); +x_126 = lean_box_uint64(x_23); +x_127 = lean_box_uint64(x_19); +x_128 = lean_apply_5(x_7, x_16, x_124, x_125, x_126, x_127); +return x_128; +} +} +else +{ +lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; +lean_free_object(x_14); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +x_129 = lean_box_uint64(x_31); +x_130 = lean_box_uint64(x_27); +x_131 = lean_box_uint64(x_23); +x_132 = lean_box_uint64(x_19); +x_133 = lean_apply_5(x_6, x_16, x_129, x_130, x_131, x_132); +return x_133; +} +} +else +{ +lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; +lean_free_object(x_14); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_134 = lean_box_uint64(x_31); +x_135 = lean_box_uint64(x_27); +x_136 = lean_box_uint64(x_23); +x_137 = lean_box_uint64(x_19); +x_138 = lean_apply_5(x_5, x_16, x_134, x_135, x_136, x_137); +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_free_object(x_14); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_139 = lean_box_uint64(x_31); +x_140 = lean_box_uint64(x_27); +x_141 = lean_box_uint64(x_23); +x_142 = lean_box_uint64(x_19); +x_143 = lean_apply_5(x_4, x_16, x_139, x_140, x_141, x_142); +return x_143; +} +} +else +{ +lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; +lean_free_object(x_14); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_144 = lean_box_uint64(x_31); +x_145 = lean_box_uint64(x_27); +x_146 = lean_box_uint64(x_23); +x_147 = lean_box_uint64(x_19); +x_148 = lean_apply_5(x_3, x_16, x_144, x_145, x_146, x_147); +return x_148; +} +} +else +{ +lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; +lean_free_object(x_14); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +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_149 = lean_box_uint64(x_31); +x_150 = lean_box_uint64(x_27); +x_151 = lean_box_uint64(x_23); +x_152 = lean_box_uint64(x_19); +x_153 = lean_apply_5(x_2, x_16, x_149, x_150, x_151, x_152); +return x_153; +} +} +} +} +} +} +else +{ +lean_object* x_154; uint64_t x_155; lean_object* x_156; uint8_t x_157; +x_154 = lean_ctor_get(x_14, 1); +x_155 = lean_ctor_get_uint64(x_14, sizeof(void*)*2); +lean_inc(x_154); +lean_dec(x_14); +x_156 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__1; +x_157 = lean_string_dec_eq(x_154, x_156); +lean_dec(x_154); +if (x_157 == 0) +{ +lean_object* x_158; +lean_free_object(x_13); +lean_dec(x_26); +lean_free_object(x_12); +lean_dec(x_22); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_16); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_158 = lean_apply_1(x_10, x_1); +return x_158; +} +else +{ +lean_object* x_159; lean_object* x_160; uint8_t x_161; +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_159 = x_1; +} else { + lean_dec_ref(x_1); + x_159 = lean_box(0); +} +x_160 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__3; +x_161 = lean_string_dec_eq(x_26, x_160); +if (x_161 == 0) +{ +lean_object* x_162; lean_object* x_163; lean_object* x_164; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_162 = lean_alloc_ctor(1, 2, 8); +lean_ctor_set(x_162, 0, x_15); +lean_ctor_set(x_162, 1, x_156); +lean_ctor_set_uint64(x_162, sizeof(void*)*2, x_155); +lean_ctor_set(x_13, 0, x_162); +if (lean_is_scalar(x_159)) { + x_163 = lean_alloc_ctor(1, 2, 0); +} else { + x_163 = x_159; +} +lean_ctor_set(x_163, 0, x_11); +lean_ctor_set(x_163, 1, x_16); +x_164 = lean_apply_1(x_10, x_163); +return x_164; +} +else +{ +lean_object* x_165; uint8_t x_166; +lean_dec(x_26); +x_165 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__5; +x_166 = lean_string_dec_eq(x_22, x_165); +if (x_166 == 0) +{ +lean_object* x_167; lean_object* x_168; lean_object* x_169; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_167 = lean_alloc_ctor(1, 2, 8); +lean_ctor_set(x_167, 0, x_15); +lean_ctor_set(x_167, 1, x_156); +lean_ctor_set_uint64(x_167, sizeof(void*)*2, x_155); +lean_ctor_set(x_13, 1, x_160); +lean_ctor_set(x_13, 0, x_167); +if (lean_is_scalar(x_159)) { + x_168 = lean_alloc_ctor(1, 2, 0); +} else { + x_168 = x_159; +} +lean_ctor_set(x_168, 0, x_11); +lean_ctor_set(x_168, 1, x_16); +x_169 = lean_apply_1(x_10, x_168); +return x_169; +} +else +{ +lean_object* x_170; uint8_t x_171; +lean_dec(x_22); +x_170 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__5; +x_171 = lean_string_dec_eq(x_18, x_170); +if (x_171 == 0) +{ +lean_object* x_172; uint8_t x_173; +lean_dec(x_2); +x_172 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__7; +x_173 = lean_string_dec_eq(x_18, x_172); +if (x_173 == 0) +{ +lean_object* x_174; uint8_t x_175; +lean_dec(x_3); +x_174 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__9; +x_175 = lean_string_dec_eq(x_18, x_174); +if (x_175 == 0) +{ +lean_object* x_176; uint8_t x_177; +lean_dec(x_4); +x_176 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__3; +x_177 = lean_string_dec_eq(x_18, x_176); +if (x_177 == 0) +{ +lean_object* x_178; uint8_t x_179; +lean_dec(x_5); +x_178 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__1; +x_179 = lean_string_dec_eq(x_18, x_178); +if (x_179 == 0) +{ +lean_object* x_180; uint8_t x_181; +lean_dec(x_6); +x_180 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__7; +x_181 = lean_string_dec_eq(x_18, x_180); +if (x_181 == 0) +{ +lean_object* x_182; uint8_t x_183; +lean_dec(x_7); +x_182 = l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg___closed__1; +x_183 = lean_string_dec_eq(x_18, x_182); +if (x_183 == 0) +{ +lean_object* x_184; lean_object* x_185; lean_object* x_186; +lean_dec(x_8); +x_184 = lean_alloc_ctor(1, 2, 8); +lean_ctor_set(x_184, 0, x_15); +lean_ctor_set(x_184, 1, x_156); +lean_ctor_set_uint64(x_184, sizeof(void*)*2, x_155); +lean_ctor_set(x_13, 1, x_160); +lean_ctor_set(x_13, 0, x_184); +lean_ctor_set(x_12, 1, x_165); +if (lean_is_scalar(x_159)) { + x_185 = lean_alloc_ctor(1, 2, 0); +} else { + x_185 = x_159; +} +lean_ctor_set(x_185, 0, x_11); +lean_ctor_set(x_185, 1, x_16); +x_186 = lean_apply_1(x_10, x_185); +return x_186; +} +else +{ +lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; +lean_dec(x_159); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +x_187 = lean_box_uint64(x_155); +x_188 = lean_box_uint64(x_27); +x_189 = lean_box_uint64(x_23); +x_190 = lean_box_uint64(x_19); +x_191 = lean_apply_5(x_8, x_16, x_187, x_188, x_189, x_190); +return x_191; +} +} +else +{ +lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; +lean_dec(x_159); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_8); +x_192 = lean_box_uint64(x_155); +x_193 = lean_box_uint64(x_27); +x_194 = lean_box_uint64(x_23); +x_195 = lean_box_uint64(x_19); +x_196 = lean_apply_5(x_7, x_16, x_192, x_193, x_194, x_195); +return x_196; +} +} +else +{ +lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; +lean_dec(x_159); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +x_197 = lean_box_uint64(x_155); +x_198 = lean_box_uint64(x_27); +x_199 = lean_box_uint64(x_23); +x_200 = lean_box_uint64(x_19); +x_201 = lean_apply_5(x_6, x_16, x_197, x_198, x_199, x_200); +return x_201; +} +} +else +{ +lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; +lean_dec(x_159); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_202 = lean_box_uint64(x_155); +x_203 = lean_box_uint64(x_27); +x_204 = lean_box_uint64(x_23); +x_205 = lean_box_uint64(x_19); +x_206 = lean_apply_5(x_5, x_16, x_202, x_203, x_204, x_205); +return x_206; +} +} +else +{ +lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; +lean_dec(x_159); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_207 = lean_box_uint64(x_155); +x_208 = lean_box_uint64(x_27); +x_209 = lean_box_uint64(x_23); +x_210 = lean_box_uint64(x_19); +x_211 = lean_apply_5(x_4, x_16, x_207, x_208, x_209, x_210); +return x_211; +} +} +else +{ +lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; +lean_dec(x_159); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_212 = lean_box_uint64(x_155); +x_213 = lean_box_uint64(x_27); +x_214 = lean_box_uint64(x_23); +x_215 = lean_box_uint64(x_19); +x_216 = lean_apply_5(x_3, x_16, x_212, x_213, x_214, x_215); +return x_216; +} +} +else +{ +lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; +lean_dec(x_159); +lean_free_object(x_13); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +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_217 = lean_box_uint64(x_155); +x_218 = lean_box_uint64(x_27); +x_219 = lean_box_uint64(x_23); +x_220 = lean_box_uint64(x_19); +x_221 = lean_apply_5(x_2, x_16, x_217, x_218, x_219, x_220); +return x_221; +} +} +} +} +} +} +else +{ +lean_object* x_222; uint64_t x_223; lean_object* x_224; uint64_t x_225; lean_object* x_226; lean_object* x_227; uint8_t x_228; +x_222 = lean_ctor_get(x_13, 1); +x_223 = lean_ctor_get_uint64(x_13, sizeof(void*)*2); +lean_inc(x_222); +lean_dec(x_13); +x_224 = lean_ctor_get(x_14, 1); +lean_inc(x_224); +x_225 = lean_ctor_get_uint64(x_14, sizeof(void*)*2); +if (lean_is_exclusive(x_14)) { + lean_ctor_release(x_14, 0); + lean_ctor_release(x_14, 1); + x_226 = x_14; +} else { + lean_dec_ref(x_14); + x_226 = lean_box(0); +} +x_227 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__1; +x_228 = lean_string_dec_eq(x_224, x_227); +lean_dec(x_224); +if (x_228 == 0) +{ +lean_object* x_229; +lean_dec(x_226); +lean_dec(x_222); +lean_free_object(x_12); +lean_dec(x_22); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_16); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_229 = lean_apply_1(x_10, x_1); +return x_229; +} +else +{ +lean_object* x_230; lean_object* x_231; uint8_t x_232; +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_230 = x_1; +} else { + lean_dec_ref(x_1); + x_230 = lean_box(0); +} +x_231 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__3; +x_232 = lean_string_dec_eq(x_222, x_231); +if (x_232 == 0) +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_226)) { + x_233 = lean_alloc_ctor(1, 2, 8); +} else { + x_233 = x_226; +} +lean_ctor_set(x_233, 0, x_15); +lean_ctor_set(x_233, 1, x_227); +lean_ctor_set_uint64(x_233, sizeof(void*)*2, x_225); +x_234 = lean_alloc_ctor(1, 2, 8); +lean_ctor_set(x_234, 0, x_233); +lean_ctor_set(x_234, 1, x_222); +lean_ctor_set_uint64(x_234, sizeof(void*)*2, x_223); +lean_ctor_set(x_12, 0, x_234); +if (lean_is_scalar(x_230)) { + x_235 = lean_alloc_ctor(1, 2, 0); +} else { + x_235 = x_230; +} +lean_ctor_set(x_235, 0, x_11); +lean_ctor_set(x_235, 1, x_16); +x_236 = lean_apply_1(x_10, x_235); +return x_236; +} +else +{ +lean_object* x_237; uint8_t x_238; +lean_dec(x_222); +x_237 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__5; +x_238 = lean_string_dec_eq(x_22, x_237); +if (x_238 == 0) +{ +lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_226)) { + x_239 = lean_alloc_ctor(1, 2, 8); +} else { + x_239 = x_226; +} +lean_ctor_set(x_239, 0, x_15); +lean_ctor_set(x_239, 1, x_227); +lean_ctor_set_uint64(x_239, sizeof(void*)*2, x_225); +x_240 = lean_alloc_ctor(1, 2, 8); +lean_ctor_set(x_240, 0, x_239); +lean_ctor_set(x_240, 1, x_231); +lean_ctor_set_uint64(x_240, sizeof(void*)*2, x_223); +lean_ctor_set(x_12, 0, x_240); +if (lean_is_scalar(x_230)) { + x_241 = lean_alloc_ctor(1, 2, 0); +} else { + x_241 = x_230; +} +lean_ctor_set(x_241, 0, x_11); +lean_ctor_set(x_241, 1, x_16); +x_242 = lean_apply_1(x_10, x_241); +return x_242; +} +else +{ +lean_object* x_243; uint8_t x_244; +lean_dec(x_22); +x_243 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__5; +x_244 = lean_string_dec_eq(x_18, x_243); +if (x_244 == 0) +{ +lean_object* x_245; uint8_t x_246; +lean_dec(x_2); +x_245 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__7; +x_246 = lean_string_dec_eq(x_18, x_245); +if (x_246 == 0) +{ +lean_object* x_247; uint8_t x_248; +lean_dec(x_3); +x_247 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__9; +x_248 = lean_string_dec_eq(x_18, x_247); +if (x_248 == 0) +{ +lean_object* x_249; uint8_t x_250; +lean_dec(x_4); +x_249 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__3; +x_250 = lean_string_dec_eq(x_18, x_249); +if (x_250 == 0) +{ +lean_object* x_251; uint8_t x_252; +lean_dec(x_5); +x_251 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__1; +x_252 = lean_string_dec_eq(x_18, x_251); +if (x_252 == 0) +{ +lean_object* x_253; uint8_t x_254; +lean_dec(x_6); +x_253 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__7; +x_254 = lean_string_dec_eq(x_18, x_253); +if (x_254 == 0) +{ +lean_object* x_255; uint8_t x_256; +lean_dec(x_7); +x_255 = l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg___closed__1; +x_256 = lean_string_dec_eq(x_18, x_255); +if (x_256 == 0) +{ +lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; +lean_dec(x_8); +if (lean_is_scalar(x_226)) { + x_257 = lean_alloc_ctor(1, 2, 8); +} else { + x_257 = x_226; +} +lean_ctor_set(x_257, 0, x_15); +lean_ctor_set(x_257, 1, x_227); +lean_ctor_set_uint64(x_257, sizeof(void*)*2, x_225); +x_258 = lean_alloc_ctor(1, 2, 8); +lean_ctor_set(x_258, 0, x_257); +lean_ctor_set(x_258, 1, x_231); +lean_ctor_set_uint64(x_258, sizeof(void*)*2, x_223); +lean_ctor_set(x_12, 1, x_237); +lean_ctor_set(x_12, 0, x_258); +if (lean_is_scalar(x_230)) { + x_259 = lean_alloc_ctor(1, 2, 0); +} else { + x_259 = x_230; +} +lean_ctor_set(x_259, 0, x_11); +lean_ctor_set(x_259, 1, x_16); +x_260 = lean_apply_1(x_10, x_259); +return x_260; +} +else +{ +lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; +lean_dec(x_230); +lean_dec(x_226); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +x_261 = lean_box_uint64(x_225); +x_262 = lean_box_uint64(x_223); +x_263 = lean_box_uint64(x_23); +x_264 = lean_box_uint64(x_19); +x_265 = lean_apply_5(x_8, x_16, x_261, x_262, x_263, x_264); +return x_265; +} +} +else +{ +lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +lean_dec(x_230); +lean_dec(x_226); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_8); +x_266 = lean_box_uint64(x_225); +x_267 = lean_box_uint64(x_223); +x_268 = lean_box_uint64(x_23); +x_269 = lean_box_uint64(x_19); +x_270 = lean_apply_5(x_7, x_16, x_266, x_267, x_268, x_269); +return x_270; +} +} +else +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; +lean_dec(x_230); +lean_dec(x_226); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +x_271 = lean_box_uint64(x_225); +x_272 = lean_box_uint64(x_223); +x_273 = lean_box_uint64(x_23); +x_274 = lean_box_uint64(x_19); +x_275 = lean_apply_5(x_6, x_16, x_271, x_272, x_273, x_274); +return x_275; +} +} +else +{ +lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; +lean_dec(x_230); +lean_dec(x_226); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_276 = lean_box_uint64(x_225); +x_277 = lean_box_uint64(x_223); +x_278 = lean_box_uint64(x_23); +x_279 = lean_box_uint64(x_19); +x_280 = lean_apply_5(x_5, x_16, x_276, x_277, x_278, x_279); +return x_280; +} +} +else +{ +lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; +lean_dec(x_230); +lean_dec(x_226); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_281 = lean_box_uint64(x_225); +x_282 = lean_box_uint64(x_223); +x_283 = lean_box_uint64(x_23); +x_284 = lean_box_uint64(x_19); +x_285 = lean_apply_5(x_4, x_16, x_281, x_282, x_283, x_284); +return x_285; +} +} +else +{ +lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; +lean_dec(x_230); +lean_dec(x_226); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_286 = lean_box_uint64(x_225); +x_287 = lean_box_uint64(x_223); +x_288 = lean_box_uint64(x_23); +x_289 = lean_box_uint64(x_19); +x_290 = lean_apply_5(x_3, x_16, x_286, x_287, x_288, x_289); +return x_290; +} +} +else +{ +lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; +lean_dec(x_230); +lean_dec(x_226); +lean_free_object(x_12); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +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_291 = lean_box_uint64(x_225); +x_292 = lean_box_uint64(x_223); +x_293 = lean_box_uint64(x_23); +x_294 = lean_box_uint64(x_19); +x_295 = lean_apply_5(x_2, x_16, x_291, x_292, x_293, x_294); +return x_295; +} +} +} +} +} +} +else +{ +lean_object* x_296; uint64_t x_297; lean_object* x_298; uint64_t x_299; lean_object* x_300; lean_object* x_301; uint64_t x_302; lean_object* x_303; lean_object* x_304; uint8_t x_305; +x_296 = lean_ctor_get(x_12, 1); +x_297 = lean_ctor_get_uint64(x_12, sizeof(void*)*2); +lean_inc(x_296); +lean_dec(x_12); +x_298 = lean_ctor_get(x_13, 1); +lean_inc(x_298); +x_299 = lean_ctor_get_uint64(x_13, sizeof(void*)*2); +if (lean_is_exclusive(x_13)) { + lean_ctor_release(x_13, 0); + lean_ctor_release(x_13, 1); + x_300 = x_13; +} else { + lean_dec_ref(x_13); + x_300 = lean_box(0); +} +x_301 = lean_ctor_get(x_14, 1); +lean_inc(x_301); +x_302 = lean_ctor_get_uint64(x_14, sizeof(void*)*2); +if (lean_is_exclusive(x_14)) { + lean_ctor_release(x_14, 0); + lean_ctor_release(x_14, 1); + x_303 = x_14; +} else { + lean_dec_ref(x_14); + x_303 = lean_box(0); +} +x_304 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__1; +x_305 = lean_string_dec_eq(x_301, x_304); +lean_dec(x_301); +if (x_305 == 0) +{ +lean_object* x_306; +lean_dec(x_303); +lean_dec(x_300); +lean_dec(x_298); +lean_dec(x_296); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_16); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_306 = lean_apply_1(x_10, x_1); +return x_306; +} +else +{ +lean_object* x_307; lean_object* x_308; uint8_t x_309; +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_307 = x_1; +} else { + lean_dec_ref(x_1); + x_307 = lean_box(0); +} +x_308 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__3; +x_309 = lean_string_dec_eq(x_298, x_308); +if (x_309 == 0) +{ +lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_303)) { + x_310 = lean_alloc_ctor(1, 2, 8); +} else { + x_310 = x_303; +} +lean_ctor_set(x_310, 0, x_15); +lean_ctor_set(x_310, 1, x_304); +lean_ctor_set_uint64(x_310, sizeof(void*)*2, x_302); +if (lean_is_scalar(x_300)) { + x_311 = lean_alloc_ctor(1, 2, 8); +} else { + x_311 = x_300; +} +lean_ctor_set(x_311, 0, x_310); +lean_ctor_set(x_311, 1, x_298); +lean_ctor_set_uint64(x_311, sizeof(void*)*2, x_299); +x_312 = lean_alloc_ctor(1, 2, 8); +lean_ctor_set(x_312, 0, x_311); +lean_ctor_set(x_312, 1, x_296); +lean_ctor_set_uint64(x_312, sizeof(void*)*2, x_297); +lean_ctor_set(x_11, 0, x_312); +if (lean_is_scalar(x_307)) { + x_313 = lean_alloc_ctor(1, 2, 0); +} else { + x_313 = x_307; +} +lean_ctor_set(x_313, 0, x_11); +lean_ctor_set(x_313, 1, x_16); +x_314 = lean_apply_1(x_10, x_313); +return x_314; +} +else +{ +lean_object* x_315; uint8_t x_316; +lean_dec(x_298); +x_315 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__5; +x_316 = lean_string_dec_eq(x_296, x_315); +if (x_316 == 0) +{ +lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_303)) { + x_317 = lean_alloc_ctor(1, 2, 8); +} else { + x_317 = x_303; +} +lean_ctor_set(x_317, 0, x_15); +lean_ctor_set(x_317, 1, x_304); +lean_ctor_set_uint64(x_317, sizeof(void*)*2, x_302); +if (lean_is_scalar(x_300)) { + x_318 = lean_alloc_ctor(1, 2, 8); +} else { + x_318 = x_300; +} +lean_ctor_set(x_318, 0, x_317); +lean_ctor_set(x_318, 1, x_308); +lean_ctor_set_uint64(x_318, sizeof(void*)*2, x_299); +x_319 = lean_alloc_ctor(1, 2, 8); +lean_ctor_set(x_319, 0, x_318); +lean_ctor_set(x_319, 1, x_296); +lean_ctor_set_uint64(x_319, sizeof(void*)*2, x_297); +lean_ctor_set(x_11, 0, x_319); +if (lean_is_scalar(x_307)) { + x_320 = lean_alloc_ctor(1, 2, 0); +} else { + x_320 = x_307; +} +lean_ctor_set(x_320, 0, x_11); +lean_ctor_set(x_320, 1, x_16); +x_321 = lean_apply_1(x_10, x_320); +return x_321; +} +else +{ +lean_object* x_322; uint8_t x_323; +lean_dec(x_296); +x_322 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__5; +x_323 = lean_string_dec_eq(x_18, x_322); +if (x_323 == 0) +{ +lean_object* x_324; uint8_t x_325; +lean_dec(x_2); +x_324 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__7; +x_325 = lean_string_dec_eq(x_18, x_324); +if (x_325 == 0) +{ +lean_object* x_326; uint8_t x_327; +lean_dec(x_3); +x_326 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__9; +x_327 = lean_string_dec_eq(x_18, x_326); +if (x_327 == 0) +{ +lean_object* x_328; uint8_t x_329; +lean_dec(x_4); +x_328 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__3; +x_329 = lean_string_dec_eq(x_18, x_328); +if (x_329 == 0) +{ +lean_object* x_330; uint8_t x_331; +lean_dec(x_5); +x_330 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__1; +x_331 = lean_string_dec_eq(x_18, x_330); +if (x_331 == 0) +{ +lean_object* x_332; uint8_t x_333; +lean_dec(x_6); +x_332 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__7; +x_333 = lean_string_dec_eq(x_18, x_332); +if (x_333 == 0) +{ +lean_object* x_334; uint8_t x_335; +lean_dec(x_7); +x_334 = l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg___closed__1; +x_335 = lean_string_dec_eq(x_18, x_334); +if (x_335 == 0) +{ +lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; +lean_dec(x_8); +if (lean_is_scalar(x_303)) { + x_336 = lean_alloc_ctor(1, 2, 8); +} else { + x_336 = x_303; +} +lean_ctor_set(x_336, 0, x_15); +lean_ctor_set(x_336, 1, x_304); +lean_ctor_set_uint64(x_336, sizeof(void*)*2, x_302); +if (lean_is_scalar(x_300)) { + x_337 = lean_alloc_ctor(1, 2, 8); +} else { + x_337 = x_300; +} +lean_ctor_set(x_337, 0, x_336); +lean_ctor_set(x_337, 1, x_308); +lean_ctor_set_uint64(x_337, sizeof(void*)*2, x_299); +x_338 = lean_alloc_ctor(1, 2, 8); +lean_ctor_set(x_338, 0, x_337); +lean_ctor_set(x_338, 1, x_315); +lean_ctor_set_uint64(x_338, sizeof(void*)*2, x_297); +lean_ctor_set(x_11, 0, x_338); +if (lean_is_scalar(x_307)) { + x_339 = lean_alloc_ctor(1, 2, 0); +} else { + x_339 = x_307; +} +lean_ctor_set(x_339, 0, x_11); +lean_ctor_set(x_339, 1, x_16); +x_340 = lean_apply_1(x_10, x_339); +return x_340; +} +else +{ +lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; +lean_dec(x_307); +lean_dec(x_303); +lean_dec(x_300); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +x_341 = lean_box_uint64(x_302); +x_342 = lean_box_uint64(x_299); +x_343 = lean_box_uint64(x_297); +x_344 = lean_box_uint64(x_19); +x_345 = lean_apply_5(x_8, x_16, x_341, x_342, x_343, x_344); +return x_345; +} +} +else +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; +lean_dec(x_307); +lean_dec(x_303); +lean_dec(x_300); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_8); +x_346 = lean_box_uint64(x_302); +x_347 = lean_box_uint64(x_299); +x_348 = lean_box_uint64(x_297); +x_349 = lean_box_uint64(x_19); +x_350 = lean_apply_5(x_7, x_16, x_346, x_347, x_348, x_349); +return x_350; +} +} +else +{ +lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; +lean_dec(x_307); +lean_dec(x_303); +lean_dec(x_300); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +x_351 = lean_box_uint64(x_302); +x_352 = lean_box_uint64(x_299); +x_353 = lean_box_uint64(x_297); +x_354 = lean_box_uint64(x_19); +x_355 = lean_apply_5(x_6, x_16, x_351, x_352, x_353, x_354); +return x_355; +} +} +else +{ +lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; +lean_dec(x_307); +lean_dec(x_303); +lean_dec(x_300); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_356 = lean_box_uint64(x_302); +x_357 = lean_box_uint64(x_299); +x_358 = lean_box_uint64(x_297); +x_359 = lean_box_uint64(x_19); +x_360 = lean_apply_5(x_5, x_16, x_356, x_357, x_358, x_359); +return x_360; +} +} +else +{ +lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; +lean_dec(x_307); +lean_dec(x_303); +lean_dec(x_300); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_361 = lean_box_uint64(x_302); +x_362 = lean_box_uint64(x_299); +x_363 = lean_box_uint64(x_297); +x_364 = lean_box_uint64(x_19); +x_365 = lean_apply_5(x_4, x_16, x_361, x_362, x_363, x_364); +return x_365; +} +} +else +{ +lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; +lean_dec(x_307); +lean_dec(x_303); +lean_dec(x_300); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_366 = lean_box_uint64(x_302); +x_367 = lean_box_uint64(x_299); +x_368 = lean_box_uint64(x_297); +x_369 = lean_box_uint64(x_19); +x_370 = lean_apply_5(x_3, x_16, x_366, x_367, x_368, x_369); +return x_370; +} +} +else +{ +lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; +lean_dec(x_307); +lean_dec(x_303); +lean_dec(x_300); +lean_free_object(x_11); +lean_dec(x_18); +lean_dec(x_10); +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_371 = lean_box_uint64(x_302); +x_372 = lean_box_uint64(x_299); +x_373 = lean_box_uint64(x_297); +x_374 = lean_box_uint64(x_19); +x_375 = lean_apply_5(x_2, x_16, x_371, x_372, x_373, x_374); +return x_375; +} +} +} +} +} +} +else +{ +lean_object* x_376; uint64_t x_377; lean_object* x_378; uint64_t x_379; lean_object* x_380; lean_object* x_381; uint64_t x_382; lean_object* x_383; lean_object* x_384; uint64_t x_385; lean_object* x_386; lean_object* x_387; uint8_t x_388; +x_376 = lean_ctor_get(x_11, 1); +x_377 = lean_ctor_get_uint64(x_11, sizeof(void*)*2); +lean_inc(x_376); +lean_dec(x_11); +x_378 = lean_ctor_get(x_12, 1); +lean_inc(x_378); +x_379 = lean_ctor_get_uint64(x_12, sizeof(void*)*2); +if (lean_is_exclusive(x_12)) { + lean_ctor_release(x_12, 0); + lean_ctor_release(x_12, 1); + x_380 = x_12; +} else { + lean_dec_ref(x_12); + x_380 = lean_box(0); +} +x_381 = lean_ctor_get(x_13, 1); +lean_inc(x_381); +x_382 = lean_ctor_get_uint64(x_13, sizeof(void*)*2); +if (lean_is_exclusive(x_13)) { + lean_ctor_release(x_13, 0); + lean_ctor_release(x_13, 1); + x_383 = x_13; +} else { + lean_dec_ref(x_13); + x_383 = lean_box(0); +} +x_384 = lean_ctor_get(x_14, 1); +lean_inc(x_384); +x_385 = lean_ctor_get_uint64(x_14, sizeof(void*)*2); +if (lean_is_exclusive(x_14)) { + lean_ctor_release(x_14, 0); + lean_ctor_release(x_14, 1); + x_386 = x_14; +} else { + lean_dec_ref(x_14); + x_386 = lean_box(0); +} +x_387 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__1; +x_388 = lean_string_dec_eq(x_384, x_387); +lean_dec(x_384); +if (x_388 == 0) +{ +lean_object* x_389; +lean_dec(x_386); +lean_dec(x_383); +lean_dec(x_381); +lean_dec(x_380); +lean_dec(x_378); +lean_dec(x_376); +lean_dec(x_16); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_389 = lean_apply_1(x_10, x_1); +return x_389; +} +else +{ +lean_object* x_390; lean_object* x_391; uint8_t x_392; +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_390 = x_1; +} else { + lean_dec_ref(x_1); + x_390 = lean_box(0); +} +x_391 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__3; +x_392 = lean_string_dec_eq(x_381, x_391); +if (x_392 == 0) +{ +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_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_386)) { + x_393 = lean_alloc_ctor(1, 2, 8); +} else { + x_393 = x_386; +} +lean_ctor_set(x_393, 0, x_15); +lean_ctor_set(x_393, 1, x_387); +lean_ctor_set_uint64(x_393, sizeof(void*)*2, x_385); +if (lean_is_scalar(x_383)) { + x_394 = lean_alloc_ctor(1, 2, 8); +} else { + x_394 = x_383; +} +lean_ctor_set(x_394, 0, x_393); +lean_ctor_set(x_394, 1, x_381); +lean_ctor_set_uint64(x_394, sizeof(void*)*2, x_382); +if (lean_is_scalar(x_380)) { + x_395 = lean_alloc_ctor(1, 2, 8); +} else { + x_395 = x_380; +} +lean_ctor_set(x_395, 0, x_394); +lean_ctor_set(x_395, 1, x_378); +lean_ctor_set_uint64(x_395, sizeof(void*)*2, x_379); +x_396 = lean_alloc_ctor(1, 2, 8); +lean_ctor_set(x_396, 0, x_395); +lean_ctor_set(x_396, 1, x_376); +lean_ctor_set_uint64(x_396, sizeof(void*)*2, x_377); +if (lean_is_scalar(x_390)) { + x_397 = lean_alloc_ctor(1, 2, 0); +} else { + x_397 = x_390; +} +lean_ctor_set(x_397, 0, x_396); +lean_ctor_set(x_397, 1, x_16); +x_398 = lean_apply_1(x_10, x_397); +return x_398; +} +else +{ +lean_object* x_399; uint8_t x_400; +lean_dec(x_381); +x_399 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__5; +x_400 = lean_string_dec_eq(x_378, x_399); +if (x_400 == 0) +{ +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_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +if (lean_is_scalar(x_386)) { + x_401 = lean_alloc_ctor(1, 2, 8); +} else { + x_401 = x_386; +} +lean_ctor_set(x_401, 0, x_15); +lean_ctor_set(x_401, 1, x_387); +lean_ctor_set_uint64(x_401, sizeof(void*)*2, x_385); +if (lean_is_scalar(x_383)) { + x_402 = lean_alloc_ctor(1, 2, 8); +} else { + x_402 = x_383; +} +lean_ctor_set(x_402, 0, x_401); +lean_ctor_set(x_402, 1, x_391); +lean_ctor_set_uint64(x_402, sizeof(void*)*2, x_382); +if (lean_is_scalar(x_380)) { + x_403 = lean_alloc_ctor(1, 2, 8); +} else { + x_403 = x_380; +} +lean_ctor_set(x_403, 0, x_402); +lean_ctor_set(x_403, 1, x_378); +lean_ctor_set_uint64(x_403, sizeof(void*)*2, x_379); +x_404 = lean_alloc_ctor(1, 2, 8); +lean_ctor_set(x_404, 0, x_403); +lean_ctor_set(x_404, 1, x_376); +lean_ctor_set_uint64(x_404, sizeof(void*)*2, x_377); +if (lean_is_scalar(x_390)) { + x_405 = lean_alloc_ctor(1, 2, 0); +} else { + x_405 = x_390; +} +lean_ctor_set(x_405, 0, x_404); +lean_ctor_set(x_405, 1, x_16); +x_406 = lean_apply_1(x_10, x_405); +return x_406; +} +else +{ +lean_object* x_407; uint8_t x_408; +lean_dec(x_378); +x_407 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__5; +x_408 = lean_string_dec_eq(x_376, x_407); +if (x_408 == 0) +{ +lean_object* x_409; uint8_t x_410; +lean_dec(x_2); +x_409 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__7; +x_410 = lean_string_dec_eq(x_376, x_409); +if (x_410 == 0) +{ +lean_object* x_411; uint8_t x_412; +lean_dec(x_3); +x_411 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__9; +x_412 = lean_string_dec_eq(x_376, x_411); +if (x_412 == 0) +{ +lean_object* x_413; uint8_t x_414; +lean_dec(x_4); +x_413 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__3; +x_414 = lean_string_dec_eq(x_376, x_413); +if (x_414 == 0) +{ +lean_object* x_415; uint8_t x_416; +lean_dec(x_5); +x_415 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__1; +x_416 = lean_string_dec_eq(x_376, x_415); +if (x_416 == 0) +{ +lean_object* x_417; uint8_t x_418; +lean_dec(x_6); +x_417 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__7; +x_418 = lean_string_dec_eq(x_376, x_417); +if (x_418 == 0) +{ +lean_object* x_419; uint8_t x_420; +lean_dec(x_7); +x_419 = l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg___closed__1; +x_420 = lean_string_dec_eq(x_376, x_419); +if (x_420 == 0) +{ +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_dec(x_8); +if (lean_is_scalar(x_386)) { + x_421 = lean_alloc_ctor(1, 2, 8); +} else { + x_421 = x_386; +} +lean_ctor_set(x_421, 0, x_15); +lean_ctor_set(x_421, 1, x_387); +lean_ctor_set_uint64(x_421, sizeof(void*)*2, x_385); +if (lean_is_scalar(x_383)) { + x_422 = lean_alloc_ctor(1, 2, 8); +} else { + x_422 = x_383; +} +lean_ctor_set(x_422, 0, x_421); +lean_ctor_set(x_422, 1, x_391); +lean_ctor_set_uint64(x_422, sizeof(void*)*2, x_382); +if (lean_is_scalar(x_380)) { + x_423 = lean_alloc_ctor(1, 2, 8); +} else { + x_423 = x_380; +} +lean_ctor_set(x_423, 0, x_422); +lean_ctor_set(x_423, 1, x_399); +lean_ctor_set_uint64(x_423, sizeof(void*)*2, x_379); +x_424 = lean_alloc_ctor(1, 2, 8); +lean_ctor_set(x_424, 0, x_423); +lean_ctor_set(x_424, 1, x_376); +lean_ctor_set_uint64(x_424, sizeof(void*)*2, x_377); +if (lean_is_scalar(x_390)) { + x_425 = lean_alloc_ctor(1, 2, 0); +} else { + x_425 = x_390; +} +lean_ctor_set(x_425, 0, x_424); +lean_ctor_set(x_425, 1, x_16); +x_426 = lean_apply_1(x_10, x_425); +return x_426; +} +else +{ +lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; +lean_dec(x_390); +lean_dec(x_386); +lean_dec(x_383); +lean_dec(x_380); +lean_dec(x_376); +lean_dec(x_10); +x_427 = lean_box_uint64(x_385); +x_428 = lean_box_uint64(x_382); +x_429 = lean_box_uint64(x_379); +x_430 = lean_box_uint64(x_377); +x_431 = lean_apply_5(x_8, x_16, x_427, x_428, x_429, x_430); +return x_431; +} +} +else +{ +lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; +lean_dec(x_390); +lean_dec(x_386); +lean_dec(x_383); +lean_dec(x_380); +lean_dec(x_376); +lean_dec(x_10); +lean_dec(x_8); +x_432 = lean_box_uint64(x_385); +x_433 = lean_box_uint64(x_382); +x_434 = lean_box_uint64(x_379); +x_435 = lean_box_uint64(x_377); +x_436 = lean_apply_5(x_7, x_16, x_432, x_433, x_434, x_435); +return x_436; +} +} +else +{ +lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; +lean_dec(x_390); +lean_dec(x_386); +lean_dec(x_383); +lean_dec(x_380); +lean_dec(x_376); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +x_437 = lean_box_uint64(x_385); +x_438 = lean_box_uint64(x_382); +x_439 = lean_box_uint64(x_379); +x_440 = lean_box_uint64(x_377); +x_441 = lean_apply_5(x_6, x_16, x_437, x_438, x_439, x_440); +return x_441; +} +} +else +{ +lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; +lean_dec(x_390); +lean_dec(x_386); +lean_dec(x_383); +lean_dec(x_380); +lean_dec(x_376); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_442 = lean_box_uint64(x_385); +x_443 = lean_box_uint64(x_382); +x_444 = lean_box_uint64(x_379); +x_445 = lean_box_uint64(x_377); +x_446 = lean_apply_5(x_5, x_16, x_442, x_443, x_444, x_445); +return x_446; +} +} +else +{ +lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; +lean_dec(x_390); +lean_dec(x_386); +lean_dec(x_383); +lean_dec(x_380); +lean_dec(x_376); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_447 = lean_box_uint64(x_385); +x_448 = lean_box_uint64(x_382); +x_449 = lean_box_uint64(x_379); +x_450 = lean_box_uint64(x_377); +x_451 = lean_apply_5(x_4, x_16, x_447, x_448, x_449, x_450); +return x_451; +} +} +else +{ +lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; +lean_dec(x_390); +lean_dec(x_386); +lean_dec(x_383); +lean_dec(x_380); +lean_dec(x_376); +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_452 = lean_box_uint64(x_385); +x_453 = lean_box_uint64(x_382); +x_454 = lean_box_uint64(x_379); +x_455 = lean_box_uint64(x_377); +x_456 = lean_apply_5(x_3, x_16, x_452, x_453, x_454, x_455); +return x_456; +} +} +else +{ +lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; +lean_dec(x_390); +lean_dec(x_386); +lean_dec(x_383); +lean_dec(x_380); +lean_dec(x_376); +lean_dec(x_10); +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_457 = lean_box_uint64(x_385); +x_458 = lean_box_uint64(x_382); +x_459 = lean_box_uint64(x_379); +x_460 = lean_box_uint64(x_377); +x_461 = lean_apply_5(x_2, x_16, x_457, x_458, x_459, x_460); +return x_461; +} +} +} +} +} +} +else +{ +lean_object* x_462; +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_462 = lean_apply_1(x_10, x_1); +return x_462; +} +} +else +{ +lean_object* x_463; +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_463 = lean_apply_1(x_10, x_1); +return x_463; +} +} +else +{ +lean_object* x_464; +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_464 = lean_apply_1(x_10, x_1); +return x_464; +} +} +else +{ +lean_object* x_465; +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_465 = lean_apply_1(x_10, x_1); +return x_465; +} +} +else +{ +lean_object* x_466; +lean_dec(x_11); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_466 = lean_apply_1(x_10, x_1); +return x_466; +} +} +case 3: +{ +lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; +lean_dec(x_10); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_467 = lean_ctor_get(x_1, 0); +lean_inc(x_467); +x_468 = lean_ctor_get(x_1, 1); +lean_inc(x_468); +x_469 = lean_ctor_get(x_1, 2); +lean_inc(x_469); +x_470 = lean_ctor_get(x_1, 3); +lean_inc(x_470); +lean_dec(x_1); +x_471 = lean_apply_4(x_9, x_467, x_468, x_469, x_470); +return x_471; +} +default: +{ +lean_object* x_472; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_472 = lean_apply_1(x_10, x_1); +return x_472; } } } @@ -8523,7 +8931,7 @@ lean_object* l_Lean_Elab_Term_expandFunBinders_loop_match__3(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg), 9, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg), 10, 0); return x_2; } } @@ -10857,2739 +11265,2757 @@ x_961 = lean_string_dec_eq(x_228, x_960); if (x_961 == 0) { lean_object* x_962; uint8_t x_963; -x_962 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__3; +x_962 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__9; x_963 = lean_string_dec_eq(x_228, x_962); if (x_963 == 0) { lean_object* x_964; uint8_t x_965; -x_964 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__1; +x_964 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__3; x_965 = lean_string_dec_eq(x_228, x_964); if (x_965 == 0) { lean_object* x_966; uint8_t x_967; -x_966 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__7; +x_966 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__1; x_967 = lean_string_dec_eq(x_228, x_966); if (x_967 == 0) { lean_object* x_968; uint8_t x_969; -x_968 = l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg___closed__1; +x_968 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__7; x_969 = lean_string_dec_eq(x_228, x_968); -lean_dec(x_228); if (x_969 == 0) { -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; uint8_t x_982; -lean_inc(x_5); -x_970 = l_Lean_Elab_Term_mkFreshIdent___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_14, x_5, x_6); -x_971 = lean_ctor_get(x_970, 0); -lean_inc(x_971); -x_972 = lean_ctor_get(x_970, 1); -lean_inc(x_972); -lean_dec(x_970); -x_973 = lean_unsigned_to_nat(1u); -x_974 = lean_nat_add(x_3, x_973); -lean_dec(x_3); -x_975 = l_Lean_mkHole(x_14); -lean_inc(x_971); -x_976 = l_Lean_Elab_Term_mkExplicitBinder(x_971, x_975); -x_977 = lean_array_push(x_4, x_976); -lean_inc(x_5); -x_978 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_974, x_977, x_5, x_972); -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_970; uint8_t x_971; +x_970 = l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg___closed__1; +x_971 = lean_string_dec_eq(x_228, x_970); +lean_dec(x_228); +if (x_971 == 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); +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; uint8_t x_984; +lean_inc(x_5); +x_972 = l_Lean_Elab_Term_mkFreshIdent___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_14, x_5, x_6); +x_973 = lean_ctor_get(x_972, 0); +lean_inc(x_973); +x_974 = lean_ctor_get(x_972, 1); +lean_inc(x_974); +lean_dec(x_972); +x_975 = lean_unsigned_to_nat(1u); +x_976 = lean_nat_add(x_3, x_975); +lean_dec(x_3); +x_977 = l_Lean_mkHole(x_14); +lean_inc(x_973); +x_978 = l_Lean_Elab_Term_mkExplicitBinder(x_973, x_977); +x_979 = lean_array_push(x_4, x_978); +lean_inc(x_5); +x_980 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_976, x_979, x_5, x_974); +x_981 = lean_ctor_get(x_980, 0); +lean_inc(x_981); +x_982 = lean_ctor_get(x_981, 1); +lean_inc(x_982); +x_983 = lean_ctor_get(x_980, 1); +lean_inc(x_983); +lean_dec(x_980); +x_984 = !lean_is_exclusive(x_981); if (x_984 == 0) { -lean_object* x_985; lean_object* x_986; lean_object* x_987; uint8_t x_988; -x_985 = lean_ctor_get(x_980, 0); -x_986 = lean_ctor_get(x_980, 1); -lean_dec(x_986); -x_987 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_981); -lean_dec(x_5); -x_988 = !lean_is_exclusive(x_987); -if (x_988 == 0) +lean_object* x_985; uint8_t x_986; +x_985 = lean_ctor_get(x_981, 1); +lean_dec(x_985); +x_986 = !lean_is_exclusive(x_982); +if (x_986 == 0) { -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; uint8_t x_1005; -x_989 = lean_ctor_get(x_987, 0); -x_990 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_989); -x_991 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_991, 0, x_989); -lean_ctor_set(x_991, 1, x_990); -x_992 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_993 = lean_array_push(x_992, x_971); -x_994 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -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_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_997 = lean_array_push(x_996, x_995); -x_998 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -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_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_989); -x_1001 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1001, 0, x_989); -lean_ctor_set(x_1001, 1, x_1000); -x_1002 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_989); +lean_object* x_987; lean_object* x_988; lean_object* x_989; uint8_t x_990; +x_987 = lean_ctor_get(x_982, 0); +x_988 = lean_ctor_get(x_982, 1); +lean_dec(x_988); +x_989 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_983); +lean_dec(x_5); +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; uint8_t x_1007; +x_991 = lean_ctor_get(x_989, 0); +x_992 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_991); +x_993 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_993, 0, x_991); +lean_ctor_set(x_993, 1, x_992); +x_994 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_995 = lean_array_push(x_994, x_973); +x_996 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +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 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_999 = lean_array_push(x_998, x_997); +x_1000 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_1001 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1001, 0, x_1000); +lean_ctor_set(x_1001, 1, x_999); +x_1002 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_991); x_1003 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1003, 0, x_989); +lean_ctor_set(x_1003, 0, x_991); lean_ctor_set(x_1003, 1, x_1002); +x_1004 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_991); +x_1005 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1005, 0, x_991); +lean_ctor_set(x_1005, 1, x_1004); lean_inc(x_14); -x_1004 = lean_array_push(x_996, x_14); -x_1005 = !lean_is_exclusive(x_14); -if (x_1005 == 0) +x_1006 = lean_array_push(x_998, x_14); +x_1007 = !lean_is_exclusive(x_14); +if (x_1007 == 0) { -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; uint8_t x_1032; lean_object* x_1033; -x_1006 = lean_ctor_get(x_14, 1); -lean_dec(x_1006); -x_1007 = lean_ctor_get(x_14, 0); -lean_dec(x_1007); -lean_ctor_set(x_14, 1, x_1004); -lean_ctor_set(x_14, 0, x_998); -x_1008 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_1009 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1009, 0, x_989); -lean_ctor_set(x_1009, 1, x_1008); -x_1010 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_1011 = lean_array_push(x_1010, x_1003); -x_1012 = lean_array_push(x_1011, x_14); -x_1013 = lean_array_push(x_1012, x_1009); -x_1014 = lean_array_push(x_1013, x_985); -x_1015 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -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_996, x_1016); +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; uint8_t x_1034; lean_object* x_1035; +x_1008 = lean_ctor_get(x_14, 1); +lean_dec(x_1008); +x_1009 = lean_ctor_get(x_14, 0); +lean_dec(x_1009); +lean_ctor_set(x_14, 1, x_1006); +lean_ctor_set(x_14, 0, x_1000); +x_1010 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1011 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1011, 0, x_991); +lean_ctor_set(x_1011, 1, x_1010); +x_1012 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_1013 = lean_array_push(x_1012, x_1005); +x_1014 = lean_array_push(x_1013, x_14); +x_1015 = lean_array_push(x_1014, x_1011); +x_1016 = lean_array_push(x_1015, x_987); +x_1017 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_1018 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1018, 0, x_998); -lean_ctor_set(x_1018, 1, x_1017); -x_1019 = lean_array_push(x_996, x_1018); -x_1020 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1021 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1021, 0, x_1020); -lean_ctor_set(x_1021, 1, x_1019); -x_1022 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_1023 = lean_array_push(x_1022, x_991); -x_1024 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1025 = lean_array_push(x_1023, x_1024); -x_1026 = lean_array_push(x_1025, x_999); -x_1027 = lean_array_push(x_1026, x_1024); +lean_ctor_set(x_1018, 0, x_1017); +lean_ctor_set(x_1018, 1, x_1016); +x_1019 = lean_array_push(x_998, x_1018); +x_1020 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1020, 0, x_1000); +lean_ctor_set(x_1020, 1, x_1019); +x_1021 = lean_array_push(x_998, x_1020); +x_1022 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1023 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1023, 0, x_1022); +lean_ctor_set(x_1023, 1, x_1021); +x_1024 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_1025 = lean_array_push(x_1024, x_993); +x_1026 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1027 = lean_array_push(x_1025, x_1026); x_1028 = lean_array_push(x_1027, x_1001); -x_1029 = lean_array_push(x_1028, x_1021); -x_1030 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -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 = 1; -x_1033 = lean_box(x_1032); -lean_ctor_set(x_980, 1, x_1033); -lean_ctor_set(x_980, 0, x_1031); -lean_ctor_set(x_987, 0, x_979); -return x_987; +x_1029 = lean_array_push(x_1028, x_1026); +x_1030 = lean_array_push(x_1029, x_1003); +x_1031 = lean_array_push(x_1030, x_1023); +x_1032 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1033 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1033, 0, x_1032); +lean_ctor_set(x_1033, 1, x_1031); +x_1034 = 1; +x_1035 = lean_box(x_1034); +lean_ctor_set(x_982, 1, x_1035); +lean_ctor_set(x_982, 0, x_1033); +lean_ctor_set(x_989, 0, x_981); +return x_989; } else { -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; uint8_t x_1059; lean_object* x_1060; +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; uint8_t x_1061; lean_object* x_1062; lean_dec(x_14); -x_1034 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1034, 0, x_998); -lean_ctor_set(x_1034, 1, x_1004); -x_1035 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_1036 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1036, 0, x_989); -lean_ctor_set(x_1036, 1, x_1035); -x_1037 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_1038 = lean_array_push(x_1037, x_1003); -x_1039 = lean_array_push(x_1038, x_1034); -x_1040 = lean_array_push(x_1039, x_1036); -x_1041 = lean_array_push(x_1040, x_985); -x_1042 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -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 = lean_array_push(x_996, x_1043); +x_1036 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1036, 0, x_1000); +lean_ctor_set(x_1036, 1, x_1006); +x_1037 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1038 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1038, 0, x_991); +lean_ctor_set(x_1038, 1, x_1037); +x_1039 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_1040 = lean_array_push(x_1039, x_1005); +x_1041 = lean_array_push(x_1040, x_1036); +x_1042 = lean_array_push(x_1041, x_1038); +x_1043 = lean_array_push(x_1042, x_987); +x_1044 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_1045 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1045, 0, x_998); -lean_ctor_set(x_1045, 1, x_1044); -x_1046 = lean_array_push(x_996, x_1045); -x_1047 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1048 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1048, 0, x_1047); -lean_ctor_set(x_1048, 1, x_1046); -x_1049 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_1050 = lean_array_push(x_1049, x_991); -x_1051 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1052 = lean_array_push(x_1050, x_1051); -x_1053 = lean_array_push(x_1052, x_999); -x_1054 = lean_array_push(x_1053, x_1051); +lean_ctor_set(x_1045, 0, x_1044); +lean_ctor_set(x_1045, 1, x_1043); +x_1046 = lean_array_push(x_998, x_1045); +x_1047 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1047, 0, x_1000); +lean_ctor_set(x_1047, 1, x_1046); +x_1048 = lean_array_push(x_998, x_1047); +x_1049 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1050 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1050, 0, x_1049); +lean_ctor_set(x_1050, 1, x_1048); +x_1051 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_1052 = lean_array_push(x_1051, x_993); +x_1053 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1054 = lean_array_push(x_1052, x_1053); x_1055 = lean_array_push(x_1054, x_1001); -x_1056 = lean_array_push(x_1055, x_1048); -x_1057 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1058 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1058, 0, x_1057); -lean_ctor_set(x_1058, 1, x_1056); -x_1059 = 1; -x_1060 = lean_box(x_1059); -lean_ctor_set(x_980, 1, x_1060); -lean_ctor_set(x_980, 0, x_1058); -lean_ctor_set(x_987, 0, x_979); -return x_987; +x_1056 = lean_array_push(x_1055, x_1053); +x_1057 = lean_array_push(x_1056, x_1003); +x_1058 = lean_array_push(x_1057, x_1050); +x_1059 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1060 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1060, 0, x_1059); +lean_ctor_set(x_1060, 1, x_1058); +x_1061 = 1; +x_1062 = lean_box(x_1061); +lean_ctor_set(x_982, 1, x_1062); +lean_ctor_set(x_982, 0, x_1060); +lean_ctor_set(x_989, 0, x_981); +return x_989; } } else { -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; uint8_t x_1104; lean_object* x_1105; lean_object* x_1106; -x_1061 = lean_ctor_get(x_987, 0); -x_1062 = lean_ctor_get(x_987, 1); -lean_inc(x_1062); -lean_inc(x_1061); -lean_dec(x_987); -x_1063 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_1061); -x_1064 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1064, 0, x_1061); -lean_ctor_set(x_1064, 1, x_1063); -x_1065 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1066 = lean_array_push(x_1065, x_971); -x_1067 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_1068 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1068, 0, x_1067); -lean_ctor_set(x_1068, 1, x_1066); -x_1069 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_1070 = lean_array_push(x_1069, x_1068); -x_1071 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_1072 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1072, 0, x_1071); -lean_ctor_set(x_1072, 1, x_1070); -x_1073 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_1061); -x_1074 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1074, 0, x_1061); -lean_ctor_set(x_1074, 1, x_1073); -x_1075 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_1061); +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; uint8_t x_1106; lean_object* x_1107; lean_object* x_1108; +x_1063 = lean_ctor_get(x_989, 0); +x_1064 = lean_ctor_get(x_989, 1); +lean_inc(x_1064); +lean_inc(x_1063); +lean_dec(x_989); +x_1065 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_1063); +x_1066 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1066, 0, x_1063); +lean_ctor_set(x_1066, 1, x_1065); +x_1067 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1068 = lean_array_push(x_1067, x_973); +x_1069 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_1070 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1070, 0, x_1069); +lean_ctor_set(x_1070, 1, x_1068); +x_1071 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_1072 = lean_array_push(x_1071, x_1070); +x_1073 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_1074 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1074, 0, x_1073); +lean_ctor_set(x_1074, 1, x_1072); +x_1075 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_1063); x_1076 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1076, 0, x_1061); +lean_ctor_set(x_1076, 0, x_1063); lean_ctor_set(x_1076, 1, x_1075); +x_1077 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_1063); +x_1078 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1078, 0, x_1063); +lean_ctor_set(x_1078, 1, x_1077); lean_inc(x_14); -x_1077 = lean_array_push(x_1069, x_14); +x_1079 = lean_array_push(x_1071, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_1078 = x_14; + x_1080 = x_14; } else { lean_dec_ref(x_14); - x_1078 = lean_box(0); + x_1080 = lean_box(0); } -if (lean_is_scalar(x_1078)) { - x_1079 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1080)) { + x_1081 = lean_alloc_ctor(1, 2, 0); } else { - x_1079 = x_1078; + x_1081 = x_1080; } -lean_ctor_set(x_1079, 0, x_1071); -lean_ctor_set(x_1079, 1, x_1077); -x_1080 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_1081 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1081, 0, x_1061); -lean_ctor_set(x_1081, 1, x_1080); -x_1082 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_1083 = lean_array_push(x_1082, x_1076); -x_1084 = lean_array_push(x_1083, x_1079); -x_1085 = lean_array_push(x_1084, x_1081); -x_1086 = lean_array_push(x_1085, x_985); -x_1087 = l_Lean_Elab_Term_expandFunBinders_loop___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_1069, x_1088); +lean_ctor_set(x_1081, 0, x_1073); +lean_ctor_set(x_1081, 1, x_1079); +x_1082 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1083 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1083, 0, x_1063); +lean_ctor_set(x_1083, 1, x_1082); +x_1084 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_1085 = lean_array_push(x_1084, x_1078); +x_1086 = lean_array_push(x_1085, x_1081); +x_1087 = lean_array_push(x_1086, x_1083); +x_1088 = lean_array_push(x_1087, x_987); +x_1089 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_1090 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1090, 0, x_1071); -lean_ctor_set(x_1090, 1, x_1089); -x_1091 = lean_array_push(x_1069, x_1090); -x_1092 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1093 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1093, 0, x_1092); -lean_ctor_set(x_1093, 1, x_1091); -x_1094 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_1095 = lean_array_push(x_1094, x_1064); -x_1096 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1097 = lean_array_push(x_1095, x_1096); -x_1098 = lean_array_push(x_1097, x_1072); -x_1099 = lean_array_push(x_1098, x_1096); +lean_ctor_set(x_1090, 0, x_1089); +lean_ctor_set(x_1090, 1, x_1088); +x_1091 = lean_array_push(x_1071, x_1090); +x_1092 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1092, 0, x_1073); +lean_ctor_set(x_1092, 1, x_1091); +x_1093 = lean_array_push(x_1071, x_1092); +x_1094 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +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 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_1097 = lean_array_push(x_1096, x_1066); +x_1098 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1099 = lean_array_push(x_1097, x_1098); x_1100 = lean_array_push(x_1099, x_1074); -x_1101 = lean_array_push(x_1100, x_1093); -x_1102 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -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 = 1; -x_1105 = lean_box(x_1104); -lean_ctor_set(x_980, 1, x_1105); -lean_ctor_set(x_980, 0, x_1103); -x_1106 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1106, 0, x_979); -lean_ctor_set(x_1106, 1, x_1062); -return x_1106; +x_1101 = lean_array_push(x_1100, x_1098); +x_1102 = lean_array_push(x_1101, x_1076); +x_1103 = lean_array_push(x_1102, x_1095); +x_1104 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +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 = 1; +x_1107 = lean_box(x_1106); +lean_ctor_set(x_982, 1, x_1107); +lean_ctor_set(x_982, 0, x_1105); +x_1108 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1108, 0, x_981); +lean_ctor_set(x_1108, 1, x_1064); +return x_1108; } } else { -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; uint8_t x_1153; lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; -x_1107 = lean_ctor_get(x_980, 0); -lean_inc(x_1107); -lean_dec(x_980); -x_1108 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_981); +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; uint8_t x_1155; lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; +x_1109 = lean_ctor_get(x_982, 0); +lean_inc(x_1109); +lean_dec(x_982); +x_1110 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_983); lean_dec(x_5); -x_1109 = lean_ctor_get(x_1108, 0); -lean_inc(x_1109); -x_1110 = lean_ctor_get(x_1108, 1); -lean_inc(x_1110); -if (lean_is_exclusive(x_1108)) { - lean_ctor_release(x_1108, 0); - lean_ctor_release(x_1108, 1); - x_1111 = x_1108; +x_1111 = lean_ctor_get(x_1110, 0); +lean_inc(x_1111); +x_1112 = lean_ctor_get(x_1110, 1); +lean_inc(x_1112); +if (lean_is_exclusive(x_1110)) { + lean_ctor_release(x_1110, 0); + lean_ctor_release(x_1110, 1); + x_1113 = x_1110; } else { - lean_dec_ref(x_1108); - x_1111 = lean_box(0); + lean_dec_ref(x_1110); + x_1113 = lean_box(0); } -x_1112 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_1109); -x_1113 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1113, 0, x_1109); -lean_ctor_set(x_1113, 1, x_1112); -x_1114 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1115 = lean_array_push(x_1114, x_971); -x_1116 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_1117 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1117, 0, x_1116); -lean_ctor_set(x_1117, 1, x_1115); -x_1118 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_1119 = lean_array_push(x_1118, x_1117); -x_1120 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_1121 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1121, 0, x_1120); -lean_ctor_set(x_1121, 1, x_1119); -x_1122 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_1109); -x_1123 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1123, 0, x_1109); -lean_ctor_set(x_1123, 1, x_1122); -x_1124 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_1109); +x_1114 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_1111); +x_1115 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1115, 0, x_1111); +lean_ctor_set(x_1115, 1, x_1114); +x_1116 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1117 = lean_array_push(x_1116, x_973); +x_1118 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_1119 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1119, 0, x_1118); +lean_ctor_set(x_1119, 1, x_1117); +x_1120 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_1121 = lean_array_push(x_1120, x_1119); +x_1122 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +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_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_1111); x_1125 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1125, 0, x_1109); +lean_ctor_set(x_1125, 0, x_1111); lean_ctor_set(x_1125, 1, x_1124); +x_1126 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_1111); +x_1127 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1127, 0, x_1111); +lean_ctor_set(x_1127, 1, x_1126); lean_inc(x_14); -x_1126 = lean_array_push(x_1118, x_14); +x_1128 = lean_array_push(x_1120, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_1127 = x_14; + x_1129 = x_14; } else { lean_dec_ref(x_14); - x_1127 = lean_box(0); + x_1129 = lean_box(0); } -if (lean_is_scalar(x_1127)) { - x_1128 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1129)) { + x_1130 = lean_alloc_ctor(1, 2, 0); } else { - x_1128 = x_1127; + x_1130 = x_1129; } -lean_ctor_set(x_1128, 0, x_1120); -lean_ctor_set(x_1128, 1, x_1126); -x_1129 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_1130 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1130, 0, x_1109); -lean_ctor_set(x_1130, 1, x_1129); -x_1131 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_1132 = lean_array_push(x_1131, x_1125); -x_1133 = lean_array_push(x_1132, x_1128); -x_1134 = lean_array_push(x_1133, x_1130); -x_1135 = lean_array_push(x_1134, x_1107); -x_1136 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1137 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1137, 0, x_1136); -lean_ctor_set(x_1137, 1, x_1135); -x_1138 = lean_array_push(x_1118, x_1137); +lean_ctor_set(x_1130, 0, x_1122); +lean_ctor_set(x_1130, 1, x_1128); +x_1131 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1132 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1132, 0, x_1111); +lean_ctor_set(x_1132, 1, x_1131); +x_1133 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_1134 = lean_array_push(x_1133, x_1127); +x_1135 = lean_array_push(x_1134, x_1130); +x_1136 = lean_array_push(x_1135, x_1132); +x_1137 = lean_array_push(x_1136, x_1109); +x_1138 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_1139 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1139, 0, x_1120); -lean_ctor_set(x_1139, 1, x_1138); -x_1140 = lean_array_push(x_1118, x_1139); -x_1141 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1142 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1142, 0, x_1141); -lean_ctor_set(x_1142, 1, x_1140); -x_1143 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_1144 = lean_array_push(x_1143, x_1113); -x_1145 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1146 = lean_array_push(x_1144, x_1145); -x_1147 = lean_array_push(x_1146, x_1121); -x_1148 = lean_array_push(x_1147, x_1145); +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 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1141, 0, x_1122); +lean_ctor_set(x_1141, 1, x_1140); +x_1142 = lean_array_push(x_1120, x_1141); +x_1143 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1144 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1144, 0, x_1143); +lean_ctor_set(x_1144, 1, x_1142); +x_1145 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_1146 = lean_array_push(x_1145, x_1115); +x_1147 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1148 = lean_array_push(x_1146, x_1147); x_1149 = lean_array_push(x_1148, x_1123); -x_1150 = lean_array_push(x_1149, x_1142); -x_1151 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -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 = 1; -x_1154 = lean_box(x_1153); -x_1155 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1155, 0, x_1152); -lean_ctor_set(x_1155, 1, x_1154); -lean_ctor_set(x_979, 1, x_1155); -if (lean_is_scalar(x_1111)) { - x_1156 = lean_alloc_ctor(0, 2, 0); +x_1150 = lean_array_push(x_1149, x_1147); +x_1151 = lean_array_push(x_1150, x_1125); +x_1152 = lean_array_push(x_1151, x_1144); +x_1153 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1154 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1154, 0, x_1153); +lean_ctor_set(x_1154, 1, x_1152); +x_1155 = 1; +x_1156 = lean_box(x_1155); +x_1157 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1157, 0, x_1154); +lean_ctor_set(x_1157, 1, x_1156); +lean_ctor_set(x_981, 1, x_1157); +if (lean_is_scalar(x_1113)) { + x_1158 = lean_alloc_ctor(0, 2, 0); } else { - x_1156 = x_1111; + x_1158 = x_1113; } -lean_ctor_set(x_1156, 0, x_979); -lean_ctor_set(x_1156, 1, x_1110); -return x_1156; +lean_ctor_set(x_1158, 0, x_981); +lean_ctor_set(x_1158, 1, x_1112); +return x_1158; } } else { -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; uint8_t x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; -x_1157 = lean_ctor_get(x_979, 0); -lean_inc(x_1157); -lean_dec(x_979); -x_1158 = lean_ctor_get(x_980, 0); -lean_inc(x_1158); -if (lean_is_exclusive(x_980)) { - lean_ctor_release(x_980, 0); - lean_ctor_release(x_980, 1); - x_1159 = x_980; +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; uint8_t x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; +x_1159 = lean_ctor_get(x_981, 0); +lean_inc(x_1159); +lean_dec(x_981); +x_1160 = lean_ctor_get(x_982, 0); +lean_inc(x_1160); +if (lean_is_exclusive(x_982)) { + lean_ctor_release(x_982, 0); + lean_ctor_release(x_982, 1); + x_1161 = x_982; } else { - lean_dec_ref(x_980); - x_1159 = lean_box(0); + lean_dec_ref(x_982); + x_1161 = lean_box(0); } -x_1160 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_981); +x_1162 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_983); lean_dec(x_5); -x_1161 = lean_ctor_get(x_1160, 0); -lean_inc(x_1161); -x_1162 = lean_ctor_get(x_1160, 1); -lean_inc(x_1162); -if (lean_is_exclusive(x_1160)) { - lean_ctor_release(x_1160, 0); - lean_ctor_release(x_1160, 1); - x_1163 = x_1160; +x_1163 = lean_ctor_get(x_1162, 0); +lean_inc(x_1163); +x_1164 = lean_ctor_get(x_1162, 1); +lean_inc(x_1164); +if (lean_is_exclusive(x_1162)) { + lean_ctor_release(x_1162, 0); + lean_ctor_release(x_1162, 1); + x_1165 = x_1162; } else { - lean_dec_ref(x_1160); - x_1163 = lean_box(0); + lean_dec_ref(x_1162); + x_1165 = lean_box(0); } -x_1164 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_1161); -x_1165 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1165, 0, x_1161); -lean_ctor_set(x_1165, 1, x_1164); -x_1166 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1167 = lean_array_push(x_1166, x_971); -x_1168 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_1169 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1169, 0, x_1168); -lean_ctor_set(x_1169, 1, x_1167); -x_1170 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_1171 = lean_array_push(x_1170, x_1169); -x_1172 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_1173 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1173, 0, x_1172); -lean_ctor_set(x_1173, 1, x_1171); -x_1174 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_1161); -x_1175 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1175, 0, x_1161); -lean_ctor_set(x_1175, 1, x_1174); -x_1176 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_1161); +x_1166 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_1163); +x_1167 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1167, 0, x_1163); +lean_ctor_set(x_1167, 1, x_1166); +x_1168 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1169 = lean_array_push(x_1168, x_973); +x_1170 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +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 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_1173 = lean_array_push(x_1172, x_1171); +x_1174 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_1175 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1175, 0, x_1174); +lean_ctor_set(x_1175, 1, x_1173); +x_1176 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_1163); x_1177 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1177, 0, x_1161); +lean_ctor_set(x_1177, 0, x_1163); lean_ctor_set(x_1177, 1, x_1176); +x_1178 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_1163); +x_1179 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1179, 0, x_1163); +lean_ctor_set(x_1179, 1, x_1178); lean_inc(x_14); -x_1178 = lean_array_push(x_1170, x_14); +x_1180 = lean_array_push(x_1172, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_1179 = x_14; + x_1181 = x_14; } else { lean_dec_ref(x_14); - x_1179 = lean_box(0); + x_1181 = lean_box(0); } -if (lean_is_scalar(x_1179)) { - x_1180 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1181)) { + x_1182 = lean_alloc_ctor(1, 2, 0); } else { - x_1180 = x_1179; + x_1182 = x_1181; } -lean_ctor_set(x_1180, 0, x_1172); -lean_ctor_set(x_1180, 1, x_1178); -x_1181 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_1182 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1182, 0, x_1161); -lean_ctor_set(x_1182, 1, x_1181); -x_1183 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_1184 = lean_array_push(x_1183, x_1177); -x_1185 = lean_array_push(x_1184, x_1180); -x_1186 = lean_array_push(x_1185, x_1182); -x_1187 = lean_array_push(x_1186, x_1158); -x_1188 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1189 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1189, 0, x_1188); -lean_ctor_set(x_1189, 1, x_1187); -x_1190 = lean_array_push(x_1170, x_1189); +lean_ctor_set(x_1182, 0, x_1174); +lean_ctor_set(x_1182, 1, x_1180); +x_1183 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1184 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1184, 0, x_1163); +lean_ctor_set(x_1184, 1, x_1183); +x_1185 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_1186 = lean_array_push(x_1185, x_1179); +x_1187 = lean_array_push(x_1186, x_1182); +x_1188 = lean_array_push(x_1187, x_1184); +x_1189 = lean_array_push(x_1188, x_1160); +x_1190 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_1191 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1191, 0, x_1172); -lean_ctor_set(x_1191, 1, x_1190); -x_1192 = lean_array_push(x_1170, x_1191); -x_1193 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -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_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_1196 = lean_array_push(x_1195, x_1165); -x_1197 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1198 = lean_array_push(x_1196, x_1197); -x_1199 = lean_array_push(x_1198, x_1173); -x_1200 = lean_array_push(x_1199, x_1197); +lean_ctor_set(x_1191, 0, x_1190); +lean_ctor_set(x_1191, 1, x_1189); +x_1192 = lean_array_push(x_1172, x_1191); +x_1193 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1193, 0, x_1174); +lean_ctor_set(x_1193, 1, x_1192); +x_1194 = lean_array_push(x_1172, x_1193); +x_1195 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1196 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1196, 0, x_1195); +lean_ctor_set(x_1196, 1, x_1194); +x_1197 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_1198 = lean_array_push(x_1197, x_1167); +x_1199 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1200 = lean_array_push(x_1198, x_1199); x_1201 = lean_array_push(x_1200, x_1175); -x_1202 = lean_array_push(x_1201, x_1194); -x_1203 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1204 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1204, 0, x_1203); -lean_ctor_set(x_1204, 1, x_1202); -x_1205 = 1; -x_1206 = lean_box(x_1205); -if (lean_is_scalar(x_1159)) { - x_1207 = lean_alloc_ctor(0, 2, 0); -} else { - x_1207 = x_1159; -} -lean_ctor_set(x_1207, 0, x_1204); -lean_ctor_set(x_1207, 1, x_1206); -x_1208 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1208, 0, x_1157); -lean_ctor_set(x_1208, 1, x_1207); -if (lean_is_scalar(x_1163)) { +x_1202 = lean_array_push(x_1201, x_1199); +x_1203 = lean_array_push(x_1202, x_1177); +x_1204 = lean_array_push(x_1203, x_1196); +x_1205 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +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 = 1; +x_1208 = lean_box(x_1207); +if (lean_is_scalar(x_1161)) { x_1209 = lean_alloc_ctor(0, 2, 0); } else { - x_1209 = x_1163; + x_1209 = x_1161; } -lean_ctor_set(x_1209, 0, x_1208); -lean_ctor_set(x_1209, 1, x_1162); -return x_1209; +lean_ctor_set(x_1209, 0, x_1206); +lean_ctor_set(x_1209, 1, x_1208); +x_1210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1210, 0, x_1159); +lean_ctor_set(x_1210, 1, x_1209); +if (lean_is_scalar(x_1165)) { + x_1211 = lean_alloc_ctor(0, 2, 0); +} else { + x_1211 = x_1165; +} +lean_ctor_set(x_1211, 0, x_1210); +lean_ctor_set(x_1211, 1, x_1164); +return x_1211; } } else { -lean_object* x_1210; lean_object* x_1211; uint8_t x_1212; -x_1210 = lean_unsigned_to_nat(1u); -x_1211 = l_Lean_Syntax_getArg(x_14, x_1210); -x_1212 = l_Lean_Syntax_isNone(x_1211); -if (x_1212 == 0) +lean_object* x_1212; lean_object* x_1213; uint8_t x_1214; +x_1212 = lean_unsigned_to_nat(1u); +x_1213 = l_Lean_Syntax_getArg(x_14, x_1212); +x_1214 = l_Lean_Syntax_isNone(x_1213); +if (x_1214 == 0) { -lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; uint8_t x_1216; -x_1213 = lean_unsigned_to_nat(0u); -x_1214 = l_Lean_Syntax_getArg(x_1211, x_1213); -x_1215 = l_Lean_Syntax_getArg(x_1211, x_1210); -lean_dec(x_1211); -x_1216 = l_Lean_Syntax_isNone(x_1215); -if (x_1216 == 0) +lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; uint8_t x_1218; +x_1215 = lean_unsigned_to_nat(0u); +x_1216 = l_Lean_Syntax_getArg(x_1213, x_1215); +x_1217 = l_Lean_Syntax_getArg(x_1213, x_1212); +lean_dec(x_1213); +x_1218 = l_Lean_Syntax_isNone(x_1217); +if (x_1218 == 0) { -lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; uint8_t x_1220; -x_1217 = l_Lean_Syntax_getArg(x_1215, x_1213); -lean_dec(x_1215); -lean_inc(x_1217); -x_1218 = l_Lean_Syntax_getKind(x_1217); -x_1219 = l_Lean_Elab_Term_expandFunBinders_loop___closed__17; -x_1220 = lean_name_eq(x_1218, x_1219); -lean_dec(x_1218); -if (x_1220 == 0) -{ -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; uint8_t x_1232; +lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; uint8_t x_1222; +x_1219 = l_Lean_Syntax_getArg(x_1217, x_1215); lean_dec(x_1217); -lean_dec(x_1214); -lean_inc(x_5); -x_1221 = l_Lean_Elab_Term_mkFreshIdent___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_14, x_5, x_6); -x_1222 = lean_ctor_get(x_1221, 0); -lean_inc(x_1222); -x_1223 = lean_ctor_get(x_1221, 1); -lean_inc(x_1223); -lean_dec(x_1221); -x_1224 = lean_nat_add(x_3, x_1210); -lean_dec(x_3); -x_1225 = l_Lean_mkHole(x_14); -lean_inc(x_1222); -x_1226 = l_Lean_Elab_Term_mkExplicitBinder(x_1222, x_1225); -x_1227 = lean_array_push(x_4, x_1226); -lean_inc(x_5); -x_1228 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_1224, x_1227, x_5, x_1223); -x_1229 = lean_ctor_get(x_1228, 0); -lean_inc(x_1229); -x_1230 = lean_ctor_get(x_1229, 1); -lean_inc(x_1230); -x_1231 = lean_ctor_get(x_1228, 1); -lean_inc(x_1231); -lean_dec(x_1228); -x_1232 = !lean_is_exclusive(x_1229); -if (x_1232 == 0) +lean_inc(x_1219); +x_1220 = l_Lean_Syntax_getKind(x_1219); +x_1221 = l_Lean_Elab_Term_expandFunBinders_loop___closed__17; +x_1222 = lean_name_eq(x_1220, x_1221); +lean_dec(x_1220); +if (x_1222 == 0) { -lean_object* x_1233; uint8_t x_1234; -x_1233 = lean_ctor_get(x_1229, 1); -lean_dec(x_1233); -x_1234 = !lean_is_exclusive(x_1230); +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; uint8_t x_1234; +lean_dec(x_1219); +lean_dec(x_1216); +lean_inc(x_5); +x_1223 = l_Lean_Elab_Term_mkFreshIdent___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_14, x_5, x_6); +x_1224 = lean_ctor_get(x_1223, 0); +lean_inc(x_1224); +x_1225 = lean_ctor_get(x_1223, 1); +lean_inc(x_1225); +lean_dec(x_1223); +x_1226 = lean_nat_add(x_3, x_1212); +lean_dec(x_3); +x_1227 = l_Lean_mkHole(x_14); +lean_inc(x_1224); +x_1228 = l_Lean_Elab_Term_mkExplicitBinder(x_1224, x_1227); +x_1229 = lean_array_push(x_4, x_1228); +lean_inc(x_5); +x_1230 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_1226, x_1229, x_5, x_1225); +x_1231 = lean_ctor_get(x_1230, 0); +lean_inc(x_1231); +x_1232 = lean_ctor_get(x_1231, 1); +lean_inc(x_1232); +x_1233 = lean_ctor_get(x_1230, 1); +lean_inc(x_1233); +lean_dec(x_1230); +x_1234 = !lean_is_exclusive(x_1231); if (x_1234 == 0) { -lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; uint8_t x_1238; -x_1235 = lean_ctor_get(x_1230, 0); -x_1236 = lean_ctor_get(x_1230, 1); -lean_dec(x_1236); -x_1237 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_1231); -lean_dec(x_5); -x_1238 = !lean_is_exclusive(x_1237); -if (x_1238 == 0) +lean_object* x_1235; uint8_t x_1236; +x_1235 = lean_ctor_get(x_1231, 1); +lean_dec(x_1235); +x_1236 = !lean_is_exclusive(x_1232); +if (x_1236 == 0) { -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; uint8_t x_1255; -x_1239 = lean_ctor_get(x_1237, 0); -x_1240 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_1239); -x_1241 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1241, 0, x_1239); -lean_ctor_set(x_1241, 1, x_1240); -x_1242 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1243 = lean_array_push(x_1242, x_1222); -x_1244 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_1245 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1245, 0, x_1244); -lean_ctor_set(x_1245, 1, x_1243); -x_1246 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_1247 = lean_array_push(x_1246, x_1245); -x_1248 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_1249 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1249, 0, x_1248); -lean_ctor_set(x_1249, 1, x_1247); -x_1250 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_1239); -x_1251 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1251, 0, x_1239); -lean_ctor_set(x_1251, 1, x_1250); -x_1252 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_1239); +lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; uint8_t x_1240; +x_1237 = lean_ctor_get(x_1232, 0); +x_1238 = lean_ctor_get(x_1232, 1); +lean_dec(x_1238); +x_1239 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_1233); +lean_dec(x_5); +x_1240 = !lean_is_exclusive(x_1239); +if (x_1240 == 0) +{ +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; uint8_t x_1257; +x_1241 = lean_ctor_get(x_1239, 0); +x_1242 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_1241); +x_1243 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1243, 0, x_1241); +lean_ctor_set(x_1243, 1, x_1242); +x_1244 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1245 = lean_array_push(x_1244, x_1224); +x_1246 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +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 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_1249 = lean_array_push(x_1248, x_1247); +x_1250 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +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 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_1241); x_1253 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1253, 0, x_1239); +lean_ctor_set(x_1253, 0, x_1241); lean_ctor_set(x_1253, 1, x_1252); +x_1254 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_1241); +x_1255 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1255, 0, x_1241); +lean_ctor_set(x_1255, 1, x_1254); lean_inc(x_14); -x_1254 = lean_array_push(x_1246, x_14); -x_1255 = !lean_is_exclusive(x_14); -if (x_1255 == 0) +x_1256 = lean_array_push(x_1248, x_14); +x_1257 = !lean_is_exclusive(x_14); +if (x_1257 == 0) { -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; uint8_t x_1282; lean_object* x_1283; -x_1256 = lean_ctor_get(x_14, 1); -lean_dec(x_1256); -x_1257 = lean_ctor_get(x_14, 0); -lean_dec(x_1257); -lean_ctor_set(x_14, 1, x_1254); -lean_ctor_set(x_14, 0, x_1248); -x_1258 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_1259 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1259, 0, x_1239); -lean_ctor_set(x_1259, 1, x_1258); -x_1260 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_1261 = lean_array_push(x_1260, x_1253); -x_1262 = lean_array_push(x_1261, x_14); -x_1263 = lean_array_push(x_1262, x_1259); -x_1264 = lean_array_push(x_1263, x_1235); -x_1265 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1266 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1266, 0, x_1265); -lean_ctor_set(x_1266, 1, x_1264); -x_1267 = lean_array_push(x_1246, x_1266); +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_object* x_1283; uint8_t x_1284; lean_object* x_1285; +x_1258 = lean_ctor_get(x_14, 1); +lean_dec(x_1258); +x_1259 = lean_ctor_get(x_14, 0); +lean_dec(x_1259); +lean_ctor_set(x_14, 1, x_1256); +lean_ctor_set(x_14, 0, x_1250); +x_1260 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1261 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1261, 0, x_1241); +lean_ctor_set(x_1261, 1, x_1260); +x_1262 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_1263 = lean_array_push(x_1262, x_1255); +x_1264 = lean_array_push(x_1263, x_14); +x_1265 = lean_array_push(x_1264, x_1261); +x_1266 = lean_array_push(x_1265, x_1237); +x_1267 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_1268 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1268, 0, x_1248); -lean_ctor_set(x_1268, 1, x_1267); -x_1269 = lean_array_push(x_1246, x_1268); -x_1270 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -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_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_1273 = lean_array_push(x_1272, x_1241); -x_1274 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1275 = lean_array_push(x_1273, x_1274); -x_1276 = lean_array_push(x_1275, x_1249); -x_1277 = lean_array_push(x_1276, x_1274); +lean_ctor_set(x_1268, 0, x_1267); +lean_ctor_set(x_1268, 1, x_1266); +x_1269 = lean_array_push(x_1248, x_1268); +x_1270 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1270, 0, x_1250); +lean_ctor_set(x_1270, 1, x_1269); +x_1271 = lean_array_push(x_1248, x_1270); +x_1272 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +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 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_1275 = lean_array_push(x_1274, x_1243); +x_1276 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1277 = lean_array_push(x_1275, x_1276); x_1278 = lean_array_push(x_1277, x_1251); -x_1279 = lean_array_push(x_1278, x_1271); -x_1280 = l_Lean_Elab_Term_expandFunBinders_loop___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_1230, 1, x_1283); -lean_ctor_set(x_1230, 0, x_1281); -lean_ctor_set(x_1237, 0, x_1229); -return x_1237; +x_1279 = lean_array_push(x_1278, x_1276); +x_1280 = lean_array_push(x_1279, x_1253); +x_1281 = lean_array_push(x_1280, x_1273); +x_1282 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1283 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1283, 0, x_1282); +lean_ctor_set(x_1283, 1, x_1281); +x_1284 = 1; +x_1285 = lean_box(x_1284); +lean_ctor_set(x_1232, 1, x_1285); +lean_ctor_set(x_1232, 0, x_1283); +lean_ctor_set(x_1239, 0, x_1231); +return x_1239; } else { -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; lean_object* x_1300; lean_object* x_1301; 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; uint8_t x_1309; lean_object* x_1310; +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; lean_object* x_1300; lean_object* x_1301; 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; uint8_t x_1311; lean_object* x_1312; lean_dec(x_14); -x_1284 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1284, 0, x_1248); -lean_ctor_set(x_1284, 1, x_1254); -x_1285 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_1286 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1286, 0, x_1239); -lean_ctor_set(x_1286, 1, x_1285); -x_1287 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_1288 = lean_array_push(x_1287, x_1253); -x_1289 = lean_array_push(x_1288, x_1284); -x_1290 = lean_array_push(x_1289, x_1286); -x_1291 = lean_array_push(x_1290, x_1235); -x_1292 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1293 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1293, 0, x_1292); -lean_ctor_set(x_1293, 1, x_1291); -x_1294 = lean_array_push(x_1246, x_1293); +x_1286 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1286, 0, x_1250); +lean_ctor_set(x_1286, 1, x_1256); +x_1287 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1288 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1288, 0, x_1241); +lean_ctor_set(x_1288, 1, x_1287); +x_1289 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_1290 = lean_array_push(x_1289, x_1255); +x_1291 = lean_array_push(x_1290, x_1286); +x_1292 = lean_array_push(x_1291, x_1288); +x_1293 = lean_array_push(x_1292, x_1237); +x_1294 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_1295 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1295, 0, x_1248); -lean_ctor_set(x_1295, 1, x_1294); -x_1296 = lean_array_push(x_1246, x_1295); -x_1297 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1298 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1298, 0, x_1297); -lean_ctor_set(x_1298, 1, x_1296); -x_1299 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_1300 = lean_array_push(x_1299, x_1241); -x_1301 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1302 = lean_array_push(x_1300, x_1301); -x_1303 = lean_array_push(x_1302, x_1249); -x_1304 = lean_array_push(x_1303, x_1301); +lean_ctor_set(x_1295, 0, x_1294); +lean_ctor_set(x_1295, 1, x_1293); +x_1296 = lean_array_push(x_1248, x_1295); +x_1297 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1297, 0, x_1250); +lean_ctor_set(x_1297, 1, x_1296); +x_1298 = lean_array_push(x_1248, x_1297); +x_1299 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1300 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1300, 0, x_1299); +lean_ctor_set(x_1300, 1, x_1298); +x_1301 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_1302 = lean_array_push(x_1301, x_1243); +x_1303 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1304 = lean_array_push(x_1302, x_1303); x_1305 = lean_array_push(x_1304, x_1251); -x_1306 = lean_array_push(x_1305, x_1298); -x_1307 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1308 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1308, 0, x_1307); -lean_ctor_set(x_1308, 1, x_1306); -x_1309 = 1; -x_1310 = lean_box(x_1309); -lean_ctor_set(x_1230, 1, x_1310); -lean_ctor_set(x_1230, 0, x_1308); -lean_ctor_set(x_1237, 0, x_1229); -return x_1237; +x_1306 = lean_array_push(x_1305, x_1303); +x_1307 = lean_array_push(x_1306, x_1253); +x_1308 = lean_array_push(x_1307, x_1300); +x_1309 = l_Lean_Elab_Term_expandFunBinders_loop___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 = 1; +x_1312 = lean_box(x_1311); +lean_ctor_set(x_1232, 1, x_1312); +lean_ctor_set(x_1232, 0, x_1310); +lean_ctor_set(x_1239, 0, x_1231); +return x_1239; } } else { -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; 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; uint8_t x_1354; lean_object* x_1355; lean_object* x_1356; -x_1311 = lean_ctor_get(x_1237, 0); -x_1312 = lean_ctor_get(x_1237, 1); -lean_inc(x_1312); -lean_inc(x_1311); -lean_dec(x_1237); -x_1313 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_1311); -x_1314 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1314, 0, x_1311); -lean_ctor_set(x_1314, 1, x_1313); -x_1315 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1316 = lean_array_push(x_1315, x_1222); -x_1317 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_1318 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1318, 0, x_1317); -lean_ctor_set(x_1318, 1, x_1316); -x_1319 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_1320 = lean_array_push(x_1319, x_1318); -x_1321 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_1322 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1322, 0, x_1321); -lean_ctor_set(x_1322, 1, x_1320); -x_1323 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_1311); -x_1324 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1324, 0, x_1311); -lean_ctor_set(x_1324, 1, x_1323); -x_1325 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_1311); +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; 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; uint8_t x_1356; lean_object* x_1357; lean_object* x_1358; +x_1313 = lean_ctor_get(x_1239, 0); +x_1314 = lean_ctor_get(x_1239, 1); +lean_inc(x_1314); +lean_inc(x_1313); +lean_dec(x_1239); +x_1315 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_1313); +x_1316 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1316, 0, x_1313); +lean_ctor_set(x_1316, 1, x_1315); +x_1317 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1318 = lean_array_push(x_1317, x_1224); +x_1319 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_1320 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1320, 0, x_1319); +lean_ctor_set(x_1320, 1, x_1318); +x_1321 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_1322 = lean_array_push(x_1321, x_1320); +x_1323 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_1324 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1324, 0, x_1323); +lean_ctor_set(x_1324, 1, x_1322); +x_1325 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_1313); x_1326 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1326, 0, x_1311); +lean_ctor_set(x_1326, 0, x_1313); lean_ctor_set(x_1326, 1, x_1325); +x_1327 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_1313); +x_1328 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1328, 0, x_1313); +lean_ctor_set(x_1328, 1, x_1327); lean_inc(x_14); -x_1327 = lean_array_push(x_1319, x_14); +x_1329 = lean_array_push(x_1321, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_1328 = x_14; + x_1330 = x_14; } else { lean_dec_ref(x_14); - x_1328 = lean_box(0); + x_1330 = lean_box(0); } -if (lean_is_scalar(x_1328)) { - x_1329 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1330)) { + x_1331 = lean_alloc_ctor(1, 2, 0); } else { - x_1329 = x_1328; + x_1331 = x_1330; } -lean_ctor_set(x_1329, 0, x_1321); -lean_ctor_set(x_1329, 1, x_1327); -x_1330 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_1331 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1331, 0, x_1311); -lean_ctor_set(x_1331, 1, x_1330); -x_1332 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_1333 = lean_array_push(x_1332, x_1326); -x_1334 = lean_array_push(x_1333, x_1329); -x_1335 = lean_array_push(x_1334, x_1331); -x_1336 = lean_array_push(x_1335, x_1235); -x_1337 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1338 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1338, 0, x_1337); -lean_ctor_set(x_1338, 1, x_1336); -x_1339 = lean_array_push(x_1319, x_1338); +lean_ctor_set(x_1331, 0, x_1323); +lean_ctor_set(x_1331, 1, x_1329); +x_1332 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1333 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1333, 0, x_1313); +lean_ctor_set(x_1333, 1, x_1332); +x_1334 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_1335 = lean_array_push(x_1334, x_1328); +x_1336 = lean_array_push(x_1335, x_1331); +x_1337 = lean_array_push(x_1336, x_1333); +x_1338 = lean_array_push(x_1337, x_1237); +x_1339 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_1340 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1340, 0, x_1321); -lean_ctor_set(x_1340, 1, x_1339); -x_1341 = lean_array_push(x_1319, x_1340); -x_1342 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1343 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1343, 0, x_1342); -lean_ctor_set(x_1343, 1, x_1341); -x_1344 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_1345 = lean_array_push(x_1344, x_1314); -x_1346 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1347 = lean_array_push(x_1345, x_1346); -x_1348 = lean_array_push(x_1347, x_1322); -x_1349 = lean_array_push(x_1348, x_1346); +lean_ctor_set(x_1340, 0, x_1339); +lean_ctor_set(x_1340, 1, x_1338); +x_1341 = lean_array_push(x_1321, x_1340); +x_1342 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1342, 0, x_1323); +lean_ctor_set(x_1342, 1, x_1341); +x_1343 = lean_array_push(x_1321, x_1342); +x_1344 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1345 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1345, 0, x_1344); +lean_ctor_set(x_1345, 1, x_1343); +x_1346 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_1347 = lean_array_push(x_1346, x_1316); +x_1348 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1349 = lean_array_push(x_1347, x_1348); x_1350 = lean_array_push(x_1349, x_1324); -x_1351 = lean_array_push(x_1350, x_1343); -x_1352 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1353 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1353, 0, x_1352); -lean_ctor_set(x_1353, 1, x_1351); -x_1354 = 1; -x_1355 = lean_box(x_1354); -lean_ctor_set(x_1230, 1, x_1355); -lean_ctor_set(x_1230, 0, x_1353); -x_1356 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1356, 0, x_1229); -lean_ctor_set(x_1356, 1, x_1312); -return x_1356; +x_1351 = lean_array_push(x_1350, x_1348); +x_1352 = lean_array_push(x_1351, x_1326); +x_1353 = lean_array_push(x_1352, x_1345); +x_1354 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1355 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1355, 0, x_1354); +lean_ctor_set(x_1355, 1, x_1353); +x_1356 = 1; +x_1357 = lean_box(x_1356); +lean_ctor_set(x_1232, 1, x_1357); +lean_ctor_set(x_1232, 0, x_1355); +x_1358 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1358, 0, x_1231); +lean_ctor_set(x_1358, 1, x_1314); +return x_1358; } } else { -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; 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; 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; uint8_t x_1403; lean_object* x_1404; lean_object* x_1405; lean_object* x_1406; -x_1357 = lean_ctor_get(x_1230, 0); -lean_inc(x_1357); -lean_dec(x_1230); -x_1358 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_1231); +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; 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; 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; uint8_t x_1405; lean_object* x_1406; lean_object* x_1407; lean_object* x_1408; +x_1359 = lean_ctor_get(x_1232, 0); +lean_inc(x_1359); +lean_dec(x_1232); +x_1360 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_1233); lean_dec(x_5); -x_1359 = lean_ctor_get(x_1358, 0); -lean_inc(x_1359); -x_1360 = lean_ctor_get(x_1358, 1); -lean_inc(x_1360); -if (lean_is_exclusive(x_1358)) { - lean_ctor_release(x_1358, 0); - lean_ctor_release(x_1358, 1); - x_1361 = x_1358; +x_1361 = lean_ctor_get(x_1360, 0); +lean_inc(x_1361); +x_1362 = lean_ctor_get(x_1360, 1); +lean_inc(x_1362); +if (lean_is_exclusive(x_1360)) { + lean_ctor_release(x_1360, 0); + lean_ctor_release(x_1360, 1); + x_1363 = x_1360; } else { - lean_dec_ref(x_1358); - x_1361 = lean_box(0); + lean_dec_ref(x_1360); + x_1363 = lean_box(0); } -x_1362 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_1359); -x_1363 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1363, 0, x_1359); -lean_ctor_set(x_1363, 1, x_1362); -x_1364 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1365 = lean_array_push(x_1364, x_1222); -x_1366 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_1367 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1367, 0, x_1366); -lean_ctor_set(x_1367, 1, x_1365); -x_1368 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_1369 = lean_array_push(x_1368, x_1367); -x_1370 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_1371 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1371, 0, x_1370); -lean_ctor_set(x_1371, 1, x_1369); -x_1372 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_1359); -x_1373 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1373, 0, x_1359); -lean_ctor_set(x_1373, 1, x_1372); -x_1374 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_1359); +x_1364 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_1361); +x_1365 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1365, 0, x_1361); +lean_ctor_set(x_1365, 1, x_1364); +x_1366 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1367 = lean_array_push(x_1366, x_1224); +x_1368 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_1369 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1369, 0, x_1368); +lean_ctor_set(x_1369, 1, x_1367); +x_1370 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_1371 = lean_array_push(x_1370, x_1369); +x_1372 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_1373 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1373, 0, x_1372); +lean_ctor_set(x_1373, 1, x_1371); +x_1374 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_1361); x_1375 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1375, 0, x_1359); +lean_ctor_set(x_1375, 0, x_1361); lean_ctor_set(x_1375, 1, x_1374); +x_1376 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_1361); +x_1377 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1377, 0, x_1361); +lean_ctor_set(x_1377, 1, x_1376); lean_inc(x_14); -x_1376 = lean_array_push(x_1368, x_14); +x_1378 = lean_array_push(x_1370, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_1377 = x_14; + x_1379 = x_14; } else { lean_dec_ref(x_14); - x_1377 = lean_box(0); + x_1379 = lean_box(0); } -if (lean_is_scalar(x_1377)) { - x_1378 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1379)) { + x_1380 = lean_alloc_ctor(1, 2, 0); } else { - x_1378 = x_1377; + x_1380 = x_1379; } -lean_ctor_set(x_1378, 0, x_1370); -lean_ctor_set(x_1378, 1, x_1376); -x_1379 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_1380 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1380, 0, x_1359); -lean_ctor_set(x_1380, 1, x_1379); -x_1381 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_1382 = lean_array_push(x_1381, x_1375); -x_1383 = lean_array_push(x_1382, x_1378); -x_1384 = lean_array_push(x_1383, x_1380); -x_1385 = lean_array_push(x_1384, x_1357); -x_1386 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1387 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1387, 0, x_1386); -lean_ctor_set(x_1387, 1, x_1385); -x_1388 = lean_array_push(x_1368, x_1387); +lean_ctor_set(x_1380, 0, x_1372); +lean_ctor_set(x_1380, 1, x_1378); +x_1381 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1382 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1382, 0, x_1361); +lean_ctor_set(x_1382, 1, x_1381); +x_1383 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_1384 = lean_array_push(x_1383, x_1377); +x_1385 = lean_array_push(x_1384, x_1380); +x_1386 = lean_array_push(x_1385, x_1382); +x_1387 = lean_array_push(x_1386, x_1359); +x_1388 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_1389 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1389, 0, x_1370); -lean_ctor_set(x_1389, 1, x_1388); -x_1390 = lean_array_push(x_1368, x_1389); -x_1391 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1392 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1392, 0, x_1391); -lean_ctor_set(x_1392, 1, x_1390); -x_1393 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_1394 = lean_array_push(x_1393, x_1363); -x_1395 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1396 = lean_array_push(x_1394, x_1395); -x_1397 = lean_array_push(x_1396, x_1371); -x_1398 = lean_array_push(x_1397, x_1395); +lean_ctor_set(x_1389, 0, x_1388); +lean_ctor_set(x_1389, 1, x_1387); +x_1390 = lean_array_push(x_1370, x_1389); +x_1391 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1391, 0, x_1372); +lean_ctor_set(x_1391, 1, x_1390); +x_1392 = lean_array_push(x_1370, x_1391); +x_1393 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1394 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1394, 0, x_1393); +lean_ctor_set(x_1394, 1, x_1392); +x_1395 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_1396 = lean_array_push(x_1395, x_1365); +x_1397 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1398 = lean_array_push(x_1396, x_1397); x_1399 = lean_array_push(x_1398, x_1373); -x_1400 = lean_array_push(x_1399, x_1392); -x_1401 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1402 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1402, 0, x_1401); -lean_ctor_set(x_1402, 1, x_1400); -x_1403 = 1; -x_1404 = lean_box(x_1403); -x_1405 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1405, 0, x_1402); -lean_ctor_set(x_1405, 1, x_1404); -lean_ctor_set(x_1229, 1, x_1405); -if (lean_is_scalar(x_1361)) { - x_1406 = lean_alloc_ctor(0, 2, 0); +x_1400 = lean_array_push(x_1399, x_1397); +x_1401 = lean_array_push(x_1400, x_1375); +x_1402 = lean_array_push(x_1401, x_1394); +x_1403 = l_Lean_Elab_Term_expandFunBinders_loop___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); +x_1407 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1407, 0, x_1404); +lean_ctor_set(x_1407, 1, x_1406); +lean_ctor_set(x_1231, 1, x_1407); +if (lean_is_scalar(x_1363)) { + x_1408 = lean_alloc_ctor(0, 2, 0); } else { - x_1406 = x_1361; + x_1408 = x_1363; } -lean_ctor_set(x_1406, 0, x_1229); -lean_ctor_set(x_1406, 1, x_1360); -return x_1406; +lean_ctor_set(x_1408, 0, x_1231); +lean_ctor_set(x_1408, 1, x_1362); +return x_1408; } } 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; lean_object* x_1419; lean_object* x_1420; 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; lean_object* x_1452; lean_object* x_1453; lean_object* x_1454; uint8_t x_1455; lean_object* x_1456; lean_object* x_1457; lean_object* x_1458; lean_object* x_1459; -x_1407 = lean_ctor_get(x_1229, 0); -lean_inc(x_1407); -lean_dec(x_1229); -x_1408 = lean_ctor_get(x_1230, 0); -lean_inc(x_1408); -if (lean_is_exclusive(x_1230)) { - lean_ctor_release(x_1230, 0); - lean_ctor_release(x_1230, 1); - x_1409 = x_1230; +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; lean_object* x_1420; 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; lean_object* x_1452; lean_object* x_1453; lean_object* x_1454; lean_object* x_1455; lean_object* x_1456; uint8_t x_1457; lean_object* x_1458; lean_object* x_1459; lean_object* x_1460; lean_object* x_1461; +x_1409 = lean_ctor_get(x_1231, 0); +lean_inc(x_1409); +lean_dec(x_1231); +x_1410 = lean_ctor_get(x_1232, 0); +lean_inc(x_1410); +if (lean_is_exclusive(x_1232)) { + lean_ctor_release(x_1232, 0); + lean_ctor_release(x_1232, 1); + x_1411 = x_1232; } else { - lean_dec_ref(x_1230); - x_1409 = lean_box(0); + lean_dec_ref(x_1232); + x_1411 = lean_box(0); } -x_1410 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_1231); +x_1412 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_1233); lean_dec(x_5); -x_1411 = lean_ctor_get(x_1410, 0); -lean_inc(x_1411); -x_1412 = lean_ctor_get(x_1410, 1); -lean_inc(x_1412); -if (lean_is_exclusive(x_1410)) { - lean_ctor_release(x_1410, 0); - lean_ctor_release(x_1410, 1); - x_1413 = x_1410; +x_1413 = lean_ctor_get(x_1412, 0); +lean_inc(x_1413); +x_1414 = lean_ctor_get(x_1412, 1); +lean_inc(x_1414); +if (lean_is_exclusive(x_1412)) { + lean_ctor_release(x_1412, 0); + lean_ctor_release(x_1412, 1); + x_1415 = x_1412; } else { - lean_dec_ref(x_1410); - x_1413 = lean_box(0); + lean_dec_ref(x_1412); + x_1415 = lean_box(0); } -x_1414 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_1411); -x_1415 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1415, 0, x_1411); -lean_ctor_set(x_1415, 1, x_1414); -x_1416 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1417 = lean_array_push(x_1416, x_1222); -x_1418 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -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 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_1421 = lean_array_push(x_1420, x_1419); -x_1422 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_1423 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1423, 0, x_1422); -lean_ctor_set(x_1423, 1, x_1421); -x_1424 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_1411); -x_1425 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1425, 0, x_1411); -lean_ctor_set(x_1425, 1, x_1424); -x_1426 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_1411); +x_1416 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_1413); +x_1417 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1417, 0, x_1413); +lean_ctor_set(x_1417, 1, x_1416); +x_1418 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1419 = lean_array_push(x_1418, x_1224); +x_1420 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_1421 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1421, 0, x_1420); +lean_ctor_set(x_1421, 1, x_1419); +x_1422 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_1423 = lean_array_push(x_1422, x_1421); +x_1424 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +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_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_1413); x_1427 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1427, 0, x_1411); +lean_ctor_set(x_1427, 0, x_1413); lean_ctor_set(x_1427, 1, x_1426); +x_1428 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_1413); +x_1429 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1429, 0, x_1413); +lean_ctor_set(x_1429, 1, x_1428); lean_inc(x_14); -x_1428 = lean_array_push(x_1420, x_14); +x_1430 = lean_array_push(x_1422, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_1429 = x_14; + x_1431 = x_14; } else { lean_dec_ref(x_14); - x_1429 = lean_box(0); + x_1431 = lean_box(0); } -if (lean_is_scalar(x_1429)) { - x_1430 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1431)) { + x_1432 = lean_alloc_ctor(1, 2, 0); } else { - x_1430 = x_1429; + x_1432 = x_1431; } -lean_ctor_set(x_1430, 0, x_1422); -lean_ctor_set(x_1430, 1, x_1428); -x_1431 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_1432 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1432, 0, x_1411); -lean_ctor_set(x_1432, 1, x_1431); -x_1433 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_1434 = lean_array_push(x_1433, x_1427); -x_1435 = lean_array_push(x_1434, x_1430); -x_1436 = lean_array_push(x_1435, x_1432); -x_1437 = lean_array_push(x_1436, x_1408); -x_1438 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1439 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1439, 0, x_1438); -lean_ctor_set(x_1439, 1, x_1437); -x_1440 = lean_array_push(x_1420, x_1439); +lean_ctor_set(x_1432, 0, x_1424); +lean_ctor_set(x_1432, 1, x_1430); +x_1433 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1434 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1434, 0, x_1413); +lean_ctor_set(x_1434, 1, x_1433); +x_1435 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_1436 = lean_array_push(x_1435, x_1429); +x_1437 = lean_array_push(x_1436, x_1432); +x_1438 = lean_array_push(x_1437, x_1434); +x_1439 = lean_array_push(x_1438, x_1410); +x_1440 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_1441 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1441, 0, x_1422); -lean_ctor_set(x_1441, 1, x_1440); -x_1442 = lean_array_push(x_1420, x_1441); -x_1443 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1444 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1444, 0, x_1443); -lean_ctor_set(x_1444, 1, x_1442); -x_1445 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_1446 = lean_array_push(x_1445, x_1415); -x_1447 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1448 = lean_array_push(x_1446, x_1447); -x_1449 = lean_array_push(x_1448, x_1423); -x_1450 = lean_array_push(x_1449, x_1447); +lean_ctor_set(x_1441, 0, x_1440); +lean_ctor_set(x_1441, 1, x_1439); +x_1442 = lean_array_push(x_1422, x_1441); +x_1443 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1443, 0, x_1424); +lean_ctor_set(x_1443, 1, x_1442); +x_1444 = lean_array_push(x_1422, x_1443); +x_1445 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +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 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_1448 = lean_array_push(x_1447, x_1417); +x_1449 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1450 = lean_array_push(x_1448, x_1449); x_1451 = lean_array_push(x_1450, x_1425); -x_1452 = lean_array_push(x_1451, x_1444); -x_1453 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1454 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1454, 0, x_1453); -lean_ctor_set(x_1454, 1, x_1452); -x_1455 = 1; -x_1456 = lean_box(x_1455); -if (lean_is_scalar(x_1409)) { - x_1457 = lean_alloc_ctor(0, 2, 0); -} else { - x_1457 = x_1409; -} -lean_ctor_set(x_1457, 0, x_1454); -lean_ctor_set(x_1457, 1, x_1456); -x_1458 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1458, 0, x_1407); -lean_ctor_set(x_1458, 1, x_1457); -if (lean_is_scalar(x_1413)) { +x_1452 = lean_array_push(x_1451, x_1449); +x_1453 = lean_array_push(x_1452, x_1427); +x_1454 = lean_array_push(x_1453, x_1446); +x_1455 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1456 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1456, 0, x_1455); +lean_ctor_set(x_1456, 1, x_1454); +x_1457 = 1; +x_1458 = lean_box(x_1457); +if (lean_is_scalar(x_1411)) { x_1459 = lean_alloc_ctor(0, 2, 0); } else { - x_1459 = x_1413; + x_1459 = x_1411; } -lean_ctor_set(x_1459, 0, x_1458); -lean_ctor_set(x_1459, 1, x_1412); -return x_1459; +lean_ctor_set(x_1459, 0, x_1456); +lean_ctor_set(x_1459, 1, x_1458); +x_1460 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1460, 0, x_1409); +lean_ctor_set(x_1460, 1, x_1459); +if (lean_is_scalar(x_1415)) { + x_1461 = lean_alloc_ctor(0, 2, 0); +} else { + x_1461 = x_1415; +} +lean_ctor_set(x_1461, 0, x_1460); +lean_ctor_set(x_1461, 1, x_1414); +return x_1461; } } else { -lean_object* x_1460; lean_object* x_1461; lean_object* x_1462; -x_1460 = l_Lean_Syntax_getArg(x_1217, x_1210); -lean_dec(x_1217); +lean_object* x_1462; lean_object* x_1463; lean_object* x_1464; +x_1462 = l_Lean_Syntax_getArg(x_1219, x_1212); +lean_dec(x_1219); lean_inc(x_5); -x_1461 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getFunBinderIds_x3f(x_1214, x_5, x_6); -x_1462 = lean_ctor_get(x_1461, 0); -lean_inc(x_1462); -if (lean_obj_tag(x_1462) == 0) +x_1463 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getFunBinderIds_x3f(x_1216, x_5, x_6); +x_1464 = lean_ctor_get(x_1463, 0); +lean_inc(x_1464); +if (lean_obj_tag(x_1464) == 0) { -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; uint8_t x_1475; -lean_dec(x_1460); -x_1463 = lean_ctor_get(x_1461, 1); -lean_inc(x_1463); -lean_dec(x_1461); -lean_inc(x_5); -x_1464 = l_Lean_Elab_Term_mkFreshIdent___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_14, x_5, x_1463); -x_1465 = lean_ctor_get(x_1464, 0); +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; uint8_t x_1477; +lean_dec(x_1462); +x_1465 = lean_ctor_get(x_1463, 1); lean_inc(x_1465); -x_1466 = lean_ctor_get(x_1464, 1); -lean_inc(x_1466); -lean_dec(x_1464); -x_1467 = lean_nat_add(x_3, x_1210); +lean_dec(x_1463); +lean_inc(x_5); +x_1466 = l_Lean_Elab_Term_mkFreshIdent___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_14, x_5, x_1465); +x_1467 = lean_ctor_get(x_1466, 0); +lean_inc(x_1467); +x_1468 = lean_ctor_get(x_1466, 1); +lean_inc(x_1468); +lean_dec(x_1466); +x_1469 = lean_nat_add(x_3, x_1212); lean_dec(x_3); -x_1468 = l_Lean_mkHole(x_14); -lean_inc(x_1465); -x_1469 = l_Lean_Elab_Term_mkExplicitBinder(x_1465, x_1468); -x_1470 = lean_array_push(x_4, x_1469); +x_1470 = l_Lean_mkHole(x_14); +lean_inc(x_1467); +x_1471 = l_Lean_Elab_Term_mkExplicitBinder(x_1467, x_1470); +x_1472 = lean_array_push(x_4, x_1471); lean_inc(x_5); -x_1471 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_1467, x_1470, x_5, x_1466); -x_1472 = lean_ctor_get(x_1471, 0); -lean_inc(x_1472); -x_1473 = lean_ctor_get(x_1472, 1); -lean_inc(x_1473); -x_1474 = lean_ctor_get(x_1471, 1); +x_1473 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_1469, x_1472, x_5, x_1468); +x_1474 = lean_ctor_get(x_1473, 0); lean_inc(x_1474); -lean_dec(x_1471); -x_1475 = !lean_is_exclusive(x_1472); -if (x_1475 == 0) -{ -lean_object* x_1476; uint8_t x_1477; -x_1476 = lean_ctor_get(x_1472, 1); -lean_dec(x_1476); -x_1477 = !lean_is_exclusive(x_1473); +x_1475 = lean_ctor_get(x_1474, 1); +lean_inc(x_1475); +x_1476 = lean_ctor_get(x_1473, 1); +lean_inc(x_1476); +lean_dec(x_1473); +x_1477 = !lean_is_exclusive(x_1474); if (x_1477 == 0) { -lean_object* x_1478; lean_object* x_1479; lean_object* x_1480; uint8_t x_1481; -x_1478 = lean_ctor_get(x_1473, 0); -x_1479 = lean_ctor_get(x_1473, 1); -lean_dec(x_1479); -x_1480 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_1474); -lean_dec(x_5); -x_1481 = !lean_is_exclusive(x_1480); -if (x_1481 == 0) +lean_object* x_1478; uint8_t x_1479; +x_1478 = lean_ctor_get(x_1474, 1); +lean_dec(x_1478); +x_1479 = !lean_is_exclusive(x_1475); +if (x_1479 == 0) { -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; 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; uint8_t x_1498; -x_1482 = lean_ctor_get(x_1480, 0); -x_1483 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_1482); -x_1484 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1484, 0, x_1482); -lean_ctor_set(x_1484, 1, x_1483); -x_1485 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1486 = lean_array_push(x_1485, x_1465); -x_1487 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_1488 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1488, 0, x_1487); -lean_ctor_set(x_1488, 1, x_1486); -x_1489 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_1490 = lean_array_push(x_1489, x_1488); -x_1491 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_1492 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1492, 0, x_1491); -lean_ctor_set(x_1492, 1, x_1490); -x_1493 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_1482); -x_1494 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1494, 0, x_1482); -lean_ctor_set(x_1494, 1, x_1493); -x_1495 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_1482); +lean_object* x_1480; lean_object* x_1481; lean_object* x_1482; uint8_t x_1483; +x_1480 = lean_ctor_get(x_1475, 0); +x_1481 = lean_ctor_get(x_1475, 1); +lean_dec(x_1481); +x_1482 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_1476); +lean_dec(x_5); +x_1483 = !lean_is_exclusive(x_1482); +if (x_1483 == 0) +{ +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; 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; uint8_t x_1500; +x_1484 = lean_ctor_get(x_1482, 0); +x_1485 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_1484); +x_1486 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1486, 0, x_1484); +lean_ctor_set(x_1486, 1, x_1485); +x_1487 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1488 = lean_array_push(x_1487, x_1467); +x_1489 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +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 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_1492 = lean_array_push(x_1491, x_1490); +x_1493 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_1494 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1494, 0, x_1493); +lean_ctor_set(x_1494, 1, x_1492); +x_1495 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_1484); x_1496 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1496, 0, x_1482); +lean_ctor_set(x_1496, 0, x_1484); lean_ctor_set(x_1496, 1, x_1495); +x_1497 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_1484); +x_1498 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1498, 0, x_1484); +lean_ctor_set(x_1498, 1, x_1497); lean_inc(x_14); -x_1497 = lean_array_push(x_1489, x_14); -x_1498 = !lean_is_exclusive(x_14); -if (x_1498 == 0) +x_1499 = lean_array_push(x_1491, x_14); +x_1500 = !lean_is_exclusive(x_14); +if (x_1500 == 0) { -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; uint8_t x_1525; lean_object* x_1526; -x_1499 = lean_ctor_get(x_14, 1); -lean_dec(x_1499); -x_1500 = lean_ctor_get(x_14, 0); -lean_dec(x_1500); -lean_ctor_set(x_14, 1, x_1497); -lean_ctor_set(x_14, 0, x_1491); -x_1501 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_1502 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1502, 0, x_1482); -lean_ctor_set(x_1502, 1, x_1501); -x_1503 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_1504 = lean_array_push(x_1503, x_1496); -x_1505 = lean_array_push(x_1504, x_14); -x_1506 = lean_array_push(x_1505, x_1502); -x_1507 = lean_array_push(x_1506, x_1478); -x_1508 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1509 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1509, 0, x_1508); -lean_ctor_set(x_1509, 1, x_1507); -x_1510 = lean_array_push(x_1489, x_1509); +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; uint8_t x_1527; lean_object* x_1528; +x_1501 = lean_ctor_get(x_14, 1); +lean_dec(x_1501); +x_1502 = lean_ctor_get(x_14, 0); +lean_dec(x_1502); +lean_ctor_set(x_14, 1, x_1499); +lean_ctor_set(x_14, 0, x_1493); +x_1503 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1504 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1504, 0, x_1484); +lean_ctor_set(x_1504, 1, x_1503); +x_1505 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_1506 = lean_array_push(x_1505, x_1498); +x_1507 = lean_array_push(x_1506, x_14); +x_1508 = lean_array_push(x_1507, x_1504); +x_1509 = lean_array_push(x_1508, x_1480); +x_1510 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_1511 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1511, 0, x_1491); -lean_ctor_set(x_1511, 1, x_1510); -x_1512 = lean_array_push(x_1489, x_1511); -x_1513 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1514 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1514, 0, x_1513); -lean_ctor_set(x_1514, 1, x_1512); -x_1515 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_1516 = lean_array_push(x_1515, x_1484); -x_1517 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1518 = lean_array_push(x_1516, x_1517); -x_1519 = lean_array_push(x_1518, x_1492); -x_1520 = lean_array_push(x_1519, x_1517); +lean_ctor_set(x_1511, 0, x_1510); +lean_ctor_set(x_1511, 1, x_1509); +x_1512 = lean_array_push(x_1491, x_1511); +x_1513 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1513, 0, x_1493); +lean_ctor_set(x_1513, 1, x_1512); +x_1514 = lean_array_push(x_1491, x_1513); +x_1515 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1516 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1516, 0, x_1515); +lean_ctor_set(x_1516, 1, x_1514); +x_1517 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_1518 = lean_array_push(x_1517, x_1486); +x_1519 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1520 = lean_array_push(x_1518, x_1519); x_1521 = lean_array_push(x_1520, x_1494); -x_1522 = lean_array_push(x_1521, x_1514); -x_1523 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1524 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1524, 0, x_1523); -lean_ctor_set(x_1524, 1, x_1522); -x_1525 = 1; -x_1526 = lean_box(x_1525); -lean_ctor_set(x_1473, 1, x_1526); -lean_ctor_set(x_1473, 0, x_1524); -lean_ctor_set(x_1480, 0, x_1472); -return x_1480; +x_1522 = lean_array_push(x_1521, x_1519); +x_1523 = lean_array_push(x_1522, x_1496); +x_1524 = lean_array_push(x_1523, x_1516); +x_1525 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1526 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1526, 0, x_1525); +lean_ctor_set(x_1526, 1, x_1524); +x_1527 = 1; +x_1528 = lean_box(x_1527); +lean_ctor_set(x_1475, 1, x_1528); +lean_ctor_set(x_1475, 0, x_1526); +lean_ctor_set(x_1482, 0, x_1474); +return x_1482; } else { -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; 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; lean_object* x_1549; lean_object* x_1550; lean_object* x_1551; uint8_t x_1552; lean_object* x_1553; +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; 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; lean_object* x_1549; lean_object* x_1550; lean_object* x_1551; lean_object* x_1552; lean_object* x_1553; uint8_t x_1554; lean_object* x_1555; lean_dec(x_14); -x_1527 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1527, 0, x_1491); -lean_ctor_set(x_1527, 1, x_1497); -x_1528 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_1529 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1529, 0, x_1482); -lean_ctor_set(x_1529, 1, x_1528); -x_1530 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_1531 = lean_array_push(x_1530, x_1496); -x_1532 = lean_array_push(x_1531, x_1527); -x_1533 = lean_array_push(x_1532, x_1529); -x_1534 = lean_array_push(x_1533, x_1478); -x_1535 = l_Lean_Elab_Term_expandFunBinders_loop___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_1489, x_1536); +x_1529 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1529, 0, x_1493); +lean_ctor_set(x_1529, 1, x_1499); +x_1530 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1531 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1531, 0, x_1484); +lean_ctor_set(x_1531, 1, x_1530); +x_1532 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_1533 = lean_array_push(x_1532, x_1498); +x_1534 = lean_array_push(x_1533, x_1529); +x_1535 = lean_array_push(x_1534, x_1531); +x_1536 = lean_array_push(x_1535, x_1480); +x_1537 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_1538 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1538, 0, x_1491); -lean_ctor_set(x_1538, 1, x_1537); -x_1539 = lean_array_push(x_1489, x_1538); -x_1540 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1541 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1541, 0, x_1540); -lean_ctor_set(x_1541, 1, x_1539); -x_1542 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_1543 = lean_array_push(x_1542, x_1484); -x_1544 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1545 = lean_array_push(x_1543, x_1544); -x_1546 = lean_array_push(x_1545, x_1492); -x_1547 = lean_array_push(x_1546, x_1544); +lean_ctor_set(x_1538, 0, x_1537); +lean_ctor_set(x_1538, 1, x_1536); +x_1539 = lean_array_push(x_1491, x_1538); +x_1540 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1540, 0, x_1493); +lean_ctor_set(x_1540, 1, x_1539); +x_1541 = lean_array_push(x_1491, x_1540); +x_1542 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1543 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1543, 0, x_1542); +lean_ctor_set(x_1543, 1, x_1541); +x_1544 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_1545 = lean_array_push(x_1544, x_1486); +x_1546 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1547 = lean_array_push(x_1545, x_1546); x_1548 = lean_array_push(x_1547, x_1494); -x_1549 = lean_array_push(x_1548, x_1541); -x_1550 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1551 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1551, 0, x_1550); -lean_ctor_set(x_1551, 1, x_1549); -x_1552 = 1; -x_1553 = lean_box(x_1552); -lean_ctor_set(x_1473, 1, x_1553); -lean_ctor_set(x_1473, 0, x_1551); -lean_ctor_set(x_1480, 0, x_1472); -return x_1480; +x_1549 = lean_array_push(x_1548, x_1546); +x_1550 = lean_array_push(x_1549, x_1496); +x_1551 = lean_array_push(x_1550, x_1543); +x_1552 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1553 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1553, 0, x_1552); +lean_ctor_set(x_1553, 1, x_1551); +x_1554 = 1; +x_1555 = lean_box(x_1554); +lean_ctor_set(x_1475, 1, x_1555); +lean_ctor_set(x_1475, 0, x_1553); +lean_ctor_set(x_1482, 0, x_1474); +return x_1482; } } else { -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; 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; 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; uint8_t x_1597; lean_object* x_1598; lean_object* x_1599; -x_1554 = lean_ctor_get(x_1480, 0); -x_1555 = lean_ctor_get(x_1480, 1); -lean_inc(x_1555); -lean_inc(x_1554); -lean_dec(x_1480); -x_1556 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_1554); -x_1557 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1557, 0, x_1554); -lean_ctor_set(x_1557, 1, x_1556); -x_1558 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1559 = lean_array_push(x_1558, x_1465); -x_1560 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_1561 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1561, 0, x_1560); -lean_ctor_set(x_1561, 1, x_1559); -x_1562 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_1563 = lean_array_push(x_1562, x_1561); -x_1564 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_1565 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1565, 0, x_1564); -lean_ctor_set(x_1565, 1, x_1563); -x_1566 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_1554); -x_1567 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1567, 0, x_1554); -lean_ctor_set(x_1567, 1, x_1566); -x_1568 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_1554); +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; 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; 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; uint8_t x_1599; lean_object* x_1600; lean_object* x_1601; +x_1556 = lean_ctor_get(x_1482, 0); +x_1557 = lean_ctor_get(x_1482, 1); +lean_inc(x_1557); +lean_inc(x_1556); +lean_dec(x_1482); +x_1558 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_1556); +x_1559 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1559, 0, x_1556); +lean_ctor_set(x_1559, 1, x_1558); +x_1560 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1561 = lean_array_push(x_1560, x_1467); +x_1562 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_1563 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1563, 0, x_1562); +lean_ctor_set(x_1563, 1, x_1561); +x_1564 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_1565 = lean_array_push(x_1564, x_1563); +x_1566 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_1567 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1567, 0, x_1566); +lean_ctor_set(x_1567, 1, x_1565); +x_1568 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_1556); x_1569 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1569, 0, x_1554); +lean_ctor_set(x_1569, 0, x_1556); lean_ctor_set(x_1569, 1, x_1568); +x_1570 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_1556); +x_1571 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1571, 0, x_1556); +lean_ctor_set(x_1571, 1, x_1570); lean_inc(x_14); -x_1570 = lean_array_push(x_1562, x_14); +x_1572 = lean_array_push(x_1564, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_1571 = x_14; + x_1573 = x_14; } else { lean_dec_ref(x_14); - x_1571 = lean_box(0); + x_1573 = lean_box(0); } -if (lean_is_scalar(x_1571)) { - x_1572 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1573)) { + x_1574 = lean_alloc_ctor(1, 2, 0); } else { - x_1572 = x_1571; + x_1574 = x_1573; } -lean_ctor_set(x_1572, 0, x_1564); -lean_ctor_set(x_1572, 1, x_1570); -x_1573 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_1574 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1574, 0, x_1554); -lean_ctor_set(x_1574, 1, x_1573); -x_1575 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_1576 = lean_array_push(x_1575, x_1569); -x_1577 = lean_array_push(x_1576, x_1572); -x_1578 = lean_array_push(x_1577, x_1574); -x_1579 = lean_array_push(x_1578, x_1478); -x_1580 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1581 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1581, 0, x_1580); -lean_ctor_set(x_1581, 1, x_1579); -x_1582 = lean_array_push(x_1562, x_1581); +lean_ctor_set(x_1574, 0, x_1566); +lean_ctor_set(x_1574, 1, x_1572); +x_1575 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1576 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1576, 0, x_1556); +lean_ctor_set(x_1576, 1, x_1575); +x_1577 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_1578 = lean_array_push(x_1577, x_1571); +x_1579 = lean_array_push(x_1578, x_1574); +x_1580 = lean_array_push(x_1579, x_1576); +x_1581 = lean_array_push(x_1580, x_1480); +x_1582 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_1583 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1583, 0, x_1564); -lean_ctor_set(x_1583, 1, x_1582); -x_1584 = lean_array_push(x_1562, x_1583); -x_1585 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1586 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1586, 0, x_1585); -lean_ctor_set(x_1586, 1, x_1584); -x_1587 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_1588 = lean_array_push(x_1587, x_1557); -x_1589 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1590 = lean_array_push(x_1588, x_1589); -x_1591 = lean_array_push(x_1590, x_1565); -x_1592 = lean_array_push(x_1591, x_1589); +lean_ctor_set(x_1583, 0, x_1582); +lean_ctor_set(x_1583, 1, x_1581); +x_1584 = lean_array_push(x_1564, x_1583); +x_1585 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1585, 0, x_1566); +lean_ctor_set(x_1585, 1, x_1584); +x_1586 = lean_array_push(x_1564, x_1585); +x_1587 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1588 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1588, 0, x_1587); +lean_ctor_set(x_1588, 1, x_1586); +x_1589 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_1590 = lean_array_push(x_1589, x_1559); +x_1591 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1592 = lean_array_push(x_1590, x_1591); x_1593 = lean_array_push(x_1592, x_1567); -x_1594 = lean_array_push(x_1593, x_1586); -x_1595 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -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 = 1; -x_1598 = lean_box(x_1597); -lean_ctor_set(x_1473, 1, x_1598); -lean_ctor_set(x_1473, 0, x_1596); -x_1599 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1599, 0, x_1472); -lean_ctor_set(x_1599, 1, x_1555); -return x_1599; +x_1594 = lean_array_push(x_1593, x_1591); +x_1595 = lean_array_push(x_1594, x_1569); +x_1596 = lean_array_push(x_1595, x_1588); +x_1597 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +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 = 1; +x_1600 = lean_box(x_1599); +lean_ctor_set(x_1475, 1, x_1600); +lean_ctor_set(x_1475, 0, x_1598); +x_1601 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1601, 0, x_1474); +lean_ctor_set(x_1601, 1, x_1557); +return x_1601; } } else { -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; 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; lean_object* x_1637; lean_object* x_1638; lean_object* x_1639; lean_object* x_1640; lean_object* x_1641; lean_object* x_1642; lean_object* x_1643; lean_object* x_1644; lean_object* x_1645; uint8_t x_1646; lean_object* x_1647; lean_object* x_1648; lean_object* x_1649; -x_1600 = lean_ctor_get(x_1473, 0); -lean_inc(x_1600); -lean_dec(x_1473); -x_1601 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_1474); +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; 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; lean_object* x_1637; lean_object* x_1638; lean_object* x_1639; 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; uint8_t x_1648; lean_object* x_1649; lean_object* x_1650; lean_object* x_1651; +x_1602 = lean_ctor_get(x_1475, 0); +lean_inc(x_1602); +lean_dec(x_1475); +x_1603 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_1476); lean_dec(x_5); -x_1602 = lean_ctor_get(x_1601, 0); -lean_inc(x_1602); -x_1603 = lean_ctor_get(x_1601, 1); -lean_inc(x_1603); -if (lean_is_exclusive(x_1601)) { - lean_ctor_release(x_1601, 0); - lean_ctor_release(x_1601, 1); - x_1604 = x_1601; +x_1604 = lean_ctor_get(x_1603, 0); +lean_inc(x_1604); +x_1605 = lean_ctor_get(x_1603, 1); +lean_inc(x_1605); +if (lean_is_exclusive(x_1603)) { + lean_ctor_release(x_1603, 0); + lean_ctor_release(x_1603, 1); + x_1606 = x_1603; } else { - lean_dec_ref(x_1601); - x_1604 = lean_box(0); + lean_dec_ref(x_1603); + x_1606 = lean_box(0); } -x_1605 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_1602); -x_1606 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1606, 0, x_1602); -lean_ctor_set(x_1606, 1, x_1605); -x_1607 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1608 = lean_array_push(x_1607, x_1465); -x_1609 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -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_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_1612 = lean_array_push(x_1611, x_1610); -x_1613 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -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_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_1602); -x_1616 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1616, 0, x_1602); -lean_ctor_set(x_1616, 1, x_1615); -x_1617 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_1602); +x_1607 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_1604); +x_1608 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1608, 0, x_1604); +lean_ctor_set(x_1608, 1, x_1607); +x_1609 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1610 = lean_array_push(x_1609, x_1467); +x_1611 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_1612 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1612, 0, x_1611); +lean_ctor_set(x_1612, 1, x_1610); +x_1613 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_1614 = lean_array_push(x_1613, x_1612); +x_1615 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_1616 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1616, 0, x_1615); +lean_ctor_set(x_1616, 1, x_1614); +x_1617 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_1604); x_1618 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1618, 0, x_1602); +lean_ctor_set(x_1618, 0, x_1604); lean_ctor_set(x_1618, 1, x_1617); +x_1619 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_1604); +x_1620 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1620, 0, x_1604); +lean_ctor_set(x_1620, 1, x_1619); lean_inc(x_14); -x_1619 = lean_array_push(x_1611, x_14); +x_1621 = lean_array_push(x_1613, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_1620 = x_14; + x_1622 = x_14; } else { lean_dec_ref(x_14); - x_1620 = lean_box(0); + x_1622 = lean_box(0); } -if (lean_is_scalar(x_1620)) { - x_1621 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1622)) { + x_1623 = lean_alloc_ctor(1, 2, 0); } else { - x_1621 = x_1620; + x_1623 = x_1622; } -lean_ctor_set(x_1621, 0, x_1613); -lean_ctor_set(x_1621, 1, x_1619); -x_1622 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_1623 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1623, 0, x_1602); -lean_ctor_set(x_1623, 1, x_1622); -x_1624 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_1625 = lean_array_push(x_1624, x_1618); -x_1626 = lean_array_push(x_1625, x_1621); -x_1627 = lean_array_push(x_1626, x_1623); -x_1628 = lean_array_push(x_1627, x_1600); -x_1629 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1630 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1630, 0, x_1629); -lean_ctor_set(x_1630, 1, x_1628); -x_1631 = lean_array_push(x_1611, x_1630); +lean_ctor_set(x_1623, 0, x_1615); +lean_ctor_set(x_1623, 1, x_1621); +x_1624 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1625 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1625, 0, x_1604); +lean_ctor_set(x_1625, 1, x_1624); +x_1626 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_1627 = lean_array_push(x_1626, x_1620); +x_1628 = lean_array_push(x_1627, x_1623); +x_1629 = lean_array_push(x_1628, x_1625); +x_1630 = lean_array_push(x_1629, x_1602); +x_1631 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_1632 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1632, 0, x_1613); -lean_ctor_set(x_1632, 1, x_1631); -x_1633 = lean_array_push(x_1611, x_1632); -x_1634 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1635 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1635, 0, x_1634); -lean_ctor_set(x_1635, 1, x_1633); -x_1636 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_1637 = lean_array_push(x_1636, x_1606); -x_1638 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1639 = lean_array_push(x_1637, x_1638); -x_1640 = lean_array_push(x_1639, x_1614); -x_1641 = lean_array_push(x_1640, x_1638); +lean_ctor_set(x_1632, 0, x_1631); +lean_ctor_set(x_1632, 1, x_1630); +x_1633 = lean_array_push(x_1613, x_1632); +x_1634 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1634, 0, x_1615); +lean_ctor_set(x_1634, 1, x_1633); +x_1635 = lean_array_push(x_1613, x_1634); +x_1636 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1637 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1637, 0, x_1636); +lean_ctor_set(x_1637, 1, x_1635); +x_1638 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_1639 = lean_array_push(x_1638, x_1608); +x_1640 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1641 = lean_array_push(x_1639, x_1640); x_1642 = lean_array_push(x_1641, x_1616); -x_1643 = lean_array_push(x_1642, x_1635); -x_1644 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1645 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1645, 0, x_1644); -lean_ctor_set(x_1645, 1, x_1643); -x_1646 = 1; -x_1647 = lean_box(x_1646); -x_1648 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1648, 0, x_1645); -lean_ctor_set(x_1648, 1, x_1647); -lean_ctor_set(x_1472, 1, x_1648); -if (lean_is_scalar(x_1604)) { - x_1649 = lean_alloc_ctor(0, 2, 0); +x_1643 = lean_array_push(x_1642, x_1640); +x_1644 = lean_array_push(x_1643, x_1618); +x_1645 = lean_array_push(x_1644, x_1637); +x_1646 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1647 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1647, 0, x_1646); +lean_ctor_set(x_1647, 1, x_1645); +x_1648 = 1; +x_1649 = lean_box(x_1648); +x_1650 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1650, 0, x_1647); +lean_ctor_set(x_1650, 1, x_1649); +lean_ctor_set(x_1474, 1, x_1650); +if (lean_is_scalar(x_1606)) { + x_1651 = lean_alloc_ctor(0, 2, 0); } else { - x_1649 = x_1604; + x_1651 = x_1606; } -lean_ctor_set(x_1649, 0, x_1472); -lean_ctor_set(x_1649, 1, x_1603); -return x_1649; +lean_ctor_set(x_1651, 0, x_1474); +lean_ctor_set(x_1651, 1, x_1605); +return x_1651; } } else { -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; 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; 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; uint8_t x_1698; lean_object* x_1699; lean_object* x_1700; lean_object* x_1701; lean_object* x_1702; -x_1650 = lean_ctor_get(x_1472, 0); -lean_inc(x_1650); -lean_dec(x_1472); -x_1651 = lean_ctor_get(x_1473, 0); -lean_inc(x_1651); -if (lean_is_exclusive(x_1473)) { - lean_ctor_release(x_1473, 0); - lean_ctor_release(x_1473, 1); - x_1652 = x_1473; +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; 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; 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; uint8_t x_1700; lean_object* x_1701; lean_object* x_1702; lean_object* x_1703; lean_object* x_1704; +x_1652 = lean_ctor_get(x_1474, 0); +lean_inc(x_1652); +lean_dec(x_1474); +x_1653 = lean_ctor_get(x_1475, 0); +lean_inc(x_1653); +if (lean_is_exclusive(x_1475)) { + lean_ctor_release(x_1475, 0); + lean_ctor_release(x_1475, 1); + x_1654 = x_1475; } else { - lean_dec_ref(x_1473); - x_1652 = lean_box(0); + lean_dec_ref(x_1475); + x_1654 = lean_box(0); } -x_1653 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_1474); +x_1655 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_1476); lean_dec(x_5); -x_1654 = lean_ctor_get(x_1653, 0); -lean_inc(x_1654); -x_1655 = lean_ctor_get(x_1653, 1); -lean_inc(x_1655); -if (lean_is_exclusive(x_1653)) { - lean_ctor_release(x_1653, 0); - lean_ctor_release(x_1653, 1); - x_1656 = x_1653; +x_1656 = lean_ctor_get(x_1655, 0); +lean_inc(x_1656); +x_1657 = lean_ctor_get(x_1655, 1); +lean_inc(x_1657); +if (lean_is_exclusive(x_1655)) { + lean_ctor_release(x_1655, 0); + lean_ctor_release(x_1655, 1); + x_1658 = x_1655; } else { - lean_dec_ref(x_1653); - x_1656 = lean_box(0); + lean_dec_ref(x_1655); + x_1658 = lean_box(0); } -x_1657 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_1654); -x_1658 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1658, 0, x_1654); -lean_ctor_set(x_1658, 1, x_1657); -x_1659 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1660 = lean_array_push(x_1659, x_1465); -x_1661 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_1662 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1662, 0, x_1661); -lean_ctor_set(x_1662, 1, x_1660); -x_1663 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_1664 = lean_array_push(x_1663, x_1662); -x_1665 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_1666 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1666, 0, x_1665); -lean_ctor_set(x_1666, 1, x_1664); -x_1667 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_1654); -x_1668 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1668, 0, x_1654); -lean_ctor_set(x_1668, 1, x_1667); -x_1669 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_1654); +x_1659 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_1656); +x_1660 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1660, 0, x_1656); +lean_ctor_set(x_1660, 1, x_1659); +x_1661 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1662 = lean_array_push(x_1661, x_1467); +x_1663 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_1664 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1664, 0, x_1663); +lean_ctor_set(x_1664, 1, x_1662); +x_1665 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_1666 = lean_array_push(x_1665, x_1664); +x_1667 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_1668 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1668, 0, x_1667); +lean_ctor_set(x_1668, 1, x_1666); +x_1669 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_1656); x_1670 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1670, 0, x_1654); +lean_ctor_set(x_1670, 0, x_1656); lean_ctor_set(x_1670, 1, x_1669); +x_1671 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_1656); +x_1672 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1672, 0, x_1656); +lean_ctor_set(x_1672, 1, x_1671); lean_inc(x_14); -x_1671 = lean_array_push(x_1663, x_14); +x_1673 = lean_array_push(x_1665, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_1672 = x_14; + x_1674 = x_14; } else { lean_dec_ref(x_14); - x_1672 = lean_box(0); + x_1674 = lean_box(0); } -if (lean_is_scalar(x_1672)) { - x_1673 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1674)) { + x_1675 = lean_alloc_ctor(1, 2, 0); } else { - x_1673 = x_1672; + x_1675 = x_1674; } -lean_ctor_set(x_1673, 0, x_1665); -lean_ctor_set(x_1673, 1, x_1671); -x_1674 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_1675 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1675, 0, x_1654); -lean_ctor_set(x_1675, 1, x_1674); -x_1676 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_1677 = lean_array_push(x_1676, x_1670); -x_1678 = lean_array_push(x_1677, x_1673); -x_1679 = lean_array_push(x_1678, x_1675); -x_1680 = lean_array_push(x_1679, x_1651); -x_1681 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1682 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1682, 0, x_1681); -lean_ctor_set(x_1682, 1, x_1680); -x_1683 = lean_array_push(x_1663, x_1682); +lean_ctor_set(x_1675, 0, x_1667); +lean_ctor_set(x_1675, 1, x_1673); +x_1676 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1677 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1677, 0, x_1656); +lean_ctor_set(x_1677, 1, x_1676); +x_1678 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_1679 = lean_array_push(x_1678, x_1672); +x_1680 = lean_array_push(x_1679, x_1675); +x_1681 = lean_array_push(x_1680, x_1677); +x_1682 = lean_array_push(x_1681, x_1653); +x_1683 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_1684 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1684, 0, x_1665); -lean_ctor_set(x_1684, 1, x_1683); -x_1685 = lean_array_push(x_1663, x_1684); -x_1686 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1687 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1687, 0, x_1686); -lean_ctor_set(x_1687, 1, x_1685); -x_1688 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_1689 = lean_array_push(x_1688, x_1658); -x_1690 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1691 = lean_array_push(x_1689, x_1690); -x_1692 = lean_array_push(x_1691, x_1666); -x_1693 = lean_array_push(x_1692, x_1690); +lean_ctor_set(x_1684, 0, x_1683); +lean_ctor_set(x_1684, 1, x_1682); +x_1685 = lean_array_push(x_1665, x_1684); +x_1686 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1686, 0, x_1667); +lean_ctor_set(x_1686, 1, x_1685); +x_1687 = lean_array_push(x_1665, x_1686); +x_1688 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1689 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1689, 0, x_1688); +lean_ctor_set(x_1689, 1, x_1687); +x_1690 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_1691 = lean_array_push(x_1690, x_1660); +x_1692 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1693 = lean_array_push(x_1691, x_1692); x_1694 = lean_array_push(x_1693, x_1668); -x_1695 = lean_array_push(x_1694, x_1687); -x_1696 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1697 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1697, 0, x_1696); -lean_ctor_set(x_1697, 1, x_1695); -x_1698 = 1; -x_1699 = lean_box(x_1698); -if (lean_is_scalar(x_1652)) { - x_1700 = lean_alloc_ctor(0, 2, 0); -} else { - x_1700 = x_1652; -} -lean_ctor_set(x_1700, 0, x_1697); -lean_ctor_set(x_1700, 1, x_1699); -x_1701 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1701, 0, x_1650); -lean_ctor_set(x_1701, 1, x_1700); -if (lean_is_scalar(x_1656)) { +x_1695 = lean_array_push(x_1694, x_1692); +x_1696 = lean_array_push(x_1695, x_1670); +x_1697 = lean_array_push(x_1696, x_1689); +x_1698 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1699 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1699, 0, x_1698); +lean_ctor_set(x_1699, 1, x_1697); +x_1700 = 1; +x_1701 = lean_box(x_1700); +if (lean_is_scalar(x_1654)) { x_1702 = lean_alloc_ctor(0, 2, 0); } else { - x_1702 = x_1656; + x_1702 = x_1654; } -lean_ctor_set(x_1702, 0, x_1701); -lean_ctor_set(x_1702, 1, x_1655); -return x_1702; +lean_ctor_set(x_1702, 0, x_1699); +lean_ctor_set(x_1702, 1, x_1701); +x_1703 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1703, 0, x_1652); +lean_ctor_set(x_1703, 1, x_1702); +if (lean_is_scalar(x_1658)) { + x_1704 = lean_alloc_ctor(0, 2, 0); +} else { + x_1704 = x_1658; +} +lean_ctor_set(x_1704, 0, x_1703); +lean_ctor_set(x_1704, 1, x_1657); +return x_1704; } } else { -lean_object* x_1703; lean_object* x_1704; lean_object* x_1705; lean_object* x_1706; size_t x_1707; size_t x_1708; lean_object* x_1709; lean_object* x_1710; lean_object* x_1711; lean_object* x_1712; +lean_object* x_1705; lean_object* x_1706; lean_object* x_1707; lean_object* x_1708; size_t x_1709; size_t x_1710; lean_object* x_1711; lean_object* x_1712; lean_object* x_1713; lean_object* x_1714; lean_dec(x_14); -x_1703 = lean_ctor_get(x_1461, 1); -lean_inc(x_1703); -lean_dec(x_1461); -x_1704 = lean_ctor_get(x_1462, 0); -lean_inc(x_1704); -lean_dec(x_1462); -x_1705 = lean_nat_add(x_3, x_1210); +x_1705 = lean_ctor_get(x_1463, 1); +lean_inc(x_1705); +lean_dec(x_1463); +x_1706 = lean_ctor_get(x_1464, 0); +lean_inc(x_1706); +lean_dec(x_1464); +x_1707 = lean_nat_add(x_3, x_1212); lean_dec(x_3); -x_1706 = lean_array_get_size(x_1704); -x_1707 = lean_usize_of_nat(x_1706); -lean_dec(x_1706); -x_1708 = 0; -x_1709 = x_1704; -x_1710 = l_Array_mapMUnsafe_map___at_Lean_Elab_Term_expandFunBinders_loop___spec__3(x_1460, x_1707, x_1708, x_1709); -x_1711 = x_1710; -x_1712 = l_Array_append___rarg(x_4, x_1711); -lean_dec(x_1711); -x_3 = x_1705; -x_4 = x_1712; -x_6 = x_1703; +x_1708 = lean_array_get_size(x_1706); +x_1709 = lean_usize_of_nat(x_1708); +lean_dec(x_1708); +x_1710 = 0; +x_1711 = x_1706; +x_1712 = l_Array_mapMUnsafe_map___at_Lean_Elab_Term_expandFunBinders_loop___spec__3(x_1462, x_1709, x_1710, x_1711); +x_1713 = x_1712; +x_1714 = l_Array_append___rarg(x_4, x_1713); +lean_dec(x_1713); +x_3 = x_1707; +x_4 = x_1714; +x_6 = x_1705; goto _start; } } } else { -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; uint8_t x_1725; -lean_dec(x_1215); -lean_dec(x_1214); +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; uint8_t x_1727; +lean_dec(x_1217); +lean_dec(x_1216); lean_inc(x_5); -x_1714 = l_Lean_Elab_Term_mkFreshIdent___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_14, x_5, x_6); -x_1715 = lean_ctor_get(x_1714, 0); -lean_inc(x_1715); -x_1716 = lean_ctor_get(x_1714, 1); -lean_inc(x_1716); -lean_dec(x_1714); -x_1717 = lean_nat_add(x_3, x_1210); +x_1716 = l_Lean_Elab_Term_mkFreshIdent___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_14, x_5, x_6); +x_1717 = lean_ctor_get(x_1716, 0); +lean_inc(x_1717); +x_1718 = lean_ctor_get(x_1716, 1); +lean_inc(x_1718); +lean_dec(x_1716); +x_1719 = lean_nat_add(x_3, x_1212); lean_dec(x_3); -x_1718 = l_Lean_mkHole(x_14); -lean_inc(x_1715); -x_1719 = l_Lean_Elab_Term_mkExplicitBinder(x_1715, x_1718); -x_1720 = lean_array_push(x_4, x_1719); +x_1720 = l_Lean_mkHole(x_14); +lean_inc(x_1717); +x_1721 = l_Lean_Elab_Term_mkExplicitBinder(x_1717, x_1720); +x_1722 = lean_array_push(x_4, x_1721); lean_inc(x_5); -x_1721 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_1717, x_1720, x_5, x_1716); -x_1722 = lean_ctor_get(x_1721, 0); -lean_inc(x_1722); -x_1723 = lean_ctor_get(x_1722, 1); -lean_inc(x_1723); -x_1724 = lean_ctor_get(x_1721, 1); +x_1723 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_1719, x_1722, x_5, x_1718); +x_1724 = lean_ctor_get(x_1723, 0); lean_inc(x_1724); -lean_dec(x_1721); -x_1725 = !lean_is_exclusive(x_1722); -if (x_1725 == 0) -{ -lean_object* x_1726; uint8_t x_1727; -x_1726 = lean_ctor_get(x_1722, 1); -lean_dec(x_1726); -x_1727 = !lean_is_exclusive(x_1723); +x_1725 = lean_ctor_get(x_1724, 1); +lean_inc(x_1725); +x_1726 = lean_ctor_get(x_1723, 1); +lean_inc(x_1726); +lean_dec(x_1723); +x_1727 = !lean_is_exclusive(x_1724); if (x_1727 == 0) { -lean_object* x_1728; lean_object* x_1729; lean_object* x_1730; uint8_t x_1731; -x_1728 = lean_ctor_get(x_1723, 0); -x_1729 = lean_ctor_get(x_1723, 1); -lean_dec(x_1729); -x_1730 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_1724); -lean_dec(x_5); -x_1731 = !lean_is_exclusive(x_1730); -if (x_1731 == 0) +lean_object* x_1728; uint8_t x_1729; +x_1728 = lean_ctor_get(x_1724, 1); +lean_dec(x_1728); +x_1729 = !lean_is_exclusive(x_1725); +if (x_1729 == 0) { -lean_object* x_1732; lean_object* x_1733; lean_object* x_1734; lean_object* x_1735; lean_object* x_1736; lean_object* x_1737; lean_object* x_1738; lean_object* x_1739; 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; uint8_t x_1748; -x_1732 = lean_ctor_get(x_1730, 0); -x_1733 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_1732); -x_1734 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1734, 0, x_1732); -lean_ctor_set(x_1734, 1, x_1733); -x_1735 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1736 = lean_array_push(x_1735, x_1715); -x_1737 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_1738 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1738, 0, x_1737); -lean_ctor_set(x_1738, 1, x_1736); -x_1739 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_1740 = lean_array_push(x_1739, x_1738); -x_1741 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_1742 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1742, 0, x_1741); -lean_ctor_set(x_1742, 1, x_1740); -x_1743 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_1732); -x_1744 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1744, 0, x_1732); -lean_ctor_set(x_1744, 1, x_1743); -x_1745 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_1732); +lean_object* x_1730; lean_object* x_1731; lean_object* x_1732; uint8_t x_1733; +x_1730 = lean_ctor_get(x_1725, 0); +x_1731 = lean_ctor_get(x_1725, 1); +lean_dec(x_1731); +x_1732 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_1726); +lean_dec(x_5); +x_1733 = !lean_is_exclusive(x_1732); +if (x_1733 == 0) +{ +lean_object* x_1734; lean_object* x_1735; lean_object* x_1736; lean_object* x_1737; lean_object* x_1738; lean_object* x_1739; 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; uint8_t x_1750; +x_1734 = lean_ctor_get(x_1732, 0); +x_1735 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_1734); +x_1736 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1736, 0, x_1734); +lean_ctor_set(x_1736, 1, x_1735); +x_1737 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1738 = lean_array_push(x_1737, x_1717); +x_1739 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_1740 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1740, 0, x_1739); +lean_ctor_set(x_1740, 1, x_1738); +x_1741 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_1742 = lean_array_push(x_1741, x_1740); +x_1743 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_1744 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1744, 0, x_1743); +lean_ctor_set(x_1744, 1, x_1742); +x_1745 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_1734); x_1746 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1746, 0, x_1732); +lean_ctor_set(x_1746, 0, x_1734); lean_ctor_set(x_1746, 1, x_1745); +x_1747 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_1734); +x_1748 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1748, 0, x_1734); +lean_ctor_set(x_1748, 1, x_1747); lean_inc(x_14); -x_1747 = lean_array_push(x_1739, x_14); -x_1748 = !lean_is_exclusive(x_14); -if (x_1748 == 0) +x_1749 = lean_array_push(x_1741, x_14); +x_1750 = !lean_is_exclusive(x_14); +if (x_1750 == 0) { -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; uint8_t x_1775; lean_object* x_1776; -x_1749 = lean_ctor_get(x_14, 1); -lean_dec(x_1749); -x_1750 = lean_ctor_get(x_14, 0); -lean_dec(x_1750); -lean_ctor_set(x_14, 1, x_1747); -lean_ctor_set(x_14, 0, x_1741); -x_1751 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_1752 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1752, 0, x_1732); -lean_ctor_set(x_1752, 1, x_1751); -x_1753 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_1754 = lean_array_push(x_1753, x_1746); -x_1755 = lean_array_push(x_1754, x_14); -x_1756 = lean_array_push(x_1755, x_1752); -x_1757 = lean_array_push(x_1756, x_1728); -x_1758 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1759 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1759, 0, x_1758); -lean_ctor_set(x_1759, 1, x_1757); -x_1760 = lean_array_push(x_1739, x_1759); +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; uint8_t x_1777; lean_object* x_1778; +x_1751 = lean_ctor_get(x_14, 1); +lean_dec(x_1751); +x_1752 = lean_ctor_get(x_14, 0); +lean_dec(x_1752); +lean_ctor_set(x_14, 1, x_1749); +lean_ctor_set(x_14, 0, x_1743); +x_1753 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1754 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1754, 0, x_1734); +lean_ctor_set(x_1754, 1, x_1753); +x_1755 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_1756 = lean_array_push(x_1755, x_1748); +x_1757 = lean_array_push(x_1756, x_14); +x_1758 = lean_array_push(x_1757, x_1754); +x_1759 = lean_array_push(x_1758, x_1730); +x_1760 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_1761 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1761, 0, x_1741); -lean_ctor_set(x_1761, 1, x_1760); -x_1762 = lean_array_push(x_1739, x_1761); -x_1763 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1764 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1764, 0, x_1763); -lean_ctor_set(x_1764, 1, x_1762); -x_1765 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_1766 = lean_array_push(x_1765, x_1734); -x_1767 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1768 = lean_array_push(x_1766, x_1767); -x_1769 = lean_array_push(x_1768, x_1742); -x_1770 = lean_array_push(x_1769, x_1767); +lean_ctor_set(x_1761, 0, x_1760); +lean_ctor_set(x_1761, 1, x_1759); +x_1762 = lean_array_push(x_1741, x_1761); +x_1763 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1763, 0, x_1743); +lean_ctor_set(x_1763, 1, x_1762); +x_1764 = lean_array_push(x_1741, x_1763); +x_1765 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1766 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1766, 0, x_1765); +lean_ctor_set(x_1766, 1, x_1764); +x_1767 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_1768 = lean_array_push(x_1767, x_1736); +x_1769 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1770 = lean_array_push(x_1768, x_1769); x_1771 = lean_array_push(x_1770, x_1744); -x_1772 = lean_array_push(x_1771, x_1764); -x_1773 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -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 = 1; -x_1776 = lean_box(x_1775); -lean_ctor_set(x_1723, 1, x_1776); -lean_ctor_set(x_1723, 0, x_1774); -lean_ctor_set(x_1730, 0, x_1722); -return x_1730; +x_1772 = lean_array_push(x_1771, x_1769); +x_1773 = lean_array_push(x_1772, x_1746); +x_1774 = lean_array_push(x_1773, x_1766); +x_1775 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1776 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1776, 0, x_1775); +lean_ctor_set(x_1776, 1, x_1774); +x_1777 = 1; +x_1778 = lean_box(x_1777); +lean_ctor_set(x_1725, 1, x_1778); +lean_ctor_set(x_1725, 0, x_1776); +lean_ctor_set(x_1732, 0, x_1724); +return x_1732; } else { -lean_object* x_1777; lean_object* x_1778; lean_object* x_1779; lean_object* x_1780; lean_object* x_1781; 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; uint8_t x_1802; lean_object* x_1803; +lean_object* x_1779; lean_object* x_1780; lean_object* x_1781; 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; uint8_t x_1804; lean_object* x_1805; lean_dec(x_14); -x_1777 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1777, 0, x_1741); -lean_ctor_set(x_1777, 1, x_1747); -x_1778 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_1779 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1779, 0, x_1732); -lean_ctor_set(x_1779, 1, x_1778); -x_1780 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_1781 = lean_array_push(x_1780, x_1746); -x_1782 = lean_array_push(x_1781, x_1777); -x_1783 = lean_array_push(x_1782, x_1779); -x_1784 = lean_array_push(x_1783, x_1728); -x_1785 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1786 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1786, 0, x_1785); -lean_ctor_set(x_1786, 1, x_1784); -x_1787 = lean_array_push(x_1739, x_1786); +x_1779 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1779, 0, x_1743); +lean_ctor_set(x_1779, 1, x_1749); +x_1780 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1781 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1781, 0, x_1734); +lean_ctor_set(x_1781, 1, x_1780); +x_1782 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_1783 = lean_array_push(x_1782, x_1748); +x_1784 = lean_array_push(x_1783, x_1779); +x_1785 = lean_array_push(x_1784, x_1781); +x_1786 = lean_array_push(x_1785, x_1730); +x_1787 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_1788 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1788, 0, x_1741); -lean_ctor_set(x_1788, 1, x_1787); -x_1789 = lean_array_push(x_1739, x_1788); -x_1790 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1791 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1791, 0, x_1790); -lean_ctor_set(x_1791, 1, x_1789); -x_1792 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_1793 = lean_array_push(x_1792, x_1734); -x_1794 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1795 = lean_array_push(x_1793, x_1794); -x_1796 = lean_array_push(x_1795, x_1742); -x_1797 = lean_array_push(x_1796, x_1794); +lean_ctor_set(x_1788, 0, x_1787); +lean_ctor_set(x_1788, 1, x_1786); +x_1789 = lean_array_push(x_1741, x_1788); +x_1790 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1790, 0, x_1743); +lean_ctor_set(x_1790, 1, x_1789); +x_1791 = lean_array_push(x_1741, x_1790); +x_1792 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +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_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_1795 = lean_array_push(x_1794, x_1736); +x_1796 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1797 = lean_array_push(x_1795, x_1796); x_1798 = lean_array_push(x_1797, x_1744); -x_1799 = lean_array_push(x_1798, x_1791); -x_1800 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1801 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1801, 0, x_1800); -lean_ctor_set(x_1801, 1, x_1799); -x_1802 = 1; -x_1803 = lean_box(x_1802); -lean_ctor_set(x_1723, 1, x_1803); -lean_ctor_set(x_1723, 0, x_1801); -lean_ctor_set(x_1730, 0, x_1722); -return x_1730; +x_1799 = lean_array_push(x_1798, x_1796); +x_1800 = lean_array_push(x_1799, x_1746); +x_1801 = lean_array_push(x_1800, x_1793); +x_1802 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1803 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1803, 0, x_1802); +lean_ctor_set(x_1803, 1, x_1801); +x_1804 = 1; +x_1805 = lean_box(x_1804); +lean_ctor_set(x_1725, 1, x_1805); +lean_ctor_set(x_1725, 0, x_1803); +lean_ctor_set(x_1732, 0, x_1724); +return x_1732; } } else { -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; 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; lean_object* x_1843; lean_object* x_1844; lean_object* x_1845; lean_object* x_1846; uint8_t x_1847; lean_object* x_1848; lean_object* x_1849; -x_1804 = lean_ctor_get(x_1730, 0); -x_1805 = lean_ctor_get(x_1730, 1); -lean_inc(x_1805); -lean_inc(x_1804); -lean_dec(x_1730); -x_1806 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_1804); -x_1807 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1807, 0, x_1804); -lean_ctor_set(x_1807, 1, x_1806); -x_1808 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1809 = lean_array_push(x_1808, x_1715); -x_1810 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_1811 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1811, 0, x_1810); -lean_ctor_set(x_1811, 1, x_1809); -x_1812 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_1813 = lean_array_push(x_1812, x_1811); -x_1814 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_1815 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1815, 0, x_1814); -lean_ctor_set(x_1815, 1, x_1813); -x_1816 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_1804); -x_1817 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1817, 0, x_1804); -lean_ctor_set(x_1817, 1, x_1816); -x_1818 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_1804); +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; 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; lean_object* x_1843; lean_object* x_1844; lean_object* x_1845; lean_object* x_1846; lean_object* x_1847; lean_object* x_1848; uint8_t x_1849; lean_object* x_1850; lean_object* x_1851; +x_1806 = lean_ctor_get(x_1732, 0); +x_1807 = lean_ctor_get(x_1732, 1); +lean_inc(x_1807); +lean_inc(x_1806); +lean_dec(x_1732); +x_1808 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_1806); +x_1809 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1809, 0, x_1806); +lean_ctor_set(x_1809, 1, x_1808); +x_1810 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1811 = lean_array_push(x_1810, x_1717); +x_1812 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_1813 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1813, 0, x_1812); +lean_ctor_set(x_1813, 1, x_1811); +x_1814 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_1815 = lean_array_push(x_1814, x_1813); +x_1816 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_1817 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1817, 0, x_1816); +lean_ctor_set(x_1817, 1, x_1815); +x_1818 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_1806); x_1819 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1819, 0, x_1804); +lean_ctor_set(x_1819, 0, x_1806); lean_ctor_set(x_1819, 1, x_1818); +x_1820 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_1806); +x_1821 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1821, 0, x_1806); +lean_ctor_set(x_1821, 1, x_1820); lean_inc(x_14); -x_1820 = lean_array_push(x_1812, x_14); +x_1822 = lean_array_push(x_1814, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_1821 = x_14; + x_1823 = x_14; } else { lean_dec_ref(x_14); - x_1821 = lean_box(0); + x_1823 = lean_box(0); } -if (lean_is_scalar(x_1821)) { - x_1822 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1823)) { + x_1824 = lean_alloc_ctor(1, 2, 0); } else { - x_1822 = x_1821; + x_1824 = x_1823; } -lean_ctor_set(x_1822, 0, x_1814); -lean_ctor_set(x_1822, 1, x_1820); -x_1823 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_1824 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1824, 0, x_1804); -lean_ctor_set(x_1824, 1, x_1823); -x_1825 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_1826 = lean_array_push(x_1825, x_1819); -x_1827 = lean_array_push(x_1826, x_1822); -x_1828 = lean_array_push(x_1827, x_1824); -x_1829 = lean_array_push(x_1828, x_1728); -x_1830 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1831 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1831, 0, x_1830); -lean_ctor_set(x_1831, 1, x_1829); -x_1832 = lean_array_push(x_1812, x_1831); +lean_ctor_set(x_1824, 0, x_1816); +lean_ctor_set(x_1824, 1, x_1822); +x_1825 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1826 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1826, 0, x_1806); +lean_ctor_set(x_1826, 1, x_1825); +x_1827 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_1828 = lean_array_push(x_1827, x_1821); +x_1829 = lean_array_push(x_1828, x_1824); +x_1830 = lean_array_push(x_1829, x_1826); +x_1831 = lean_array_push(x_1830, x_1730); +x_1832 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_1833 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1833, 0, x_1814); -lean_ctor_set(x_1833, 1, x_1832); -x_1834 = lean_array_push(x_1812, x_1833); -x_1835 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1836 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1836, 0, x_1835); -lean_ctor_set(x_1836, 1, x_1834); -x_1837 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_1838 = lean_array_push(x_1837, x_1807); -x_1839 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1840 = lean_array_push(x_1838, x_1839); -x_1841 = lean_array_push(x_1840, x_1815); -x_1842 = lean_array_push(x_1841, x_1839); +lean_ctor_set(x_1833, 0, x_1832); +lean_ctor_set(x_1833, 1, x_1831); +x_1834 = lean_array_push(x_1814, x_1833); +x_1835 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1835, 0, x_1816); +lean_ctor_set(x_1835, 1, x_1834); +x_1836 = lean_array_push(x_1814, x_1835); +x_1837 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1838 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1838, 0, x_1837); +lean_ctor_set(x_1838, 1, x_1836); +x_1839 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_1840 = lean_array_push(x_1839, x_1809); +x_1841 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1842 = lean_array_push(x_1840, x_1841); x_1843 = lean_array_push(x_1842, x_1817); -x_1844 = lean_array_push(x_1843, x_1836); -x_1845 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1846 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1846, 0, x_1845); -lean_ctor_set(x_1846, 1, x_1844); -x_1847 = 1; -x_1848 = lean_box(x_1847); -lean_ctor_set(x_1723, 1, x_1848); -lean_ctor_set(x_1723, 0, x_1846); -x_1849 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1849, 0, x_1722); -lean_ctor_set(x_1849, 1, x_1805); -return x_1849; +x_1844 = lean_array_push(x_1843, x_1841); +x_1845 = lean_array_push(x_1844, x_1819); +x_1846 = lean_array_push(x_1845, x_1838); +x_1847 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1848 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1848, 0, x_1847); +lean_ctor_set(x_1848, 1, x_1846); +x_1849 = 1; +x_1850 = lean_box(x_1849); +lean_ctor_set(x_1725, 1, x_1850); +lean_ctor_set(x_1725, 0, x_1848); +x_1851 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1851, 0, x_1724); +lean_ctor_set(x_1851, 1, x_1807); +return x_1851; } } else { -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; lean_object* x_1882; lean_object* x_1883; lean_object* x_1884; 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; uint8_t x_1896; lean_object* x_1897; lean_object* x_1898; lean_object* x_1899; -x_1850 = lean_ctor_get(x_1723, 0); -lean_inc(x_1850); -lean_dec(x_1723); -x_1851 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_1724); +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; lean_object* x_1882; lean_object* x_1883; lean_object* x_1884; 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; uint8_t x_1898; lean_object* x_1899; lean_object* x_1900; lean_object* x_1901; +x_1852 = lean_ctor_get(x_1725, 0); +lean_inc(x_1852); +lean_dec(x_1725); +x_1853 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_1726); lean_dec(x_5); -x_1852 = lean_ctor_get(x_1851, 0); -lean_inc(x_1852); -x_1853 = lean_ctor_get(x_1851, 1); -lean_inc(x_1853); -if (lean_is_exclusive(x_1851)) { - lean_ctor_release(x_1851, 0); - lean_ctor_release(x_1851, 1); - x_1854 = x_1851; +x_1854 = lean_ctor_get(x_1853, 0); +lean_inc(x_1854); +x_1855 = lean_ctor_get(x_1853, 1); +lean_inc(x_1855); +if (lean_is_exclusive(x_1853)) { + lean_ctor_release(x_1853, 0); + lean_ctor_release(x_1853, 1); + x_1856 = x_1853; } else { - lean_dec_ref(x_1851); - x_1854 = lean_box(0); + lean_dec_ref(x_1853); + x_1856 = lean_box(0); } -x_1855 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_1852); -x_1856 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1856, 0, x_1852); -lean_ctor_set(x_1856, 1, x_1855); -x_1857 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1858 = lean_array_push(x_1857, x_1715); -x_1859 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_1860 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1860, 0, x_1859); -lean_ctor_set(x_1860, 1, x_1858); -x_1861 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_1862 = lean_array_push(x_1861, x_1860); -x_1863 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_1864 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1864, 0, x_1863); -lean_ctor_set(x_1864, 1, x_1862); -x_1865 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_1852); -x_1866 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1866, 0, x_1852); -lean_ctor_set(x_1866, 1, x_1865); -x_1867 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_1852); +x_1857 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_1854); +x_1858 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1858, 0, x_1854); +lean_ctor_set(x_1858, 1, x_1857); +x_1859 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1860 = lean_array_push(x_1859, x_1717); +x_1861 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_1862 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1862, 0, x_1861); +lean_ctor_set(x_1862, 1, x_1860); +x_1863 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_1864 = lean_array_push(x_1863, x_1862); +x_1865 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_1866 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1866, 0, x_1865); +lean_ctor_set(x_1866, 1, x_1864); +x_1867 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_1854); x_1868 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1868, 0, x_1852); +lean_ctor_set(x_1868, 0, x_1854); lean_ctor_set(x_1868, 1, x_1867); +x_1869 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_1854); +x_1870 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1870, 0, x_1854); +lean_ctor_set(x_1870, 1, x_1869); lean_inc(x_14); -x_1869 = lean_array_push(x_1861, x_14); +x_1871 = lean_array_push(x_1863, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_1870 = x_14; + x_1872 = x_14; } else { lean_dec_ref(x_14); - x_1870 = lean_box(0); + x_1872 = lean_box(0); } -if (lean_is_scalar(x_1870)) { - x_1871 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1872)) { + x_1873 = lean_alloc_ctor(1, 2, 0); } else { - x_1871 = x_1870; + x_1873 = x_1872; } -lean_ctor_set(x_1871, 0, x_1863); -lean_ctor_set(x_1871, 1, x_1869); -x_1872 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_1873 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1873, 0, x_1852); -lean_ctor_set(x_1873, 1, x_1872); -x_1874 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_1875 = lean_array_push(x_1874, x_1868); -x_1876 = lean_array_push(x_1875, x_1871); -x_1877 = lean_array_push(x_1876, x_1873); -x_1878 = lean_array_push(x_1877, x_1850); -x_1879 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1880 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1880, 0, x_1879); -lean_ctor_set(x_1880, 1, x_1878); -x_1881 = lean_array_push(x_1861, x_1880); +lean_ctor_set(x_1873, 0, x_1865); +lean_ctor_set(x_1873, 1, x_1871); +x_1874 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1875 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1875, 0, x_1854); +lean_ctor_set(x_1875, 1, x_1874); +x_1876 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_1877 = lean_array_push(x_1876, x_1870); +x_1878 = lean_array_push(x_1877, x_1873); +x_1879 = lean_array_push(x_1878, x_1875); +x_1880 = lean_array_push(x_1879, x_1852); +x_1881 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_1882 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1882, 0, x_1863); -lean_ctor_set(x_1882, 1, x_1881); -x_1883 = lean_array_push(x_1861, x_1882); -x_1884 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1885 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1885, 0, x_1884); -lean_ctor_set(x_1885, 1, x_1883); -x_1886 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_1887 = lean_array_push(x_1886, x_1856); -x_1888 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1889 = lean_array_push(x_1887, x_1888); -x_1890 = lean_array_push(x_1889, x_1864); -x_1891 = lean_array_push(x_1890, x_1888); +lean_ctor_set(x_1882, 0, x_1881); +lean_ctor_set(x_1882, 1, x_1880); +x_1883 = lean_array_push(x_1863, x_1882); +x_1884 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1884, 0, x_1865); +lean_ctor_set(x_1884, 1, x_1883); +x_1885 = lean_array_push(x_1863, x_1884); +x_1886 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1887 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1887, 0, x_1886); +lean_ctor_set(x_1887, 1, x_1885); +x_1888 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_1889 = lean_array_push(x_1888, x_1858); +x_1890 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1891 = lean_array_push(x_1889, x_1890); x_1892 = lean_array_push(x_1891, x_1866); -x_1893 = lean_array_push(x_1892, x_1885); -x_1894 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1895 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1895, 0, x_1894); -lean_ctor_set(x_1895, 1, x_1893); -x_1896 = 1; -x_1897 = lean_box(x_1896); -x_1898 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1898, 0, x_1895); -lean_ctor_set(x_1898, 1, x_1897); -lean_ctor_set(x_1722, 1, x_1898); -if (lean_is_scalar(x_1854)) { - x_1899 = lean_alloc_ctor(0, 2, 0); +x_1893 = lean_array_push(x_1892, x_1890); +x_1894 = lean_array_push(x_1893, x_1868); +x_1895 = lean_array_push(x_1894, x_1887); +x_1896 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +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 = 1; +x_1899 = lean_box(x_1898); +x_1900 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1900, 0, x_1897); +lean_ctor_set(x_1900, 1, x_1899); +lean_ctor_set(x_1724, 1, x_1900); +if (lean_is_scalar(x_1856)) { + x_1901 = lean_alloc_ctor(0, 2, 0); } else { - x_1899 = x_1854; + x_1901 = x_1856; } -lean_ctor_set(x_1899, 0, x_1722); -lean_ctor_set(x_1899, 1, x_1853); -return x_1899; +lean_ctor_set(x_1901, 0, x_1724); +lean_ctor_set(x_1901, 1, x_1855); +return x_1901; } } else { -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; 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; uint8_t x_1948; lean_object* x_1949; lean_object* x_1950; lean_object* x_1951; lean_object* x_1952; -x_1900 = lean_ctor_get(x_1722, 0); -lean_inc(x_1900); -lean_dec(x_1722); -x_1901 = lean_ctor_get(x_1723, 0); -lean_inc(x_1901); -if (lean_is_exclusive(x_1723)) { - lean_ctor_release(x_1723, 0); - lean_ctor_release(x_1723, 1); - x_1902 = x_1723; +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; 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; uint8_t x_1950; lean_object* x_1951; lean_object* x_1952; lean_object* x_1953; lean_object* x_1954; +x_1902 = lean_ctor_get(x_1724, 0); +lean_inc(x_1902); +lean_dec(x_1724); +x_1903 = lean_ctor_get(x_1725, 0); +lean_inc(x_1903); +if (lean_is_exclusive(x_1725)) { + lean_ctor_release(x_1725, 0); + lean_ctor_release(x_1725, 1); + x_1904 = x_1725; } else { - lean_dec_ref(x_1723); - x_1902 = lean_box(0); + lean_dec_ref(x_1725); + x_1904 = lean_box(0); } -x_1903 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_1724); +x_1905 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_1726); lean_dec(x_5); -x_1904 = lean_ctor_get(x_1903, 0); -lean_inc(x_1904); -x_1905 = lean_ctor_get(x_1903, 1); -lean_inc(x_1905); -if (lean_is_exclusive(x_1903)) { - lean_ctor_release(x_1903, 0); - lean_ctor_release(x_1903, 1); - x_1906 = x_1903; +x_1906 = lean_ctor_get(x_1905, 0); +lean_inc(x_1906); +x_1907 = lean_ctor_get(x_1905, 1); +lean_inc(x_1907); +if (lean_is_exclusive(x_1905)) { + lean_ctor_release(x_1905, 0); + lean_ctor_release(x_1905, 1); + x_1908 = x_1905; } else { - lean_dec_ref(x_1903); - x_1906 = lean_box(0); + lean_dec_ref(x_1905); + x_1908 = lean_box(0); } -x_1907 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_1904); -x_1908 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1908, 0, x_1904); -lean_ctor_set(x_1908, 1, x_1907); -x_1909 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1910 = lean_array_push(x_1909, x_1715); -x_1911 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_1912 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1912, 0, x_1911); -lean_ctor_set(x_1912, 1, x_1910); -x_1913 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_1914 = lean_array_push(x_1913, x_1912); -x_1915 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -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 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_1904); -x_1918 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1918, 0, x_1904); -lean_ctor_set(x_1918, 1, x_1917); -x_1919 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_1904); +x_1909 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_1906); +x_1910 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1910, 0, x_1906); +lean_ctor_set(x_1910, 1, x_1909); +x_1911 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1912 = lean_array_push(x_1911, x_1717); +x_1913 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_1914 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1914, 0, x_1913); +lean_ctor_set(x_1914, 1, x_1912); +x_1915 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_1916 = lean_array_push(x_1915, x_1914); +x_1917 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +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 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_1906); x_1920 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1920, 0, x_1904); +lean_ctor_set(x_1920, 0, x_1906); lean_ctor_set(x_1920, 1, x_1919); +x_1921 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_1906); +x_1922 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1922, 0, x_1906); +lean_ctor_set(x_1922, 1, x_1921); lean_inc(x_14); -x_1921 = lean_array_push(x_1913, x_14); +x_1923 = lean_array_push(x_1915, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_1922 = x_14; + x_1924 = x_14; } else { lean_dec_ref(x_14); - x_1922 = lean_box(0); + x_1924 = lean_box(0); } -if (lean_is_scalar(x_1922)) { - x_1923 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1924)) { + x_1925 = lean_alloc_ctor(1, 2, 0); } else { - x_1923 = x_1922; + x_1925 = x_1924; } -lean_ctor_set(x_1923, 0, x_1915); -lean_ctor_set(x_1923, 1, x_1921); -x_1924 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_1925 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1925, 0, x_1904); -lean_ctor_set(x_1925, 1, x_1924); -x_1926 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_1927 = lean_array_push(x_1926, x_1920); -x_1928 = lean_array_push(x_1927, x_1923); -x_1929 = lean_array_push(x_1928, x_1925); -x_1930 = lean_array_push(x_1929, x_1901); -x_1931 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1932 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1932, 0, x_1931); -lean_ctor_set(x_1932, 1, x_1930); -x_1933 = lean_array_push(x_1913, x_1932); +lean_ctor_set(x_1925, 0, x_1917); +lean_ctor_set(x_1925, 1, x_1923); +x_1926 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1927 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1927, 0, x_1906); +lean_ctor_set(x_1927, 1, x_1926); +x_1928 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_1929 = lean_array_push(x_1928, x_1922); +x_1930 = lean_array_push(x_1929, x_1925); +x_1931 = lean_array_push(x_1930, x_1927); +x_1932 = lean_array_push(x_1931, x_1903); +x_1933 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_1934 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1934, 0, x_1915); -lean_ctor_set(x_1934, 1, x_1933); -x_1935 = lean_array_push(x_1913, x_1934); -x_1936 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1937 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1937, 0, x_1936); -lean_ctor_set(x_1937, 1, x_1935); -x_1938 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_1939 = lean_array_push(x_1938, x_1908); -x_1940 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1941 = lean_array_push(x_1939, x_1940); -x_1942 = lean_array_push(x_1941, x_1916); -x_1943 = lean_array_push(x_1942, x_1940); +lean_ctor_set(x_1934, 0, x_1933); +lean_ctor_set(x_1934, 1, x_1932); +x_1935 = lean_array_push(x_1915, x_1934); +x_1936 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1936, 0, x_1917); +lean_ctor_set(x_1936, 1, x_1935); +x_1937 = lean_array_push(x_1915, x_1936); +x_1938 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1939 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1939, 0, x_1938); +lean_ctor_set(x_1939, 1, x_1937); +x_1940 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_1941 = lean_array_push(x_1940, x_1910); +x_1942 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1943 = lean_array_push(x_1941, x_1942); x_1944 = lean_array_push(x_1943, x_1918); -x_1945 = lean_array_push(x_1944, x_1937); -x_1946 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_1947 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1947, 0, x_1946); -lean_ctor_set(x_1947, 1, x_1945); -x_1948 = 1; -x_1949 = lean_box(x_1948); -if (lean_is_scalar(x_1902)) { - x_1950 = lean_alloc_ctor(0, 2, 0); -} else { - x_1950 = x_1902; -} -lean_ctor_set(x_1950, 0, x_1947); -lean_ctor_set(x_1950, 1, x_1949); -x_1951 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1951, 0, x_1900); -lean_ctor_set(x_1951, 1, x_1950); -if (lean_is_scalar(x_1906)) { +x_1945 = lean_array_push(x_1944, x_1942); +x_1946 = lean_array_push(x_1945, x_1920); +x_1947 = lean_array_push(x_1946, x_1939); +x_1948 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1949 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1949, 0, x_1948); +lean_ctor_set(x_1949, 1, x_1947); +x_1950 = 1; +x_1951 = lean_box(x_1950); +if (lean_is_scalar(x_1904)) { x_1952 = lean_alloc_ctor(0, 2, 0); } else { - x_1952 = x_1906; + x_1952 = x_1904; } -lean_ctor_set(x_1952, 0, x_1951); -lean_ctor_set(x_1952, 1, x_1905); -return x_1952; +lean_ctor_set(x_1952, 0, x_1949); +lean_ctor_set(x_1952, 1, x_1951); +x_1953 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1953, 0, x_1902); +lean_ctor_set(x_1953, 1, x_1952); +if (lean_is_scalar(x_1908)) { + x_1954 = lean_alloc_ctor(0, 2, 0); +} else { + x_1954 = x_1908; +} +lean_ctor_set(x_1954, 0, x_1953); +lean_ctor_set(x_1954, 1, x_1907); +return x_1954; } } } else { -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; uint8_t x_1964; -lean_dec(x_1211); +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; uint8_t x_1966; +lean_dec(x_1213); lean_inc(x_5); -x_1953 = l_Lean_Elab_Term_mkFreshIdent___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_14, x_5, x_6); -x_1954 = lean_ctor_get(x_1953, 0); -lean_inc(x_1954); -x_1955 = lean_ctor_get(x_1953, 1); -lean_inc(x_1955); -lean_dec(x_1953); -x_1956 = lean_nat_add(x_3, x_1210); +x_1955 = l_Lean_Elab_Term_mkFreshIdent___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_14, x_5, x_6); +x_1956 = lean_ctor_get(x_1955, 0); +lean_inc(x_1956); +x_1957 = lean_ctor_get(x_1955, 1); +lean_inc(x_1957); +lean_dec(x_1955); +x_1958 = lean_nat_add(x_3, x_1212); lean_dec(x_3); -x_1957 = l_Lean_mkHole(x_14); -lean_inc(x_1954); -x_1958 = l_Lean_Elab_Term_mkExplicitBinder(x_1954, x_1957); -x_1959 = lean_array_push(x_4, x_1958); +x_1959 = l_Lean_mkHole(x_14); +lean_inc(x_1956); +x_1960 = l_Lean_Elab_Term_mkExplicitBinder(x_1956, x_1959); +x_1961 = lean_array_push(x_4, x_1960); lean_inc(x_5); -x_1960 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_1956, x_1959, x_5, x_1955); -x_1961 = lean_ctor_get(x_1960, 0); -lean_inc(x_1961); -x_1962 = lean_ctor_get(x_1961, 1); -lean_inc(x_1962); -x_1963 = lean_ctor_get(x_1960, 1); +x_1962 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_1958, x_1961, x_5, x_1957); +x_1963 = lean_ctor_get(x_1962, 0); lean_inc(x_1963); -lean_dec(x_1960); -x_1964 = !lean_is_exclusive(x_1961); -if (x_1964 == 0) -{ -lean_object* x_1965; uint8_t x_1966; -x_1965 = lean_ctor_get(x_1961, 1); -lean_dec(x_1965); -x_1966 = !lean_is_exclusive(x_1962); +x_1964 = lean_ctor_get(x_1963, 1); +lean_inc(x_1964); +x_1965 = lean_ctor_get(x_1962, 1); +lean_inc(x_1965); +lean_dec(x_1962); +x_1966 = !lean_is_exclusive(x_1963); if (x_1966 == 0) { -lean_object* x_1967; lean_object* x_1968; lean_object* x_1969; uint8_t x_1970; -x_1967 = lean_ctor_get(x_1962, 0); -x_1968 = lean_ctor_get(x_1962, 1); -lean_dec(x_1968); -x_1969 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_1963); -lean_dec(x_5); -x_1970 = !lean_is_exclusive(x_1969); -if (x_1970 == 0) +lean_object* x_1967; uint8_t x_1968; +x_1967 = lean_ctor_get(x_1963, 1); +lean_dec(x_1967); +x_1968 = !lean_is_exclusive(x_1964); +if (x_1968 == 0) { -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; uint8_t x_1987; -x_1971 = lean_ctor_get(x_1969, 0); -x_1972 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_1971); -x_1973 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1973, 0, x_1971); -lean_ctor_set(x_1973, 1, x_1972); -x_1974 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1975 = lean_array_push(x_1974, x_1954); -x_1976 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_1977 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1977, 0, x_1976); -lean_ctor_set(x_1977, 1, x_1975); -x_1978 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_1979 = lean_array_push(x_1978, x_1977); -x_1980 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -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 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_1971); -x_1983 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1983, 0, x_1971); -lean_ctor_set(x_1983, 1, x_1982); -x_1984 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_1971); +lean_object* x_1969; lean_object* x_1970; lean_object* x_1971; uint8_t x_1972; +x_1969 = lean_ctor_get(x_1964, 0); +x_1970 = lean_ctor_get(x_1964, 1); +lean_dec(x_1970); +x_1971 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_1965); +lean_dec(x_5); +x_1972 = !lean_is_exclusive(x_1971); +if (x_1972 == 0) +{ +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; uint8_t x_1989; +x_1973 = lean_ctor_get(x_1971, 0); +x_1974 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_1973); +x_1975 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1975, 0, x_1973); +lean_ctor_set(x_1975, 1, x_1974); +x_1976 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1977 = lean_array_push(x_1976, x_1956); +x_1978 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_1979 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1979, 0, x_1978); +lean_ctor_set(x_1979, 1, x_1977); +x_1980 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_1981 = lean_array_push(x_1980, x_1979); +x_1982 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_1983 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1983, 0, x_1982); +lean_ctor_set(x_1983, 1, x_1981); +x_1984 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_1973); x_1985 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1985, 0, x_1971); +lean_ctor_set(x_1985, 0, x_1973); lean_ctor_set(x_1985, 1, x_1984); +x_1986 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_1973); +x_1987 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1987, 0, x_1973); +lean_ctor_set(x_1987, 1, x_1986); lean_inc(x_14); -x_1986 = lean_array_push(x_1978, x_14); -x_1987 = !lean_is_exclusive(x_14); -if (x_1987 == 0) +x_1988 = lean_array_push(x_1980, x_14); +x_1989 = !lean_is_exclusive(x_14); +if (x_1989 == 0) { -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; lean_object* x_1996; lean_object* x_1997; 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; uint8_t x_2014; lean_object* x_2015; -x_1988 = lean_ctor_get(x_14, 1); -lean_dec(x_1988); -x_1989 = lean_ctor_get(x_14, 0); -lean_dec(x_1989); -lean_ctor_set(x_14, 1, x_1986); -lean_ctor_set(x_14, 0, x_1980); -x_1990 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_1991 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1991, 0, x_1971); -lean_ctor_set(x_1991, 1, x_1990); -x_1992 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_1993 = lean_array_push(x_1992, x_1985); -x_1994 = lean_array_push(x_1993, x_14); -x_1995 = lean_array_push(x_1994, x_1991); -x_1996 = lean_array_push(x_1995, x_1967); -x_1997 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1998 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1998, 0, x_1997); -lean_ctor_set(x_1998, 1, x_1996); -x_1999 = lean_array_push(x_1978, x_1998); +lean_object* x_1990; lean_object* x_1991; lean_object* x_1992; lean_object* x_1993; lean_object* x_1994; lean_object* x_1995; lean_object* x_1996; lean_object* x_1997; 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; uint8_t x_2016; lean_object* x_2017; +x_1990 = lean_ctor_get(x_14, 1); +lean_dec(x_1990); +x_1991 = lean_ctor_get(x_14, 0); +lean_dec(x_1991); +lean_ctor_set(x_14, 1, x_1988); +lean_ctor_set(x_14, 0, x_1982); +x_1992 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1993 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1993, 0, x_1973); +lean_ctor_set(x_1993, 1, x_1992); +x_1994 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_1995 = lean_array_push(x_1994, x_1987); +x_1996 = lean_array_push(x_1995, x_14); +x_1997 = lean_array_push(x_1996, x_1993); +x_1998 = lean_array_push(x_1997, x_1969); +x_1999 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_2000 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2000, 0, x_1980); -lean_ctor_set(x_2000, 1, x_1999); -x_2001 = lean_array_push(x_1978, x_2000); -x_2002 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2003 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2003, 0, x_2002); -lean_ctor_set(x_2003, 1, x_2001); -x_2004 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_2005 = lean_array_push(x_2004, x_1973); -x_2006 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_2007 = lean_array_push(x_2005, x_2006); -x_2008 = lean_array_push(x_2007, x_1981); -x_2009 = lean_array_push(x_2008, x_2006); +lean_ctor_set(x_2000, 0, x_1999); +lean_ctor_set(x_2000, 1, x_1998); +x_2001 = lean_array_push(x_1980, x_2000); +x_2002 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2002, 0, x_1982); +lean_ctor_set(x_2002, 1, x_2001); +x_2003 = lean_array_push(x_1980, x_2002); +x_2004 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2005 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2005, 0, x_2004); +lean_ctor_set(x_2005, 1, x_2003); +x_2006 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_2007 = lean_array_push(x_2006, x_1975); +x_2008 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2009 = lean_array_push(x_2007, x_2008); x_2010 = lean_array_push(x_2009, x_1983); -x_2011 = lean_array_push(x_2010, x_2003); -x_2012 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2013 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2013, 0, x_2012); -lean_ctor_set(x_2013, 1, x_2011); -x_2014 = 1; -x_2015 = lean_box(x_2014); -lean_ctor_set(x_1962, 1, x_2015); -lean_ctor_set(x_1962, 0, x_2013); -lean_ctor_set(x_1969, 0, x_1961); -return x_1969; +x_2011 = lean_array_push(x_2010, x_2008); +x_2012 = lean_array_push(x_2011, x_1985); +x_2013 = lean_array_push(x_2012, x_2005); +x_2014 = l_Lean_Elab_Term_expandFunBinders_loop___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 = 1; +x_2017 = lean_box(x_2016); +lean_ctor_set(x_1964, 1, x_2017); +lean_ctor_set(x_1964, 0, x_2015); +lean_ctor_set(x_1971, 0, x_1963); +return x_1971; } else { -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; lean_object* x_2040; uint8_t x_2041; lean_object* x_2042; +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; lean_object* x_2040; lean_object* x_2041; lean_object* x_2042; uint8_t x_2043; lean_object* x_2044; lean_dec(x_14); -x_2016 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2016, 0, x_1980); -lean_ctor_set(x_2016, 1, x_1986); -x_2017 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_2018 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2018, 0, x_1971); -lean_ctor_set(x_2018, 1, x_2017); -x_2019 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_2020 = lean_array_push(x_2019, x_1985); -x_2021 = lean_array_push(x_2020, x_2016); -x_2022 = lean_array_push(x_2021, x_2018); -x_2023 = lean_array_push(x_2022, x_1967); -x_2024 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_2025 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2025, 0, x_2024); -lean_ctor_set(x_2025, 1, x_2023); -x_2026 = lean_array_push(x_1978, x_2025); +x_2018 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2018, 0, x_1982); +lean_ctor_set(x_2018, 1, x_1988); +x_2019 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_2020 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2020, 0, x_1973); +lean_ctor_set(x_2020, 1, x_2019); +x_2021 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_2022 = lean_array_push(x_2021, x_1987); +x_2023 = lean_array_push(x_2022, x_2018); +x_2024 = lean_array_push(x_2023, x_2020); +x_2025 = lean_array_push(x_2024, x_1969); +x_2026 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_2027 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2027, 0, x_1980); -lean_ctor_set(x_2027, 1, x_2026); -x_2028 = lean_array_push(x_1978, x_2027); -x_2029 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -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 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_2032 = lean_array_push(x_2031, x_1973); -x_2033 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_2034 = lean_array_push(x_2032, x_2033); -x_2035 = lean_array_push(x_2034, x_1981); -x_2036 = lean_array_push(x_2035, x_2033); +lean_ctor_set(x_2027, 0, x_2026); +lean_ctor_set(x_2027, 1, x_2025); +x_2028 = lean_array_push(x_1980, x_2027); +x_2029 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2029, 0, x_1982); +lean_ctor_set(x_2029, 1, x_2028); +x_2030 = lean_array_push(x_1980, x_2029); +x_2031 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2032 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2032, 0, x_2031); +lean_ctor_set(x_2032, 1, x_2030); +x_2033 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_2034 = lean_array_push(x_2033, x_1975); +x_2035 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2036 = lean_array_push(x_2034, x_2035); x_2037 = lean_array_push(x_2036, x_1983); -x_2038 = lean_array_push(x_2037, x_2030); -x_2039 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2040 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2040, 0, x_2039); -lean_ctor_set(x_2040, 1, x_2038); -x_2041 = 1; -x_2042 = lean_box(x_2041); -lean_ctor_set(x_1962, 1, x_2042); -lean_ctor_set(x_1962, 0, x_2040); -lean_ctor_set(x_1969, 0, x_1961); -return x_1969; +x_2038 = lean_array_push(x_2037, x_2035); +x_2039 = lean_array_push(x_2038, x_1985); +x_2040 = lean_array_push(x_2039, x_2032); +x_2041 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2042 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2042, 0, x_2041); +lean_ctor_set(x_2042, 1, x_2040); +x_2043 = 1; +x_2044 = lean_box(x_2043); +lean_ctor_set(x_1964, 1, x_2044); +lean_ctor_set(x_1964, 0, x_2042); +lean_ctor_set(x_1971, 0, x_1963); +return x_1971; } } else { -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; 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; lean_object* x_2082; lean_object* x_2083; lean_object* x_2084; lean_object* x_2085; uint8_t x_2086; lean_object* x_2087; lean_object* x_2088; -x_2043 = lean_ctor_get(x_1969, 0); -x_2044 = lean_ctor_get(x_1969, 1); -lean_inc(x_2044); -lean_inc(x_2043); -lean_dec(x_1969); -x_2045 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_2043); -x_2046 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2046, 0, x_2043); -lean_ctor_set(x_2046, 1, x_2045); -x_2047 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2048 = lean_array_push(x_2047, x_1954); -x_2049 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_2050 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2050, 0, x_2049); -lean_ctor_set(x_2050, 1, x_2048); -x_2051 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_2052 = lean_array_push(x_2051, x_2050); -x_2053 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_2054 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2054, 0, x_2053); -lean_ctor_set(x_2054, 1, x_2052); -x_2055 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_2043); -x_2056 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2056, 0, x_2043); -lean_ctor_set(x_2056, 1, x_2055); -x_2057 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_2043); +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; 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; lean_object* x_2082; lean_object* x_2083; lean_object* x_2084; lean_object* x_2085; lean_object* x_2086; lean_object* x_2087; uint8_t x_2088; lean_object* x_2089; lean_object* x_2090; +x_2045 = lean_ctor_get(x_1971, 0); +x_2046 = lean_ctor_get(x_1971, 1); +lean_inc(x_2046); +lean_inc(x_2045); +lean_dec(x_1971); +x_2047 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_2045); +x_2048 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2048, 0, x_2045); +lean_ctor_set(x_2048, 1, x_2047); +x_2049 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2050 = lean_array_push(x_2049, x_1956); +x_2051 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_2052 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2052, 0, x_2051); +lean_ctor_set(x_2052, 1, x_2050); +x_2053 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_2054 = lean_array_push(x_2053, x_2052); +x_2055 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_2056 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2056, 0, x_2055); +lean_ctor_set(x_2056, 1, x_2054); +x_2057 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_2045); x_2058 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2058, 0, x_2043); +lean_ctor_set(x_2058, 0, x_2045); lean_ctor_set(x_2058, 1, x_2057); +x_2059 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_2045); +x_2060 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2060, 0, x_2045); +lean_ctor_set(x_2060, 1, x_2059); lean_inc(x_14); -x_2059 = lean_array_push(x_2051, x_14); +x_2061 = lean_array_push(x_2053, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_2060 = x_14; + x_2062 = x_14; } else { lean_dec_ref(x_14); - x_2060 = lean_box(0); + x_2062 = lean_box(0); } -if (lean_is_scalar(x_2060)) { - x_2061 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2062)) { + x_2063 = lean_alloc_ctor(1, 2, 0); } else { - x_2061 = x_2060; + x_2063 = x_2062; } -lean_ctor_set(x_2061, 0, x_2053); -lean_ctor_set(x_2061, 1, x_2059); -x_2062 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_2063 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2063, 0, x_2043); -lean_ctor_set(x_2063, 1, x_2062); -x_2064 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_2065 = lean_array_push(x_2064, x_2058); -x_2066 = lean_array_push(x_2065, x_2061); -x_2067 = lean_array_push(x_2066, x_2063); -x_2068 = lean_array_push(x_2067, x_1967); -x_2069 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -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 = lean_array_push(x_2051, x_2070); +lean_ctor_set(x_2063, 0, x_2055); +lean_ctor_set(x_2063, 1, x_2061); +x_2064 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_2065 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2065, 0, x_2045); +lean_ctor_set(x_2065, 1, x_2064); +x_2066 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_2067 = lean_array_push(x_2066, x_2060); +x_2068 = lean_array_push(x_2067, x_2063); +x_2069 = lean_array_push(x_2068, x_2065); +x_2070 = lean_array_push(x_2069, x_1969); +x_2071 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_2072 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2072, 0, x_2053); -lean_ctor_set(x_2072, 1, x_2071); -x_2073 = lean_array_push(x_2051, x_2072); -x_2074 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2075 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2075, 0, x_2074); -lean_ctor_set(x_2075, 1, x_2073); -x_2076 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_2077 = lean_array_push(x_2076, x_2046); -x_2078 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_2079 = lean_array_push(x_2077, x_2078); -x_2080 = lean_array_push(x_2079, x_2054); -x_2081 = lean_array_push(x_2080, x_2078); +lean_ctor_set(x_2072, 0, x_2071); +lean_ctor_set(x_2072, 1, x_2070); +x_2073 = lean_array_push(x_2053, x_2072); +x_2074 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2074, 0, x_2055); +lean_ctor_set(x_2074, 1, x_2073); +x_2075 = lean_array_push(x_2053, x_2074); +x_2076 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2077 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2077, 0, x_2076); +lean_ctor_set(x_2077, 1, x_2075); +x_2078 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_2079 = lean_array_push(x_2078, x_2048); +x_2080 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2081 = lean_array_push(x_2079, x_2080); x_2082 = lean_array_push(x_2081, x_2056); -x_2083 = lean_array_push(x_2082, x_2075); -x_2084 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2085 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2085, 0, x_2084); -lean_ctor_set(x_2085, 1, x_2083); -x_2086 = 1; -x_2087 = lean_box(x_2086); -lean_ctor_set(x_1962, 1, x_2087); -lean_ctor_set(x_1962, 0, x_2085); -x_2088 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2088, 0, x_1961); -lean_ctor_set(x_2088, 1, x_2044); -return x_2088; +x_2083 = lean_array_push(x_2082, x_2080); +x_2084 = lean_array_push(x_2083, x_2058); +x_2085 = lean_array_push(x_2084, x_2077); +x_2086 = l_Lean_Elab_Term_expandFunBinders_loop___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 = 1; +x_2089 = lean_box(x_2088); +lean_ctor_set(x_1964, 1, x_2089); +lean_ctor_set(x_1964, 0, x_2087); +x_2090 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2090, 0, x_1963); +lean_ctor_set(x_2090, 1, x_2046); +return x_2090; } } else { -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; 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; 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; 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; uint8_t x_2135; lean_object* x_2136; lean_object* x_2137; lean_object* x_2138; -x_2089 = lean_ctor_get(x_1962, 0); -lean_inc(x_2089); -lean_dec(x_1962); -x_2090 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_1963); +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; 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; 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; 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; uint8_t x_2137; lean_object* x_2138; lean_object* x_2139; lean_object* x_2140; +x_2091 = lean_ctor_get(x_1964, 0); +lean_inc(x_2091); +lean_dec(x_1964); +x_2092 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_1965); lean_dec(x_5); -x_2091 = lean_ctor_get(x_2090, 0); -lean_inc(x_2091); -x_2092 = lean_ctor_get(x_2090, 1); -lean_inc(x_2092); -if (lean_is_exclusive(x_2090)) { - lean_ctor_release(x_2090, 0); - lean_ctor_release(x_2090, 1); - x_2093 = x_2090; +x_2093 = lean_ctor_get(x_2092, 0); +lean_inc(x_2093); +x_2094 = lean_ctor_get(x_2092, 1); +lean_inc(x_2094); +if (lean_is_exclusive(x_2092)) { + lean_ctor_release(x_2092, 0); + lean_ctor_release(x_2092, 1); + x_2095 = x_2092; } else { - lean_dec_ref(x_2090); - x_2093 = lean_box(0); + lean_dec_ref(x_2092); + x_2095 = lean_box(0); } -x_2094 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_2091); -x_2095 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2095, 0, x_2091); -lean_ctor_set(x_2095, 1, x_2094); -x_2096 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2097 = lean_array_push(x_2096, x_1954); -x_2098 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -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 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_2101 = lean_array_push(x_2100, x_2099); -x_2102 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_2103 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2103, 0, x_2102); -lean_ctor_set(x_2103, 1, x_2101); -x_2104 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_2091); -x_2105 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2105, 0, x_2091); -lean_ctor_set(x_2105, 1, x_2104); -x_2106 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_2091); +x_2096 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_2093); +x_2097 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2097, 0, x_2093); +lean_ctor_set(x_2097, 1, x_2096); +x_2098 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2099 = lean_array_push(x_2098, x_1956); +x_2100 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_2101 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2101, 0, x_2100); +lean_ctor_set(x_2101, 1, x_2099); +x_2102 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_2103 = lean_array_push(x_2102, x_2101); +x_2104 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_2105 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2105, 0, x_2104); +lean_ctor_set(x_2105, 1, x_2103); +x_2106 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_2093); x_2107 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2107, 0, x_2091); +lean_ctor_set(x_2107, 0, x_2093); lean_ctor_set(x_2107, 1, x_2106); +x_2108 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_2093); +x_2109 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2109, 0, x_2093); +lean_ctor_set(x_2109, 1, x_2108); lean_inc(x_14); -x_2108 = lean_array_push(x_2100, x_14); +x_2110 = lean_array_push(x_2102, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_2109 = x_14; + x_2111 = x_14; } else { lean_dec_ref(x_14); - x_2109 = lean_box(0); + x_2111 = lean_box(0); } -if (lean_is_scalar(x_2109)) { - x_2110 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2111)) { + x_2112 = lean_alloc_ctor(1, 2, 0); } else { - x_2110 = x_2109; + x_2112 = x_2111; } -lean_ctor_set(x_2110, 0, x_2102); -lean_ctor_set(x_2110, 1, x_2108); -x_2111 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_2112 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2112, 0, x_2091); -lean_ctor_set(x_2112, 1, x_2111); -x_2113 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_2114 = lean_array_push(x_2113, x_2107); -x_2115 = lean_array_push(x_2114, x_2110); -x_2116 = lean_array_push(x_2115, x_2112); -x_2117 = lean_array_push(x_2116, x_2089); -x_2118 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_2119 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2119, 0, x_2118); -lean_ctor_set(x_2119, 1, x_2117); -x_2120 = lean_array_push(x_2100, x_2119); +lean_ctor_set(x_2112, 0, x_2104); +lean_ctor_set(x_2112, 1, x_2110); +x_2113 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_2114 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2114, 0, x_2093); +lean_ctor_set(x_2114, 1, x_2113); +x_2115 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_2116 = lean_array_push(x_2115, x_2109); +x_2117 = lean_array_push(x_2116, x_2112); +x_2118 = lean_array_push(x_2117, x_2114); +x_2119 = lean_array_push(x_2118, x_2091); +x_2120 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_2121 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2121, 0, x_2102); -lean_ctor_set(x_2121, 1, x_2120); -x_2122 = lean_array_push(x_2100, x_2121); -x_2123 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -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_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_2126 = lean_array_push(x_2125, x_2095); -x_2127 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_2128 = lean_array_push(x_2126, x_2127); -x_2129 = lean_array_push(x_2128, x_2103); -x_2130 = lean_array_push(x_2129, x_2127); +lean_ctor_set(x_2121, 0, x_2120); +lean_ctor_set(x_2121, 1, x_2119); +x_2122 = lean_array_push(x_2102, x_2121); +x_2123 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2123, 0, x_2104); +lean_ctor_set(x_2123, 1, x_2122); +x_2124 = lean_array_push(x_2102, x_2123); +x_2125 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2126 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2126, 0, x_2125); +lean_ctor_set(x_2126, 1, x_2124); +x_2127 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_2128 = lean_array_push(x_2127, x_2097); +x_2129 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2130 = lean_array_push(x_2128, x_2129); x_2131 = lean_array_push(x_2130, x_2105); -x_2132 = lean_array_push(x_2131, x_2124); -x_2133 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2134 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2134, 0, x_2133); -lean_ctor_set(x_2134, 1, x_2132); -x_2135 = 1; -x_2136 = lean_box(x_2135); -x_2137 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2137, 0, x_2134); -lean_ctor_set(x_2137, 1, x_2136); -lean_ctor_set(x_1961, 1, x_2137); -if (lean_is_scalar(x_2093)) { - x_2138 = lean_alloc_ctor(0, 2, 0); +x_2132 = lean_array_push(x_2131, x_2129); +x_2133 = lean_array_push(x_2132, x_2107); +x_2134 = lean_array_push(x_2133, x_2126); +x_2135 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2136 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2136, 0, x_2135); +lean_ctor_set(x_2136, 1, x_2134); +x_2137 = 1; +x_2138 = lean_box(x_2137); +x_2139 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2139, 0, x_2136); +lean_ctor_set(x_2139, 1, x_2138); +lean_ctor_set(x_1963, 1, x_2139); +if (lean_is_scalar(x_2095)) { + x_2140 = lean_alloc_ctor(0, 2, 0); } else { - x_2138 = x_2093; + x_2140 = x_2095; } -lean_ctor_set(x_2138, 0, x_1961); -lean_ctor_set(x_2138, 1, x_2092); -return x_2138; +lean_ctor_set(x_2140, 0, x_1963); +lean_ctor_set(x_2140, 1, x_2094); +return x_2140; } } else { -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; lean_object* x_2154; 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; 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; uint8_t x_2187; lean_object* x_2188; lean_object* x_2189; lean_object* x_2190; lean_object* x_2191; -x_2139 = lean_ctor_get(x_1961, 0); -lean_inc(x_2139); -lean_dec(x_1961); -x_2140 = lean_ctor_get(x_1962, 0); -lean_inc(x_2140); -if (lean_is_exclusive(x_1962)) { - lean_ctor_release(x_1962, 0); - lean_ctor_release(x_1962, 1); - x_2141 = x_1962; +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; lean_object* x_2154; 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; 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; uint8_t x_2189; lean_object* x_2190; lean_object* x_2191; lean_object* x_2192; lean_object* x_2193; +x_2141 = lean_ctor_get(x_1963, 0); +lean_inc(x_2141); +lean_dec(x_1963); +x_2142 = lean_ctor_get(x_1964, 0); +lean_inc(x_2142); +if (lean_is_exclusive(x_1964)) { + lean_ctor_release(x_1964, 0); + lean_ctor_release(x_1964, 1); + x_2143 = x_1964; } else { - lean_dec_ref(x_1962); - x_2141 = lean_box(0); + lean_dec_ref(x_1964); + x_2143 = lean_box(0); } -x_2142 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_1963); +x_2144 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_1965); lean_dec(x_5); -x_2143 = lean_ctor_get(x_2142, 0); -lean_inc(x_2143); -x_2144 = lean_ctor_get(x_2142, 1); -lean_inc(x_2144); -if (lean_is_exclusive(x_2142)) { - lean_ctor_release(x_2142, 0); - lean_ctor_release(x_2142, 1); - x_2145 = x_2142; +x_2145 = lean_ctor_get(x_2144, 0); +lean_inc(x_2145); +x_2146 = lean_ctor_get(x_2144, 1); +lean_inc(x_2146); +if (lean_is_exclusive(x_2144)) { + lean_ctor_release(x_2144, 0); + lean_ctor_release(x_2144, 1); + x_2147 = x_2144; } else { - lean_dec_ref(x_2142); - x_2145 = lean_box(0); + lean_dec_ref(x_2144); + x_2147 = lean_box(0); } -x_2146 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_2143); -x_2147 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2147, 0, x_2143); -lean_ctor_set(x_2147, 1, x_2146); -x_2148 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2149 = lean_array_push(x_2148, x_1954); -x_2150 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_2151 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2151, 0, x_2150); -lean_ctor_set(x_2151, 1, x_2149); -x_2152 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_2153 = lean_array_push(x_2152, x_2151); -x_2154 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_2155 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2155, 0, x_2154); -lean_ctor_set(x_2155, 1, x_2153); -x_2156 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_2143); -x_2157 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2157, 0, x_2143); -lean_ctor_set(x_2157, 1, x_2156); -x_2158 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_2143); +x_2148 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_2145); +x_2149 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2149, 0, x_2145); +lean_ctor_set(x_2149, 1, x_2148); +x_2150 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2151 = lean_array_push(x_2150, x_1956); +x_2152 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_2153 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2153, 0, x_2152); +lean_ctor_set(x_2153, 1, x_2151); +x_2154 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_2155 = lean_array_push(x_2154, x_2153); +x_2156 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_2157 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2157, 0, x_2156); +lean_ctor_set(x_2157, 1, x_2155); +x_2158 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_2145); x_2159 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2159, 0, x_2143); +lean_ctor_set(x_2159, 0, x_2145); lean_ctor_set(x_2159, 1, x_2158); +x_2160 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_2145); +x_2161 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2161, 0, x_2145); +lean_ctor_set(x_2161, 1, x_2160); lean_inc(x_14); -x_2160 = lean_array_push(x_2152, x_14); +x_2162 = lean_array_push(x_2154, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_2161 = x_14; + x_2163 = x_14; } else { lean_dec_ref(x_14); - x_2161 = lean_box(0); + x_2163 = lean_box(0); } -if (lean_is_scalar(x_2161)) { - x_2162 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2163)) { + x_2164 = lean_alloc_ctor(1, 2, 0); } else { - x_2162 = x_2161; + x_2164 = x_2163; } -lean_ctor_set(x_2162, 0, x_2154); -lean_ctor_set(x_2162, 1, x_2160); -x_2163 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_2164 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2164, 0, x_2143); -lean_ctor_set(x_2164, 1, x_2163); -x_2165 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_2166 = lean_array_push(x_2165, x_2159); -x_2167 = lean_array_push(x_2166, x_2162); -x_2168 = lean_array_push(x_2167, x_2164); -x_2169 = lean_array_push(x_2168, x_2140); -x_2170 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_2171 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2171, 0, x_2170); -lean_ctor_set(x_2171, 1, x_2169); -x_2172 = lean_array_push(x_2152, x_2171); +lean_ctor_set(x_2164, 0, x_2156); +lean_ctor_set(x_2164, 1, x_2162); +x_2165 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_2166 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2166, 0, x_2145); +lean_ctor_set(x_2166, 1, x_2165); +x_2167 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_2168 = lean_array_push(x_2167, x_2161); +x_2169 = lean_array_push(x_2168, x_2164); +x_2170 = lean_array_push(x_2169, x_2166); +x_2171 = lean_array_push(x_2170, x_2142); +x_2172 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_2173 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2173, 0, x_2154); -lean_ctor_set(x_2173, 1, x_2172); -x_2174 = lean_array_push(x_2152, x_2173); -x_2175 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -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 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_2178 = lean_array_push(x_2177, x_2147); -x_2179 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_2180 = lean_array_push(x_2178, x_2179); -x_2181 = lean_array_push(x_2180, x_2155); -x_2182 = lean_array_push(x_2181, x_2179); +lean_ctor_set(x_2173, 0, x_2172); +lean_ctor_set(x_2173, 1, x_2171); +x_2174 = lean_array_push(x_2154, x_2173); +x_2175 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2175, 0, x_2156); +lean_ctor_set(x_2175, 1, x_2174); +x_2176 = lean_array_push(x_2154, x_2175); +x_2177 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2178 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2178, 0, x_2177); +lean_ctor_set(x_2178, 1, x_2176); +x_2179 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_2180 = lean_array_push(x_2179, x_2149); +x_2181 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2182 = lean_array_push(x_2180, x_2181); x_2183 = lean_array_push(x_2182, x_2157); -x_2184 = lean_array_push(x_2183, x_2176); -x_2185 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2186 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2186, 0, x_2185); -lean_ctor_set(x_2186, 1, x_2184); -x_2187 = 1; -x_2188 = lean_box(x_2187); -if (lean_is_scalar(x_2141)) { - x_2189 = lean_alloc_ctor(0, 2, 0); -} else { - x_2189 = x_2141; -} -lean_ctor_set(x_2189, 0, x_2186); -lean_ctor_set(x_2189, 1, x_2188); -x_2190 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2190, 0, x_2139); -lean_ctor_set(x_2190, 1, x_2189); -if (lean_is_scalar(x_2145)) { +x_2184 = lean_array_push(x_2183, x_2181); +x_2185 = lean_array_push(x_2184, x_2159); +x_2186 = lean_array_push(x_2185, x_2178); +x_2187 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +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 = 1; +x_2190 = lean_box(x_2189); +if (lean_is_scalar(x_2143)) { x_2191 = lean_alloc_ctor(0, 2, 0); } else { - x_2191 = x_2145; + x_2191 = x_2143; } -lean_ctor_set(x_2191, 0, x_2190); -lean_ctor_set(x_2191, 1, x_2144); -return x_2191; +lean_ctor_set(x_2191, 0, x_2188); +lean_ctor_set(x_2191, 1, x_2190); +x_2192 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2192, 0, x_2141); +lean_ctor_set(x_2192, 1, x_2191); +if (lean_is_scalar(x_2147)) { + x_2193 = lean_alloc_ctor(0, 2, 0); +} else { + x_2193 = x_2147; +} +lean_ctor_set(x_2193, 0, x_2192); +lean_ctor_set(x_2193, 1, x_2146); +return x_2193; } } } } else { -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_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_dec(x_228); lean_inc(x_5); -x_2192 = l_Lean_Elab_Term_mkFreshIdent___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_14, x_5, x_6); -x_2193 = lean_ctor_get(x_2192, 0); -lean_inc(x_2193); -x_2194 = lean_ctor_get(x_2192, 1); -lean_inc(x_2194); -lean_dec(x_2192); -x_2195 = lean_unsigned_to_nat(1u); -x_2196 = lean_nat_add(x_3, x_2195); +x_2194 = l_Lean_Elab_Term_mkFreshIdent___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_14, x_5, x_6); +x_2195 = lean_ctor_get(x_2194, 0); +lean_inc(x_2195); +x_2196 = lean_ctor_get(x_2194, 1); +lean_inc(x_2196); +lean_dec(x_2194); +x_2197 = lean_unsigned_to_nat(1u); +x_2198 = lean_nat_add(x_3, x_2197); lean_dec(x_3); -x_2197 = l_Lean_Elab_Term_mkExplicitBinder(x_2193, x_14); -x_2198 = lean_array_push(x_4, x_2197); -x_3 = x_2196; -x_4 = x_2198; -x_6 = x_2194; +x_2199 = l_Lean_Elab_Term_mkExplicitBinder(x_2195, x_14); +x_2200 = lean_array_push(x_4, x_2199); +x_3 = x_2198; +x_4 = x_2200; +x_6 = x_2196; goto _start; } } else { -lean_object* x_2200; lean_object* x_2201; lean_object* x_2202; +lean_object* x_2202; lean_object* x_2203; lean_object* x_2204; lean_dec(x_228); -x_2200 = lean_unsigned_to_nat(1u); -x_2201 = lean_nat_add(x_3, x_2200); +x_2202 = lean_unsigned_to_nat(1u); +x_2203 = lean_nat_add(x_3, x_2202); lean_dec(x_3); -x_2202 = lean_array_push(x_4, x_14); -x_3 = x_2201; -x_4 = x_2202; +x_2204 = lean_array_push(x_4, x_14); +x_3 = x_2203; +x_4 = x_2204; goto _start; } } else { -lean_object* x_2204; lean_object* x_2205; lean_object* x_2206; +lean_object* x_2206; lean_object* x_2207; lean_object* x_2208; lean_dec(x_228); -x_2204 = lean_unsigned_to_nat(1u); -x_2205 = lean_nat_add(x_3, x_2204); +x_2206 = lean_unsigned_to_nat(1u); +x_2207 = lean_nat_add(x_3, x_2206); lean_dec(x_3); -x_2206 = lean_array_push(x_4, x_14); -x_3 = x_2205; -x_4 = x_2206; +x_2208 = lean_array_push(x_4, x_14); +x_3 = x_2207; +x_4 = x_2208; goto _start; } } else { -lean_object* x_2208; lean_object* x_2209; lean_object* x_2210; +lean_object* x_2210; lean_object* x_2211; lean_object* x_2212; lean_dec(x_228); -x_2208 = lean_unsigned_to_nat(1u); -x_2209 = lean_nat_add(x_3, x_2208); +x_2210 = lean_unsigned_to_nat(1u); +x_2211 = lean_nat_add(x_3, x_2210); lean_dec(x_3); -x_2210 = lean_array_push(x_4, x_14); -x_3 = x_2209; -x_4 = x_2210; +x_2212 = lean_array_push(x_4, x_14); +x_3 = x_2211; +x_4 = x_2212; goto _start; } } else { -lean_object* x_2212; lean_object* x_2213; lean_object* x_2214; +lean_object* x_2214; lean_object* x_2215; lean_object* x_2216; lean_dec(x_228); -x_2212 = lean_unsigned_to_nat(1u); -x_2213 = lean_nat_add(x_3, x_2212); +x_2214 = lean_unsigned_to_nat(1u); +x_2215 = lean_nat_add(x_3, x_2214); lean_dec(x_3); -x_2214 = lean_array_push(x_4, x_14); -x_3 = x_2213; -x_4 = x_2214; +x_2216 = lean_array_push(x_4, x_14); +x_3 = x_2215; +x_4 = x_2216; +goto _start; +} +} +else +{ +lean_object* x_2218; lean_object* x_2219; lean_object* x_2220; +lean_dec(x_228); +x_2218 = lean_unsigned_to_nat(1u); +x_2219 = lean_nat_add(x_3, x_2218); +lean_dec(x_3); +x_2220 = lean_array_push(x_4, x_14); +x_3 = x_2219; +x_4 = x_2220; goto _start; } } @@ -13598,3129 +14024,3129 @@ goto _start; } else { -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; uint8_t x_2228; +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; uint8_t x_2234; lean_dec(x_227); lean_dec(x_226); lean_dec(x_225); lean_dec(x_224); lean_dec(x_223); lean_inc(x_5); -x_2216 = l_Lean_Elab_Term_mkFreshIdent___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_14, x_5, x_6); -x_2217 = lean_ctor_get(x_2216, 0); -lean_inc(x_2217); -x_2218 = lean_ctor_get(x_2216, 1); -lean_inc(x_2218); -lean_dec(x_2216); -x_2219 = lean_unsigned_to_nat(1u); -x_2220 = lean_nat_add(x_3, x_2219); +x_2222 = l_Lean_Elab_Term_mkFreshIdent___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_14, x_5, x_6); +x_2223 = lean_ctor_get(x_2222, 0); +lean_inc(x_2223); +x_2224 = lean_ctor_get(x_2222, 1); +lean_inc(x_2224); +lean_dec(x_2222); +x_2225 = lean_unsigned_to_nat(1u); +x_2226 = lean_nat_add(x_3, x_2225); lean_dec(x_3); -x_2221 = l_Lean_mkHole(x_14); -lean_inc(x_2217); -x_2222 = l_Lean_Elab_Term_mkExplicitBinder(x_2217, x_2221); -x_2223 = lean_array_push(x_4, x_2222); +x_2227 = l_Lean_mkHole(x_14); +lean_inc(x_2223); +x_2228 = l_Lean_Elab_Term_mkExplicitBinder(x_2223, x_2227); +x_2229 = lean_array_push(x_4, x_2228); lean_inc(x_5); -x_2224 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_2220, x_2223, x_5, x_2218); -x_2225 = lean_ctor_get(x_2224, 0); -lean_inc(x_2225); -x_2226 = lean_ctor_get(x_2225, 1); -lean_inc(x_2226); -x_2227 = lean_ctor_get(x_2224, 1); -lean_inc(x_2227); -lean_dec(x_2224); -x_2228 = !lean_is_exclusive(x_2225); -if (x_2228 == 0) -{ -lean_object* x_2229; uint8_t x_2230; -x_2229 = lean_ctor_get(x_2225, 1); -lean_dec(x_2229); -x_2230 = !lean_is_exclusive(x_2226); -if (x_2230 == 0) -{ -lean_object* x_2231; lean_object* x_2232; lean_object* x_2233; uint8_t x_2234; -x_2231 = lean_ctor_get(x_2226, 0); -x_2232 = lean_ctor_get(x_2226, 1); -lean_dec(x_2232); -x_2233 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_2227); -lean_dec(x_5); -x_2234 = !lean_is_exclusive(x_2233); +x_2230 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_2226, x_2229, x_5, x_2224); +x_2231 = lean_ctor_get(x_2230, 0); +lean_inc(x_2231); +x_2232 = lean_ctor_get(x_2231, 1); +lean_inc(x_2232); +x_2233 = lean_ctor_get(x_2230, 1); +lean_inc(x_2233); +lean_dec(x_2230); +x_2234 = !lean_is_exclusive(x_2231); if (x_2234 == 0) { -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; uint8_t x_2251; -x_2235 = lean_ctor_get(x_2233, 0); -x_2236 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_2235); -x_2237 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2237, 0, x_2235); -lean_ctor_set(x_2237, 1, x_2236); -x_2238 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2239 = lean_array_push(x_2238, x_2217); -x_2240 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_2241 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2241, 0, x_2240); -lean_ctor_set(x_2241, 1, x_2239); -x_2242 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_2243 = lean_array_push(x_2242, x_2241); -x_2244 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_2245 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2245, 0, x_2244); -lean_ctor_set(x_2245, 1, x_2243); -x_2246 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_2235); -x_2247 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2247, 0, x_2235); -lean_ctor_set(x_2247, 1, x_2246); -x_2248 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_2235); -x_2249 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2249, 0, x_2235); -lean_ctor_set(x_2249, 1, x_2248); -lean_inc(x_14); -x_2250 = lean_array_push(x_2242, x_14); -x_2251 = !lean_is_exclusive(x_14); -if (x_2251 == 0) +lean_object* x_2235; uint8_t x_2236; +x_2235 = lean_ctor_get(x_2231, 1); +lean_dec(x_2235); +x_2236 = !lean_is_exclusive(x_2232); +if (x_2236 == 0) { -lean_object* x_2252; lean_object* x_2253; lean_object* x_2254; lean_object* x_2255; lean_object* x_2256; lean_object* x_2257; 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; uint8_t x_2278; lean_object* x_2279; -x_2252 = lean_ctor_get(x_14, 1); -lean_dec(x_2252); -x_2253 = lean_ctor_get(x_14, 0); -lean_dec(x_2253); -lean_ctor_set(x_14, 1, x_2250); -lean_ctor_set(x_14, 0, x_2244); -x_2254 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +lean_object* x_2237; lean_object* x_2238; lean_object* x_2239; uint8_t x_2240; +x_2237 = lean_ctor_get(x_2232, 0); +x_2238 = lean_ctor_get(x_2232, 1); +lean_dec(x_2238); +x_2239 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_2233); +lean_dec(x_5); +x_2240 = !lean_is_exclusive(x_2239); +if (x_2240 == 0) +{ +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; lean_object* x_2254; lean_object* x_2255; lean_object* x_2256; uint8_t x_2257; +x_2241 = lean_ctor_get(x_2239, 0); +x_2242 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_2241); +x_2243 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2243, 0, x_2241); +lean_ctor_set(x_2243, 1, x_2242); +x_2244 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2245 = lean_array_push(x_2244, x_2223); +x_2246 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_2247 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2247, 0, x_2246); +lean_ctor_set(x_2247, 1, x_2245); +x_2248 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_2249 = lean_array_push(x_2248, x_2247); +x_2250 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_2251 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2251, 0, x_2250); +lean_ctor_set(x_2251, 1, x_2249); +x_2252 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_2241); +x_2253 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2253, 0, x_2241); +lean_ctor_set(x_2253, 1, x_2252); +x_2254 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_2241); x_2255 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2255, 0, x_2235); +lean_ctor_set(x_2255, 0, x_2241); lean_ctor_set(x_2255, 1, x_2254); -x_2256 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_2257 = lean_array_push(x_2256, x_2249); -x_2258 = lean_array_push(x_2257, x_14); -x_2259 = lean_array_push(x_2258, x_2255); -x_2260 = lean_array_push(x_2259, x_2231); -x_2261 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_2262 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2262, 0, x_2261); -lean_ctor_set(x_2262, 1, x_2260); -x_2263 = lean_array_push(x_2242, x_2262); -x_2264 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2264, 0, x_2244); -lean_ctor_set(x_2264, 1, x_2263); -x_2265 = lean_array_push(x_2242, x_2264); -x_2266 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2267 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2267, 0, x_2266); -lean_ctor_set(x_2267, 1, x_2265); -x_2268 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_2269 = lean_array_push(x_2268, x_2237); -x_2270 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_2271 = lean_array_push(x_2269, x_2270); -x_2272 = lean_array_push(x_2271, x_2245); -x_2273 = lean_array_push(x_2272, x_2270); -x_2274 = lean_array_push(x_2273, x_2247); -x_2275 = lean_array_push(x_2274, x_2267); -x_2276 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2277 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2277, 0, x_2276); -lean_ctor_set(x_2277, 1, x_2275); -x_2278 = 1; -x_2279 = lean_box(x_2278); -lean_ctor_set(x_2226, 1, x_2279); -lean_ctor_set(x_2226, 0, x_2277); -lean_ctor_set(x_2233, 0, x_2225); -return x_2233; +lean_inc(x_14); +x_2256 = lean_array_push(x_2248, x_14); +x_2257 = !lean_is_exclusive(x_14); +if (x_2257 == 0) +{ +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; uint8_t x_2284; lean_object* x_2285; +x_2258 = lean_ctor_get(x_14, 1); +lean_dec(x_2258); +x_2259 = lean_ctor_get(x_14, 0); +lean_dec(x_2259); +lean_ctor_set(x_14, 1, x_2256); +lean_ctor_set(x_14, 0, x_2250); +x_2260 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_2261 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2261, 0, x_2241); +lean_ctor_set(x_2261, 1, x_2260); +x_2262 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_2263 = lean_array_push(x_2262, x_2255); +x_2264 = lean_array_push(x_2263, x_14); +x_2265 = lean_array_push(x_2264, x_2261); +x_2266 = lean_array_push(x_2265, x_2237); +x_2267 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +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 = lean_array_push(x_2248, x_2268); +x_2270 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2270, 0, x_2250); +lean_ctor_set(x_2270, 1, x_2269); +x_2271 = lean_array_push(x_2248, x_2270); +x_2272 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +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_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_2275 = lean_array_push(x_2274, x_2243); +x_2276 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2277 = lean_array_push(x_2275, x_2276); +x_2278 = lean_array_push(x_2277, x_2251); +x_2279 = lean_array_push(x_2278, x_2276); +x_2280 = lean_array_push(x_2279, x_2253); +x_2281 = lean_array_push(x_2280, x_2273); +x_2282 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2283 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2283, 0, x_2282); +lean_ctor_set(x_2283, 1, x_2281); +x_2284 = 1; +x_2285 = lean_box(x_2284); +lean_ctor_set(x_2232, 1, x_2285); +lean_ctor_set(x_2232, 0, x_2283); +lean_ctor_set(x_2239, 0, x_2231); +return x_2239; } else { -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; lean_object* x_2296; lean_object* x_2297; lean_object* x_2298; lean_object* x_2299; lean_object* x_2300; lean_object* x_2301; lean_object* x_2302; lean_object* x_2303; lean_object* x_2304; uint8_t x_2305; lean_object* x_2306; +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; lean_object* x_2298; lean_object* x_2299; 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; uint8_t x_2311; lean_object* x_2312; lean_dec(x_14); -x_2280 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2280, 0, x_2244); -lean_ctor_set(x_2280, 1, x_2250); -x_2281 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_2282 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2282, 0, x_2235); -lean_ctor_set(x_2282, 1, x_2281); -x_2283 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_2284 = lean_array_push(x_2283, x_2249); -x_2285 = lean_array_push(x_2284, x_2280); -x_2286 = lean_array_push(x_2285, x_2282); -x_2287 = lean_array_push(x_2286, x_2231); -x_2288 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_2289 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2289, 0, x_2288); -lean_ctor_set(x_2289, 1, x_2287); -x_2290 = lean_array_push(x_2242, x_2289); -x_2291 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2291, 0, x_2244); -lean_ctor_set(x_2291, 1, x_2290); -x_2292 = lean_array_push(x_2242, x_2291); -x_2293 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -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 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_2296 = lean_array_push(x_2295, x_2237); -x_2297 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_2298 = lean_array_push(x_2296, x_2297); -x_2299 = lean_array_push(x_2298, x_2245); -x_2300 = lean_array_push(x_2299, x_2297); -x_2301 = lean_array_push(x_2300, x_2247); -x_2302 = lean_array_push(x_2301, x_2294); -x_2303 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2304 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2304, 0, x_2303); -lean_ctor_set(x_2304, 1, x_2302); -x_2305 = 1; -x_2306 = lean_box(x_2305); -lean_ctor_set(x_2226, 1, x_2306); -lean_ctor_set(x_2226, 0, x_2304); -lean_ctor_set(x_2233, 0, x_2225); -return x_2233; +x_2286 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2286, 0, x_2250); +lean_ctor_set(x_2286, 1, x_2256); +x_2287 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_2288 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2288, 0, x_2241); +lean_ctor_set(x_2288, 1, x_2287); +x_2289 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_2290 = lean_array_push(x_2289, x_2255); +x_2291 = lean_array_push(x_2290, x_2286); +x_2292 = lean_array_push(x_2291, x_2288); +x_2293 = lean_array_push(x_2292, x_2237); +x_2294 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +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 = lean_array_push(x_2248, x_2295); +x_2297 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2297, 0, x_2250); +lean_ctor_set(x_2297, 1, x_2296); +x_2298 = lean_array_push(x_2248, x_2297); +x_2299 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2300 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2300, 0, x_2299); +lean_ctor_set(x_2300, 1, x_2298); +x_2301 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_2302 = lean_array_push(x_2301, x_2243); +x_2303 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2304 = lean_array_push(x_2302, x_2303); +x_2305 = lean_array_push(x_2304, x_2251); +x_2306 = lean_array_push(x_2305, x_2303); +x_2307 = lean_array_push(x_2306, x_2253); +x_2308 = lean_array_push(x_2307, x_2300); +x_2309 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2310 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2310, 0, x_2309); +lean_ctor_set(x_2310, 1, x_2308); +x_2311 = 1; +x_2312 = lean_box(x_2311); +lean_ctor_set(x_2232, 1, x_2312); +lean_ctor_set(x_2232, 0, x_2310); +lean_ctor_set(x_2239, 0, x_2231); +return x_2239; } } else { -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; lean_object* x_2316; lean_object* x_2317; 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; uint8_t x_2350; lean_object* x_2351; lean_object* x_2352; -x_2307 = lean_ctor_get(x_2233, 0); -x_2308 = lean_ctor_get(x_2233, 1); -lean_inc(x_2308); -lean_inc(x_2307); -lean_dec(x_2233); -x_2309 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_2307); -x_2310 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2310, 0, x_2307); -lean_ctor_set(x_2310, 1, x_2309); -x_2311 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2312 = lean_array_push(x_2311, x_2217); -x_2313 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_2314 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2314, 0, x_2313); -lean_ctor_set(x_2314, 1, x_2312); -x_2315 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_2316 = lean_array_push(x_2315, x_2314); -x_2317 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_2318 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2318, 0, x_2317); -lean_ctor_set(x_2318, 1, x_2316); -x_2319 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_2307); -x_2320 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2320, 0, x_2307); -lean_ctor_set(x_2320, 1, x_2319); -x_2321 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_2307); -x_2322 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2322, 0, x_2307); -lean_ctor_set(x_2322, 1, x_2321); +lean_object* x_2313; lean_object* x_2314; lean_object* x_2315; lean_object* x_2316; lean_object* x_2317; 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; lean_object* x_2351; lean_object* x_2352; lean_object* x_2353; lean_object* x_2354; lean_object* x_2355; uint8_t x_2356; lean_object* x_2357; lean_object* x_2358; +x_2313 = lean_ctor_get(x_2239, 0); +x_2314 = lean_ctor_get(x_2239, 1); +lean_inc(x_2314); +lean_inc(x_2313); +lean_dec(x_2239); +x_2315 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_2313); +x_2316 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2316, 0, x_2313); +lean_ctor_set(x_2316, 1, x_2315); +x_2317 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2318 = lean_array_push(x_2317, x_2223); +x_2319 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_2320 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2320, 0, x_2319); +lean_ctor_set(x_2320, 1, x_2318); +x_2321 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_2322 = lean_array_push(x_2321, x_2320); +x_2323 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_2324 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2324, 0, x_2323); +lean_ctor_set(x_2324, 1, x_2322); +x_2325 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_2313); +x_2326 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2326, 0, x_2313); +lean_ctor_set(x_2326, 1, x_2325); +x_2327 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_2313); +x_2328 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2328, 0, x_2313); +lean_ctor_set(x_2328, 1, x_2327); lean_inc(x_14); -x_2323 = lean_array_push(x_2315, x_14); +x_2329 = lean_array_push(x_2321, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_2324 = x_14; + x_2330 = x_14; } else { lean_dec_ref(x_14); - x_2324 = lean_box(0); + x_2330 = lean_box(0); } -if (lean_is_scalar(x_2324)) { - x_2325 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2330)) { + x_2331 = lean_alloc_ctor(1, 2, 0); } else { - x_2325 = x_2324; + x_2331 = x_2330; } -lean_ctor_set(x_2325, 0, x_2317); -lean_ctor_set(x_2325, 1, x_2323); -x_2326 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_2327 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2327, 0, x_2307); -lean_ctor_set(x_2327, 1, x_2326); -x_2328 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_2329 = lean_array_push(x_2328, x_2322); -x_2330 = lean_array_push(x_2329, x_2325); -x_2331 = lean_array_push(x_2330, x_2327); -x_2332 = lean_array_push(x_2331, x_2231); -x_2333 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_2334 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2334, 0, x_2333); -lean_ctor_set(x_2334, 1, x_2332); -x_2335 = lean_array_push(x_2315, x_2334); -x_2336 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2336, 0, x_2317); -lean_ctor_set(x_2336, 1, x_2335); -x_2337 = lean_array_push(x_2315, x_2336); -x_2338 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2339 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2339, 0, x_2338); -lean_ctor_set(x_2339, 1, x_2337); -x_2340 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_2341 = lean_array_push(x_2340, x_2310); -x_2342 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_2343 = lean_array_push(x_2341, x_2342); -x_2344 = lean_array_push(x_2343, x_2318); -x_2345 = lean_array_push(x_2344, x_2342); -x_2346 = lean_array_push(x_2345, x_2320); -x_2347 = lean_array_push(x_2346, x_2339); -x_2348 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2349 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2349, 0, x_2348); -lean_ctor_set(x_2349, 1, x_2347); -x_2350 = 1; -x_2351 = lean_box(x_2350); -lean_ctor_set(x_2226, 1, x_2351); -lean_ctor_set(x_2226, 0, x_2349); -x_2352 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2352, 0, x_2225); -lean_ctor_set(x_2352, 1, x_2308); -return x_2352; +lean_ctor_set(x_2331, 0, x_2323); +lean_ctor_set(x_2331, 1, x_2329); +x_2332 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_2333 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2333, 0, x_2313); +lean_ctor_set(x_2333, 1, x_2332); +x_2334 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_2335 = lean_array_push(x_2334, x_2328); +x_2336 = lean_array_push(x_2335, x_2331); +x_2337 = lean_array_push(x_2336, x_2333); +x_2338 = lean_array_push(x_2337, x_2237); +x_2339 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2340 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2340, 0, x_2339); +lean_ctor_set(x_2340, 1, x_2338); +x_2341 = lean_array_push(x_2321, x_2340); +x_2342 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2342, 0, x_2323); +lean_ctor_set(x_2342, 1, x_2341); +x_2343 = lean_array_push(x_2321, x_2342); +x_2344 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2345 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2345, 0, x_2344); +lean_ctor_set(x_2345, 1, x_2343); +x_2346 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_2347 = lean_array_push(x_2346, x_2316); +x_2348 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2349 = lean_array_push(x_2347, x_2348); +x_2350 = lean_array_push(x_2349, x_2324); +x_2351 = lean_array_push(x_2350, x_2348); +x_2352 = lean_array_push(x_2351, x_2326); +x_2353 = lean_array_push(x_2352, x_2345); +x_2354 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2355 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2355, 0, x_2354); +lean_ctor_set(x_2355, 1, x_2353); +x_2356 = 1; +x_2357 = lean_box(x_2356); +lean_ctor_set(x_2232, 1, x_2357); +lean_ctor_set(x_2232, 0, x_2355); +x_2358 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2358, 0, x_2231); +lean_ctor_set(x_2358, 1, x_2314); +return x_2358; } } else { -lean_object* x_2353; 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; 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; uint8_t x_2399; lean_object* x_2400; lean_object* x_2401; lean_object* x_2402; -x_2353 = lean_ctor_get(x_2226, 0); -lean_inc(x_2353); -lean_dec(x_2226); -x_2354 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_2227); +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; 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; lean_object* x_2401; lean_object* x_2402; lean_object* x_2403; lean_object* x_2404; uint8_t x_2405; lean_object* x_2406; lean_object* x_2407; lean_object* x_2408; +x_2359 = lean_ctor_get(x_2232, 0); +lean_inc(x_2359); +lean_dec(x_2232); +x_2360 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_2233); lean_dec(x_5); -x_2355 = lean_ctor_get(x_2354, 0); -lean_inc(x_2355); -x_2356 = lean_ctor_get(x_2354, 1); -lean_inc(x_2356); -if (lean_is_exclusive(x_2354)) { - lean_ctor_release(x_2354, 0); - lean_ctor_release(x_2354, 1); - x_2357 = x_2354; +x_2361 = lean_ctor_get(x_2360, 0); +lean_inc(x_2361); +x_2362 = lean_ctor_get(x_2360, 1); +lean_inc(x_2362); +if (lean_is_exclusive(x_2360)) { + lean_ctor_release(x_2360, 0); + lean_ctor_release(x_2360, 1); + x_2363 = x_2360; } else { - lean_dec_ref(x_2354); - x_2357 = lean_box(0); + lean_dec_ref(x_2360); + x_2363 = lean_box(0); } -x_2358 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_2355); -x_2359 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2359, 0, x_2355); -lean_ctor_set(x_2359, 1, x_2358); -x_2360 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2361 = lean_array_push(x_2360, x_2217); -x_2362 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -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_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_2365 = lean_array_push(x_2364, x_2363); -x_2366 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -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 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_2355); -x_2369 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2369, 0, x_2355); -lean_ctor_set(x_2369, 1, x_2368); -x_2370 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_2355); -x_2371 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2371, 0, x_2355); -lean_ctor_set(x_2371, 1, x_2370); +x_2364 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_2361); +x_2365 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2365, 0, x_2361); +lean_ctor_set(x_2365, 1, x_2364); +x_2366 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2367 = lean_array_push(x_2366, x_2223); +x_2368 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_2369 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2369, 0, x_2368); +lean_ctor_set(x_2369, 1, x_2367); +x_2370 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_2371 = lean_array_push(x_2370, x_2369); +x_2372 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_2373 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2373, 0, x_2372); +lean_ctor_set(x_2373, 1, x_2371); +x_2374 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_2361); +x_2375 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2375, 0, x_2361); +lean_ctor_set(x_2375, 1, x_2374); +x_2376 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_2361); +x_2377 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2377, 0, x_2361); +lean_ctor_set(x_2377, 1, x_2376); lean_inc(x_14); -x_2372 = lean_array_push(x_2364, x_14); +x_2378 = lean_array_push(x_2370, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_2373 = x_14; + x_2379 = x_14; } else { lean_dec_ref(x_14); - x_2373 = lean_box(0); + x_2379 = lean_box(0); } -if (lean_is_scalar(x_2373)) { - x_2374 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2379)) { + x_2380 = lean_alloc_ctor(1, 2, 0); } else { - x_2374 = x_2373; + x_2380 = x_2379; } -lean_ctor_set(x_2374, 0, x_2366); -lean_ctor_set(x_2374, 1, x_2372); -x_2375 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_2376 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2376, 0, x_2355); -lean_ctor_set(x_2376, 1, x_2375); -x_2377 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_2378 = lean_array_push(x_2377, x_2371); -x_2379 = lean_array_push(x_2378, x_2374); -x_2380 = lean_array_push(x_2379, x_2376); -x_2381 = lean_array_push(x_2380, x_2353); -x_2382 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_2383 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2383, 0, x_2382); -lean_ctor_set(x_2383, 1, x_2381); -x_2384 = lean_array_push(x_2364, x_2383); -x_2385 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2385, 0, x_2366); -lean_ctor_set(x_2385, 1, x_2384); -x_2386 = lean_array_push(x_2364, x_2385); -x_2387 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -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 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_2390 = lean_array_push(x_2389, x_2359); -x_2391 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_2392 = lean_array_push(x_2390, x_2391); -x_2393 = lean_array_push(x_2392, x_2367); -x_2394 = lean_array_push(x_2393, x_2391); -x_2395 = lean_array_push(x_2394, x_2369); -x_2396 = lean_array_push(x_2395, x_2388); -x_2397 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2398 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2398, 0, x_2397); -lean_ctor_set(x_2398, 1, x_2396); -x_2399 = 1; -x_2400 = lean_box(x_2399); -x_2401 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2401, 0, x_2398); -lean_ctor_set(x_2401, 1, x_2400); -lean_ctor_set(x_2225, 1, x_2401); -if (lean_is_scalar(x_2357)) { - x_2402 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2380, 0, x_2372); +lean_ctor_set(x_2380, 1, x_2378); +x_2381 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_2382 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2382, 0, x_2361); +lean_ctor_set(x_2382, 1, x_2381); +x_2383 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_2384 = lean_array_push(x_2383, x_2377); +x_2385 = lean_array_push(x_2384, x_2380); +x_2386 = lean_array_push(x_2385, x_2382); +x_2387 = lean_array_push(x_2386, x_2359); +x_2388 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2389 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2389, 0, x_2388); +lean_ctor_set(x_2389, 1, x_2387); +x_2390 = lean_array_push(x_2370, x_2389); +x_2391 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2391, 0, x_2372); +lean_ctor_set(x_2391, 1, x_2390); +x_2392 = lean_array_push(x_2370, x_2391); +x_2393 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2394 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2394, 0, x_2393); +lean_ctor_set(x_2394, 1, x_2392); +x_2395 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_2396 = lean_array_push(x_2395, x_2365); +x_2397 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2398 = lean_array_push(x_2396, x_2397); +x_2399 = lean_array_push(x_2398, x_2373); +x_2400 = lean_array_push(x_2399, x_2397); +x_2401 = lean_array_push(x_2400, x_2375); +x_2402 = lean_array_push(x_2401, x_2394); +x_2403 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2404 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2404, 0, x_2403); +lean_ctor_set(x_2404, 1, x_2402); +x_2405 = 1; +x_2406 = lean_box(x_2405); +x_2407 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2407, 0, x_2404); +lean_ctor_set(x_2407, 1, x_2406); +lean_ctor_set(x_2231, 1, x_2407); +if (lean_is_scalar(x_2363)) { + x_2408 = lean_alloc_ctor(0, 2, 0); } else { - x_2402 = x_2357; + x_2408 = x_2363; } -lean_ctor_set(x_2402, 0, x_2225); -lean_ctor_set(x_2402, 1, x_2356); -return x_2402; +lean_ctor_set(x_2408, 0, x_2231); +lean_ctor_set(x_2408, 1, x_2362); +return x_2408; } } else { -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; lean_object* x_2436; lean_object* x_2437; lean_object* x_2438; lean_object* x_2439; lean_object* x_2440; 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; uint8_t x_2451; lean_object* x_2452; lean_object* x_2453; lean_object* x_2454; lean_object* x_2455; -x_2403 = lean_ctor_get(x_2225, 0); -lean_inc(x_2403); -lean_dec(x_2225); -x_2404 = lean_ctor_get(x_2226, 0); -lean_inc(x_2404); -if (lean_is_exclusive(x_2226)) { - lean_ctor_release(x_2226, 0); - lean_ctor_release(x_2226, 1); - x_2405 = x_2226; +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; lean_object* x_2440; 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; lean_object* x_2453; lean_object* x_2454; lean_object* x_2455; lean_object* x_2456; uint8_t x_2457; lean_object* x_2458; lean_object* x_2459; lean_object* x_2460; lean_object* x_2461; +x_2409 = lean_ctor_get(x_2231, 0); +lean_inc(x_2409); +lean_dec(x_2231); +x_2410 = lean_ctor_get(x_2232, 0); +lean_inc(x_2410); +if (lean_is_exclusive(x_2232)) { + lean_ctor_release(x_2232, 0); + lean_ctor_release(x_2232, 1); + x_2411 = x_2232; } else { - lean_dec_ref(x_2226); - x_2405 = lean_box(0); + lean_dec_ref(x_2232); + x_2411 = lean_box(0); } -x_2406 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_2227); +x_2412 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_2233); lean_dec(x_5); -x_2407 = lean_ctor_get(x_2406, 0); -lean_inc(x_2407); -x_2408 = lean_ctor_get(x_2406, 1); -lean_inc(x_2408); -if (lean_is_exclusive(x_2406)) { - lean_ctor_release(x_2406, 0); - lean_ctor_release(x_2406, 1); - x_2409 = x_2406; +x_2413 = lean_ctor_get(x_2412, 0); +lean_inc(x_2413); +x_2414 = lean_ctor_get(x_2412, 1); +lean_inc(x_2414); +if (lean_is_exclusive(x_2412)) { + lean_ctor_release(x_2412, 0); + lean_ctor_release(x_2412, 1); + x_2415 = x_2412; } else { - lean_dec_ref(x_2406); - x_2409 = lean_box(0); + lean_dec_ref(x_2412); + x_2415 = lean_box(0); } -x_2410 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_2407); -x_2411 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2411, 0, x_2407); -lean_ctor_set(x_2411, 1, x_2410); -x_2412 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2413 = lean_array_push(x_2412, x_2217); -x_2414 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_2415 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2415, 0, x_2414); -lean_ctor_set(x_2415, 1, x_2413); -x_2416 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_2417 = lean_array_push(x_2416, x_2415); -x_2418 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_2419 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2419, 0, x_2418); -lean_ctor_set(x_2419, 1, x_2417); -x_2420 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_2407); -x_2421 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2421, 0, x_2407); -lean_ctor_set(x_2421, 1, x_2420); -x_2422 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_2407); -x_2423 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2423, 0, x_2407); -lean_ctor_set(x_2423, 1, x_2422); +x_2416 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_2413); +x_2417 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2417, 0, x_2413); +lean_ctor_set(x_2417, 1, x_2416); +x_2418 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2419 = lean_array_push(x_2418, x_2223); +x_2420 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_2421 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2421, 0, x_2420); +lean_ctor_set(x_2421, 1, x_2419); +x_2422 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_2423 = lean_array_push(x_2422, x_2421); +x_2424 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_2425 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2425, 0, x_2424); +lean_ctor_set(x_2425, 1, x_2423); +x_2426 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_2413); +x_2427 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2427, 0, x_2413); +lean_ctor_set(x_2427, 1, x_2426); +x_2428 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_2413); +x_2429 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2429, 0, x_2413); +lean_ctor_set(x_2429, 1, x_2428); lean_inc(x_14); -x_2424 = lean_array_push(x_2416, x_14); +x_2430 = lean_array_push(x_2422, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_2425 = x_14; + x_2431 = x_14; } else { lean_dec_ref(x_14); - x_2425 = lean_box(0); + x_2431 = lean_box(0); } -if (lean_is_scalar(x_2425)) { - x_2426 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2431)) { + x_2432 = lean_alloc_ctor(1, 2, 0); } else { - x_2426 = x_2425; + x_2432 = x_2431; } -lean_ctor_set(x_2426, 0, x_2418); -lean_ctor_set(x_2426, 1, x_2424); -x_2427 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_2428 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2428, 0, x_2407); -lean_ctor_set(x_2428, 1, x_2427); -x_2429 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_2430 = lean_array_push(x_2429, x_2423); -x_2431 = lean_array_push(x_2430, x_2426); -x_2432 = lean_array_push(x_2431, x_2428); -x_2433 = lean_array_push(x_2432, x_2404); -x_2434 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -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 = lean_array_push(x_2416, x_2435); -x_2437 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2437, 0, x_2418); -lean_ctor_set(x_2437, 1, x_2436); -x_2438 = lean_array_push(x_2416, x_2437); -x_2439 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2440 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2440, 0, x_2439); -lean_ctor_set(x_2440, 1, x_2438); -x_2441 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_2442 = lean_array_push(x_2441, x_2411); -x_2443 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_2444 = lean_array_push(x_2442, x_2443); -x_2445 = lean_array_push(x_2444, x_2419); -x_2446 = lean_array_push(x_2445, x_2443); -x_2447 = lean_array_push(x_2446, x_2421); -x_2448 = lean_array_push(x_2447, x_2440); -x_2449 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2450 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2450, 0, x_2449); -lean_ctor_set(x_2450, 1, x_2448); -x_2451 = 1; -x_2452 = lean_box(x_2451); -if (lean_is_scalar(x_2405)) { - x_2453 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2432, 0, x_2424); +lean_ctor_set(x_2432, 1, x_2430); +x_2433 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_2434 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2434, 0, x_2413); +lean_ctor_set(x_2434, 1, x_2433); +x_2435 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_2436 = lean_array_push(x_2435, x_2429); +x_2437 = lean_array_push(x_2436, x_2432); +x_2438 = lean_array_push(x_2437, x_2434); +x_2439 = lean_array_push(x_2438, x_2410); +x_2440 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2441 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2441, 0, x_2440); +lean_ctor_set(x_2441, 1, x_2439); +x_2442 = lean_array_push(x_2422, x_2441); +x_2443 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2443, 0, x_2424); +lean_ctor_set(x_2443, 1, x_2442); +x_2444 = lean_array_push(x_2422, x_2443); +x_2445 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2446 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2446, 0, x_2445); +lean_ctor_set(x_2446, 1, x_2444); +x_2447 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_2448 = lean_array_push(x_2447, x_2417); +x_2449 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2450 = lean_array_push(x_2448, x_2449); +x_2451 = lean_array_push(x_2450, x_2425); +x_2452 = lean_array_push(x_2451, x_2449); +x_2453 = lean_array_push(x_2452, x_2427); +x_2454 = lean_array_push(x_2453, x_2446); +x_2455 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2456 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2456, 0, x_2455); +lean_ctor_set(x_2456, 1, x_2454); +x_2457 = 1; +x_2458 = lean_box(x_2457); +if (lean_is_scalar(x_2411)) { + x_2459 = lean_alloc_ctor(0, 2, 0); } else { - x_2453 = x_2405; + x_2459 = x_2411; } -lean_ctor_set(x_2453, 0, x_2450); -lean_ctor_set(x_2453, 1, x_2452); -x_2454 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2454, 0, x_2403); -lean_ctor_set(x_2454, 1, x_2453); -if (lean_is_scalar(x_2409)) { - x_2455 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2459, 0, x_2456); +lean_ctor_set(x_2459, 1, x_2458); +x_2460 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2460, 0, x_2409); +lean_ctor_set(x_2460, 1, x_2459); +if (lean_is_scalar(x_2415)) { + x_2461 = lean_alloc_ctor(0, 2, 0); } else { - x_2455 = x_2409; + x_2461 = x_2415; } -lean_ctor_set(x_2455, 0, x_2454); -lean_ctor_set(x_2455, 1, x_2408); -return x_2455; +lean_ctor_set(x_2461, 0, x_2460); +lean_ctor_set(x_2461, 1, x_2414); +return x_2461; } } } else { -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; uint8_t x_2468; +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; uint8_t x_2474; lean_dec(x_226); lean_dec(x_225); lean_dec(x_224); lean_dec(x_223); lean_inc(x_5); -x_2456 = l_Lean_Elab_Term_mkFreshIdent___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_14, x_5, x_6); -x_2457 = lean_ctor_get(x_2456, 0); -lean_inc(x_2457); -x_2458 = lean_ctor_get(x_2456, 1); -lean_inc(x_2458); -lean_dec(x_2456); -x_2459 = lean_unsigned_to_nat(1u); -x_2460 = lean_nat_add(x_3, x_2459); +x_2462 = l_Lean_Elab_Term_mkFreshIdent___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_14, x_5, x_6); +x_2463 = lean_ctor_get(x_2462, 0); +lean_inc(x_2463); +x_2464 = lean_ctor_get(x_2462, 1); +lean_inc(x_2464); +lean_dec(x_2462); +x_2465 = lean_unsigned_to_nat(1u); +x_2466 = lean_nat_add(x_3, x_2465); lean_dec(x_3); -x_2461 = l_Lean_mkHole(x_14); -lean_inc(x_2457); -x_2462 = l_Lean_Elab_Term_mkExplicitBinder(x_2457, x_2461); -x_2463 = lean_array_push(x_4, x_2462); +x_2467 = l_Lean_mkHole(x_14); +lean_inc(x_2463); +x_2468 = l_Lean_Elab_Term_mkExplicitBinder(x_2463, x_2467); +x_2469 = lean_array_push(x_4, x_2468); lean_inc(x_5); -x_2464 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_2460, x_2463, x_5, x_2458); -x_2465 = lean_ctor_get(x_2464, 0); -lean_inc(x_2465); -x_2466 = lean_ctor_get(x_2465, 1); -lean_inc(x_2466); -x_2467 = lean_ctor_get(x_2464, 1); -lean_inc(x_2467); -lean_dec(x_2464); -x_2468 = !lean_is_exclusive(x_2465); -if (x_2468 == 0) -{ -lean_object* x_2469; uint8_t x_2470; -x_2469 = lean_ctor_get(x_2465, 1); -lean_dec(x_2469); -x_2470 = !lean_is_exclusive(x_2466); -if (x_2470 == 0) -{ -lean_object* x_2471; lean_object* x_2472; lean_object* x_2473; uint8_t x_2474; -x_2471 = lean_ctor_get(x_2466, 0); -x_2472 = lean_ctor_get(x_2466, 1); -lean_dec(x_2472); -x_2473 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_2467); -lean_dec(x_5); -x_2474 = !lean_is_exclusive(x_2473); +x_2470 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_2466, x_2469, x_5, x_2464); +x_2471 = lean_ctor_get(x_2470, 0); +lean_inc(x_2471); +x_2472 = lean_ctor_get(x_2471, 1); +lean_inc(x_2472); +x_2473 = lean_ctor_get(x_2470, 1); +lean_inc(x_2473); +lean_dec(x_2470); +x_2474 = !lean_is_exclusive(x_2471); if (x_2474 == 0) { -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; 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; uint8_t x_2491; -x_2475 = lean_ctor_get(x_2473, 0); -x_2476 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_2475); -x_2477 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2477, 0, x_2475); -lean_ctor_set(x_2477, 1, x_2476); -x_2478 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2479 = lean_array_push(x_2478, x_2457); -x_2480 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -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 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_2483 = lean_array_push(x_2482, x_2481); -x_2484 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_2485 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2485, 0, x_2484); -lean_ctor_set(x_2485, 1, x_2483); -x_2486 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_2475); -x_2487 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2487, 0, x_2475); -lean_ctor_set(x_2487, 1, x_2486); -x_2488 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_2475); -x_2489 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2489, 0, x_2475); -lean_ctor_set(x_2489, 1, x_2488); -lean_inc(x_14); -x_2490 = lean_array_push(x_2482, x_14); -x_2491 = !lean_is_exclusive(x_14); -if (x_2491 == 0) +lean_object* x_2475; uint8_t x_2476; +x_2475 = lean_ctor_get(x_2471, 1); +lean_dec(x_2475); +x_2476 = !lean_is_exclusive(x_2472); +if (x_2476 == 0) { -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; 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; lean_object* x_2514; lean_object* x_2515; lean_object* x_2516; lean_object* x_2517; uint8_t x_2518; lean_object* x_2519; -x_2492 = lean_ctor_get(x_14, 1); -lean_dec(x_2492); -x_2493 = lean_ctor_get(x_14, 0); -lean_dec(x_2493); -lean_ctor_set(x_14, 1, x_2490); -lean_ctor_set(x_14, 0, x_2484); -x_2494 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +lean_object* x_2477; lean_object* x_2478; lean_object* x_2479; uint8_t x_2480; +x_2477 = lean_ctor_get(x_2472, 0); +x_2478 = lean_ctor_get(x_2472, 1); +lean_dec(x_2478); +x_2479 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_2473); +lean_dec(x_5); +x_2480 = !lean_is_exclusive(x_2479); +if (x_2480 == 0) +{ +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; lean_object* x_2496; uint8_t x_2497; +x_2481 = lean_ctor_get(x_2479, 0); +x_2482 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_2481); +x_2483 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2483, 0, x_2481); +lean_ctor_set(x_2483, 1, x_2482); +x_2484 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2485 = lean_array_push(x_2484, x_2463); +x_2486 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_2487 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2487, 0, x_2486); +lean_ctor_set(x_2487, 1, x_2485); +x_2488 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_2489 = lean_array_push(x_2488, x_2487); +x_2490 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_2491 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2491, 0, x_2490); +lean_ctor_set(x_2491, 1, x_2489); +x_2492 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_2481); +x_2493 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2493, 0, x_2481); +lean_ctor_set(x_2493, 1, x_2492); +x_2494 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_2481); x_2495 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2495, 0, x_2475); +lean_ctor_set(x_2495, 0, x_2481); lean_ctor_set(x_2495, 1, x_2494); -x_2496 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_2497 = lean_array_push(x_2496, x_2489); -x_2498 = lean_array_push(x_2497, x_14); -x_2499 = lean_array_push(x_2498, x_2495); -x_2500 = lean_array_push(x_2499, x_2471); -x_2501 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_2502 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2502, 0, x_2501); -lean_ctor_set(x_2502, 1, x_2500); -x_2503 = lean_array_push(x_2482, x_2502); -x_2504 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2504, 0, x_2484); -lean_ctor_set(x_2504, 1, x_2503); -x_2505 = lean_array_push(x_2482, x_2504); -x_2506 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2507 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2507, 0, x_2506); -lean_ctor_set(x_2507, 1, x_2505); -x_2508 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_2509 = lean_array_push(x_2508, x_2477); -x_2510 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_2511 = lean_array_push(x_2509, x_2510); -x_2512 = lean_array_push(x_2511, x_2485); -x_2513 = lean_array_push(x_2512, x_2510); -x_2514 = lean_array_push(x_2513, x_2487); -x_2515 = lean_array_push(x_2514, x_2507); -x_2516 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2517 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2517, 0, x_2516); -lean_ctor_set(x_2517, 1, x_2515); -x_2518 = 1; -x_2519 = lean_box(x_2518); -lean_ctor_set(x_2466, 1, x_2519); -lean_ctor_set(x_2466, 0, x_2517); -lean_ctor_set(x_2473, 0, x_2465); -return x_2473; +lean_inc(x_14); +x_2496 = lean_array_push(x_2488, x_14); +x_2497 = !lean_is_exclusive(x_14); +if (x_2497 == 0) +{ +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; 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; uint8_t x_2524; lean_object* x_2525; +x_2498 = lean_ctor_get(x_14, 1); +lean_dec(x_2498); +x_2499 = lean_ctor_get(x_14, 0); +lean_dec(x_2499); +lean_ctor_set(x_14, 1, x_2496); +lean_ctor_set(x_14, 0, x_2490); +x_2500 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_2501 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2501, 0, x_2481); +lean_ctor_set(x_2501, 1, x_2500); +x_2502 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_2503 = lean_array_push(x_2502, x_2495); +x_2504 = lean_array_push(x_2503, x_14); +x_2505 = lean_array_push(x_2504, x_2501); +x_2506 = lean_array_push(x_2505, x_2477); +x_2507 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2508 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2508, 0, x_2507); +lean_ctor_set(x_2508, 1, x_2506); +x_2509 = lean_array_push(x_2488, x_2508); +x_2510 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2510, 0, x_2490); +lean_ctor_set(x_2510, 1, x_2509); +x_2511 = lean_array_push(x_2488, x_2510); +x_2512 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +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 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_2515 = lean_array_push(x_2514, x_2483); +x_2516 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2517 = lean_array_push(x_2515, x_2516); +x_2518 = lean_array_push(x_2517, x_2491); +x_2519 = lean_array_push(x_2518, x_2516); +x_2520 = lean_array_push(x_2519, x_2493); +x_2521 = lean_array_push(x_2520, x_2513); +x_2522 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2523 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2523, 0, x_2522); +lean_ctor_set(x_2523, 1, x_2521); +x_2524 = 1; +x_2525 = lean_box(x_2524); +lean_ctor_set(x_2472, 1, x_2525); +lean_ctor_set(x_2472, 0, x_2523); +lean_ctor_set(x_2479, 0, x_2471); +return x_2479; } else { -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; uint8_t x_2545; lean_object* x_2546; +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; lean_object* x_2549; lean_object* x_2550; uint8_t x_2551; lean_object* x_2552; lean_dec(x_14); -x_2520 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2520, 0, x_2484); -lean_ctor_set(x_2520, 1, x_2490); -x_2521 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_2522 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2522, 0, x_2475); -lean_ctor_set(x_2522, 1, x_2521); -x_2523 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_2524 = lean_array_push(x_2523, x_2489); -x_2525 = lean_array_push(x_2524, x_2520); -x_2526 = lean_array_push(x_2525, x_2522); -x_2527 = lean_array_push(x_2526, x_2471); -x_2528 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_2529 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2529, 0, x_2528); -lean_ctor_set(x_2529, 1, x_2527); -x_2530 = lean_array_push(x_2482, x_2529); -x_2531 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2531, 0, x_2484); -lean_ctor_set(x_2531, 1, x_2530); -x_2532 = lean_array_push(x_2482, x_2531); -x_2533 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -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 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_2536 = lean_array_push(x_2535, x_2477); -x_2537 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_2538 = lean_array_push(x_2536, x_2537); -x_2539 = lean_array_push(x_2538, x_2485); -x_2540 = lean_array_push(x_2539, x_2537); -x_2541 = lean_array_push(x_2540, x_2487); -x_2542 = lean_array_push(x_2541, x_2534); -x_2543 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2544 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2544, 0, x_2543); -lean_ctor_set(x_2544, 1, x_2542); -x_2545 = 1; -x_2546 = lean_box(x_2545); -lean_ctor_set(x_2466, 1, x_2546); -lean_ctor_set(x_2466, 0, x_2544); -lean_ctor_set(x_2473, 0, x_2465); -return x_2473; +x_2526 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2526, 0, x_2490); +lean_ctor_set(x_2526, 1, x_2496); +x_2527 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_2528 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2528, 0, x_2481); +lean_ctor_set(x_2528, 1, x_2527); +x_2529 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_2530 = lean_array_push(x_2529, x_2495); +x_2531 = lean_array_push(x_2530, x_2526); +x_2532 = lean_array_push(x_2531, x_2528); +x_2533 = lean_array_push(x_2532, x_2477); +x_2534 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2535 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2535, 0, x_2534); +lean_ctor_set(x_2535, 1, x_2533); +x_2536 = lean_array_push(x_2488, x_2535); +x_2537 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2537, 0, x_2490); +lean_ctor_set(x_2537, 1, x_2536); +x_2538 = lean_array_push(x_2488, x_2537); +x_2539 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2540 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2540, 0, x_2539); +lean_ctor_set(x_2540, 1, x_2538); +x_2541 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_2542 = lean_array_push(x_2541, x_2483); +x_2543 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2544 = lean_array_push(x_2542, x_2543); +x_2545 = lean_array_push(x_2544, x_2491); +x_2546 = lean_array_push(x_2545, x_2543); +x_2547 = lean_array_push(x_2546, x_2493); +x_2548 = lean_array_push(x_2547, x_2540); +x_2549 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2550 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2550, 0, x_2549); +lean_ctor_set(x_2550, 1, x_2548); +x_2551 = 1; +x_2552 = lean_box(x_2551); +lean_ctor_set(x_2472, 1, x_2552); +lean_ctor_set(x_2472, 0, x_2550); +lean_ctor_set(x_2479, 0, x_2471); +return x_2479; } } else { -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; 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; -x_2547 = lean_ctor_get(x_2473, 0); -x_2548 = lean_ctor_get(x_2473, 1); -lean_inc(x_2548); -lean_inc(x_2547); -lean_dec(x_2473); -x_2549 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_2547); -x_2550 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2550, 0, x_2547); -lean_ctor_set(x_2550, 1, x_2549); -x_2551 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2552 = lean_array_push(x_2551, x_2457); -x_2553 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_2554 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2554, 0, x_2553); -lean_ctor_set(x_2554, 1, x_2552); -x_2555 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_2556 = lean_array_push(x_2555, x_2554); -x_2557 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_2558 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2558, 0, x_2557); -lean_ctor_set(x_2558, 1, x_2556); -x_2559 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_2547); -x_2560 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2560, 0, x_2547); -lean_ctor_set(x_2560, 1, x_2559); -x_2561 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_2547); -x_2562 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2562, 0, x_2547); -lean_ctor_set(x_2562, 1, x_2561); +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; lean_object* x_2590; lean_object* x_2591; lean_object* x_2592; lean_object* x_2593; lean_object* x_2594; lean_object* x_2595; uint8_t x_2596; lean_object* x_2597; lean_object* x_2598; +x_2553 = lean_ctor_get(x_2479, 0); +x_2554 = lean_ctor_get(x_2479, 1); +lean_inc(x_2554); +lean_inc(x_2553); +lean_dec(x_2479); +x_2555 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_2553); +x_2556 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2556, 0, x_2553); +lean_ctor_set(x_2556, 1, x_2555); +x_2557 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2558 = lean_array_push(x_2557, x_2463); +x_2559 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +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_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_2562 = lean_array_push(x_2561, x_2560); +x_2563 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +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_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_2553); +x_2566 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2566, 0, x_2553); +lean_ctor_set(x_2566, 1, x_2565); +x_2567 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_2553); +x_2568 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2568, 0, x_2553); +lean_ctor_set(x_2568, 1, x_2567); lean_inc(x_14); -x_2563 = lean_array_push(x_2555, x_14); +x_2569 = lean_array_push(x_2561, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_2564 = x_14; + x_2570 = x_14; } else { lean_dec_ref(x_14); - x_2564 = lean_box(0); + x_2570 = lean_box(0); } -if (lean_is_scalar(x_2564)) { - x_2565 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2570)) { + x_2571 = lean_alloc_ctor(1, 2, 0); } else { - x_2565 = x_2564; + x_2571 = x_2570; } -lean_ctor_set(x_2565, 0, x_2557); -lean_ctor_set(x_2565, 1, x_2563); -x_2566 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_2567 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2567, 0, x_2547); -lean_ctor_set(x_2567, 1, x_2566); -x_2568 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_2569 = lean_array_push(x_2568, x_2562); -x_2570 = lean_array_push(x_2569, x_2565); -x_2571 = lean_array_push(x_2570, x_2567); -x_2572 = lean_array_push(x_2571, x_2471); -x_2573 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_2574 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2574, 0, x_2573); -lean_ctor_set(x_2574, 1, x_2572); -x_2575 = lean_array_push(x_2555, x_2574); -x_2576 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2576, 0, x_2557); -lean_ctor_set(x_2576, 1, x_2575); -x_2577 = lean_array_push(x_2555, x_2576); -x_2578 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2579 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2579, 0, x_2578); -lean_ctor_set(x_2579, 1, x_2577); -x_2580 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_2581 = lean_array_push(x_2580, x_2550); -x_2582 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_2583 = lean_array_push(x_2581, x_2582); -x_2584 = lean_array_push(x_2583, x_2558); -x_2585 = lean_array_push(x_2584, x_2582); -x_2586 = lean_array_push(x_2585, x_2560); -x_2587 = lean_array_push(x_2586, x_2579); -x_2588 = l_Lean_Elab_Term_expandFunBinders_loop___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); -lean_ctor_set(x_2466, 1, x_2591); -lean_ctor_set(x_2466, 0, x_2589); -x_2592 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2592, 0, x_2465); -lean_ctor_set(x_2592, 1, x_2548); -return x_2592; +lean_ctor_set(x_2571, 0, x_2563); +lean_ctor_set(x_2571, 1, x_2569); +x_2572 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_2573 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2573, 0, x_2553); +lean_ctor_set(x_2573, 1, x_2572); +x_2574 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_2575 = lean_array_push(x_2574, x_2568); +x_2576 = lean_array_push(x_2575, x_2571); +x_2577 = lean_array_push(x_2576, x_2573); +x_2578 = lean_array_push(x_2577, x_2477); +x_2579 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +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_2561, x_2580); +x_2582 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2582, 0, x_2563); +lean_ctor_set(x_2582, 1, x_2581); +x_2583 = lean_array_push(x_2561, x_2582); +x_2584 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2585 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2585, 0, x_2584); +lean_ctor_set(x_2585, 1, x_2583); +x_2586 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_2587 = lean_array_push(x_2586, x_2556); +x_2588 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2589 = lean_array_push(x_2587, x_2588); +x_2590 = lean_array_push(x_2589, x_2564); +x_2591 = lean_array_push(x_2590, x_2588); +x_2592 = lean_array_push(x_2591, x_2566); +x_2593 = lean_array_push(x_2592, x_2585); +x_2594 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2595 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2595, 0, x_2594); +lean_ctor_set(x_2595, 1, x_2593); +x_2596 = 1; +x_2597 = lean_box(x_2596); +lean_ctor_set(x_2472, 1, x_2597); +lean_ctor_set(x_2472, 0, x_2595); +x_2598 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2598, 0, x_2471); +lean_ctor_set(x_2598, 1, x_2554); +return x_2598; } } else { -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; 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; lean_object* x_2634; lean_object* x_2635; lean_object* x_2636; lean_object* x_2637; lean_object* x_2638; uint8_t x_2639; lean_object* x_2640; lean_object* x_2641; lean_object* x_2642; -x_2593 = lean_ctor_get(x_2466, 0); -lean_inc(x_2593); -lean_dec(x_2466); -x_2594 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_2467); +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; 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; uint8_t x_2645; lean_object* x_2646; lean_object* x_2647; lean_object* x_2648; +x_2599 = lean_ctor_get(x_2472, 0); +lean_inc(x_2599); +lean_dec(x_2472); +x_2600 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_2473); lean_dec(x_5); -x_2595 = lean_ctor_get(x_2594, 0); -lean_inc(x_2595); -x_2596 = lean_ctor_get(x_2594, 1); -lean_inc(x_2596); -if (lean_is_exclusive(x_2594)) { - lean_ctor_release(x_2594, 0); - lean_ctor_release(x_2594, 1); - x_2597 = x_2594; +x_2601 = lean_ctor_get(x_2600, 0); +lean_inc(x_2601); +x_2602 = lean_ctor_get(x_2600, 1); +lean_inc(x_2602); +if (lean_is_exclusive(x_2600)) { + lean_ctor_release(x_2600, 0); + lean_ctor_release(x_2600, 1); + x_2603 = x_2600; } else { - lean_dec_ref(x_2594); - x_2597 = lean_box(0); + lean_dec_ref(x_2600); + x_2603 = lean_box(0); } -x_2598 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_2595); -x_2599 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2599, 0, x_2595); -lean_ctor_set(x_2599, 1, x_2598); -x_2600 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2601 = lean_array_push(x_2600, x_2457); -x_2602 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -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_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_2605 = lean_array_push(x_2604, x_2603); -x_2606 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_2607 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2607, 0, x_2606); -lean_ctor_set(x_2607, 1, x_2605); -x_2608 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_2595); -x_2609 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2609, 0, x_2595); -lean_ctor_set(x_2609, 1, x_2608); -x_2610 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_2595); -x_2611 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2611, 0, x_2595); -lean_ctor_set(x_2611, 1, x_2610); +x_2604 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_2601); +x_2605 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2605, 0, x_2601); +lean_ctor_set(x_2605, 1, x_2604); +x_2606 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2607 = lean_array_push(x_2606, x_2463); +x_2608 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +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_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_2611 = lean_array_push(x_2610, x_2609); +x_2612 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_2613 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2613, 0, x_2612); +lean_ctor_set(x_2613, 1, x_2611); +x_2614 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_2601); +x_2615 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2615, 0, x_2601); +lean_ctor_set(x_2615, 1, x_2614); +x_2616 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_2601); +x_2617 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2617, 0, x_2601); +lean_ctor_set(x_2617, 1, x_2616); lean_inc(x_14); -x_2612 = lean_array_push(x_2604, x_14); +x_2618 = lean_array_push(x_2610, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_2613 = x_14; + x_2619 = x_14; } else { lean_dec_ref(x_14); - x_2613 = lean_box(0); + x_2619 = lean_box(0); } -if (lean_is_scalar(x_2613)) { - x_2614 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2619)) { + x_2620 = lean_alloc_ctor(1, 2, 0); } else { - x_2614 = x_2613; + x_2620 = x_2619; } -lean_ctor_set(x_2614, 0, x_2606); -lean_ctor_set(x_2614, 1, x_2612); -x_2615 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_2616 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2616, 0, x_2595); -lean_ctor_set(x_2616, 1, x_2615); -x_2617 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_2618 = lean_array_push(x_2617, x_2611); -x_2619 = lean_array_push(x_2618, x_2614); -x_2620 = lean_array_push(x_2619, x_2616); -x_2621 = lean_array_push(x_2620, x_2593); -x_2622 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_2623 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2623, 0, x_2622); -lean_ctor_set(x_2623, 1, x_2621); -x_2624 = lean_array_push(x_2604, x_2623); -x_2625 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2625, 0, x_2606); -lean_ctor_set(x_2625, 1, x_2624); -x_2626 = lean_array_push(x_2604, x_2625); -x_2627 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2628 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2628, 0, x_2627); -lean_ctor_set(x_2628, 1, x_2626); -x_2629 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_2630 = lean_array_push(x_2629, x_2599); -x_2631 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_2632 = lean_array_push(x_2630, x_2631); -x_2633 = lean_array_push(x_2632, x_2607); -x_2634 = lean_array_push(x_2633, x_2631); -x_2635 = lean_array_push(x_2634, x_2609); -x_2636 = lean_array_push(x_2635, x_2628); -x_2637 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2638 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2638, 0, x_2637); -lean_ctor_set(x_2638, 1, x_2636); -x_2639 = 1; -x_2640 = lean_box(x_2639); -x_2641 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2641, 0, x_2638); -lean_ctor_set(x_2641, 1, x_2640); -lean_ctor_set(x_2465, 1, x_2641); -if (lean_is_scalar(x_2597)) { - x_2642 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2620, 0, x_2612); +lean_ctor_set(x_2620, 1, x_2618); +x_2621 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_2622 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2622, 0, x_2601); +lean_ctor_set(x_2622, 1, x_2621); +x_2623 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_2624 = lean_array_push(x_2623, x_2617); +x_2625 = lean_array_push(x_2624, x_2620); +x_2626 = lean_array_push(x_2625, x_2622); +x_2627 = lean_array_push(x_2626, x_2599); +x_2628 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2629 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2629, 0, x_2628); +lean_ctor_set(x_2629, 1, x_2627); +x_2630 = lean_array_push(x_2610, x_2629); +x_2631 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2631, 0, x_2612); +lean_ctor_set(x_2631, 1, x_2630); +x_2632 = lean_array_push(x_2610, x_2631); +x_2633 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2634 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2634, 0, x_2633); +lean_ctor_set(x_2634, 1, x_2632); +x_2635 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_2636 = lean_array_push(x_2635, x_2605); +x_2637 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2638 = lean_array_push(x_2636, x_2637); +x_2639 = lean_array_push(x_2638, x_2613); +x_2640 = lean_array_push(x_2639, x_2637); +x_2641 = lean_array_push(x_2640, x_2615); +x_2642 = lean_array_push(x_2641, x_2634); +x_2643 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2644 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2644, 0, x_2643); +lean_ctor_set(x_2644, 1, x_2642); +x_2645 = 1; +x_2646 = lean_box(x_2645); +x_2647 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2647, 0, x_2644); +lean_ctor_set(x_2647, 1, x_2646); +lean_ctor_set(x_2471, 1, x_2647); +if (lean_is_scalar(x_2603)) { + x_2648 = lean_alloc_ctor(0, 2, 0); } else { - x_2642 = x_2597; + x_2648 = x_2603; } -lean_ctor_set(x_2642, 0, x_2465); -lean_ctor_set(x_2642, 1, x_2596); -return x_2642; +lean_ctor_set(x_2648, 0, x_2471); +lean_ctor_set(x_2648, 1, x_2602); +return x_2648; } } else { -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; 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; 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; lean_object* x_2685; lean_object* x_2686; lean_object* x_2687; lean_object* x_2688; lean_object* x_2689; lean_object* x_2690; uint8_t x_2691; lean_object* x_2692; lean_object* x_2693; lean_object* x_2694; lean_object* x_2695; -x_2643 = lean_ctor_get(x_2465, 0); -lean_inc(x_2643); -lean_dec(x_2465); -x_2644 = lean_ctor_get(x_2466, 0); -lean_inc(x_2644); -if (lean_is_exclusive(x_2466)) { - lean_ctor_release(x_2466, 0); - lean_ctor_release(x_2466, 1); - x_2645 = x_2466; +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; 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; 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; 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; lean_object* x_2694; lean_object* x_2695; lean_object* x_2696; uint8_t x_2697; lean_object* x_2698; lean_object* x_2699; lean_object* x_2700; lean_object* x_2701; +x_2649 = lean_ctor_get(x_2471, 0); +lean_inc(x_2649); +lean_dec(x_2471); +x_2650 = lean_ctor_get(x_2472, 0); +lean_inc(x_2650); +if (lean_is_exclusive(x_2472)) { + lean_ctor_release(x_2472, 0); + lean_ctor_release(x_2472, 1); + x_2651 = x_2472; } else { - lean_dec_ref(x_2466); - x_2645 = lean_box(0); + lean_dec_ref(x_2472); + x_2651 = lean_box(0); } -x_2646 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_2467); +x_2652 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_2473); lean_dec(x_5); -x_2647 = lean_ctor_get(x_2646, 0); -lean_inc(x_2647); -x_2648 = lean_ctor_get(x_2646, 1); -lean_inc(x_2648); -if (lean_is_exclusive(x_2646)) { - lean_ctor_release(x_2646, 0); - lean_ctor_release(x_2646, 1); - x_2649 = x_2646; +x_2653 = lean_ctor_get(x_2652, 0); +lean_inc(x_2653); +x_2654 = lean_ctor_get(x_2652, 1); +lean_inc(x_2654); +if (lean_is_exclusive(x_2652)) { + lean_ctor_release(x_2652, 0); + lean_ctor_release(x_2652, 1); + x_2655 = x_2652; } else { - lean_dec_ref(x_2646); - x_2649 = lean_box(0); + lean_dec_ref(x_2652); + x_2655 = lean_box(0); } -x_2650 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_2647); -x_2651 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2651, 0, x_2647); -lean_ctor_set(x_2651, 1, x_2650); -x_2652 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2653 = lean_array_push(x_2652, x_2457); -x_2654 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_2655 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2655, 0, x_2654); -lean_ctor_set(x_2655, 1, x_2653); -x_2656 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_2657 = lean_array_push(x_2656, x_2655); -x_2658 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_2659 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2659, 0, x_2658); -lean_ctor_set(x_2659, 1, x_2657); -x_2660 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_2647); -x_2661 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2661, 0, x_2647); -lean_ctor_set(x_2661, 1, x_2660); -x_2662 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_2647); -x_2663 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2663, 0, x_2647); -lean_ctor_set(x_2663, 1, x_2662); +x_2656 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_2653); +x_2657 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2657, 0, x_2653); +lean_ctor_set(x_2657, 1, x_2656); +x_2658 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2659 = lean_array_push(x_2658, x_2463); +x_2660 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_2661 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2661, 0, x_2660); +lean_ctor_set(x_2661, 1, x_2659); +x_2662 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_2663 = lean_array_push(x_2662, x_2661); +x_2664 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_2665 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2665, 0, x_2664); +lean_ctor_set(x_2665, 1, x_2663); +x_2666 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_2653); +x_2667 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2667, 0, x_2653); +lean_ctor_set(x_2667, 1, x_2666); +x_2668 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_2653); +x_2669 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2669, 0, x_2653); +lean_ctor_set(x_2669, 1, x_2668); lean_inc(x_14); -x_2664 = lean_array_push(x_2656, x_14); +x_2670 = lean_array_push(x_2662, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_2665 = x_14; + x_2671 = x_14; } else { lean_dec_ref(x_14); - x_2665 = lean_box(0); + x_2671 = lean_box(0); } -if (lean_is_scalar(x_2665)) { - x_2666 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2671)) { + x_2672 = lean_alloc_ctor(1, 2, 0); } else { - x_2666 = x_2665; + x_2672 = x_2671; } -lean_ctor_set(x_2666, 0, x_2658); -lean_ctor_set(x_2666, 1, x_2664); -x_2667 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_2668 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2668, 0, x_2647); -lean_ctor_set(x_2668, 1, x_2667); -x_2669 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_2670 = lean_array_push(x_2669, x_2663); -x_2671 = lean_array_push(x_2670, x_2666); -x_2672 = lean_array_push(x_2671, x_2668); -x_2673 = lean_array_push(x_2672, x_2644); -x_2674 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_2675 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2675, 0, x_2674); -lean_ctor_set(x_2675, 1, x_2673); -x_2676 = lean_array_push(x_2656, x_2675); -x_2677 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2677, 0, x_2658); -lean_ctor_set(x_2677, 1, x_2676); -x_2678 = lean_array_push(x_2656, x_2677); -x_2679 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2680 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2680, 0, x_2679); -lean_ctor_set(x_2680, 1, x_2678); -x_2681 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_2682 = lean_array_push(x_2681, x_2651); -x_2683 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_2684 = lean_array_push(x_2682, x_2683); -x_2685 = lean_array_push(x_2684, x_2659); -x_2686 = lean_array_push(x_2685, x_2683); -x_2687 = lean_array_push(x_2686, x_2661); -x_2688 = lean_array_push(x_2687, x_2680); -x_2689 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -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 = 1; -x_2692 = lean_box(x_2691); -if (lean_is_scalar(x_2645)) { - x_2693 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2672, 0, x_2664); +lean_ctor_set(x_2672, 1, x_2670); +x_2673 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_2674 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2674, 0, x_2653); +lean_ctor_set(x_2674, 1, x_2673); +x_2675 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_2676 = lean_array_push(x_2675, x_2669); +x_2677 = lean_array_push(x_2676, x_2672); +x_2678 = lean_array_push(x_2677, x_2674); +x_2679 = lean_array_push(x_2678, x_2650); +x_2680 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2681 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2681, 0, x_2680); +lean_ctor_set(x_2681, 1, x_2679); +x_2682 = lean_array_push(x_2662, x_2681); +x_2683 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2683, 0, x_2664); +lean_ctor_set(x_2683, 1, x_2682); +x_2684 = lean_array_push(x_2662, x_2683); +x_2685 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2686 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2686, 0, x_2685); +lean_ctor_set(x_2686, 1, x_2684); +x_2687 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_2688 = lean_array_push(x_2687, x_2657); +x_2689 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2690 = lean_array_push(x_2688, x_2689); +x_2691 = lean_array_push(x_2690, x_2665); +x_2692 = lean_array_push(x_2691, x_2689); +x_2693 = lean_array_push(x_2692, x_2667); +x_2694 = lean_array_push(x_2693, x_2686); +x_2695 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2696 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2696, 0, x_2695); +lean_ctor_set(x_2696, 1, x_2694); +x_2697 = 1; +x_2698 = lean_box(x_2697); +if (lean_is_scalar(x_2651)) { + x_2699 = lean_alloc_ctor(0, 2, 0); } else { - x_2693 = x_2645; + x_2699 = x_2651; } -lean_ctor_set(x_2693, 0, x_2690); -lean_ctor_set(x_2693, 1, x_2692); -x_2694 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2694, 0, x_2643); -lean_ctor_set(x_2694, 1, x_2693); -if (lean_is_scalar(x_2649)) { - x_2695 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2699, 0, x_2696); +lean_ctor_set(x_2699, 1, x_2698); +x_2700 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2700, 0, x_2649); +lean_ctor_set(x_2700, 1, x_2699); +if (lean_is_scalar(x_2655)) { + x_2701 = lean_alloc_ctor(0, 2, 0); } else { - x_2695 = x_2649; + x_2701 = x_2655; } -lean_ctor_set(x_2695, 0, x_2694); -lean_ctor_set(x_2695, 1, x_2648); -return x_2695; +lean_ctor_set(x_2701, 0, x_2700); +lean_ctor_set(x_2701, 1, x_2654); +return x_2701; } } } 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; uint8_t x_2708; +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; lean_object* x_2712; lean_object* x_2713; uint8_t x_2714; lean_dec(x_225); lean_dec(x_224); lean_dec(x_223); lean_inc(x_5); -x_2696 = l_Lean_Elab_Term_mkFreshIdent___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_14, x_5, x_6); -x_2697 = lean_ctor_get(x_2696, 0); -lean_inc(x_2697); -x_2698 = lean_ctor_get(x_2696, 1); -lean_inc(x_2698); -lean_dec(x_2696); -x_2699 = lean_unsigned_to_nat(1u); -x_2700 = lean_nat_add(x_3, x_2699); +x_2702 = l_Lean_Elab_Term_mkFreshIdent___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_14, x_5, x_6); +x_2703 = lean_ctor_get(x_2702, 0); +lean_inc(x_2703); +x_2704 = lean_ctor_get(x_2702, 1); +lean_inc(x_2704); +lean_dec(x_2702); +x_2705 = lean_unsigned_to_nat(1u); +x_2706 = lean_nat_add(x_3, x_2705); lean_dec(x_3); -x_2701 = l_Lean_mkHole(x_14); -lean_inc(x_2697); -x_2702 = l_Lean_Elab_Term_mkExplicitBinder(x_2697, x_2701); -x_2703 = lean_array_push(x_4, x_2702); +x_2707 = l_Lean_mkHole(x_14); +lean_inc(x_2703); +x_2708 = l_Lean_Elab_Term_mkExplicitBinder(x_2703, x_2707); +x_2709 = lean_array_push(x_4, x_2708); lean_inc(x_5); -x_2704 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_2700, x_2703, x_5, x_2698); -x_2705 = lean_ctor_get(x_2704, 0); -lean_inc(x_2705); -x_2706 = lean_ctor_get(x_2705, 1); -lean_inc(x_2706); -x_2707 = lean_ctor_get(x_2704, 1); -lean_inc(x_2707); -lean_dec(x_2704); -x_2708 = !lean_is_exclusive(x_2705); -if (x_2708 == 0) -{ -lean_object* x_2709; uint8_t x_2710; -x_2709 = lean_ctor_get(x_2705, 1); -lean_dec(x_2709); -x_2710 = !lean_is_exclusive(x_2706); -if (x_2710 == 0) -{ -lean_object* x_2711; lean_object* x_2712; lean_object* x_2713; uint8_t x_2714; -x_2711 = lean_ctor_get(x_2706, 0); -x_2712 = lean_ctor_get(x_2706, 1); -lean_dec(x_2712); -x_2713 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_2707); -lean_dec(x_5); -x_2714 = !lean_is_exclusive(x_2713); +x_2710 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_2706, x_2709, x_5, x_2704); +x_2711 = lean_ctor_get(x_2710, 0); +lean_inc(x_2711); +x_2712 = lean_ctor_get(x_2711, 1); +lean_inc(x_2712); +x_2713 = lean_ctor_get(x_2710, 1); +lean_inc(x_2713); +lean_dec(x_2710); +x_2714 = !lean_is_exclusive(x_2711); if (x_2714 == 0) { -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; uint8_t x_2731; -x_2715 = lean_ctor_get(x_2713, 0); -x_2716 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_2715); -x_2717 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2717, 0, x_2715); -lean_ctor_set(x_2717, 1, x_2716); -x_2718 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2719 = lean_array_push(x_2718, x_2697); -x_2720 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_2721 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2721, 0, x_2720); -lean_ctor_set(x_2721, 1, x_2719); -x_2722 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_2723 = lean_array_push(x_2722, x_2721); -x_2724 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -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 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_2715); -x_2727 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2727, 0, x_2715); -lean_ctor_set(x_2727, 1, x_2726); -x_2728 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_2715); -x_2729 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2729, 0, x_2715); -lean_ctor_set(x_2729, 1, x_2728); -lean_inc(x_14); -x_2730 = lean_array_push(x_2722, x_14); -x_2731 = !lean_is_exclusive(x_14); -if (x_2731 == 0) +lean_object* x_2715; uint8_t x_2716; +x_2715 = lean_ctor_get(x_2711, 1); +lean_dec(x_2715); +x_2716 = !lean_is_exclusive(x_2712); +if (x_2716 == 0) { -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; 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; uint8_t x_2758; lean_object* x_2759; -x_2732 = lean_ctor_get(x_14, 1); -lean_dec(x_2732); -x_2733 = lean_ctor_get(x_14, 0); -lean_dec(x_2733); -lean_ctor_set(x_14, 1, x_2730); -lean_ctor_set(x_14, 0, x_2724); -x_2734 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +lean_object* x_2717; lean_object* x_2718; lean_object* x_2719; uint8_t x_2720; +x_2717 = lean_ctor_get(x_2712, 0); +x_2718 = lean_ctor_get(x_2712, 1); +lean_dec(x_2718); +x_2719 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_2713); +lean_dec(x_5); +x_2720 = !lean_is_exclusive(x_2719); +if (x_2720 == 0) +{ +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; uint8_t x_2737; +x_2721 = lean_ctor_get(x_2719, 0); +x_2722 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_2721); +x_2723 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2723, 0, x_2721); +lean_ctor_set(x_2723, 1, x_2722); +x_2724 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2725 = lean_array_push(x_2724, x_2703); +x_2726 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_2727 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2727, 0, x_2726); +lean_ctor_set(x_2727, 1, x_2725); +x_2728 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_2729 = lean_array_push(x_2728, x_2727); +x_2730 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_2731 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2731, 0, x_2730); +lean_ctor_set(x_2731, 1, x_2729); +x_2732 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_2721); +x_2733 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2733, 0, x_2721); +lean_ctor_set(x_2733, 1, x_2732); +x_2734 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_2721); x_2735 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2735, 0, x_2715); +lean_ctor_set(x_2735, 0, x_2721); lean_ctor_set(x_2735, 1, x_2734); -x_2736 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_2737 = lean_array_push(x_2736, x_2729); -x_2738 = lean_array_push(x_2737, x_14); -x_2739 = lean_array_push(x_2738, x_2735); -x_2740 = lean_array_push(x_2739, x_2711); -x_2741 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_2742 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2742, 0, x_2741); -lean_ctor_set(x_2742, 1, x_2740); -x_2743 = lean_array_push(x_2722, x_2742); -x_2744 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2744, 0, x_2724); -lean_ctor_set(x_2744, 1, x_2743); -x_2745 = lean_array_push(x_2722, x_2744); -x_2746 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2747 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2747, 0, x_2746); -lean_ctor_set(x_2747, 1, x_2745); -x_2748 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_2749 = lean_array_push(x_2748, x_2717); -x_2750 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_2751 = lean_array_push(x_2749, x_2750); -x_2752 = lean_array_push(x_2751, x_2725); -x_2753 = lean_array_push(x_2752, x_2750); -x_2754 = lean_array_push(x_2753, x_2727); -x_2755 = lean_array_push(x_2754, x_2747); -x_2756 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2757 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2757, 0, x_2756); -lean_ctor_set(x_2757, 1, x_2755); -x_2758 = 1; -x_2759 = lean_box(x_2758); -lean_ctor_set(x_2706, 1, x_2759); -lean_ctor_set(x_2706, 0, x_2757); -lean_ctor_set(x_2713, 0, x_2705); -return x_2713; +lean_inc(x_14); +x_2736 = lean_array_push(x_2728, x_14); +x_2737 = !lean_is_exclusive(x_14); +if (x_2737 == 0) +{ +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; 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; uint8_t x_2764; lean_object* x_2765; +x_2738 = lean_ctor_get(x_14, 1); +lean_dec(x_2738); +x_2739 = lean_ctor_get(x_14, 0); +lean_dec(x_2739); +lean_ctor_set(x_14, 1, x_2736); +lean_ctor_set(x_14, 0, x_2730); +x_2740 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_2741 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2741, 0, x_2721); +lean_ctor_set(x_2741, 1, x_2740); +x_2742 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_2743 = lean_array_push(x_2742, x_2735); +x_2744 = lean_array_push(x_2743, x_14); +x_2745 = lean_array_push(x_2744, x_2741); +x_2746 = lean_array_push(x_2745, x_2717); +x_2747 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2748 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2748, 0, x_2747); +lean_ctor_set(x_2748, 1, x_2746); +x_2749 = lean_array_push(x_2728, x_2748); +x_2750 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2750, 0, x_2730); +lean_ctor_set(x_2750, 1, x_2749); +x_2751 = lean_array_push(x_2728, x_2750); +x_2752 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2753 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2753, 0, x_2752); +lean_ctor_set(x_2753, 1, x_2751); +x_2754 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_2755 = lean_array_push(x_2754, x_2723); +x_2756 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2757 = lean_array_push(x_2755, x_2756); +x_2758 = lean_array_push(x_2757, x_2731); +x_2759 = lean_array_push(x_2758, x_2756); +x_2760 = lean_array_push(x_2759, x_2733); +x_2761 = lean_array_push(x_2760, x_2753); +x_2762 = l_Lean_Elab_Term_expandFunBinders_loop___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 = 1; +x_2765 = lean_box(x_2764); +lean_ctor_set(x_2712, 1, x_2765); +lean_ctor_set(x_2712, 0, x_2763); +lean_ctor_set(x_2719, 0, x_2711); +return x_2719; } else { -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; uint8_t x_2785; lean_object* x_2786; +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; lean_object* x_2788; lean_object* x_2789; lean_object* x_2790; uint8_t x_2791; lean_object* x_2792; lean_dec(x_14); -x_2760 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2760, 0, x_2724); -lean_ctor_set(x_2760, 1, x_2730); -x_2761 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_2762 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2762, 0, x_2715); -lean_ctor_set(x_2762, 1, x_2761); -x_2763 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_2764 = lean_array_push(x_2763, x_2729); -x_2765 = lean_array_push(x_2764, x_2760); -x_2766 = lean_array_push(x_2765, x_2762); -x_2767 = lean_array_push(x_2766, x_2711); -x_2768 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_2769 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2769, 0, x_2768); -lean_ctor_set(x_2769, 1, x_2767); -x_2770 = lean_array_push(x_2722, x_2769); -x_2771 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2771, 0, x_2724); -lean_ctor_set(x_2771, 1, x_2770); -x_2772 = lean_array_push(x_2722, x_2771); -x_2773 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2774 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2774, 0, x_2773); -lean_ctor_set(x_2774, 1, x_2772); -x_2775 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_2776 = lean_array_push(x_2775, x_2717); -x_2777 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_2778 = lean_array_push(x_2776, x_2777); -x_2779 = lean_array_push(x_2778, x_2725); -x_2780 = lean_array_push(x_2779, x_2777); -x_2781 = lean_array_push(x_2780, x_2727); -x_2782 = lean_array_push(x_2781, x_2774); -x_2783 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -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 = 1; -x_2786 = lean_box(x_2785); -lean_ctor_set(x_2706, 1, x_2786); -lean_ctor_set(x_2706, 0, x_2784); -lean_ctor_set(x_2713, 0, x_2705); -return x_2713; +x_2766 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2766, 0, x_2730); +lean_ctor_set(x_2766, 1, x_2736); +x_2767 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_2768 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2768, 0, x_2721); +lean_ctor_set(x_2768, 1, x_2767); +x_2769 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_2770 = lean_array_push(x_2769, x_2735); +x_2771 = lean_array_push(x_2770, x_2766); +x_2772 = lean_array_push(x_2771, x_2768); +x_2773 = lean_array_push(x_2772, x_2717); +x_2774 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2775 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2775, 0, x_2774); +lean_ctor_set(x_2775, 1, x_2773); +x_2776 = lean_array_push(x_2728, x_2775); +x_2777 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2777, 0, x_2730); +lean_ctor_set(x_2777, 1, x_2776); +x_2778 = lean_array_push(x_2728, x_2777); +x_2779 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2780 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2780, 0, x_2779); +lean_ctor_set(x_2780, 1, x_2778); +x_2781 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_2782 = lean_array_push(x_2781, x_2723); +x_2783 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2784 = lean_array_push(x_2782, x_2783); +x_2785 = lean_array_push(x_2784, x_2731); +x_2786 = lean_array_push(x_2785, x_2783); +x_2787 = lean_array_push(x_2786, x_2733); +x_2788 = lean_array_push(x_2787, x_2780); +x_2789 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2790 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2790, 0, x_2789); +lean_ctor_set(x_2790, 1, x_2788); +x_2791 = 1; +x_2792 = lean_box(x_2791); +lean_ctor_set(x_2712, 1, x_2792); +lean_ctor_set(x_2712, 0, x_2790); +lean_ctor_set(x_2719, 0, x_2711); +return x_2719; } } else { -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; 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; uint8_t x_2830; lean_object* x_2831; lean_object* x_2832; -x_2787 = lean_ctor_get(x_2713, 0); -x_2788 = lean_ctor_get(x_2713, 1); -lean_inc(x_2788); -lean_inc(x_2787); -lean_dec(x_2713); -x_2789 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_2787); -x_2790 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2790, 0, x_2787); -lean_ctor_set(x_2790, 1, x_2789); -x_2791 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2792 = lean_array_push(x_2791, x_2697); -x_2793 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_2794 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2794, 0, x_2793); -lean_ctor_set(x_2794, 1, x_2792); -x_2795 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_2796 = lean_array_push(x_2795, x_2794); -x_2797 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_2798 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2798, 0, x_2797); -lean_ctor_set(x_2798, 1, x_2796); -x_2799 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_2787); -x_2800 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2800, 0, x_2787); -lean_ctor_set(x_2800, 1, x_2799); -x_2801 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_2787); -x_2802 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2802, 0, x_2787); -lean_ctor_set(x_2802, 1, x_2801); +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; lean_object* x_2832; lean_object* x_2833; lean_object* x_2834; lean_object* x_2835; uint8_t x_2836; lean_object* x_2837; lean_object* x_2838; +x_2793 = lean_ctor_get(x_2719, 0); +x_2794 = lean_ctor_get(x_2719, 1); +lean_inc(x_2794); +lean_inc(x_2793); +lean_dec(x_2719); +x_2795 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_2793); +x_2796 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2796, 0, x_2793); +lean_ctor_set(x_2796, 1, x_2795); +x_2797 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2798 = lean_array_push(x_2797, x_2703); +x_2799 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_2800 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2800, 0, x_2799); +lean_ctor_set(x_2800, 1, x_2798); +x_2801 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_2802 = lean_array_push(x_2801, x_2800); +x_2803 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_2804 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2804, 0, x_2803); +lean_ctor_set(x_2804, 1, x_2802); +x_2805 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_2793); +x_2806 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2806, 0, x_2793); +lean_ctor_set(x_2806, 1, x_2805); +x_2807 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_2793); +x_2808 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2808, 0, x_2793); +lean_ctor_set(x_2808, 1, x_2807); lean_inc(x_14); -x_2803 = lean_array_push(x_2795, x_14); +x_2809 = lean_array_push(x_2801, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_2804 = x_14; + x_2810 = x_14; } else { lean_dec_ref(x_14); - x_2804 = lean_box(0); + x_2810 = lean_box(0); } -if (lean_is_scalar(x_2804)) { - x_2805 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2810)) { + x_2811 = lean_alloc_ctor(1, 2, 0); } else { - x_2805 = x_2804; + x_2811 = x_2810; } -lean_ctor_set(x_2805, 0, x_2797); -lean_ctor_set(x_2805, 1, x_2803); -x_2806 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_2807 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2807, 0, x_2787); -lean_ctor_set(x_2807, 1, x_2806); -x_2808 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_2809 = lean_array_push(x_2808, x_2802); -x_2810 = lean_array_push(x_2809, x_2805); -x_2811 = lean_array_push(x_2810, x_2807); -x_2812 = lean_array_push(x_2811, x_2711); -x_2813 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_2814 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2814, 0, x_2813); -lean_ctor_set(x_2814, 1, x_2812); -x_2815 = lean_array_push(x_2795, x_2814); -x_2816 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2816, 0, x_2797); -lean_ctor_set(x_2816, 1, x_2815); -x_2817 = lean_array_push(x_2795, x_2816); -x_2818 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2819 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2819, 0, x_2818); -lean_ctor_set(x_2819, 1, x_2817); -x_2820 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_2821 = lean_array_push(x_2820, x_2790); -x_2822 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_2823 = lean_array_push(x_2821, x_2822); -x_2824 = lean_array_push(x_2823, x_2798); -x_2825 = lean_array_push(x_2824, x_2822); -x_2826 = lean_array_push(x_2825, x_2800); -x_2827 = lean_array_push(x_2826, x_2819); -x_2828 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2829 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2829, 0, x_2828); -lean_ctor_set(x_2829, 1, x_2827); -x_2830 = 1; -x_2831 = lean_box(x_2830); -lean_ctor_set(x_2706, 1, x_2831); -lean_ctor_set(x_2706, 0, x_2829); -x_2832 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2832, 0, x_2705); -lean_ctor_set(x_2832, 1, x_2788); -return x_2832; +lean_ctor_set(x_2811, 0, x_2803); +lean_ctor_set(x_2811, 1, x_2809); +x_2812 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_2813 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2813, 0, x_2793); +lean_ctor_set(x_2813, 1, x_2812); +x_2814 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_2815 = lean_array_push(x_2814, x_2808); +x_2816 = lean_array_push(x_2815, x_2811); +x_2817 = lean_array_push(x_2816, x_2813); +x_2818 = lean_array_push(x_2817, x_2717); +x_2819 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2820 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2820, 0, x_2819); +lean_ctor_set(x_2820, 1, x_2818); +x_2821 = lean_array_push(x_2801, x_2820); +x_2822 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2822, 0, x_2803); +lean_ctor_set(x_2822, 1, x_2821); +x_2823 = lean_array_push(x_2801, x_2822); +x_2824 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2825 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2825, 0, x_2824); +lean_ctor_set(x_2825, 1, x_2823); +x_2826 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_2827 = lean_array_push(x_2826, x_2796); +x_2828 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2829 = lean_array_push(x_2827, x_2828); +x_2830 = lean_array_push(x_2829, x_2804); +x_2831 = lean_array_push(x_2830, x_2828); +x_2832 = lean_array_push(x_2831, x_2806); +x_2833 = lean_array_push(x_2832, x_2825); +x_2834 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2835 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2835, 0, x_2834); +lean_ctor_set(x_2835, 1, x_2833); +x_2836 = 1; +x_2837 = lean_box(x_2836); +lean_ctor_set(x_2712, 1, x_2837); +lean_ctor_set(x_2712, 0, x_2835); +x_2838 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2838, 0, x_2711); +lean_ctor_set(x_2838, 1, x_2794); +return x_2838; } } else { -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; lean_object* x_2854; lean_object* x_2855; lean_object* x_2856; lean_object* x_2857; 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; lean_object* x_2874; lean_object* x_2875; lean_object* x_2876; lean_object* x_2877; lean_object* x_2878; uint8_t x_2879; lean_object* x_2880; lean_object* x_2881; lean_object* x_2882; -x_2833 = lean_ctor_get(x_2706, 0); -lean_inc(x_2833); -lean_dec(x_2706); -x_2834 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_2707); +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; lean_object* x_2854; lean_object* x_2855; lean_object* x_2856; lean_object* x_2857; 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; lean_object* x_2874; 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; uint8_t x_2885; lean_object* x_2886; lean_object* x_2887; lean_object* x_2888; +x_2839 = lean_ctor_get(x_2712, 0); +lean_inc(x_2839); +lean_dec(x_2712); +x_2840 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_2713); lean_dec(x_5); -x_2835 = lean_ctor_get(x_2834, 0); -lean_inc(x_2835); -x_2836 = lean_ctor_get(x_2834, 1); -lean_inc(x_2836); -if (lean_is_exclusive(x_2834)) { - lean_ctor_release(x_2834, 0); - lean_ctor_release(x_2834, 1); - x_2837 = x_2834; +x_2841 = lean_ctor_get(x_2840, 0); +lean_inc(x_2841); +x_2842 = lean_ctor_get(x_2840, 1); +lean_inc(x_2842); +if (lean_is_exclusive(x_2840)) { + lean_ctor_release(x_2840, 0); + lean_ctor_release(x_2840, 1); + x_2843 = x_2840; } else { - lean_dec_ref(x_2834); - x_2837 = lean_box(0); + lean_dec_ref(x_2840); + x_2843 = lean_box(0); } -x_2838 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_2835); -x_2839 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2839, 0, x_2835); -lean_ctor_set(x_2839, 1, x_2838); -x_2840 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2841 = lean_array_push(x_2840, x_2697); -x_2842 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_2843 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2843, 0, x_2842); -lean_ctor_set(x_2843, 1, x_2841); -x_2844 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_2845 = lean_array_push(x_2844, x_2843); -x_2846 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_2847 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2847, 0, x_2846); -lean_ctor_set(x_2847, 1, x_2845); -x_2848 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_2835); -x_2849 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2849, 0, x_2835); -lean_ctor_set(x_2849, 1, x_2848); -x_2850 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_2835); -x_2851 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2851, 0, x_2835); -lean_ctor_set(x_2851, 1, x_2850); +x_2844 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_2841); +x_2845 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2845, 0, x_2841); +lean_ctor_set(x_2845, 1, x_2844); +x_2846 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2847 = lean_array_push(x_2846, x_2703); +x_2848 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_2849 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2849, 0, x_2848); +lean_ctor_set(x_2849, 1, x_2847); +x_2850 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_2851 = lean_array_push(x_2850, x_2849); +x_2852 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +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 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_2841); +x_2855 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2855, 0, x_2841); +lean_ctor_set(x_2855, 1, x_2854); +x_2856 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_2841); +x_2857 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2857, 0, x_2841); +lean_ctor_set(x_2857, 1, x_2856); lean_inc(x_14); -x_2852 = lean_array_push(x_2844, x_14); +x_2858 = lean_array_push(x_2850, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_2853 = x_14; + x_2859 = x_14; } else { lean_dec_ref(x_14); - x_2853 = lean_box(0); + x_2859 = lean_box(0); } -if (lean_is_scalar(x_2853)) { - x_2854 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2859)) { + x_2860 = lean_alloc_ctor(1, 2, 0); } else { - x_2854 = x_2853; + x_2860 = x_2859; } -lean_ctor_set(x_2854, 0, x_2846); -lean_ctor_set(x_2854, 1, x_2852); -x_2855 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_2856 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2856, 0, x_2835); -lean_ctor_set(x_2856, 1, x_2855); -x_2857 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_2858 = lean_array_push(x_2857, x_2851); -x_2859 = lean_array_push(x_2858, x_2854); -x_2860 = lean_array_push(x_2859, x_2856); -x_2861 = lean_array_push(x_2860, x_2833); -x_2862 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_2863 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2863, 0, x_2862); -lean_ctor_set(x_2863, 1, x_2861); -x_2864 = lean_array_push(x_2844, x_2863); -x_2865 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2865, 0, x_2846); -lean_ctor_set(x_2865, 1, x_2864); -x_2866 = lean_array_push(x_2844, x_2865); -x_2867 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2868 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2868, 0, x_2867); -lean_ctor_set(x_2868, 1, x_2866); -x_2869 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_2870 = lean_array_push(x_2869, x_2839); -x_2871 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_2872 = lean_array_push(x_2870, x_2871); -x_2873 = lean_array_push(x_2872, x_2847); -x_2874 = lean_array_push(x_2873, x_2871); -x_2875 = lean_array_push(x_2874, x_2849); -x_2876 = lean_array_push(x_2875, x_2868); -x_2877 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2878 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2878, 0, x_2877); -lean_ctor_set(x_2878, 1, x_2876); -x_2879 = 1; -x_2880 = lean_box(x_2879); -x_2881 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2881, 0, x_2878); -lean_ctor_set(x_2881, 1, x_2880); -lean_ctor_set(x_2705, 1, x_2881); -if (lean_is_scalar(x_2837)) { - x_2882 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2860, 0, x_2852); +lean_ctor_set(x_2860, 1, x_2858); +x_2861 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_2862 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2862, 0, x_2841); +lean_ctor_set(x_2862, 1, x_2861); +x_2863 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_2864 = lean_array_push(x_2863, x_2857); +x_2865 = lean_array_push(x_2864, x_2860); +x_2866 = lean_array_push(x_2865, x_2862); +x_2867 = lean_array_push(x_2866, x_2839); +x_2868 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2869 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2869, 0, x_2868); +lean_ctor_set(x_2869, 1, x_2867); +x_2870 = lean_array_push(x_2850, x_2869); +x_2871 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2871, 0, x_2852); +lean_ctor_set(x_2871, 1, x_2870); +x_2872 = lean_array_push(x_2850, x_2871); +x_2873 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2874 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2874, 0, x_2873); +lean_ctor_set(x_2874, 1, x_2872); +x_2875 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_2876 = lean_array_push(x_2875, x_2845); +x_2877 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2878 = lean_array_push(x_2876, x_2877); +x_2879 = lean_array_push(x_2878, x_2853); +x_2880 = lean_array_push(x_2879, x_2877); +x_2881 = lean_array_push(x_2880, x_2855); +x_2882 = lean_array_push(x_2881, x_2874); +x_2883 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2884 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2884, 0, x_2883); +lean_ctor_set(x_2884, 1, x_2882); +x_2885 = 1; +x_2886 = lean_box(x_2885); +x_2887 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2887, 0, x_2884); +lean_ctor_set(x_2887, 1, x_2886); +lean_ctor_set(x_2711, 1, x_2887); +if (lean_is_scalar(x_2843)) { + x_2888 = lean_alloc_ctor(0, 2, 0); } else { - x_2882 = x_2837; + x_2888 = x_2843; } -lean_ctor_set(x_2882, 0, x_2705); -lean_ctor_set(x_2882, 1, x_2836); -return x_2882; +lean_ctor_set(x_2888, 0, x_2711); +lean_ctor_set(x_2888, 1, x_2842); +return x_2888; } } else { -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; lean_object* x_2892; lean_object* x_2893; 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; lean_object* x_2910; lean_object* x_2911; 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; uint8_t x_2931; lean_object* x_2932; lean_object* x_2933; lean_object* x_2934; lean_object* x_2935; -x_2883 = lean_ctor_get(x_2705, 0); -lean_inc(x_2883); -lean_dec(x_2705); -x_2884 = lean_ctor_get(x_2706, 0); -lean_inc(x_2884); -if (lean_is_exclusive(x_2706)) { - lean_ctor_release(x_2706, 0); - lean_ctor_release(x_2706, 1); - x_2885 = x_2706; +lean_object* x_2889; lean_object* x_2890; lean_object* x_2891; lean_object* x_2892; lean_object* x_2893; 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; lean_object* x_2910; lean_object* x_2911; 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; uint8_t x_2937; lean_object* x_2938; lean_object* x_2939; lean_object* x_2940; lean_object* x_2941; +x_2889 = lean_ctor_get(x_2711, 0); +lean_inc(x_2889); +lean_dec(x_2711); +x_2890 = lean_ctor_get(x_2712, 0); +lean_inc(x_2890); +if (lean_is_exclusive(x_2712)) { + lean_ctor_release(x_2712, 0); + lean_ctor_release(x_2712, 1); + x_2891 = x_2712; } else { - lean_dec_ref(x_2706); - x_2885 = lean_box(0); + lean_dec_ref(x_2712); + x_2891 = lean_box(0); } -x_2886 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_2707); +x_2892 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_2713); lean_dec(x_5); -x_2887 = lean_ctor_get(x_2886, 0); -lean_inc(x_2887); -x_2888 = lean_ctor_get(x_2886, 1); -lean_inc(x_2888); -if (lean_is_exclusive(x_2886)) { - lean_ctor_release(x_2886, 0); - lean_ctor_release(x_2886, 1); - x_2889 = x_2886; +x_2893 = lean_ctor_get(x_2892, 0); +lean_inc(x_2893); +x_2894 = lean_ctor_get(x_2892, 1); +lean_inc(x_2894); +if (lean_is_exclusive(x_2892)) { + lean_ctor_release(x_2892, 0); + lean_ctor_release(x_2892, 1); + x_2895 = x_2892; } else { - lean_dec_ref(x_2886); - x_2889 = lean_box(0); + lean_dec_ref(x_2892); + x_2895 = lean_box(0); } -x_2890 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_2887); -x_2891 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2891, 0, x_2887); -lean_ctor_set(x_2891, 1, x_2890); -x_2892 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2893 = lean_array_push(x_2892, x_2697); -x_2894 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_2895 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2895, 0, x_2894); -lean_ctor_set(x_2895, 1, x_2893); -x_2896 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_2897 = lean_array_push(x_2896, x_2895); -x_2898 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_2899 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2899, 0, x_2898); -lean_ctor_set(x_2899, 1, x_2897); -x_2900 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_2887); -x_2901 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2901, 0, x_2887); -lean_ctor_set(x_2901, 1, x_2900); -x_2902 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_2887); -x_2903 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2903, 0, x_2887); -lean_ctor_set(x_2903, 1, x_2902); +x_2896 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_2893); +x_2897 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2897, 0, x_2893); +lean_ctor_set(x_2897, 1, x_2896); +x_2898 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2899 = lean_array_push(x_2898, x_2703); +x_2900 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_2901 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2901, 0, x_2900); +lean_ctor_set(x_2901, 1, x_2899); +x_2902 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_2903 = lean_array_push(x_2902, x_2901); +x_2904 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_2905 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2905, 0, x_2904); +lean_ctor_set(x_2905, 1, x_2903); +x_2906 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_2893); +x_2907 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2907, 0, x_2893); +lean_ctor_set(x_2907, 1, x_2906); +x_2908 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_2893); +x_2909 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2909, 0, x_2893); +lean_ctor_set(x_2909, 1, x_2908); lean_inc(x_14); -x_2904 = lean_array_push(x_2896, x_14); +x_2910 = lean_array_push(x_2902, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_2905 = x_14; + x_2911 = x_14; } else { lean_dec_ref(x_14); - x_2905 = lean_box(0); + x_2911 = lean_box(0); } -if (lean_is_scalar(x_2905)) { - x_2906 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_2911)) { + x_2912 = lean_alloc_ctor(1, 2, 0); } else { - x_2906 = x_2905; + x_2912 = x_2911; } -lean_ctor_set(x_2906, 0, x_2898); -lean_ctor_set(x_2906, 1, x_2904); -x_2907 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_2908 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2908, 0, x_2887); -lean_ctor_set(x_2908, 1, x_2907); -x_2909 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_2910 = lean_array_push(x_2909, x_2903); -x_2911 = lean_array_push(x_2910, x_2906); -x_2912 = lean_array_push(x_2911, x_2908); -x_2913 = lean_array_push(x_2912, x_2884); -x_2914 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_2915 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2915, 0, x_2914); -lean_ctor_set(x_2915, 1, x_2913); -x_2916 = lean_array_push(x_2896, x_2915); -x_2917 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2917, 0, x_2898); -lean_ctor_set(x_2917, 1, x_2916); -x_2918 = lean_array_push(x_2896, x_2917); -x_2919 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -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_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_2922 = lean_array_push(x_2921, x_2891); -x_2923 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_2924 = lean_array_push(x_2922, x_2923); -x_2925 = lean_array_push(x_2924, x_2899); -x_2926 = lean_array_push(x_2925, x_2923); -x_2927 = lean_array_push(x_2926, x_2901); -x_2928 = lean_array_push(x_2927, x_2920); -x_2929 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2930 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2930, 0, x_2929); -lean_ctor_set(x_2930, 1, x_2928); -x_2931 = 1; -x_2932 = lean_box(x_2931); -if (lean_is_scalar(x_2885)) { - x_2933 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2912, 0, x_2904); +lean_ctor_set(x_2912, 1, x_2910); +x_2913 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_2914 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2914, 0, x_2893); +lean_ctor_set(x_2914, 1, x_2913); +x_2915 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_2916 = lean_array_push(x_2915, x_2909); +x_2917 = lean_array_push(x_2916, x_2912); +x_2918 = lean_array_push(x_2917, x_2914); +x_2919 = lean_array_push(x_2918, x_2890); +x_2920 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2921 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2921, 0, x_2920); +lean_ctor_set(x_2921, 1, x_2919); +x_2922 = lean_array_push(x_2902, x_2921); +x_2923 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2923, 0, x_2904); +lean_ctor_set(x_2923, 1, x_2922); +x_2924 = lean_array_push(x_2902, x_2923); +x_2925 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2926 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2926, 0, x_2925); +lean_ctor_set(x_2926, 1, x_2924); +x_2927 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_2928 = lean_array_push(x_2927, x_2897); +x_2929 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2930 = lean_array_push(x_2928, x_2929); +x_2931 = lean_array_push(x_2930, x_2905); +x_2932 = lean_array_push(x_2931, x_2929); +x_2933 = lean_array_push(x_2932, x_2907); +x_2934 = lean_array_push(x_2933, x_2926); +x_2935 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2936 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2936, 0, x_2935); +lean_ctor_set(x_2936, 1, x_2934); +x_2937 = 1; +x_2938 = lean_box(x_2937); +if (lean_is_scalar(x_2891)) { + x_2939 = lean_alloc_ctor(0, 2, 0); } else { - x_2933 = x_2885; + x_2939 = x_2891; } -lean_ctor_set(x_2933, 0, x_2930); -lean_ctor_set(x_2933, 1, x_2932); -x_2934 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2934, 0, x_2883); -lean_ctor_set(x_2934, 1, x_2933); -if (lean_is_scalar(x_2889)) { - x_2935 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2939, 0, x_2936); +lean_ctor_set(x_2939, 1, x_2938); +x_2940 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2940, 0, x_2889); +lean_ctor_set(x_2940, 1, x_2939); +if (lean_is_scalar(x_2895)) { + x_2941 = lean_alloc_ctor(0, 2, 0); } else { - x_2935 = x_2889; + x_2941 = x_2895; } -lean_ctor_set(x_2935, 0, x_2934); -lean_ctor_set(x_2935, 1, x_2888); -return x_2935; +lean_ctor_set(x_2941, 0, x_2940); +lean_ctor_set(x_2941, 1, x_2894); +return x_2941; } } } else { -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; lean_object* x_2945; lean_object* x_2946; lean_object* x_2947; uint8_t x_2948; +lean_object* x_2942; lean_object* x_2943; lean_object* x_2944; lean_object* x_2945; lean_object* x_2946; lean_object* x_2947; lean_object* x_2948; lean_object* x_2949; lean_object* x_2950; lean_object* x_2951; lean_object* x_2952; lean_object* x_2953; uint8_t x_2954; lean_dec(x_224); lean_dec(x_223); lean_inc(x_5); -x_2936 = l_Lean_Elab_Term_mkFreshIdent___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_14, x_5, x_6); -x_2937 = lean_ctor_get(x_2936, 0); -lean_inc(x_2937); -x_2938 = lean_ctor_get(x_2936, 1); -lean_inc(x_2938); -lean_dec(x_2936); -x_2939 = lean_unsigned_to_nat(1u); -x_2940 = lean_nat_add(x_3, x_2939); +x_2942 = l_Lean_Elab_Term_mkFreshIdent___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_14, x_5, x_6); +x_2943 = lean_ctor_get(x_2942, 0); +lean_inc(x_2943); +x_2944 = lean_ctor_get(x_2942, 1); +lean_inc(x_2944); +lean_dec(x_2942); +x_2945 = lean_unsigned_to_nat(1u); +x_2946 = lean_nat_add(x_3, x_2945); lean_dec(x_3); -x_2941 = l_Lean_mkHole(x_14); -lean_inc(x_2937); -x_2942 = l_Lean_Elab_Term_mkExplicitBinder(x_2937, x_2941); -x_2943 = lean_array_push(x_4, x_2942); +x_2947 = l_Lean_mkHole(x_14); +lean_inc(x_2943); +x_2948 = l_Lean_Elab_Term_mkExplicitBinder(x_2943, x_2947); +x_2949 = lean_array_push(x_4, x_2948); lean_inc(x_5); -x_2944 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_2940, x_2943, x_5, x_2938); -x_2945 = lean_ctor_get(x_2944, 0); -lean_inc(x_2945); -x_2946 = lean_ctor_get(x_2945, 1); -lean_inc(x_2946); -x_2947 = lean_ctor_get(x_2944, 1); -lean_inc(x_2947); -lean_dec(x_2944); -x_2948 = !lean_is_exclusive(x_2945); -if (x_2948 == 0) -{ -lean_object* x_2949; uint8_t x_2950; -x_2949 = lean_ctor_get(x_2945, 1); -lean_dec(x_2949); -x_2950 = !lean_is_exclusive(x_2946); -if (x_2950 == 0) -{ -lean_object* x_2951; lean_object* x_2952; lean_object* x_2953; uint8_t x_2954; -x_2951 = lean_ctor_get(x_2946, 0); -x_2952 = lean_ctor_get(x_2946, 1); -lean_dec(x_2952); -x_2953 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_2947); -lean_dec(x_5); -x_2954 = !lean_is_exclusive(x_2953); +x_2950 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_2946, x_2949, x_5, x_2944); +x_2951 = lean_ctor_get(x_2950, 0); +lean_inc(x_2951); +x_2952 = lean_ctor_get(x_2951, 1); +lean_inc(x_2952); +x_2953 = lean_ctor_get(x_2950, 1); +lean_inc(x_2953); +lean_dec(x_2950); +x_2954 = !lean_is_exclusive(x_2951); if (x_2954 == 0) { -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; uint8_t x_2971; -x_2955 = lean_ctor_get(x_2953, 0); -x_2956 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_2955); -x_2957 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2957, 0, x_2955); -lean_ctor_set(x_2957, 1, x_2956); -x_2958 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_2959 = lean_array_push(x_2958, x_2937); -x_2960 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -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_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_2963 = lean_array_push(x_2962, x_2961); -x_2964 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_2965 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2965, 0, x_2964); -lean_ctor_set(x_2965, 1, x_2963); -x_2966 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_2955); -x_2967 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2967, 0, x_2955); -lean_ctor_set(x_2967, 1, x_2966); -x_2968 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_2955); -x_2969 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2969, 0, x_2955); -lean_ctor_set(x_2969, 1, x_2968); -lean_inc(x_14); -x_2970 = lean_array_push(x_2962, x_14); -x_2971 = !lean_is_exclusive(x_14); -if (x_2971 == 0) +lean_object* x_2955; uint8_t x_2956; +x_2955 = lean_ctor_get(x_2951, 1); +lean_dec(x_2955); +x_2956 = !lean_is_exclusive(x_2952); +if (x_2956 == 0) { -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; lean_object* x_2986; lean_object* x_2987; lean_object* x_2988; lean_object* x_2989; 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; uint8_t x_2998; lean_object* x_2999; -x_2972 = lean_ctor_get(x_14, 1); -lean_dec(x_2972); -x_2973 = lean_ctor_get(x_14, 0); -lean_dec(x_2973); -lean_ctor_set(x_14, 1, x_2970); -lean_ctor_set(x_14, 0, x_2964); -x_2974 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +lean_object* x_2957; lean_object* x_2958; lean_object* x_2959; uint8_t x_2960; +x_2957 = lean_ctor_get(x_2952, 0); +x_2958 = lean_ctor_get(x_2952, 1); +lean_dec(x_2958); +x_2959 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_2953); +lean_dec(x_5); +x_2960 = !lean_is_exclusive(x_2959); +if (x_2960 == 0) +{ +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; uint8_t x_2977; +x_2961 = lean_ctor_get(x_2959, 0); +x_2962 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_2961); +x_2963 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2963, 0, x_2961); +lean_ctor_set(x_2963, 1, x_2962); +x_2964 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_2965 = lean_array_push(x_2964, x_2943); +x_2966 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_2967 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2967, 0, x_2966); +lean_ctor_set(x_2967, 1, x_2965); +x_2968 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_2969 = lean_array_push(x_2968, x_2967); +x_2970 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_2971 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2971, 0, x_2970); +lean_ctor_set(x_2971, 1, x_2969); +x_2972 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_2961); +x_2973 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2973, 0, x_2961); +lean_ctor_set(x_2973, 1, x_2972); +x_2974 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_2961); x_2975 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2975, 0, x_2955); +lean_ctor_set(x_2975, 0, x_2961); lean_ctor_set(x_2975, 1, x_2974); -x_2976 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_2977 = lean_array_push(x_2976, x_2969); -x_2978 = lean_array_push(x_2977, x_14); -x_2979 = lean_array_push(x_2978, x_2975); -x_2980 = lean_array_push(x_2979, x_2951); -x_2981 = l_Lean_Elab_Term_expandFunBinders_loop___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_2962, x_2982); -x_2984 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2984, 0, x_2964); -lean_ctor_set(x_2984, 1, x_2983); -x_2985 = lean_array_push(x_2962, x_2984); -x_2986 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_2987 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2987, 0, x_2986); -lean_ctor_set(x_2987, 1, x_2985); -x_2988 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_2989 = lean_array_push(x_2988, x_2957); -x_2990 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_2991 = lean_array_push(x_2989, x_2990); -x_2992 = lean_array_push(x_2991, x_2965); -x_2993 = lean_array_push(x_2992, x_2990); -x_2994 = lean_array_push(x_2993, x_2967); -x_2995 = lean_array_push(x_2994, x_2987); -x_2996 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_2997 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2997, 0, x_2996); -lean_ctor_set(x_2997, 1, x_2995); -x_2998 = 1; -x_2999 = lean_box(x_2998); -lean_ctor_set(x_2946, 1, x_2999); -lean_ctor_set(x_2946, 0, x_2997); -lean_ctor_set(x_2953, 0, x_2945); -return x_2953; +lean_inc(x_14); +x_2976 = lean_array_push(x_2968, x_14); +x_2977 = !lean_is_exclusive(x_14); +if (x_2977 == 0) +{ +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; lean_object* x_2986; lean_object* x_2987; lean_object* x_2988; lean_object* x_2989; 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; uint8_t x_3004; lean_object* x_3005; +x_2978 = lean_ctor_get(x_14, 1); +lean_dec(x_2978); +x_2979 = lean_ctor_get(x_14, 0); +lean_dec(x_2979); +lean_ctor_set(x_14, 1, x_2976); +lean_ctor_set(x_14, 0, x_2970); +x_2980 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_2981 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2981, 0, x_2961); +lean_ctor_set(x_2981, 1, x_2980); +x_2982 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_2983 = lean_array_push(x_2982, x_2975); +x_2984 = lean_array_push(x_2983, x_14); +x_2985 = lean_array_push(x_2984, x_2981); +x_2986 = lean_array_push(x_2985, x_2957); +x_2987 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_2988 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2988, 0, x_2987); +lean_ctor_set(x_2988, 1, x_2986); +x_2989 = lean_array_push(x_2968, x_2988); +x_2990 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2990, 0, x_2970); +lean_ctor_set(x_2990, 1, x_2989); +x_2991 = lean_array_push(x_2968, x_2990); +x_2992 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_2993 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2993, 0, x_2992); +lean_ctor_set(x_2993, 1, x_2991); +x_2994 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_2995 = lean_array_push(x_2994, x_2963); +x_2996 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2997 = lean_array_push(x_2995, x_2996); +x_2998 = lean_array_push(x_2997, x_2971); +x_2999 = lean_array_push(x_2998, x_2996); +x_3000 = lean_array_push(x_2999, x_2973); +x_3001 = lean_array_push(x_3000, x_2993); +x_3002 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_3003 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3003, 0, x_3002); +lean_ctor_set(x_3003, 1, x_3001); +x_3004 = 1; +x_3005 = lean_box(x_3004); +lean_ctor_set(x_2952, 1, x_3005); +lean_ctor_set(x_2952, 0, x_3003); +lean_ctor_set(x_2959, 0, x_2951); +return x_2959; } else { -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; uint8_t x_3025; lean_object* x_3026; +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; lean_object* x_3030; uint8_t x_3031; lean_object* x_3032; lean_dec(x_14); -x_3000 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3000, 0, x_2964); -lean_ctor_set(x_3000, 1, x_2970); -x_3001 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_3002 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3002, 0, x_2955); -lean_ctor_set(x_3002, 1, x_3001); -x_3003 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_3004 = lean_array_push(x_3003, x_2969); -x_3005 = lean_array_push(x_3004, x_3000); -x_3006 = lean_array_push(x_3005, x_3002); -x_3007 = lean_array_push(x_3006, x_2951); -x_3008 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_3009 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3009, 0, x_3008); -lean_ctor_set(x_3009, 1, x_3007); -x_3010 = lean_array_push(x_2962, x_3009); -x_3011 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3011, 0, x_2964); -lean_ctor_set(x_3011, 1, x_3010); -x_3012 = lean_array_push(x_2962, x_3011); -x_3013 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_3014 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3014, 0, x_3013); -lean_ctor_set(x_3014, 1, x_3012); -x_3015 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_3016 = lean_array_push(x_3015, x_2957); -x_3017 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_3018 = lean_array_push(x_3016, x_3017); -x_3019 = lean_array_push(x_3018, x_2965); -x_3020 = lean_array_push(x_3019, x_3017); -x_3021 = lean_array_push(x_3020, x_2967); -x_3022 = lean_array_push(x_3021, x_3014); -x_3023 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_3024 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3024, 0, x_3023); -lean_ctor_set(x_3024, 1, x_3022); -x_3025 = 1; -x_3026 = lean_box(x_3025); -lean_ctor_set(x_2946, 1, x_3026); -lean_ctor_set(x_2946, 0, x_3024); -lean_ctor_set(x_2953, 0, x_2945); -return x_2953; +x_3006 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3006, 0, x_2970); +lean_ctor_set(x_3006, 1, x_2976); +x_3007 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_3008 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3008, 0, x_2961); +lean_ctor_set(x_3008, 1, x_3007); +x_3009 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_3010 = lean_array_push(x_3009, x_2975); +x_3011 = lean_array_push(x_3010, x_3006); +x_3012 = lean_array_push(x_3011, x_3008); +x_3013 = lean_array_push(x_3012, x_2957); +x_3014 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_3015 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3015, 0, x_3014); +lean_ctor_set(x_3015, 1, x_3013); +x_3016 = lean_array_push(x_2968, x_3015); +x_3017 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3017, 0, x_2970); +lean_ctor_set(x_3017, 1, x_3016); +x_3018 = lean_array_push(x_2968, x_3017); +x_3019 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +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 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_3022 = lean_array_push(x_3021, x_2963); +x_3023 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_3024 = lean_array_push(x_3022, x_3023); +x_3025 = lean_array_push(x_3024, x_2971); +x_3026 = lean_array_push(x_3025, x_3023); +x_3027 = lean_array_push(x_3026, x_2973); +x_3028 = lean_array_push(x_3027, x_3020); +x_3029 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_3030 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3030, 0, x_3029); +lean_ctor_set(x_3030, 1, x_3028); +x_3031 = 1; +x_3032 = lean_box(x_3031); +lean_ctor_set(x_2952, 1, x_3032); +lean_ctor_set(x_2952, 0, x_3030); +lean_ctor_set(x_2959, 0, x_2951); +return x_2959; } } else { -lean_object* x_3027; lean_object* x_3028; lean_object* x_3029; lean_object* x_3030; lean_object* x_3031; lean_object* x_3032; lean_object* x_3033; lean_object* x_3034; lean_object* x_3035; lean_object* x_3036; lean_object* x_3037; lean_object* x_3038; lean_object* x_3039; lean_object* x_3040; lean_object* x_3041; lean_object* x_3042; lean_object* x_3043; lean_object* x_3044; lean_object* x_3045; lean_object* x_3046; lean_object* x_3047; lean_object* x_3048; lean_object* x_3049; lean_object* x_3050; lean_object* x_3051; lean_object* x_3052; lean_object* x_3053; lean_object* x_3054; lean_object* x_3055; lean_object* x_3056; lean_object* x_3057; lean_object* x_3058; lean_object* x_3059; lean_object* x_3060; lean_object* x_3061; lean_object* x_3062; lean_object* x_3063; lean_object* x_3064; lean_object* x_3065; lean_object* x_3066; lean_object* x_3067; lean_object* x_3068; lean_object* x_3069; uint8_t x_3070; lean_object* x_3071; lean_object* x_3072; -x_3027 = lean_ctor_get(x_2953, 0); -x_3028 = lean_ctor_get(x_2953, 1); -lean_inc(x_3028); -lean_inc(x_3027); -lean_dec(x_2953); -x_3029 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_3027); -x_3030 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3030, 0, x_3027); -lean_ctor_set(x_3030, 1, x_3029); -x_3031 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_3032 = lean_array_push(x_3031, x_2937); -x_3033 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_3034 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3034, 0, x_3033); -lean_ctor_set(x_3034, 1, x_3032); -x_3035 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_3036 = lean_array_push(x_3035, x_3034); -x_3037 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_3038 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3038, 0, x_3037); -lean_ctor_set(x_3038, 1, x_3036); -x_3039 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_3027); -x_3040 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3040, 0, x_3027); -lean_ctor_set(x_3040, 1, x_3039); -x_3041 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_3027); -x_3042 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3042, 0, x_3027); -lean_ctor_set(x_3042, 1, x_3041); +lean_object* x_3033; lean_object* x_3034; lean_object* x_3035; lean_object* x_3036; lean_object* x_3037; lean_object* x_3038; lean_object* x_3039; lean_object* x_3040; lean_object* x_3041; lean_object* x_3042; lean_object* x_3043; lean_object* x_3044; lean_object* x_3045; lean_object* x_3046; lean_object* x_3047; lean_object* x_3048; lean_object* x_3049; lean_object* x_3050; lean_object* x_3051; lean_object* x_3052; lean_object* x_3053; lean_object* x_3054; lean_object* x_3055; lean_object* x_3056; lean_object* x_3057; lean_object* x_3058; lean_object* x_3059; lean_object* x_3060; lean_object* x_3061; lean_object* x_3062; lean_object* x_3063; lean_object* x_3064; lean_object* x_3065; lean_object* x_3066; lean_object* x_3067; lean_object* x_3068; lean_object* x_3069; lean_object* x_3070; lean_object* x_3071; lean_object* x_3072; lean_object* x_3073; lean_object* x_3074; lean_object* x_3075; uint8_t x_3076; lean_object* x_3077; lean_object* x_3078; +x_3033 = lean_ctor_get(x_2959, 0); +x_3034 = lean_ctor_get(x_2959, 1); +lean_inc(x_3034); +lean_inc(x_3033); +lean_dec(x_2959); +x_3035 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_3033); +x_3036 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3036, 0, x_3033); +lean_ctor_set(x_3036, 1, x_3035); +x_3037 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_3038 = lean_array_push(x_3037, x_2943); +x_3039 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_3040 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3040, 0, x_3039); +lean_ctor_set(x_3040, 1, x_3038); +x_3041 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_3042 = lean_array_push(x_3041, x_3040); +x_3043 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_3044 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3044, 0, x_3043); +lean_ctor_set(x_3044, 1, x_3042); +x_3045 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_3033); +x_3046 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3046, 0, x_3033); +lean_ctor_set(x_3046, 1, x_3045); +x_3047 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_3033); +x_3048 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3048, 0, x_3033); +lean_ctor_set(x_3048, 1, x_3047); lean_inc(x_14); -x_3043 = lean_array_push(x_3035, x_14); +x_3049 = lean_array_push(x_3041, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_3044 = x_14; + x_3050 = x_14; } else { lean_dec_ref(x_14); - x_3044 = lean_box(0); + x_3050 = lean_box(0); } -if (lean_is_scalar(x_3044)) { - x_3045 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_3050)) { + x_3051 = lean_alloc_ctor(1, 2, 0); } else { - x_3045 = x_3044; + x_3051 = x_3050; } -lean_ctor_set(x_3045, 0, x_3037); -lean_ctor_set(x_3045, 1, x_3043); -x_3046 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_3047 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3047, 0, x_3027); -lean_ctor_set(x_3047, 1, x_3046); -x_3048 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_3049 = lean_array_push(x_3048, x_3042); -x_3050 = lean_array_push(x_3049, x_3045); -x_3051 = lean_array_push(x_3050, x_3047); -x_3052 = lean_array_push(x_3051, x_2951); -x_3053 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_3054 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3054, 0, x_3053); -lean_ctor_set(x_3054, 1, x_3052); -x_3055 = lean_array_push(x_3035, x_3054); -x_3056 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3056, 0, x_3037); -lean_ctor_set(x_3056, 1, x_3055); -x_3057 = lean_array_push(x_3035, x_3056); -x_3058 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_3059 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3059, 0, x_3058); -lean_ctor_set(x_3059, 1, x_3057); -x_3060 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_3061 = lean_array_push(x_3060, x_3030); -x_3062 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_3063 = lean_array_push(x_3061, x_3062); -x_3064 = lean_array_push(x_3063, x_3038); -x_3065 = lean_array_push(x_3064, x_3062); -x_3066 = lean_array_push(x_3065, x_3040); -x_3067 = lean_array_push(x_3066, x_3059); -x_3068 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_3069 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3069, 0, x_3068); -lean_ctor_set(x_3069, 1, x_3067); -x_3070 = 1; -x_3071 = lean_box(x_3070); -lean_ctor_set(x_2946, 1, x_3071); -lean_ctor_set(x_2946, 0, x_3069); -x_3072 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3072, 0, x_2945); -lean_ctor_set(x_3072, 1, x_3028); -return x_3072; +lean_ctor_set(x_3051, 0, x_3043); +lean_ctor_set(x_3051, 1, x_3049); +x_3052 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_3053 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3053, 0, x_3033); +lean_ctor_set(x_3053, 1, x_3052); +x_3054 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_3055 = lean_array_push(x_3054, x_3048); +x_3056 = lean_array_push(x_3055, x_3051); +x_3057 = lean_array_push(x_3056, x_3053); +x_3058 = lean_array_push(x_3057, x_2957); +x_3059 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_3060 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3060, 0, x_3059); +lean_ctor_set(x_3060, 1, x_3058); +x_3061 = lean_array_push(x_3041, x_3060); +x_3062 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3062, 0, x_3043); +lean_ctor_set(x_3062, 1, x_3061); +x_3063 = lean_array_push(x_3041, x_3062); +x_3064 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_3065 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3065, 0, x_3064); +lean_ctor_set(x_3065, 1, x_3063); +x_3066 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_3067 = lean_array_push(x_3066, x_3036); +x_3068 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_3069 = lean_array_push(x_3067, x_3068); +x_3070 = lean_array_push(x_3069, x_3044); +x_3071 = lean_array_push(x_3070, x_3068); +x_3072 = lean_array_push(x_3071, x_3046); +x_3073 = lean_array_push(x_3072, x_3065); +x_3074 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_3075 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3075, 0, x_3074); +lean_ctor_set(x_3075, 1, x_3073); +x_3076 = 1; +x_3077 = lean_box(x_3076); +lean_ctor_set(x_2952, 1, x_3077); +lean_ctor_set(x_2952, 0, x_3075); +x_3078 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3078, 0, x_2951); +lean_ctor_set(x_3078, 1, x_3034); +return x_3078; } } else { -lean_object* x_3073; lean_object* x_3074; lean_object* x_3075; lean_object* x_3076; lean_object* x_3077; lean_object* x_3078; lean_object* x_3079; lean_object* x_3080; lean_object* x_3081; lean_object* x_3082; lean_object* x_3083; lean_object* x_3084; lean_object* x_3085; lean_object* x_3086; lean_object* x_3087; lean_object* x_3088; lean_object* x_3089; lean_object* x_3090; lean_object* x_3091; lean_object* x_3092; lean_object* x_3093; lean_object* x_3094; lean_object* x_3095; lean_object* x_3096; lean_object* x_3097; lean_object* x_3098; lean_object* x_3099; lean_object* x_3100; lean_object* x_3101; lean_object* x_3102; lean_object* x_3103; lean_object* x_3104; lean_object* x_3105; lean_object* x_3106; lean_object* x_3107; lean_object* x_3108; lean_object* x_3109; lean_object* x_3110; lean_object* x_3111; lean_object* x_3112; lean_object* x_3113; lean_object* x_3114; lean_object* x_3115; lean_object* x_3116; lean_object* x_3117; lean_object* x_3118; uint8_t x_3119; lean_object* x_3120; lean_object* x_3121; lean_object* x_3122; -x_3073 = lean_ctor_get(x_2946, 0); -lean_inc(x_3073); -lean_dec(x_2946); -x_3074 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_2947); +lean_object* x_3079; lean_object* x_3080; lean_object* x_3081; lean_object* x_3082; lean_object* x_3083; lean_object* x_3084; lean_object* x_3085; lean_object* x_3086; lean_object* x_3087; lean_object* x_3088; lean_object* x_3089; lean_object* x_3090; lean_object* x_3091; lean_object* x_3092; lean_object* x_3093; lean_object* x_3094; lean_object* x_3095; lean_object* x_3096; lean_object* x_3097; lean_object* x_3098; lean_object* x_3099; lean_object* x_3100; lean_object* x_3101; lean_object* x_3102; lean_object* x_3103; lean_object* x_3104; lean_object* x_3105; lean_object* x_3106; lean_object* x_3107; lean_object* x_3108; lean_object* x_3109; lean_object* x_3110; lean_object* x_3111; lean_object* x_3112; lean_object* x_3113; lean_object* x_3114; lean_object* x_3115; lean_object* x_3116; lean_object* x_3117; lean_object* x_3118; lean_object* x_3119; lean_object* x_3120; lean_object* x_3121; lean_object* x_3122; lean_object* x_3123; lean_object* x_3124; uint8_t x_3125; lean_object* x_3126; lean_object* x_3127; lean_object* x_3128; +x_3079 = lean_ctor_get(x_2952, 0); +lean_inc(x_3079); +lean_dec(x_2952); +x_3080 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_2953); lean_dec(x_5); -x_3075 = lean_ctor_get(x_3074, 0); -lean_inc(x_3075); -x_3076 = lean_ctor_get(x_3074, 1); -lean_inc(x_3076); -if (lean_is_exclusive(x_3074)) { - lean_ctor_release(x_3074, 0); - lean_ctor_release(x_3074, 1); - x_3077 = x_3074; +x_3081 = lean_ctor_get(x_3080, 0); +lean_inc(x_3081); +x_3082 = lean_ctor_get(x_3080, 1); +lean_inc(x_3082); +if (lean_is_exclusive(x_3080)) { + lean_ctor_release(x_3080, 0); + lean_ctor_release(x_3080, 1); + x_3083 = x_3080; } else { - lean_dec_ref(x_3074); - x_3077 = lean_box(0); + lean_dec_ref(x_3080); + x_3083 = lean_box(0); } -x_3078 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_3075); -x_3079 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3079, 0, x_3075); -lean_ctor_set(x_3079, 1, x_3078); -x_3080 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_3081 = lean_array_push(x_3080, x_2937); -x_3082 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_3083 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3083, 0, x_3082); -lean_ctor_set(x_3083, 1, x_3081); -x_3084 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_3085 = lean_array_push(x_3084, x_3083); -x_3086 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_3087 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3087, 0, x_3086); -lean_ctor_set(x_3087, 1, x_3085); -x_3088 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_3075); -x_3089 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3089, 0, x_3075); -lean_ctor_set(x_3089, 1, x_3088); -x_3090 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_3075); -x_3091 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3091, 0, x_3075); -lean_ctor_set(x_3091, 1, x_3090); +x_3084 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_3081); +x_3085 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3085, 0, x_3081); +lean_ctor_set(x_3085, 1, x_3084); +x_3086 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_3087 = lean_array_push(x_3086, x_2943); +x_3088 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_3089 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3089, 0, x_3088); +lean_ctor_set(x_3089, 1, x_3087); +x_3090 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_3091 = lean_array_push(x_3090, x_3089); +x_3092 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_3093 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3093, 0, x_3092); +lean_ctor_set(x_3093, 1, x_3091); +x_3094 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_3081); +x_3095 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3095, 0, x_3081); +lean_ctor_set(x_3095, 1, x_3094); +x_3096 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_3081); +x_3097 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3097, 0, x_3081); +lean_ctor_set(x_3097, 1, x_3096); lean_inc(x_14); -x_3092 = lean_array_push(x_3084, x_14); +x_3098 = lean_array_push(x_3090, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_3093 = x_14; + x_3099 = x_14; } else { lean_dec_ref(x_14); - x_3093 = lean_box(0); + x_3099 = lean_box(0); } -if (lean_is_scalar(x_3093)) { - x_3094 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_3099)) { + x_3100 = lean_alloc_ctor(1, 2, 0); } else { - x_3094 = x_3093; + x_3100 = x_3099; } -lean_ctor_set(x_3094, 0, x_3086); -lean_ctor_set(x_3094, 1, x_3092); -x_3095 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_3096 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3096, 0, x_3075); -lean_ctor_set(x_3096, 1, x_3095); -x_3097 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_3098 = lean_array_push(x_3097, x_3091); -x_3099 = lean_array_push(x_3098, x_3094); -x_3100 = lean_array_push(x_3099, x_3096); -x_3101 = lean_array_push(x_3100, x_3073); -x_3102 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_3103 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3103, 0, x_3102); -lean_ctor_set(x_3103, 1, x_3101); -x_3104 = lean_array_push(x_3084, x_3103); -x_3105 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3105, 0, x_3086); -lean_ctor_set(x_3105, 1, x_3104); -x_3106 = lean_array_push(x_3084, x_3105); -x_3107 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_3108 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3108, 0, x_3107); -lean_ctor_set(x_3108, 1, x_3106); -x_3109 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_3110 = lean_array_push(x_3109, x_3079); -x_3111 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_3112 = lean_array_push(x_3110, x_3111); -x_3113 = lean_array_push(x_3112, x_3087); -x_3114 = lean_array_push(x_3113, x_3111); -x_3115 = lean_array_push(x_3114, x_3089); -x_3116 = lean_array_push(x_3115, x_3108); -x_3117 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_3118 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3118, 0, x_3117); -lean_ctor_set(x_3118, 1, x_3116); -x_3119 = 1; -x_3120 = lean_box(x_3119); -x_3121 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3121, 0, x_3118); -lean_ctor_set(x_3121, 1, x_3120); -lean_ctor_set(x_2945, 1, x_3121); -if (lean_is_scalar(x_3077)) { - x_3122 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3100, 0, x_3092); +lean_ctor_set(x_3100, 1, x_3098); +x_3101 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_3102 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3102, 0, x_3081); +lean_ctor_set(x_3102, 1, x_3101); +x_3103 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_3104 = lean_array_push(x_3103, x_3097); +x_3105 = lean_array_push(x_3104, x_3100); +x_3106 = lean_array_push(x_3105, x_3102); +x_3107 = lean_array_push(x_3106, x_3079); +x_3108 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_3109 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3109, 0, x_3108); +lean_ctor_set(x_3109, 1, x_3107); +x_3110 = lean_array_push(x_3090, x_3109); +x_3111 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3111, 0, x_3092); +lean_ctor_set(x_3111, 1, x_3110); +x_3112 = lean_array_push(x_3090, x_3111); +x_3113 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_3114 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3114, 0, x_3113); +lean_ctor_set(x_3114, 1, x_3112); +x_3115 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_3116 = lean_array_push(x_3115, x_3085); +x_3117 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_3118 = lean_array_push(x_3116, x_3117); +x_3119 = lean_array_push(x_3118, x_3093); +x_3120 = lean_array_push(x_3119, x_3117); +x_3121 = lean_array_push(x_3120, x_3095); +x_3122 = lean_array_push(x_3121, x_3114); +x_3123 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_3124 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3124, 0, x_3123); +lean_ctor_set(x_3124, 1, x_3122); +x_3125 = 1; +x_3126 = lean_box(x_3125); +x_3127 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3127, 0, x_3124); +lean_ctor_set(x_3127, 1, x_3126); +lean_ctor_set(x_2951, 1, x_3127); +if (lean_is_scalar(x_3083)) { + x_3128 = lean_alloc_ctor(0, 2, 0); } else { - x_3122 = x_3077; + x_3128 = x_3083; } -lean_ctor_set(x_3122, 0, x_2945); -lean_ctor_set(x_3122, 1, x_3076); -return x_3122; +lean_ctor_set(x_3128, 0, x_2951); +lean_ctor_set(x_3128, 1, x_3082); +return x_3128; } } else { -lean_object* x_3123; lean_object* x_3124; lean_object* x_3125; lean_object* x_3126; lean_object* x_3127; lean_object* x_3128; lean_object* x_3129; lean_object* x_3130; lean_object* x_3131; lean_object* x_3132; lean_object* x_3133; lean_object* x_3134; lean_object* x_3135; lean_object* x_3136; lean_object* x_3137; lean_object* x_3138; lean_object* x_3139; lean_object* x_3140; lean_object* x_3141; lean_object* x_3142; lean_object* x_3143; lean_object* x_3144; lean_object* x_3145; lean_object* x_3146; lean_object* x_3147; lean_object* x_3148; lean_object* x_3149; lean_object* x_3150; lean_object* x_3151; lean_object* x_3152; lean_object* x_3153; lean_object* x_3154; lean_object* x_3155; lean_object* x_3156; lean_object* x_3157; lean_object* x_3158; lean_object* x_3159; lean_object* x_3160; lean_object* x_3161; lean_object* x_3162; lean_object* x_3163; lean_object* x_3164; lean_object* x_3165; lean_object* x_3166; lean_object* x_3167; lean_object* x_3168; lean_object* x_3169; lean_object* x_3170; uint8_t x_3171; lean_object* x_3172; lean_object* x_3173; lean_object* x_3174; lean_object* x_3175; -x_3123 = lean_ctor_get(x_2945, 0); -lean_inc(x_3123); -lean_dec(x_2945); -x_3124 = lean_ctor_get(x_2946, 0); -lean_inc(x_3124); -if (lean_is_exclusive(x_2946)) { - lean_ctor_release(x_2946, 0); - lean_ctor_release(x_2946, 1); - x_3125 = x_2946; +lean_object* x_3129; lean_object* x_3130; lean_object* x_3131; lean_object* x_3132; lean_object* x_3133; lean_object* x_3134; lean_object* x_3135; lean_object* x_3136; lean_object* x_3137; lean_object* x_3138; lean_object* x_3139; lean_object* x_3140; lean_object* x_3141; lean_object* x_3142; lean_object* x_3143; lean_object* x_3144; lean_object* x_3145; lean_object* x_3146; lean_object* x_3147; lean_object* x_3148; lean_object* x_3149; lean_object* x_3150; lean_object* x_3151; lean_object* x_3152; lean_object* x_3153; lean_object* x_3154; lean_object* x_3155; lean_object* x_3156; lean_object* x_3157; lean_object* x_3158; lean_object* x_3159; lean_object* x_3160; lean_object* x_3161; lean_object* x_3162; lean_object* x_3163; lean_object* x_3164; lean_object* x_3165; lean_object* x_3166; lean_object* x_3167; lean_object* x_3168; lean_object* x_3169; lean_object* x_3170; lean_object* x_3171; lean_object* x_3172; lean_object* x_3173; lean_object* x_3174; lean_object* x_3175; lean_object* x_3176; uint8_t x_3177; lean_object* x_3178; lean_object* x_3179; lean_object* x_3180; lean_object* x_3181; +x_3129 = lean_ctor_get(x_2951, 0); +lean_inc(x_3129); +lean_dec(x_2951); +x_3130 = lean_ctor_get(x_2952, 0); +lean_inc(x_3130); +if (lean_is_exclusive(x_2952)) { + lean_ctor_release(x_2952, 0); + lean_ctor_release(x_2952, 1); + x_3131 = x_2952; } else { - lean_dec_ref(x_2946); - x_3125 = lean_box(0); + lean_dec_ref(x_2952); + x_3131 = lean_box(0); } -x_3126 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_2947); +x_3132 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_2953); lean_dec(x_5); -x_3127 = lean_ctor_get(x_3126, 0); -lean_inc(x_3127); -x_3128 = lean_ctor_get(x_3126, 1); -lean_inc(x_3128); -if (lean_is_exclusive(x_3126)) { - lean_ctor_release(x_3126, 0); - lean_ctor_release(x_3126, 1); - x_3129 = x_3126; +x_3133 = lean_ctor_get(x_3132, 0); +lean_inc(x_3133); +x_3134 = lean_ctor_get(x_3132, 1); +lean_inc(x_3134); +if (lean_is_exclusive(x_3132)) { + lean_ctor_release(x_3132, 0); + lean_ctor_release(x_3132, 1); + x_3135 = x_3132; } else { - lean_dec_ref(x_3126); - x_3129 = lean_box(0); + lean_dec_ref(x_3132); + x_3135 = lean_box(0); } -x_3130 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_3127); -x_3131 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3131, 0, x_3127); -lean_ctor_set(x_3131, 1, x_3130); -x_3132 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_3133 = lean_array_push(x_3132, x_2937); -x_3134 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_3135 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3135, 0, x_3134); -lean_ctor_set(x_3135, 1, x_3133); -x_3136 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_3137 = lean_array_push(x_3136, x_3135); -x_3138 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_3139 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3139, 0, x_3138); -lean_ctor_set(x_3139, 1, x_3137); -x_3140 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_3127); -x_3141 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3141, 0, x_3127); -lean_ctor_set(x_3141, 1, x_3140); -x_3142 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_3127); -x_3143 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3143, 0, x_3127); -lean_ctor_set(x_3143, 1, x_3142); +x_3136 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_3133); +x_3137 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3137, 0, x_3133); +lean_ctor_set(x_3137, 1, x_3136); +x_3138 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_3139 = lean_array_push(x_3138, x_2943); +x_3140 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_3141 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3141, 0, x_3140); +lean_ctor_set(x_3141, 1, x_3139); +x_3142 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_3143 = lean_array_push(x_3142, x_3141); +x_3144 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_3145 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3145, 0, x_3144); +lean_ctor_set(x_3145, 1, x_3143); +x_3146 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_3133); +x_3147 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3147, 0, x_3133); +lean_ctor_set(x_3147, 1, x_3146); +x_3148 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_3133); +x_3149 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3149, 0, x_3133); +lean_ctor_set(x_3149, 1, x_3148); lean_inc(x_14); -x_3144 = lean_array_push(x_3136, x_14); +x_3150 = lean_array_push(x_3142, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_3145 = x_14; + x_3151 = x_14; } else { lean_dec_ref(x_14); - x_3145 = lean_box(0); + x_3151 = lean_box(0); } -if (lean_is_scalar(x_3145)) { - x_3146 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_3151)) { + x_3152 = lean_alloc_ctor(1, 2, 0); } else { - x_3146 = x_3145; + x_3152 = x_3151; } -lean_ctor_set(x_3146, 0, x_3138); -lean_ctor_set(x_3146, 1, x_3144); -x_3147 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_3148 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3148, 0, x_3127); -lean_ctor_set(x_3148, 1, x_3147); -x_3149 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_3150 = lean_array_push(x_3149, x_3143); -x_3151 = lean_array_push(x_3150, x_3146); -x_3152 = lean_array_push(x_3151, x_3148); -x_3153 = lean_array_push(x_3152, x_3124); -x_3154 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_3155 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3155, 0, x_3154); -lean_ctor_set(x_3155, 1, x_3153); -x_3156 = lean_array_push(x_3136, x_3155); -x_3157 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3157, 0, x_3138); -lean_ctor_set(x_3157, 1, x_3156); -x_3158 = lean_array_push(x_3136, x_3157); -x_3159 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_3160 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3160, 0, x_3159); -lean_ctor_set(x_3160, 1, x_3158); -x_3161 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_3162 = lean_array_push(x_3161, x_3131); -x_3163 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_3164 = lean_array_push(x_3162, x_3163); -x_3165 = lean_array_push(x_3164, x_3139); -x_3166 = lean_array_push(x_3165, x_3163); -x_3167 = lean_array_push(x_3166, x_3141); -x_3168 = lean_array_push(x_3167, x_3160); -x_3169 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_3170 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3170, 0, x_3169); -lean_ctor_set(x_3170, 1, x_3168); -x_3171 = 1; -x_3172 = lean_box(x_3171); -if (lean_is_scalar(x_3125)) { - x_3173 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3152, 0, x_3144); +lean_ctor_set(x_3152, 1, x_3150); +x_3153 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_3154 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3154, 0, x_3133); +lean_ctor_set(x_3154, 1, x_3153); +x_3155 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_3156 = lean_array_push(x_3155, x_3149); +x_3157 = lean_array_push(x_3156, x_3152); +x_3158 = lean_array_push(x_3157, x_3154); +x_3159 = lean_array_push(x_3158, x_3130); +x_3160 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_3161 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3161, 0, x_3160); +lean_ctor_set(x_3161, 1, x_3159); +x_3162 = lean_array_push(x_3142, x_3161); +x_3163 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3163, 0, x_3144); +lean_ctor_set(x_3163, 1, x_3162); +x_3164 = lean_array_push(x_3142, x_3163); +x_3165 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_3166 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3166, 0, x_3165); +lean_ctor_set(x_3166, 1, x_3164); +x_3167 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_3168 = lean_array_push(x_3167, x_3137); +x_3169 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_3170 = lean_array_push(x_3168, x_3169); +x_3171 = lean_array_push(x_3170, x_3145); +x_3172 = lean_array_push(x_3171, x_3169); +x_3173 = lean_array_push(x_3172, x_3147); +x_3174 = lean_array_push(x_3173, x_3166); +x_3175 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_3176 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3176, 0, x_3175); +lean_ctor_set(x_3176, 1, x_3174); +x_3177 = 1; +x_3178 = lean_box(x_3177); +if (lean_is_scalar(x_3131)) { + x_3179 = lean_alloc_ctor(0, 2, 0); } else { - x_3173 = x_3125; + x_3179 = x_3131; } -lean_ctor_set(x_3173, 0, x_3170); -lean_ctor_set(x_3173, 1, x_3172); -x_3174 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3174, 0, x_3123); -lean_ctor_set(x_3174, 1, x_3173); -if (lean_is_scalar(x_3129)) { - x_3175 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3179, 0, x_3176); +lean_ctor_set(x_3179, 1, x_3178); +x_3180 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3180, 0, x_3129); +lean_ctor_set(x_3180, 1, x_3179); +if (lean_is_scalar(x_3135)) { + x_3181 = lean_alloc_ctor(0, 2, 0); } else { - x_3175 = x_3129; + x_3181 = x_3135; } -lean_ctor_set(x_3175, 0, x_3174); -lean_ctor_set(x_3175, 1, x_3128); -return x_3175; +lean_ctor_set(x_3181, 0, x_3180); +lean_ctor_set(x_3181, 1, x_3134); +return x_3181; } } } else { -lean_object* x_3176; lean_object* x_3177; lean_object* x_3178; lean_object* x_3179; lean_object* x_3180; lean_object* x_3181; lean_object* x_3182; lean_object* x_3183; lean_object* x_3184; lean_object* x_3185; lean_object* x_3186; lean_object* x_3187; uint8_t x_3188; +lean_object* x_3182; lean_object* x_3183; lean_object* x_3184; lean_object* x_3185; lean_object* x_3186; lean_object* x_3187; lean_object* x_3188; lean_object* x_3189; lean_object* x_3190; lean_object* x_3191; lean_object* x_3192; lean_object* x_3193; uint8_t x_3194; lean_dec(x_223); lean_inc(x_5); -x_3176 = l_Lean_Elab_Term_mkFreshIdent___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_14, x_5, x_6); -x_3177 = lean_ctor_get(x_3176, 0); -lean_inc(x_3177); -x_3178 = lean_ctor_get(x_3176, 1); -lean_inc(x_3178); -lean_dec(x_3176); -x_3179 = lean_unsigned_to_nat(1u); -x_3180 = lean_nat_add(x_3, x_3179); +x_3182 = l_Lean_Elab_Term_mkFreshIdent___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_14, x_5, x_6); +x_3183 = lean_ctor_get(x_3182, 0); +lean_inc(x_3183); +x_3184 = lean_ctor_get(x_3182, 1); +lean_inc(x_3184); +lean_dec(x_3182); +x_3185 = lean_unsigned_to_nat(1u); +x_3186 = lean_nat_add(x_3, x_3185); lean_dec(x_3); -x_3181 = l_Lean_mkHole(x_14); -lean_inc(x_3177); -x_3182 = l_Lean_Elab_Term_mkExplicitBinder(x_3177, x_3181); -x_3183 = lean_array_push(x_4, x_3182); +x_3187 = l_Lean_mkHole(x_14); +lean_inc(x_3183); +x_3188 = l_Lean_Elab_Term_mkExplicitBinder(x_3183, x_3187); +x_3189 = lean_array_push(x_4, x_3188); lean_inc(x_5); -x_3184 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_3180, x_3183, x_5, x_3178); -x_3185 = lean_ctor_get(x_3184, 0); -lean_inc(x_3185); -x_3186 = lean_ctor_get(x_3185, 1); -lean_inc(x_3186); -x_3187 = lean_ctor_get(x_3184, 1); -lean_inc(x_3187); -lean_dec(x_3184); -x_3188 = !lean_is_exclusive(x_3185); -if (x_3188 == 0) -{ -lean_object* x_3189; uint8_t x_3190; -x_3189 = lean_ctor_get(x_3185, 1); -lean_dec(x_3189); -x_3190 = !lean_is_exclusive(x_3186); -if (x_3190 == 0) -{ -lean_object* x_3191; lean_object* x_3192; lean_object* x_3193; uint8_t x_3194; -x_3191 = lean_ctor_get(x_3186, 0); -x_3192 = lean_ctor_get(x_3186, 1); -lean_dec(x_3192); -x_3193 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_3187); -lean_dec(x_5); -x_3194 = !lean_is_exclusive(x_3193); +x_3190 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_3186, x_3189, x_5, x_3184); +x_3191 = lean_ctor_get(x_3190, 0); +lean_inc(x_3191); +x_3192 = lean_ctor_get(x_3191, 1); +lean_inc(x_3192); +x_3193 = lean_ctor_get(x_3190, 1); +lean_inc(x_3193); +lean_dec(x_3190); +x_3194 = !lean_is_exclusive(x_3191); if (x_3194 == 0) { -lean_object* x_3195; lean_object* x_3196; lean_object* x_3197; lean_object* x_3198; lean_object* x_3199; lean_object* x_3200; lean_object* x_3201; lean_object* x_3202; lean_object* x_3203; lean_object* x_3204; lean_object* x_3205; lean_object* x_3206; lean_object* x_3207; lean_object* x_3208; lean_object* x_3209; lean_object* x_3210; uint8_t x_3211; -x_3195 = lean_ctor_get(x_3193, 0); -x_3196 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_3195); -x_3197 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3197, 0, x_3195); -lean_ctor_set(x_3197, 1, x_3196); -x_3198 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_3199 = lean_array_push(x_3198, x_3177); -x_3200 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_3201 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3201, 0, x_3200); -lean_ctor_set(x_3201, 1, x_3199); -x_3202 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_3203 = lean_array_push(x_3202, x_3201); -x_3204 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_3205 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3205, 0, x_3204); -lean_ctor_set(x_3205, 1, x_3203); -x_3206 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_3195); -x_3207 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3207, 0, x_3195); -lean_ctor_set(x_3207, 1, x_3206); -x_3208 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_3195); -x_3209 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3209, 0, x_3195); -lean_ctor_set(x_3209, 1, x_3208); -lean_inc(x_14); -x_3210 = lean_array_push(x_3202, x_14); -x_3211 = !lean_is_exclusive(x_14); -if (x_3211 == 0) +lean_object* x_3195; uint8_t x_3196; +x_3195 = lean_ctor_get(x_3191, 1); +lean_dec(x_3195); +x_3196 = !lean_is_exclusive(x_3192); +if (x_3196 == 0) { -lean_object* x_3212; lean_object* x_3213; lean_object* x_3214; lean_object* x_3215; lean_object* x_3216; lean_object* x_3217; lean_object* x_3218; lean_object* x_3219; lean_object* x_3220; lean_object* x_3221; lean_object* x_3222; lean_object* x_3223; lean_object* x_3224; lean_object* x_3225; lean_object* x_3226; lean_object* x_3227; lean_object* x_3228; lean_object* x_3229; lean_object* x_3230; lean_object* x_3231; lean_object* x_3232; lean_object* x_3233; lean_object* x_3234; lean_object* x_3235; lean_object* x_3236; lean_object* x_3237; uint8_t x_3238; lean_object* x_3239; -x_3212 = lean_ctor_get(x_14, 1); -lean_dec(x_3212); -x_3213 = lean_ctor_get(x_14, 0); -lean_dec(x_3213); -lean_ctor_set(x_14, 1, x_3210); -lean_ctor_set(x_14, 0, x_3204); -x_3214 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +lean_object* x_3197; lean_object* x_3198; lean_object* x_3199; uint8_t x_3200; +x_3197 = lean_ctor_get(x_3192, 0); +x_3198 = lean_ctor_get(x_3192, 1); +lean_dec(x_3198); +x_3199 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_3193); +lean_dec(x_5); +x_3200 = !lean_is_exclusive(x_3199); +if (x_3200 == 0) +{ +lean_object* x_3201; lean_object* x_3202; lean_object* x_3203; lean_object* x_3204; lean_object* x_3205; lean_object* x_3206; lean_object* x_3207; lean_object* x_3208; lean_object* x_3209; lean_object* x_3210; lean_object* x_3211; lean_object* x_3212; lean_object* x_3213; lean_object* x_3214; lean_object* x_3215; lean_object* x_3216; uint8_t x_3217; +x_3201 = lean_ctor_get(x_3199, 0); +x_3202 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_3201); +x_3203 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3203, 0, x_3201); +lean_ctor_set(x_3203, 1, x_3202); +x_3204 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_3205 = lean_array_push(x_3204, x_3183); +x_3206 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_3207 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3207, 0, x_3206); +lean_ctor_set(x_3207, 1, x_3205); +x_3208 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_3209 = lean_array_push(x_3208, x_3207); +x_3210 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_3211 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3211, 0, x_3210); +lean_ctor_set(x_3211, 1, x_3209); +x_3212 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_3201); +x_3213 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3213, 0, x_3201); +lean_ctor_set(x_3213, 1, x_3212); +x_3214 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_3201); x_3215 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3215, 0, x_3195); +lean_ctor_set(x_3215, 0, x_3201); lean_ctor_set(x_3215, 1, x_3214); -x_3216 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_3217 = lean_array_push(x_3216, x_3209); -x_3218 = lean_array_push(x_3217, x_14); -x_3219 = lean_array_push(x_3218, x_3215); -x_3220 = lean_array_push(x_3219, x_3191); -x_3221 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_3222 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3222, 0, x_3221); -lean_ctor_set(x_3222, 1, x_3220); -x_3223 = lean_array_push(x_3202, x_3222); -x_3224 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3224, 0, x_3204); -lean_ctor_set(x_3224, 1, x_3223); -x_3225 = lean_array_push(x_3202, x_3224); -x_3226 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_3227 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3227, 0, x_3226); -lean_ctor_set(x_3227, 1, x_3225); -x_3228 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_3229 = lean_array_push(x_3228, x_3197); -x_3230 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_3231 = lean_array_push(x_3229, x_3230); -x_3232 = lean_array_push(x_3231, x_3205); -x_3233 = lean_array_push(x_3232, x_3230); -x_3234 = lean_array_push(x_3233, x_3207); -x_3235 = lean_array_push(x_3234, x_3227); -x_3236 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_3237 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3237, 0, x_3236); -lean_ctor_set(x_3237, 1, x_3235); -x_3238 = 1; -x_3239 = lean_box(x_3238); -lean_ctor_set(x_3186, 1, x_3239); -lean_ctor_set(x_3186, 0, x_3237); -lean_ctor_set(x_3193, 0, x_3185); -return x_3193; +lean_inc(x_14); +x_3216 = lean_array_push(x_3208, x_14); +x_3217 = !lean_is_exclusive(x_14); +if (x_3217 == 0) +{ +lean_object* x_3218; lean_object* x_3219; lean_object* x_3220; lean_object* x_3221; lean_object* x_3222; lean_object* x_3223; lean_object* x_3224; lean_object* x_3225; lean_object* x_3226; lean_object* x_3227; lean_object* x_3228; lean_object* x_3229; lean_object* x_3230; lean_object* x_3231; lean_object* x_3232; lean_object* x_3233; lean_object* x_3234; lean_object* x_3235; lean_object* x_3236; lean_object* x_3237; lean_object* x_3238; lean_object* x_3239; lean_object* x_3240; lean_object* x_3241; lean_object* x_3242; lean_object* x_3243; uint8_t x_3244; lean_object* x_3245; +x_3218 = lean_ctor_get(x_14, 1); +lean_dec(x_3218); +x_3219 = lean_ctor_get(x_14, 0); +lean_dec(x_3219); +lean_ctor_set(x_14, 1, x_3216); +lean_ctor_set(x_14, 0, x_3210); +x_3220 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_3221 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3221, 0, x_3201); +lean_ctor_set(x_3221, 1, x_3220); +x_3222 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_3223 = lean_array_push(x_3222, x_3215); +x_3224 = lean_array_push(x_3223, x_14); +x_3225 = lean_array_push(x_3224, x_3221); +x_3226 = lean_array_push(x_3225, x_3197); +x_3227 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_3228 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3228, 0, x_3227); +lean_ctor_set(x_3228, 1, x_3226); +x_3229 = lean_array_push(x_3208, x_3228); +x_3230 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3230, 0, x_3210); +lean_ctor_set(x_3230, 1, x_3229); +x_3231 = lean_array_push(x_3208, x_3230); +x_3232 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_3233 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3233, 0, x_3232); +lean_ctor_set(x_3233, 1, x_3231); +x_3234 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_3235 = lean_array_push(x_3234, x_3203); +x_3236 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_3237 = lean_array_push(x_3235, x_3236); +x_3238 = lean_array_push(x_3237, x_3211); +x_3239 = lean_array_push(x_3238, x_3236); +x_3240 = lean_array_push(x_3239, x_3213); +x_3241 = lean_array_push(x_3240, x_3233); +x_3242 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_3243 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3243, 0, x_3242); +lean_ctor_set(x_3243, 1, x_3241); +x_3244 = 1; +x_3245 = lean_box(x_3244); +lean_ctor_set(x_3192, 1, x_3245); +lean_ctor_set(x_3192, 0, x_3243); +lean_ctor_set(x_3199, 0, x_3191); +return x_3199; } else { -lean_object* x_3240; lean_object* x_3241; lean_object* x_3242; lean_object* x_3243; lean_object* x_3244; lean_object* x_3245; lean_object* x_3246; lean_object* x_3247; lean_object* x_3248; lean_object* x_3249; lean_object* x_3250; lean_object* x_3251; lean_object* x_3252; lean_object* x_3253; lean_object* x_3254; lean_object* x_3255; lean_object* x_3256; lean_object* x_3257; lean_object* x_3258; lean_object* x_3259; lean_object* x_3260; lean_object* x_3261; lean_object* x_3262; lean_object* x_3263; lean_object* x_3264; uint8_t x_3265; lean_object* x_3266; +lean_object* x_3246; lean_object* x_3247; lean_object* x_3248; lean_object* x_3249; lean_object* x_3250; lean_object* x_3251; lean_object* x_3252; lean_object* x_3253; lean_object* x_3254; lean_object* x_3255; lean_object* x_3256; lean_object* x_3257; lean_object* x_3258; lean_object* x_3259; lean_object* x_3260; lean_object* x_3261; lean_object* x_3262; lean_object* x_3263; lean_object* x_3264; lean_object* x_3265; lean_object* x_3266; lean_object* x_3267; lean_object* x_3268; lean_object* x_3269; lean_object* x_3270; uint8_t x_3271; lean_object* x_3272; lean_dec(x_14); -x_3240 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3240, 0, x_3204); -lean_ctor_set(x_3240, 1, x_3210); -x_3241 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_3242 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3242, 0, x_3195); -lean_ctor_set(x_3242, 1, x_3241); -x_3243 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_3244 = lean_array_push(x_3243, x_3209); -x_3245 = lean_array_push(x_3244, x_3240); -x_3246 = lean_array_push(x_3245, x_3242); -x_3247 = lean_array_push(x_3246, x_3191); -x_3248 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_3249 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3249, 0, x_3248); -lean_ctor_set(x_3249, 1, x_3247); -x_3250 = lean_array_push(x_3202, x_3249); -x_3251 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3251, 0, x_3204); -lean_ctor_set(x_3251, 1, x_3250); -x_3252 = lean_array_push(x_3202, x_3251); -x_3253 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_3254 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3254, 0, x_3253); -lean_ctor_set(x_3254, 1, x_3252); -x_3255 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_3256 = lean_array_push(x_3255, x_3197); -x_3257 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_3258 = lean_array_push(x_3256, x_3257); -x_3259 = lean_array_push(x_3258, x_3205); -x_3260 = lean_array_push(x_3259, x_3257); -x_3261 = lean_array_push(x_3260, x_3207); -x_3262 = lean_array_push(x_3261, x_3254); -x_3263 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_3264 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3264, 0, x_3263); -lean_ctor_set(x_3264, 1, x_3262); -x_3265 = 1; -x_3266 = lean_box(x_3265); -lean_ctor_set(x_3186, 1, x_3266); -lean_ctor_set(x_3186, 0, x_3264); -lean_ctor_set(x_3193, 0, x_3185); -return x_3193; +x_3246 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3246, 0, x_3210); +lean_ctor_set(x_3246, 1, x_3216); +x_3247 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_3248 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3248, 0, x_3201); +lean_ctor_set(x_3248, 1, x_3247); +x_3249 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_3250 = lean_array_push(x_3249, x_3215); +x_3251 = lean_array_push(x_3250, x_3246); +x_3252 = lean_array_push(x_3251, x_3248); +x_3253 = lean_array_push(x_3252, x_3197); +x_3254 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_3255 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3255, 0, x_3254); +lean_ctor_set(x_3255, 1, x_3253); +x_3256 = lean_array_push(x_3208, x_3255); +x_3257 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3257, 0, x_3210); +lean_ctor_set(x_3257, 1, x_3256); +x_3258 = lean_array_push(x_3208, x_3257); +x_3259 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_3260 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3260, 0, x_3259); +lean_ctor_set(x_3260, 1, x_3258); +x_3261 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_3262 = lean_array_push(x_3261, x_3203); +x_3263 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_3264 = lean_array_push(x_3262, x_3263); +x_3265 = lean_array_push(x_3264, x_3211); +x_3266 = lean_array_push(x_3265, x_3263); +x_3267 = lean_array_push(x_3266, x_3213); +x_3268 = lean_array_push(x_3267, x_3260); +x_3269 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_3270 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3270, 0, x_3269); +lean_ctor_set(x_3270, 1, x_3268); +x_3271 = 1; +x_3272 = lean_box(x_3271); +lean_ctor_set(x_3192, 1, x_3272); +lean_ctor_set(x_3192, 0, x_3270); +lean_ctor_set(x_3199, 0, x_3191); +return x_3199; } } else { -lean_object* x_3267; lean_object* x_3268; lean_object* x_3269; lean_object* x_3270; lean_object* x_3271; lean_object* x_3272; lean_object* x_3273; lean_object* x_3274; lean_object* x_3275; lean_object* x_3276; lean_object* x_3277; lean_object* x_3278; lean_object* x_3279; lean_object* x_3280; lean_object* x_3281; lean_object* x_3282; lean_object* x_3283; lean_object* x_3284; lean_object* x_3285; lean_object* x_3286; lean_object* x_3287; lean_object* x_3288; lean_object* x_3289; lean_object* x_3290; lean_object* x_3291; lean_object* x_3292; lean_object* x_3293; lean_object* x_3294; lean_object* x_3295; lean_object* x_3296; lean_object* x_3297; lean_object* x_3298; lean_object* x_3299; lean_object* x_3300; lean_object* x_3301; lean_object* x_3302; lean_object* x_3303; lean_object* x_3304; lean_object* x_3305; lean_object* x_3306; lean_object* x_3307; lean_object* x_3308; lean_object* x_3309; uint8_t x_3310; lean_object* x_3311; lean_object* x_3312; -x_3267 = lean_ctor_get(x_3193, 0); -x_3268 = lean_ctor_get(x_3193, 1); -lean_inc(x_3268); -lean_inc(x_3267); -lean_dec(x_3193); -x_3269 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_3267); -x_3270 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3270, 0, x_3267); -lean_ctor_set(x_3270, 1, x_3269); -x_3271 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_3272 = lean_array_push(x_3271, x_3177); -x_3273 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_3274 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3274, 0, x_3273); -lean_ctor_set(x_3274, 1, x_3272); -x_3275 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_3276 = lean_array_push(x_3275, x_3274); -x_3277 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_3278 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3278, 0, x_3277); -lean_ctor_set(x_3278, 1, x_3276); -x_3279 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_3267); -x_3280 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3280, 0, x_3267); -lean_ctor_set(x_3280, 1, x_3279); -x_3281 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_3267); -x_3282 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3282, 0, x_3267); -lean_ctor_set(x_3282, 1, x_3281); +lean_object* x_3273; lean_object* x_3274; lean_object* x_3275; lean_object* x_3276; lean_object* x_3277; lean_object* x_3278; lean_object* x_3279; lean_object* x_3280; lean_object* x_3281; lean_object* x_3282; lean_object* x_3283; lean_object* x_3284; lean_object* x_3285; lean_object* x_3286; lean_object* x_3287; lean_object* x_3288; lean_object* x_3289; lean_object* x_3290; lean_object* x_3291; lean_object* x_3292; lean_object* x_3293; lean_object* x_3294; lean_object* x_3295; lean_object* x_3296; lean_object* x_3297; lean_object* x_3298; lean_object* x_3299; lean_object* x_3300; lean_object* x_3301; lean_object* x_3302; lean_object* x_3303; lean_object* x_3304; lean_object* x_3305; lean_object* x_3306; lean_object* x_3307; lean_object* x_3308; lean_object* x_3309; lean_object* x_3310; lean_object* x_3311; lean_object* x_3312; lean_object* x_3313; lean_object* x_3314; lean_object* x_3315; uint8_t x_3316; lean_object* x_3317; lean_object* x_3318; +x_3273 = lean_ctor_get(x_3199, 0); +x_3274 = lean_ctor_get(x_3199, 1); +lean_inc(x_3274); +lean_inc(x_3273); +lean_dec(x_3199); +x_3275 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_3273); +x_3276 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3276, 0, x_3273); +lean_ctor_set(x_3276, 1, x_3275); +x_3277 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_3278 = lean_array_push(x_3277, x_3183); +x_3279 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_3280 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3280, 0, x_3279); +lean_ctor_set(x_3280, 1, x_3278); +x_3281 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_3282 = lean_array_push(x_3281, x_3280); +x_3283 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_3284 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3284, 0, x_3283); +lean_ctor_set(x_3284, 1, x_3282); +x_3285 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_3273); +x_3286 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3286, 0, x_3273); +lean_ctor_set(x_3286, 1, x_3285); +x_3287 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_3273); +x_3288 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3288, 0, x_3273); +lean_ctor_set(x_3288, 1, x_3287); lean_inc(x_14); -x_3283 = lean_array_push(x_3275, x_14); +x_3289 = lean_array_push(x_3281, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_3284 = x_14; + x_3290 = x_14; } else { lean_dec_ref(x_14); - x_3284 = lean_box(0); + x_3290 = lean_box(0); } -if (lean_is_scalar(x_3284)) { - x_3285 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_3290)) { + x_3291 = lean_alloc_ctor(1, 2, 0); } else { - x_3285 = x_3284; + x_3291 = x_3290; } -lean_ctor_set(x_3285, 0, x_3277); -lean_ctor_set(x_3285, 1, x_3283); -x_3286 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_3287 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3287, 0, x_3267); -lean_ctor_set(x_3287, 1, x_3286); -x_3288 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_3289 = lean_array_push(x_3288, x_3282); -x_3290 = lean_array_push(x_3289, x_3285); -x_3291 = lean_array_push(x_3290, x_3287); -x_3292 = lean_array_push(x_3291, x_3191); -x_3293 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_3294 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3294, 0, x_3293); -lean_ctor_set(x_3294, 1, x_3292); -x_3295 = lean_array_push(x_3275, x_3294); -x_3296 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3296, 0, x_3277); -lean_ctor_set(x_3296, 1, x_3295); -x_3297 = lean_array_push(x_3275, x_3296); -x_3298 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_3299 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3299, 0, x_3298); -lean_ctor_set(x_3299, 1, x_3297); -x_3300 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_3301 = lean_array_push(x_3300, x_3270); -x_3302 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_3303 = lean_array_push(x_3301, x_3302); -x_3304 = lean_array_push(x_3303, x_3278); -x_3305 = lean_array_push(x_3304, x_3302); -x_3306 = lean_array_push(x_3305, x_3280); -x_3307 = lean_array_push(x_3306, x_3299); -x_3308 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_3309 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3309, 0, x_3308); -lean_ctor_set(x_3309, 1, x_3307); -x_3310 = 1; -x_3311 = lean_box(x_3310); -lean_ctor_set(x_3186, 1, x_3311); -lean_ctor_set(x_3186, 0, x_3309); -x_3312 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3312, 0, x_3185); -lean_ctor_set(x_3312, 1, x_3268); -return x_3312; +lean_ctor_set(x_3291, 0, x_3283); +lean_ctor_set(x_3291, 1, x_3289); +x_3292 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_3293 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3293, 0, x_3273); +lean_ctor_set(x_3293, 1, x_3292); +x_3294 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_3295 = lean_array_push(x_3294, x_3288); +x_3296 = lean_array_push(x_3295, x_3291); +x_3297 = lean_array_push(x_3296, x_3293); +x_3298 = lean_array_push(x_3297, x_3197); +x_3299 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_3300 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3300, 0, x_3299); +lean_ctor_set(x_3300, 1, x_3298); +x_3301 = lean_array_push(x_3281, x_3300); +x_3302 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3302, 0, x_3283); +lean_ctor_set(x_3302, 1, x_3301); +x_3303 = lean_array_push(x_3281, x_3302); +x_3304 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_3305 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3305, 0, x_3304); +lean_ctor_set(x_3305, 1, x_3303); +x_3306 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_3307 = lean_array_push(x_3306, x_3276); +x_3308 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_3309 = lean_array_push(x_3307, x_3308); +x_3310 = lean_array_push(x_3309, x_3284); +x_3311 = lean_array_push(x_3310, x_3308); +x_3312 = lean_array_push(x_3311, x_3286); +x_3313 = lean_array_push(x_3312, x_3305); +x_3314 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_3315 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3315, 0, x_3314); +lean_ctor_set(x_3315, 1, x_3313); +x_3316 = 1; +x_3317 = lean_box(x_3316); +lean_ctor_set(x_3192, 1, x_3317); +lean_ctor_set(x_3192, 0, x_3315); +x_3318 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3318, 0, x_3191); +lean_ctor_set(x_3318, 1, x_3274); +return x_3318; } } else { -lean_object* x_3313; lean_object* x_3314; lean_object* x_3315; lean_object* x_3316; lean_object* x_3317; lean_object* x_3318; lean_object* x_3319; lean_object* x_3320; lean_object* x_3321; lean_object* x_3322; lean_object* x_3323; lean_object* x_3324; lean_object* x_3325; lean_object* x_3326; lean_object* x_3327; lean_object* x_3328; lean_object* x_3329; lean_object* x_3330; lean_object* x_3331; lean_object* x_3332; lean_object* x_3333; lean_object* x_3334; lean_object* x_3335; lean_object* x_3336; lean_object* x_3337; lean_object* x_3338; lean_object* x_3339; lean_object* x_3340; lean_object* x_3341; lean_object* x_3342; lean_object* x_3343; lean_object* x_3344; lean_object* x_3345; lean_object* x_3346; lean_object* x_3347; lean_object* x_3348; lean_object* x_3349; lean_object* x_3350; lean_object* x_3351; lean_object* x_3352; lean_object* x_3353; lean_object* x_3354; lean_object* x_3355; lean_object* x_3356; lean_object* x_3357; lean_object* x_3358; uint8_t x_3359; lean_object* x_3360; lean_object* x_3361; lean_object* x_3362; -x_3313 = lean_ctor_get(x_3186, 0); -lean_inc(x_3313); -lean_dec(x_3186); -x_3314 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_3187); +lean_object* x_3319; lean_object* x_3320; lean_object* x_3321; lean_object* x_3322; lean_object* x_3323; lean_object* x_3324; lean_object* x_3325; lean_object* x_3326; lean_object* x_3327; lean_object* x_3328; lean_object* x_3329; lean_object* x_3330; lean_object* x_3331; lean_object* x_3332; lean_object* x_3333; lean_object* x_3334; lean_object* x_3335; lean_object* x_3336; lean_object* x_3337; lean_object* x_3338; lean_object* x_3339; lean_object* x_3340; lean_object* x_3341; lean_object* x_3342; lean_object* x_3343; lean_object* x_3344; lean_object* x_3345; lean_object* x_3346; lean_object* x_3347; lean_object* x_3348; lean_object* x_3349; lean_object* x_3350; lean_object* x_3351; lean_object* x_3352; lean_object* x_3353; lean_object* x_3354; lean_object* x_3355; lean_object* x_3356; lean_object* x_3357; lean_object* x_3358; lean_object* x_3359; lean_object* x_3360; lean_object* x_3361; lean_object* x_3362; lean_object* x_3363; lean_object* x_3364; uint8_t x_3365; lean_object* x_3366; lean_object* x_3367; lean_object* x_3368; +x_3319 = lean_ctor_get(x_3192, 0); +lean_inc(x_3319); +lean_dec(x_3192); +x_3320 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_3193); lean_dec(x_5); -x_3315 = lean_ctor_get(x_3314, 0); -lean_inc(x_3315); -x_3316 = lean_ctor_get(x_3314, 1); -lean_inc(x_3316); -if (lean_is_exclusive(x_3314)) { - lean_ctor_release(x_3314, 0); - lean_ctor_release(x_3314, 1); - x_3317 = x_3314; +x_3321 = lean_ctor_get(x_3320, 0); +lean_inc(x_3321); +x_3322 = lean_ctor_get(x_3320, 1); +lean_inc(x_3322); +if (lean_is_exclusive(x_3320)) { + lean_ctor_release(x_3320, 0); + lean_ctor_release(x_3320, 1); + x_3323 = x_3320; } else { - lean_dec_ref(x_3314); - x_3317 = lean_box(0); + lean_dec_ref(x_3320); + x_3323 = lean_box(0); } -x_3318 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_3315); -x_3319 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3319, 0, x_3315); -lean_ctor_set(x_3319, 1, x_3318); -x_3320 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_3321 = lean_array_push(x_3320, x_3177); -x_3322 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_3323 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3323, 0, x_3322); -lean_ctor_set(x_3323, 1, x_3321); -x_3324 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_3325 = lean_array_push(x_3324, x_3323); -x_3326 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_3327 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3327, 0, x_3326); -lean_ctor_set(x_3327, 1, x_3325); -x_3328 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_3315); -x_3329 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3329, 0, x_3315); -lean_ctor_set(x_3329, 1, x_3328); -x_3330 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_3315); -x_3331 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3331, 0, x_3315); -lean_ctor_set(x_3331, 1, x_3330); +x_3324 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_3321); +x_3325 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3325, 0, x_3321); +lean_ctor_set(x_3325, 1, x_3324); +x_3326 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_3327 = lean_array_push(x_3326, x_3183); +x_3328 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_3329 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3329, 0, x_3328); +lean_ctor_set(x_3329, 1, x_3327); +x_3330 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_3331 = lean_array_push(x_3330, x_3329); +x_3332 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_3333 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3333, 0, x_3332); +lean_ctor_set(x_3333, 1, x_3331); +x_3334 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_3321); +x_3335 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3335, 0, x_3321); +lean_ctor_set(x_3335, 1, x_3334); +x_3336 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_3321); +x_3337 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3337, 0, x_3321); +lean_ctor_set(x_3337, 1, x_3336); lean_inc(x_14); -x_3332 = lean_array_push(x_3324, x_14); +x_3338 = lean_array_push(x_3330, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_3333 = x_14; + x_3339 = x_14; } else { lean_dec_ref(x_14); - x_3333 = lean_box(0); + x_3339 = lean_box(0); } -if (lean_is_scalar(x_3333)) { - x_3334 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_3339)) { + x_3340 = lean_alloc_ctor(1, 2, 0); } else { - x_3334 = x_3333; + x_3340 = x_3339; } -lean_ctor_set(x_3334, 0, x_3326); -lean_ctor_set(x_3334, 1, x_3332); -x_3335 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_3336 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3336, 0, x_3315); -lean_ctor_set(x_3336, 1, x_3335); -x_3337 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_3338 = lean_array_push(x_3337, x_3331); -x_3339 = lean_array_push(x_3338, x_3334); -x_3340 = lean_array_push(x_3339, x_3336); -x_3341 = lean_array_push(x_3340, x_3313); -x_3342 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_3343 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3343, 0, x_3342); -lean_ctor_set(x_3343, 1, x_3341); -x_3344 = lean_array_push(x_3324, x_3343); -x_3345 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3345, 0, x_3326); -lean_ctor_set(x_3345, 1, x_3344); -x_3346 = lean_array_push(x_3324, x_3345); -x_3347 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_3348 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3348, 0, x_3347); -lean_ctor_set(x_3348, 1, x_3346); -x_3349 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_3350 = lean_array_push(x_3349, x_3319); -x_3351 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_3352 = lean_array_push(x_3350, x_3351); -x_3353 = lean_array_push(x_3352, x_3327); -x_3354 = lean_array_push(x_3353, x_3351); -x_3355 = lean_array_push(x_3354, x_3329); -x_3356 = lean_array_push(x_3355, x_3348); -x_3357 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_3358 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3358, 0, x_3357); -lean_ctor_set(x_3358, 1, x_3356); -x_3359 = 1; -x_3360 = lean_box(x_3359); -x_3361 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3361, 0, x_3358); -lean_ctor_set(x_3361, 1, x_3360); -lean_ctor_set(x_3185, 1, x_3361); -if (lean_is_scalar(x_3317)) { - x_3362 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3340, 0, x_3332); +lean_ctor_set(x_3340, 1, x_3338); +x_3341 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_3342 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3342, 0, x_3321); +lean_ctor_set(x_3342, 1, x_3341); +x_3343 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_3344 = lean_array_push(x_3343, x_3337); +x_3345 = lean_array_push(x_3344, x_3340); +x_3346 = lean_array_push(x_3345, x_3342); +x_3347 = lean_array_push(x_3346, x_3319); +x_3348 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_3349 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3349, 0, x_3348); +lean_ctor_set(x_3349, 1, x_3347); +x_3350 = lean_array_push(x_3330, x_3349); +x_3351 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3351, 0, x_3332); +lean_ctor_set(x_3351, 1, x_3350); +x_3352 = lean_array_push(x_3330, x_3351); +x_3353 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_3354 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3354, 0, x_3353); +lean_ctor_set(x_3354, 1, x_3352); +x_3355 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_3356 = lean_array_push(x_3355, x_3325); +x_3357 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_3358 = lean_array_push(x_3356, x_3357); +x_3359 = lean_array_push(x_3358, x_3333); +x_3360 = lean_array_push(x_3359, x_3357); +x_3361 = lean_array_push(x_3360, x_3335); +x_3362 = lean_array_push(x_3361, x_3354); +x_3363 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_3364 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3364, 0, x_3363); +lean_ctor_set(x_3364, 1, x_3362); +x_3365 = 1; +x_3366 = lean_box(x_3365); +x_3367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3367, 0, x_3364); +lean_ctor_set(x_3367, 1, x_3366); +lean_ctor_set(x_3191, 1, x_3367); +if (lean_is_scalar(x_3323)) { + x_3368 = lean_alloc_ctor(0, 2, 0); } else { - x_3362 = x_3317; + x_3368 = x_3323; } -lean_ctor_set(x_3362, 0, x_3185); -lean_ctor_set(x_3362, 1, x_3316); -return x_3362; +lean_ctor_set(x_3368, 0, x_3191); +lean_ctor_set(x_3368, 1, x_3322); +return x_3368; } } else { -lean_object* x_3363; lean_object* x_3364; lean_object* x_3365; lean_object* x_3366; lean_object* x_3367; lean_object* x_3368; lean_object* x_3369; lean_object* x_3370; lean_object* x_3371; lean_object* x_3372; lean_object* x_3373; lean_object* x_3374; lean_object* x_3375; lean_object* x_3376; lean_object* x_3377; lean_object* x_3378; lean_object* x_3379; lean_object* x_3380; lean_object* x_3381; lean_object* x_3382; lean_object* x_3383; lean_object* x_3384; lean_object* x_3385; lean_object* x_3386; lean_object* x_3387; lean_object* x_3388; lean_object* x_3389; lean_object* x_3390; lean_object* x_3391; lean_object* x_3392; lean_object* x_3393; lean_object* x_3394; lean_object* x_3395; lean_object* x_3396; lean_object* x_3397; lean_object* x_3398; lean_object* x_3399; lean_object* x_3400; lean_object* x_3401; lean_object* x_3402; lean_object* x_3403; lean_object* x_3404; lean_object* x_3405; lean_object* x_3406; lean_object* x_3407; lean_object* x_3408; lean_object* x_3409; lean_object* x_3410; uint8_t x_3411; lean_object* x_3412; lean_object* x_3413; lean_object* x_3414; lean_object* x_3415; -x_3363 = lean_ctor_get(x_3185, 0); -lean_inc(x_3363); -lean_dec(x_3185); -x_3364 = lean_ctor_get(x_3186, 0); -lean_inc(x_3364); -if (lean_is_exclusive(x_3186)) { - lean_ctor_release(x_3186, 0); - lean_ctor_release(x_3186, 1); - x_3365 = x_3186; +lean_object* x_3369; lean_object* x_3370; lean_object* x_3371; lean_object* x_3372; lean_object* x_3373; lean_object* x_3374; lean_object* x_3375; lean_object* x_3376; lean_object* x_3377; lean_object* x_3378; lean_object* x_3379; lean_object* x_3380; lean_object* x_3381; lean_object* x_3382; lean_object* x_3383; lean_object* x_3384; lean_object* x_3385; lean_object* x_3386; lean_object* x_3387; lean_object* x_3388; lean_object* x_3389; lean_object* x_3390; lean_object* x_3391; lean_object* x_3392; lean_object* x_3393; lean_object* x_3394; lean_object* x_3395; lean_object* x_3396; lean_object* x_3397; lean_object* x_3398; lean_object* x_3399; lean_object* x_3400; lean_object* x_3401; lean_object* x_3402; lean_object* x_3403; lean_object* x_3404; lean_object* x_3405; lean_object* x_3406; lean_object* x_3407; lean_object* x_3408; lean_object* x_3409; lean_object* x_3410; lean_object* x_3411; lean_object* x_3412; lean_object* x_3413; lean_object* x_3414; lean_object* x_3415; lean_object* x_3416; uint8_t x_3417; lean_object* x_3418; lean_object* x_3419; lean_object* x_3420; lean_object* x_3421; +x_3369 = lean_ctor_get(x_3191, 0); +lean_inc(x_3369); +lean_dec(x_3191); +x_3370 = lean_ctor_get(x_3192, 0); +lean_inc(x_3370); +if (lean_is_exclusive(x_3192)) { + lean_ctor_release(x_3192, 0); + lean_ctor_release(x_3192, 1); + x_3371 = x_3192; } else { - lean_dec_ref(x_3186); - x_3365 = lean_box(0); + lean_dec_ref(x_3192); + x_3371 = lean_box(0); } -x_3366 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_3187); +x_3372 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_3193); lean_dec(x_5); -x_3367 = lean_ctor_get(x_3366, 0); -lean_inc(x_3367); -x_3368 = lean_ctor_get(x_3366, 1); -lean_inc(x_3368); -if (lean_is_exclusive(x_3366)) { - lean_ctor_release(x_3366, 0); - lean_ctor_release(x_3366, 1); - x_3369 = x_3366; +x_3373 = lean_ctor_get(x_3372, 0); +lean_inc(x_3373); +x_3374 = lean_ctor_get(x_3372, 1); +lean_inc(x_3374); +if (lean_is_exclusive(x_3372)) { + lean_ctor_release(x_3372, 0); + lean_ctor_release(x_3372, 1); + x_3375 = x_3372; } else { - lean_dec_ref(x_3366); - x_3369 = lean_box(0); + lean_dec_ref(x_3372); + x_3375 = lean_box(0); } -x_3370 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_3367); -x_3371 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3371, 0, x_3367); -lean_ctor_set(x_3371, 1, x_3370); -x_3372 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_3373 = lean_array_push(x_3372, x_3177); -x_3374 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_3375 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3375, 0, x_3374); -lean_ctor_set(x_3375, 1, x_3373); -x_3376 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_3377 = lean_array_push(x_3376, x_3375); -x_3378 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_3379 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3379, 0, x_3378); -lean_ctor_set(x_3379, 1, x_3377); -x_3380 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_3367); -x_3381 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3381, 0, x_3367); -lean_ctor_set(x_3381, 1, x_3380); -x_3382 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_3367); -x_3383 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3383, 0, x_3367); -lean_ctor_set(x_3383, 1, x_3382); +x_3376 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_3373); +x_3377 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3377, 0, x_3373); +lean_ctor_set(x_3377, 1, x_3376); +x_3378 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_3379 = lean_array_push(x_3378, x_3183); +x_3380 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_3381 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3381, 0, x_3380); +lean_ctor_set(x_3381, 1, x_3379); +x_3382 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_3383 = lean_array_push(x_3382, x_3381); +x_3384 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_3385 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3385, 0, x_3384); +lean_ctor_set(x_3385, 1, x_3383); +x_3386 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_3373); +x_3387 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3387, 0, x_3373); +lean_ctor_set(x_3387, 1, x_3386); +x_3388 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_3373); +x_3389 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3389, 0, x_3373); +lean_ctor_set(x_3389, 1, x_3388); lean_inc(x_14); -x_3384 = lean_array_push(x_3376, x_14); +x_3390 = lean_array_push(x_3382, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_3385 = x_14; + x_3391 = x_14; } else { lean_dec_ref(x_14); - x_3385 = lean_box(0); + x_3391 = lean_box(0); } -if (lean_is_scalar(x_3385)) { - x_3386 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_3391)) { + x_3392 = lean_alloc_ctor(1, 2, 0); } else { - x_3386 = x_3385; + x_3392 = x_3391; } -lean_ctor_set(x_3386, 0, x_3378); -lean_ctor_set(x_3386, 1, x_3384); -x_3387 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_3388 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3388, 0, x_3367); -lean_ctor_set(x_3388, 1, x_3387); -x_3389 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_3390 = lean_array_push(x_3389, x_3383); -x_3391 = lean_array_push(x_3390, x_3386); -x_3392 = lean_array_push(x_3391, x_3388); -x_3393 = lean_array_push(x_3392, x_3364); -x_3394 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_3395 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3395, 0, x_3394); -lean_ctor_set(x_3395, 1, x_3393); -x_3396 = lean_array_push(x_3376, x_3395); -x_3397 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3397, 0, x_3378); -lean_ctor_set(x_3397, 1, x_3396); -x_3398 = lean_array_push(x_3376, x_3397); -x_3399 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_3400 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3400, 0, x_3399); -lean_ctor_set(x_3400, 1, x_3398); -x_3401 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_3402 = lean_array_push(x_3401, x_3371); -x_3403 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_3404 = lean_array_push(x_3402, x_3403); -x_3405 = lean_array_push(x_3404, x_3379); -x_3406 = lean_array_push(x_3405, x_3403); -x_3407 = lean_array_push(x_3406, x_3381); -x_3408 = lean_array_push(x_3407, x_3400); -x_3409 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_3410 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3410, 0, x_3409); -lean_ctor_set(x_3410, 1, x_3408); -x_3411 = 1; -x_3412 = lean_box(x_3411); -if (lean_is_scalar(x_3365)) { - x_3413 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3392, 0, x_3384); +lean_ctor_set(x_3392, 1, x_3390); +x_3393 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_3394 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3394, 0, x_3373); +lean_ctor_set(x_3394, 1, x_3393); +x_3395 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_3396 = lean_array_push(x_3395, x_3389); +x_3397 = lean_array_push(x_3396, x_3392); +x_3398 = lean_array_push(x_3397, x_3394); +x_3399 = lean_array_push(x_3398, x_3370); +x_3400 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_3401 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3401, 0, x_3400); +lean_ctor_set(x_3401, 1, x_3399); +x_3402 = lean_array_push(x_3382, x_3401); +x_3403 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3403, 0, x_3384); +lean_ctor_set(x_3403, 1, x_3402); +x_3404 = lean_array_push(x_3382, x_3403); +x_3405 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_3406 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3406, 0, x_3405); +lean_ctor_set(x_3406, 1, x_3404); +x_3407 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_3408 = lean_array_push(x_3407, x_3377); +x_3409 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_3410 = lean_array_push(x_3408, x_3409); +x_3411 = lean_array_push(x_3410, x_3385); +x_3412 = lean_array_push(x_3411, x_3409); +x_3413 = lean_array_push(x_3412, x_3387); +x_3414 = lean_array_push(x_3413, x_3406); +x_3415 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_3416 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3416, 0, x_3415); +lean_ctor_set(x_3416, 1, x_3414); +x_3417 = 1; +x_3418 = lean_box(x_3417); +if (lean_is_scalar(x_3371)) { + x_3419 = lean_alloc_ctor(0, 2, 0); } else { - x_3413 = x_3365; + x_3419 = x_3371; } -lean_ctor_set(x_3413, 0, x_3410); -lean_ctor_set(x_3413, 1, x_3412); -x_3414 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3414, 0, x_3363); -lean_ctor_set(x_3414, 1, x_3413); -if (lean_is_scalar(x_3369)) { - x_3415 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3419, 0, x_3416); +lean_ctor_set(x_3419, 1, x_3418); +x_3420 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3420, 0, x_3369); +lean_ctor_set(x_3420, 1, x_3419); +if (lean_is_scalar(x_3375)) { + x_3421 = lean_alloc_ctor(0, 2, 0); } else { - x_3415 = x_3369; + x_3421 = x_3375; } -lean_ctor_set(x_3415, 0, x_3414); -lean_ctor_set(x_3415, 1, x_3368); -return x_3415; +lean_ctor_set(x_3421, 0, x_3420); +lean_ctor_set(x_3421, 1, x_3374); +return x_3421; } } } case 2: { -lean_object* x_3416; lean_object* x_3417; lean_object* x_3418; lean_object* x_3419; lean_object* x_3420; lean_object* x_3421; lean_object* x_3422; lean_object* x_3423; lean_object* x_3424; lean_object* x_3425; lean_object* x_3426; lean_object* x_3427; uint8_t x_3428; +lean_object* x_3422; lean_object* x_3423; lean_object* x_3424; lean_object* x_3425; lean_object* x_3426; lean_object* x_3427; lean_object* x_3428; lean_object* x_3429; lean_object* x_3430; lean_object* x_3431; lean_object* x_3432; lean_object* x_3433; uint8_t x_3434; lean_inc(x_5); -x_3416 = l_Lean_Elab_Term_mkFreshIdent___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_14, x_5, x_6); -x_3417 = lean_ctor_get(x_3416, 0); -lean_inc(x_3417); -x_3418 = lean_ctor_get(x_3416, 1); -lean_inc(x_3418); -lean_dec(x_3416); -x_3419 = lean_unsigned_to_nat(1u); -x_3420 = lean_nat_add(x_3, x_3419); +x_3422 = l_Lean_Elab_Term_mkFreshIdent___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(x_14, x_5, x_6); +x_3423 = lean_ctor_get(x_3422, 0); +lean_inc(x_3423); +x_3424 = lean_ctor_get(x_3422, 1); +lean_inc(x_3424); +lean_dec(x_3422); +x_3425 = lean_unsigned_to_nat(1u); +x_3426 = lean_nat_add(x_3, x_3425); lean_dec(x_3); -x_3421 = l_Lean_mkHole(x_14); -lean_inc(x_3417); -x_3422 = l_Lean_Elab_Term_mkExplicitBinder(x_3417, x_3421); -x_3423 = lean_array_push(x_4, x_3422); +x_3427 = l_Lean_mkHole(x_14); +lean_inc(x_3423); +x_3428 = l_Lean_Elab_Term_mkExplicitBinder(x_3423, x_3427); +x_3429 = lean_array_push(x_4, x_3428); lean_inc(x_5); -x_3424 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_3420, x_3423, x_5, x_3418); -x_3425 = lean_ctor_get(x_3424, 0); -lean_inc(x_3425); -x_3426 = lean_ctor_get(x_3425, 1); -lean_inc(x_3426); -x_3427 = lean_ctor_get(x_3424, 1); -lean_inc(x_3427); -lean_dec(x_3424); -x_3428 = !lean_is_exclusive(x_3425); -if (x_3428 == 0) -{ -lean_object* x_3429; uint8_t x_3430; -x_3429 = lean_ctor_get(x_3425, 1); -lean_dec(x_3429); -x_3430 = !lean_is_exclusive(x_3426); -if (x_3430 == 0) -{ -lean_object* x_3431; lean_object* x_3432; lean_object* x_3433; uint8_t x_3434; -x_3431 = lean_ctor_get(x_3426, 0); -x_3432 = lean_ctor_get(x_3426, 1); -lean_dec(x_3432); -x_3433 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_3427); -lean_dec(x_5); -x_3434 = !lean_is_exclusive(x_3433); +x_3430 = l_Lean_Elab_Term_expandFunBinders_loop(x_1, x_2, x_3426, x_3429, x_5, x_3424); +x_3431 = lean_ctor_get(x_3430, 0); +lean_inc(x_3431); +x_3432 = lean_ctor_get(x_3431, 1); +lean_inc(x_3432); +x_3433 = lean_ctor_get(x_3430, 1); +lean_inc(x_3433); +lean_dec(x_3430); +x_3434 = !lean_is_exclusive(x_3431); if (x_3434 == 0) { -lean_object* x_3435; lean_object* x_3436; lean_object* x_3437; lean_object* x_3438; lean_object* x_3439; lean_object* x_3440; lean_object* x_3441; lean_object* x_3442; lean_object* x_3443; lean_object* x_3444; lean_object* x_3445; lean_object* x_3446; lean_object* x_3447; lean_object* x_3448; lean_object* x_3449; lean_object* x_3450; uint8_t x_3451; -x_3435 = lean_ctor_get(x_3433, 0); -x_3436 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_3435); -x_3437 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3437, 0, x_3435); -lean_ctor_set(x_3437, 1, x_3436); -x_3438 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_3439 = lean_array_push(x_3438, x_3417); -x_3440 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_3441 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3441, 0, x_3440); -lean_ctor_set(x_3441, 1, x_3439); -x_3442 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_3443 = lean_array_push(x_3442, x_3441); -x_3444 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_3445 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3445, 0, x_3444); -lean_ctor_set(x_3445, 1, x_3443); -x_3446 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_3435); -x_3447 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3447, 0, x_3435); -lean_ctor_set(x_3447, 1, x_3446); -x_3448 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_3435); -x_3449 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3449, 0, x_3435); -lean_ctor_set(x_3449, 1, x_3448); -lean_inc(x_14); -x_3450 = lean_array_push(x_3442, x_14); -x_3451 = !lean_is_exclusive(x_14); -if (x_3451 == 0) +lean_object* x_3435; uint8_t x_3436; +x_3435 = lean_ctor_get(x_3431, 1); +lean_dec(x_3435); +x_3436 = !lean_is_exclusive(x_3432); +if (x_3436 == 0) { -lean_object* x_3452; lean_object* x_3453; lean_object* x_3454; lean_object* x_3455; lean_object* x_3456; lean_object* x_3457; lean_object* x_3458; lean_object* x_3459; lean_object* x_3460; lean_object* x_3461; lean_object* x_3462; lean_object* x_3463; lean_object* x_3464; lean_object* x_3465; lean_object* x_3466; lean_object* x_3467; lean_object* x_3468; lean_object* x_3469; lean_object* x_3470; lean_object* x_3471; lean_object* x_3472; lean_object* x_3473; lean_object* x_3474; lean_object* x_3475; lean_object* x_3476; lean_object* x_3477; uint8_t x_3478; lean_object* x_3479; -x_3452 = lean_ctor_get(x_14, 1); -lean_dec(x_3452); -x_3453 = lean_ctor_get(x_14, 0); -lean_dec(x_3453); -lean_ctor_set_tag(x_14, 1); -lean_ctor_set(x_14, 1, x_3450); -lean_ctor_set(x_14, 0, x_3444); -x_3454 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +lean_object* x_3437; lean_object* x_3438; lean_object* x_3439; uint8_t x_3440; +x_3437 = lean_ctor_get(x_3432, 0); +x_3438 = lean_ctor_get(x_3432, 1); +lean_dec(x_3438); +x_3439 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_3433); +lean_dec(x_5); +x_3440 = !lean_is_exclusive(x_3439); +if (x_3440 == 0) +{ +lean_object* x_3441; lean_object* x_3442; lean_object* x_3443; lean_object* x_3444; lean_object* x_3445; lean_object* x_3446; lean_object* x_3447; lean_object* x_3448; lean_object* x_3449; lean_object* x_3450; lean_object* x_3451; lean_object* x_3452; lean_object* x_3453; lean_object* x_3454; lean_object* x_3455; lean_object* x_3456; uint8_t x_3457; +x_3441 = lean_ctor_get(x_3439, 0); +x_3442 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_3441); +x_3443 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3443, 0, x_3441); +lean_ctor_set(x_3443, 1, x_3442); +x_3444 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_3445 = lean_array_push(x_3444, x_3423); +x_3446 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_3447 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3447, 0, x_3446); +lean_ctor_set(x_3447, 1, x_3445); +x_3448 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_3449 = lean_array_push(x_3448, x_3447); +x_3450 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_3451 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3451, 0, x_3450); +lean_ctor_set(x_3451, 1, x_3449); +x_3452 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_3441); +x_3453 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3453, 0, x_3441); +lean_ctor_set(x_3453, 1, x_3452); +x_3454 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_3441); x_3455 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3455, 0, x_3435); +lean_ctor_set(x_3455, 0, x_3441); lean_ctor_set(x_3455, 1, x_3454); -x_3456 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_3457 = lean_array_push(x_3456, x_3449); -x_3458 = lean_array_push(x_3457, x_14); -x_3459 = lean_array_push(x_3458, x_3455); -x_3460 = lean_array_push(x_3459, x_3431); -x_3461 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_3462 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3462, 0, x_3461); -lean_ctor_set(x_3462, 1, x_3460); -x_3463 = lean_array_push(x_3442, x_3462); -x_3464 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3464, 0, x_3444); -lean_ctor_set(x_3464, 1, x_3463); -x_3465 = lean_array_push(x_3442, x_3464); -x_3466 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_3467 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3467, 0, x_3466); -lean_ctor_set(x_3467, 1, x_3465); -x_3468 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_3469 = lean_array_push(x_3468, x_3437); -x_3470 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_3471 = lean_array_push(x_3469, x_3470); -x_3472 = lean_array_push(x_3471, x_3445); -x_3473 = lean_array_push(x_3472, x_3470); -x_3474 = lean_array_push(x_3473, x_3447); -x_3475 = lean_array_push(x_3474, x_3467); -x_3476 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_3477 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3477, 0, x_3476); -lean_ctor_set(x_3477, 1, x_3475); -x_3478 = 1; -x_3479 = lean_box(x_3478); -lean_ctor_set(x_3426, 1, x_3479); -lean_ctor_set(x_3426, 0, x_3477); -lean_ctor_set(x_3433, 0, x_3425); -return x_3433; +lean_inc(x_14); +x_3456 = lean_array_push(x_3448, x_14); +x_3457 = !lean_is_exclusive(x_14); +if (x_3457 == 0) +{ +lean_object* x_3458; lean_object* x_3459; lean_object* x_3460; lean_object* x_3461; lean_object* x_3462; lean_object* x_3463; lean_object* x_3464; lean_object* x_3465; lean_object* x_3466; lean_object* x_3467; lean_object* x_3468; lean_object* x_3469; lean_object* x_3470; lean_object* x_3471; lean_object* x_3472; lean_object* x_3473; lean_object* x_3474; lean_object* x_3475; lean_object* x_3476; lean_object* x_3477; lean_object* x_3478; lean_object* x_3479; lean_object* x_3480; lean_object* x_3481; lean_object* x_3482; lean_object* x_3483; uint8_t x_3484; lean_object* x_3485; +x_3458 = lean_ctor_get(x_14, 1); +lean_dec(x_3458); +x_3459 = lean_ctor_get(x_14, 0); +lean_dec(x_3459); +lean_ctor_set_tag(x_14, 1); +lean_ctor_set(x_14, 1, x_3456); +lean_ctor_set(x_14, 0, x_3450); +x_3460 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_3461 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3461, 0, x_3441); +lean_ctor_set(x_3461, 1, x_3460); +x_3462 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_3463 = lean_array_push(x_3462, x_3455); +x_3464 = lean_array_push(x_3463, x_14); +x_3465 = lean_array_push(x_3464, x_3461); +x_3466 = lean_array_push(x_3465, x_3437); +x_3467 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_3468 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3468, 0, x_3467); +lean_ctor_set(x_3468, 1, x_3466); +x_3469 = lean_array_push(x_3448, x_3468); +x_3470 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3470, 0, x_3450); +lean_ctor_set(x_3470, 1, x_3469); +x_3471 = lean_array_push(x_3448, x_3470); +x_3472 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_3473 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3473, 0, x_3472); +lean_ctor_set(x_3473, 1, x_3471); +x_3474 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_3475 = lean_array_push(x_3474, x_3443); +x_3476 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_3477 = lean_array_push(x_3475, x_3476); +x_3478 = lean_array_push(x_3477, x_3451); +x_3479 = lean_array_push(x_3478, x_3476); +x_3480 = lean_array_push(x_3479, x_3453); +x_3481 = lean_array_push(x_3480, x_3473); +x_3482 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_3483 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3483, 0, x_3482); +lean_ctor_set(x_3483, 1, x_3481); +x_3484 = 1; +x_3485 = lean_box(x_3484); +lean_ctor_set(x_3432, 1, x_3485); +lean_ctor_set(x_3432, 0, x_3483); +lean_ctor_set(x_3439, 0, x_3431); +return x_3439; } else { -lean_object* x_3480; lean_object* x_3481; lean_object* x_3482; lean_object* x_3483; lean_object* x_3484; lean_object* x_3485; lean_object* x_3486; lean_object* x_3487; lean_object* x_3488; lean_object* x_3489; lean_object* x_3490; lean_object* x_3491; lean_object* x_3492; lean_object* x_3493; lean_object* x_3494; lean_object* x_3495; lean_object* x_3496; lean_object* x_3497; lean_object* x_3498; lean_object* x_3499; lean_object* x_3500; lean_object* x_3501; lean_object* x_3502; lean_object* x_3503; lean_object* x_3504; uint8_t x_3505; lean_object* x_3506; +lean_object* x_3486; lean_object* x_3487; lean_object* x_3488; lean_object* x_3489; lean_object* x_3490; lean_object* x_3491; lean_object* x_3492; lean_object* x_3493; lean_object* x_3494; lean_object* x_3495; lean_object* x_3496; lean_object* x_3497; lean_object* x_3498; lean_object* x_3499; lean_object* x_3500; lean_object* x_3501; lean_object* x_3502; lean_object* x_3503; lean_object* x_3504; lean_object* x_3505; lean_object* x_3506; lean_object* x_3507; lean_object* x_3508; lean_object* x_3509; lean_object* x_3510; uint8_t x_3511; lean_object* x_3512; lean_dec(x_14); -x_3480 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3480, 0, x_3444); -lean_ctor_set(x_3480, 1, x_3450); -x_3481 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_3482 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3482, 0, x_3435); -lean_ctor_set(x_3482, 1, x_3481); -x_3483 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_3484 = lean_array_push(x_3483, x_3449); -x_3485 = lean_array_push(x_3484, x_3480); -x_3486 = lean_array_push(x_3485, x_3482); -x_3487 = lean_array_push(x_3486, x_3431); -x_3488 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_3489 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3489, 0, x_3488); -lean_ctor_set(x_3489, 1, x_3487); -x_3490 = lean_array_push(x_3442, x_3489); -x_3491 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3491, 0, x_3444); -lean_ctor_set(x_3491, 1, x_3490); -x_3492 = lean_array_push(x_3442, x_3491); -x_3493 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_3494 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3494, 0, x_3493); -lean_ctor_set(x_3494, 1, x_3492); -x_3495 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_3496 = lean_array_push(x_3495, x_3437); -x_3497 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_3498 = lean_array_push(x_3496, x_3497); -x_3499 = lean_array_push(x_3498, x_3445); -x_3500 = lean_array_push(x_3499, x_3497); -x_3501 = lean_array_push(x_3500, x_3447); -x_3502 = lean_array_push(x_3501, x_3494); -x_3503 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_3504 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3504, 0, x_3503); -lean_ctor_set(x_3504, 1, x_3502); -x_3505 = 1; -x_3506 = lean_box(x_3505); -lean_ctor_set(x_3426, 1, x_3506); -lean_ctor_set(x_3426, 0, x_3504); -lean_ctor_set(x_3433, 0, x_3425); -return x_3433; +x_3486 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3486, 0, x_3450); +lean_ctor_set(x_3486, 1, x_3456); +x_3487 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_3488 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3488, 0, x_3441); +lean_ctor_set(x_3488, 1, x_3487); +x_3489 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_3490 = lean_array_push(x_3489, x_3455); +x_3491 = lean_array_push(x_3490, x_3486); +x_3492 = lean_array_push(x_3491, x_3488); +x_3493 = lean_array_push(x_3492, x_3437); +x_3494 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_3495 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3495, 0, x_3494); +lean_ctor_set(x_3495, 1, x_3493); +x_3496 = lean_array_push(x_3448, x_3495); +x_3497 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3497, 0, x_3450); +lean_ctor_set(x_3497, 1, x_3496); +x_3498 = lean_array_push(x_3448, x_3497); +x_3499 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_3500 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3500, 0, x_3499); +lean_ctor_set(x_3500, 1, x_3498); +x_3501 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_3502 = lean_array_push(x_3501, x_3443); +x_3503 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_3504 = lean_array_push(x_3502, x_3503); +x_3505 = lean_array_push(x_3504, x_3451); +x_3506 = lean_array_push(x_3505, x_3503); +x_3507 = lean_array_push(x_3506, x_3453); +x_3508 = lean_array_push(x_3507, x_3500); +x_3509 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_3510 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3510, 0, x_3509); +lean_ctor_set(x_3510, 1, x_3508); +x_3511 = 1; +x_3512 = lean_box(x_3511); +lean_ctor_set(x_3432, 1, x_3512); +lean_ctor_set(x_3432, 0, x_3510); +lean_ctor_set(x_3439, 0, x_3431); +return x_3439; } } else { -lean_object* x_3507; lean_object* x_3508; lean_object* x_3509; lean_object* x_3510; lean_object* x_3511; lean_object* x_3512; lean_object* x_3513; lean_object* x_3514; lean_object* x_3515; lean_object* x_3516; lean_object* x_3517; lean_object* x_3518; lean_object* x_3519; lean_object* x_3520; lean_object* x_3521; lean_object* x_3522; lean_object* x_3523; lean_object* x_3524; lean_object* x_3525; lean_object* x_3526; lean_object* x_3527; lean_object* x_3528; lean_object* x_3529; lean_object* x_3530; lean_object* x_3531; lean_object* x_3532; lean_object* x_3533; lean_object* x_3534; lean_object* x_3535; lean_object* x_3536; lean_object* x_3537; lean_object* x_3538; lean_object* x_3539; lean_object* x_3540; lean_object* x_3541; lean_object* x_3542; lean_object* x_3543; lean_object* x_3544; lean_object* x_3545; lean_object* x_3546; lean_object* x_3547; lean_object* x_3548; lean_object* x_3549; uint8_t x_3550; lean_object* x_3551; lean_object* x_3552; -x_3507 = lean_ctor_get(x_3433, 0); -x_3508 = lean_ctor_get(x_3433, 1); -lean_inc(x_3508); -lean_inc(x_3507); -lean_dec(x_3433); -x_3509 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_3507); -x_3510 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3510, 0, x_3507); -lean_ctor_set(x_3510, 1, x_3509); -x_3511 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_3512 = lean_array_push(x_3511, x_3417); -x_3513 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_3514 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3514, 0, x_3513); -lean_ctor_set(x_3514, 1, x_3512); -x_3515 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_3516 = lean_array_push(x_3515, x_3514); -x_3517 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_3518 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3518, 0, x_3517); -lean_ctor_set(x_3518, 1, x_3516); -x_3519 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_3507); -x_3520 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3520, 0, x_3507); -lean_ctor_set(x_3520, 1, x_3519); -x_3521 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_3507); -x_3522 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3522, 0, x_3507); -lean_ctor_set(x_3522, 1, x_3521); +lean_object* x_3513; lean_object* x_3514; lean_object* x_3515; lean_object* x_3516; lean_object* x_3517; lean_object* x_3518; lean_object* x_3519; lean_object* x_3520; lean_object* x_3521; lean_object* x_3522; lean_object* x_3523; lean_object* x_3524; lean_object* x_3525; lean_object* x_3526; lean_object* x_3527; lean_object* x_3528; lean_object* x_3529; lean_object* x_3530; lean_object* x_3531; lean_object* x_3532; lean_object* x_3533; lean_object* x_3534; lean_object* x_3535; lean_object* x_3536; lean_object* x_3537; lean_object* x_3538; lean_object* x_3539; lean_object* x_3540; lean_object* x_3541; lean_object* x_3542; lean_object* x_3543; lean_object* x_3544; lean_object* x_3545; lean_object* x_3546; lean_object* x_3547; lean_object* x_3548; lean_object* x_3549; lean_object* x_3550; lean_object* x_3551; lean_object* x_3552; lean_object* x_3553; lean_object* x_3554; lean_object* x_3555; uint8_t x_3556; lean_object* x_3557; lean_object* x_3558; +x_3513 = lean_ctor_get(x_3439, 0); +x_3514 = lean_ctor_get(x_3439, 1); +lean_inc(x_3514); +lean_inc(x_3513); +lean_dec(x_3439); +x_3515 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_3513); +x_3516 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3516, 0, x_3513); +lean_ctor_set(x_3516, 1, x_3515); +x_3517 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_3518 = lean_array_push(x_3517, x_3423); +x_3519 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_3520 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3520, 0, x_3519); +lean_ctor_set(x_3520, 1, x_3518); +x_3521 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_3522 = lean_array_push(x_3521, x_3520); +x_3523 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_3524 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3524, 0, x_3523); +lean_ctor_set(x_3524, 1, x_3522); +x_3525 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_3513); +x_3526 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3526, 0, x_3513); +lean_ctor_set(x_3526, 1, x_3525); +x_3527 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_3513); +x_3528 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3528, 0, x_3513); +lean_ctor_set(x_3528, 1, x_3527); lean_inc(x_14); -x_3523 = lean_array_push(x_3515, x_14); +x_3529 = lean_array_push(x_3521, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_3524 = x_14; + x_3530 = x_14; } else { lean_dec_ref(x_14); - x_3524 = lean_box(0); + x_3530 = lean_box(0); } -if (lean_is_scalar(x_3524)) { - x_3525 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_3530)) { + x_3531 = lean_alloc_ctor(1, 2, 0); } else { - x_3525 = x_3524; - lean_ctor_set_tag(x_3525, 1); + x_3531 = x_3530; + lean_ctor_set_tag(x_3531, 1); } -lean_ctor_set(x_3525, 0, x_3517); -lean_ctor_set(x_3525, 1, x_3523); -x_3526 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_3527 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3527, 0, x_3507); -lean_ctor_set(x_3527, 1, x_3526); -x_3528 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_3529 = lean_array_push(x_3528, x_3522); -x_3530 = lean_array_push(x_3529, x_3525); -x_3531 = lean_array_push(x_3530, x_3527); -x_3532 = lean_array_push(x_3531, x_3431); -x_3533 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_3534 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3534, 0, x_3533); -lean_ctor_set(x_3534, 1, x_3532); -x_3535 = lean_array_push(x_3515, x_3534); -x_3536 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3536, 0, x_3517); -lean_ctor_set(x_3536, 1, x_3535); -x_3537 = lean_array_push(x_3515, x_3536); -x_3538 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_3539 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3539, 0, x_3538); -lean_ctor_set(x_3539, 1, x_3537); -x_3540 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_3541 = lean_array_push(x_3540, x_3510); -x_3542 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_3543 = lean_array_push(x_3541, x_3542); -x_3544 = lean_array_push(x_3543, x_3518); -x_3545 = lean_array_push(x_3544, x_3542); -x_3546 = lean_array_push(x_3545, x_3520); -x_3547 = lean_array_push(x_3546, x_3539); -x_3548 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_3549 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3549, 0, x_3548); -lean_ctor_set(x_3549, 1, x_3547); -x_3550 = 1; -x_3551 = lean_box(x_3550); -lean_ctor_set(x_3426, 1, x_3551); -lean_ctor_set(x_3426, 0, x_3549); -x_3552 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3552, 0, x_3425); -lean_ctor_set(x_3552, 1, x_3508); -return x_3552; +lean_ctor_set(x_3531, 0, x_3523); +lean_ctor_set(x_3531, 1, x_3529); +x_3532 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_3533 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3533, 0, x_3513); +lean_ctor_set(x_3533, 1, x_3532); +x_3534 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_3535 = lean_array_push(x_3534, x_3528); +x_3536 = lean_array_push(x_3535, x_3531); +x_3537 = lean_array_push(x_3536, x_3533); +x_3538 = lean_array_push(x_3537, x_3437); +x_3539 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_3540 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3540, 0, x_3539); +lean_ctor_set(x_3540, 1, x_3538); +x_3541 = lean_array_push(x_3521, x_3540); +x_3542 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3542, 0, x_3523); +lean_ctor_set(x_3542, 1, x_3541); +x_3543 = lean_array_push(x_3521, x_3542); +x_3544 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_3545 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3545, 0, x_3544); +lean_ctor_set(x_3545, 1, x_3543); +x_3546 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_3547 = lean_array_push(x_3546, x_3516); +x_3548 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_3549 = lean_array_push(x_3547, x_3548); +x_3550 = lean_array_push(x_3549, x_3524); +x_3551 = lean_array_push(x_3550, x_3548); +x_3552 = lean_array_push(x_3551, x_3526); +x_3553 = lean_array_push(x_3552, x_3545); +x_3554 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_3555 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3555, 0, x_3554); +lean_ctor_set(x_3555, 1, x_3553); +x_3556 = 1; +x_3557 = lean_box(x_3556); +lean_ctor_set(x_3432, 1, x_3557); +lean_ctor_set(x_3432, 0, x_3555); +x_3558 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3558, 0, x_3431); +lean_ctor_set(x_3558, 1, x_3514); +return x_3558; } } else { -lean_object* x_3553; lean_object* x_3554; lean_object* x_3555; lean_object* x_3556; lean_object* x_3557; lean_object* x_3558; lean_object* x_3559; lean_object* x_3560; lean_object* x_3561; lean_object* x_3562; lean_object* x_3563; lean_object* x_3564; lean_object* x_3565; lean_object* x_3566; lean_object* x_3567; lean_object* x_3568; lean_object* x_3569; lean_object* x_3570; lean_object* x_3571; lean_object* x_3572; lean_object* x_3573; lean_object* x_3574; lean_object* x_3575; lean_object* x_3576; lean_object* x_3577; lean_object* x_3578; lean_object* x_3579; lean_object* x_3580; lean_object* x_3581; lean_object* x_3582; lean_object* x_3583; lean_object* x_3584; lean_object* x_3585; lean_object* x_3586; lean_object* x_3587; lean_object* x_3588; lean_object* x_3589; lean_object* x_3590; lean_object* x_3591; lean_object* x_3592; lean_object* x_3593; lean_object* x_3594; lean_object* x_3595; lean_object* x_3596; lean_object* x_3597; lean_object* x_3598; uint8_t x_3599; lean_object* x_3600; lean_object* x_3601; lean_object* x_3602; -x_3553 = lean_ctor_get(x_3426, 0); -lean_inc(x_3553); -lean_dec(x_3426); -x_3554 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_3427); +lean_object* x_3559; lean_object* x_3560; lean_object* x_3561; lean_object* x_3562; lean_object* x_3563; lean_object* x_3564; lean_object* x_3565; lean_object* x_3566; lean_object* x_3567; lean_object* x_3568; lean_object* x_3569; lean_object* x_3570; lean_object* x_3571; lean_object* x_3572; lean_object* x_3573; lean_object* x_3574; lean_object* x_3575; lean_object* x_3576; lean_object* x_3577; lean_object* x_3578; lean_object* x_3579; lean_object* x_3580; lean_object* x_3581; lean_object* x_3582; lean_object* x_3583; lean_object* x_3584; lean_object* x_3585; lean_object* x_3586; lean_object* x_3587; lean_object* x_3588; lean_object* x_3589; lean_object* x_3590; lean_object* x_3591; lean_object* x_3592; lean_object* x_3593; lean_object* x_3594; lean_object* x_3595; lean_object* x_3596; lean_object* x_3597; lean_object* x_3598; lean_object* x_3599; lean_object* x_3600; lean_object* x_3601; lean_object* x_3602; lean_object* x_3603; lean_object* x_3604; uint8_t x_3605; lean_object* x_3606; lean_object* x_3607; lean_object* x_3608; +x_3559 = lean_ctor_get(x_3432, 0); +lean_inc(x_3559); +lean_dec(x_3432); +x_3560 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_3433); lean_dec(x_5); -x_3555 = lean_ctor_get(x_3554, 0); -lean_inc(x_3555); -x_3556 = lean_ctor_get(x_3554, 1); -lean_inc(x_3556); -if (lean_is_exclusive(x_3554)) { - lean_ctor_release(x_3554, 0); - lean_ctor_release(x_3554, 1); - x_3557 = x_3554; +x_3561 = lean_ctor_get(x_3560, 0); +lean_inc(x_3561); +x_3562 = lean_ctor_get(x_3560, 1); +lean_inc(x_3562); +if (lean_is_exclusive(x_3560)) { + lean_ctor_release(x_3560, 0); + lean_ctor_release(x_3560, 1); + x_3563 = x_3560; } else { - lean_dec_ref(x_3554); - x_3557 = lean_box(0); + lean_dec_ref(x_3560); + x_3563 = lean_box(0); } -x_3558 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_3555); -x_3559 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3559, 0, x_3555); -lean_ctor_set(x_3559, 1, x_3558); -x_3560 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_3561 = lean_array_push(x_3560, x_3417); -x_3562 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_3563 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3563, 0, x_3562); -lean_ctor_set(x_3563, 1, x_3561); -x_3564 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_3565 = lean_array_push(x_3564, x_3563); -x_3566 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_3567 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3567, 0, x_3566); -lean_ctor_set(x_3567, 1, x_3565); -x_3568 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_3555); -x_3569 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3569, 0, x_3555); -lean_ctor_set(x_3569, 1, x_3568); -x_3570 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_3555); -x_3571 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3571, 0, x_3555); -lean_ctor_set(x_3571, 1, x_3570); +x_3564 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_3561); +x_3565 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3565, 0, x_3561); +lean_ctor_set(x_3565, 1, x_3564); +x_3566 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_3567 = lean_array_push(x_3566, x_3423); +x_3568 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_3569 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3569, 0, x_3568); +lean_ctor_set(x_3569, 1, x_3567); +x_3570 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_3571 = lean_array_push(x_3570, x_3569); +x_3572 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_3573 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3573, 0, x_3572); +lean_ctor_set(x_3573, 1, x_3571); +x_3574 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_3561); +x_3575 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3575, 0, x_3561); +lean_ctor_set(x_3575, 1, x_3574); +x_3576 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_3561); +x_3577 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3577, 0, x_3561); +lean_ctor_set(x_3577, 1, x_3576); lean_inc(x_14); -x_3572 = lean_array_push(x_3564, x_14); +x_3578 = lean_array_push(x_3570, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_3573 = x_14; + x_3579 = x_14; } else { lean_dec_ref(x_14); - x_3573 = lean_box(0); + x_3579 = lean_box(0); } -if (lean_is_scalar(x_3573)) { - x_3574 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_3579)) { + x_3580 = lean_alloc_ctor(1, 2, 0); } else { - x_3574 = x_3573; - lean_ctor_set_tag(x_3574, 1); + x_3580 = x_3579; + lean_ctor_set_tag(x_3580, 1); } -lean_ctor_set(x_3574, 0, x_3566); -lean_ctor_set(x_3574, 1, x_3572); -x_3575 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_3576 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3576, 0, x_3555); -lean_ctor_set(x_3576, 1, x_3575); -x_3577 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_3578 = lean_array_push(x_3577, x_3571); -x_3579 = lean_array_push(x_3578, x_3574); -x_3580 = lean_array_push(x_3579, x_3576); -x_3581 = lean_array_push(x_3580, x_3553); -x_3582 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_3583 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3583, 0, x_3582); -lean_ctor_set(x_3583, 1, x_3581); -x_3584 = lean_array_push(x_3564, x_3583); -x_3585 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3585, 0, x_3566); -lean_ctor_set(x_3585, 1, x_3584); -x_3586 = lean_array_push(x_3564, x_3585); -x_3587 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_3588 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3588, 0, x_3587); -lean_ctor_set(x_3588, 1, x_3586); -x_3589 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_3590 = lean_array_push(x_3589, x_3559); -x_3591 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_3592 = lean_array_push(x_3590, x_3591); -x_3593 = lean_array_push(x_3592, x_3567); -x_3594 = lean_array_push(x_3593, x_3591); -x_3595 = lean_array_push(x_3594, x_3569); -x_3596 = lean_array_push(x_3595, x_3588); -x_3597 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_3598 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3598, 0, x_3597); -lean_ctor_set(x_3598, 1, x_3596); -x_3599 = 1; -x_3600 = lean_box(x_3599); -x_3601 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3601, 0, x_3598); -lean_ctor_set(x_3601, 1, x_3600); -lean_ctor_set(x_3425, 1, x_3601); -if (lean_is_scalar(x_3557)) { - x_3602 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3580, 0, x_3572); +lean_ctor_set(x_3580, 1, x_3578); +x_3581 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_3582 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3582, 0, x_3561); +lean_ctor_set(x_3582, 1, x_3581); +x_3583 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_3584 = lean_array_push(x_3583, x_3577); +x_3585 = lean_array_push(x_3584, x_3580); +x_3586 = lean_array_push(x_3585, x_3582); +x_3587 = lean_array_push(x_3586, x_3559); +x_3588 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_3589 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3589, 0, x_3588); +lean_ctor_set(x_3589, 1, x_3587); +x_3590 = lean_array_push(x_3570, x_3589); +x_3591 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3591, 0, x_3572); +lean_ctor_set(x_3591, 1, x_3590); +x_3592 = lean_array_push(x_3570, x_3591); +x_3593 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_3594 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3594, 0, x_3593); +lean_ctor_set(x_3594, 1, x_3592); +x_3595 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_3596 = lean_array_push(x_3595, x_3565); +x_3597 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_3598 = lean_array_push(x_3596, x_3597); +x_3599 = lean_array_push(x_3598, x_3573); +x_3600 = lean_array_push(x_3599, x_3597); +x_3601 = lean_array_push(x_3600, x_3575); +x_3602 = lean_array_push(x_3601, x_3594); +x_3603 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_3604 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3604, 0, x_3603); +lean_ctor_set(x_3604, 1, x_3602); +x_3605 = 1; +x_3606 = lean_box(x_3605); +x_3607 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3607, 0, x_3604); +lean_ctor_set(x_3607, 1, x_3606); +lean_ctor_set(x_3431, 1, x_3607); +if (lean_is_scalar(x_3563)) { + x_3608 = lean_alloc_ctor(0, 2, 0); } else { - x_3602 = x_3557; + x_3608 = x_3563; } -lean_ctor_set(x_3602, 0, x_3425); -lean_ctor_set(x_3602, 1, x_3556); -return x_3602; +lean_ctor_set(x_3608, 0, x_3431); +lean_ctor_set(x_3608, 1, x_3562); +return x_3608; } } else { -lean_object* x_3603; lean_object* x_3604; lean_object* x_3605; lean_object* x_3606; lean_object* x_3607; lean_object* x_3608; lean_object* x_3609; lean_object* x_3610; lean_object* x_3611; lean_object* x_3612; lean_object* x_3613; lean_object* x_3614; lean_object* x_3615; lean_object* x_3616; lean_object* x_3617; lean_object* x_3618; lean_object* x_3619; lean_object* x_3620; lean_object* x_3621; lean_object* x_3622; lean_object* x_3623; lean_object* x_3624; lean_object* x_3625; lean_object* x_3626; lean_object* x_3627; lean_object* x_3628; lean_object* x_3629; lean_object* x_3630; lean_object* x_3631; lean_object* x_3632; lean_object* x_3633; lean_object* x_3634; lean_object* x_3635; lean_object* x_3636; lean_object* x_3637; lean_object* x_3638; lean_object* x_3639; lean_object* x_3640; lean_object* x_3641; lean_object* x_3642; lean_object* x_3643; lean_object* x_3644; lean_object* x_3645; lean_object* x_3646; lean_object* x_3647; lean_object* x_3648; lean_object* x_3649; lean_object* x_3650; uint8_t x_3651; lean_object* x_3652; lean_object* x_3653; lean_object* x_3654; lean_object* x_3655; -x_3603 = lean_ctor_get(x_3425, 0); -lean_inc(x_3603); -lean_dec(x_3425); -x_3604 = lean_ctor_get(x_3426, 0); -lean_inc(x_3604); -if (lean_is_exclusive(x_3426)) { - lean_ctor_release(x_3426, 0); - lean_ctor_release(x_3426, 1); - x_3605 = x_3426; +lean_object* x_3609; lean_object* x_3610; lean_object* x_3611; lean_object* x_3612; lean_object* x_3613; lean_object* x_3614; lean_object* x_3615; lean_object* x_3616; lean_object* x_3617; lean_object* x_3618; lean_object* x_3619; lean_object* x_3620; lean_object* x_3621; lean_object* x_3622; lean_object* x_3623; lean_object* x_3624; lean_object* x_3625; lean_object* x_3626; lean_object* x_3627; lean_object* x_3628; lean_object* x_3629; lean_object* x_3630; lean_object* x_3631; lean_object* x_3632; lean_object* x_3633; lean_object* x_3634; lean_object* x_3635; lean_object* x_3636; lean_object* x_3637; lean_object* x_3638; lean_object* x_3639; lean_object* x_3640; lean_object* x_3641; lean_object* x_3642; lean_object* x_3643; lean_object* x_3644; lean_object* x_3645; lean_object* x_3646; lean_object* x_3647; lean_object* x_3648; lean_object* x_3649; lean_object* x_3650; lean_object* x_3651; lean_object* x_3652; lean_object* x_3653; lean_object* x_3654; lean_object* x_3655; lean_object* x_3656; uint8_t x_3657; lean_object* x_3658; lean_object* x_3659; lean_object* x_3660; lean_object* x_3661; +x_3609 = lean_ctor_get(x_3431, 0); +lean_inc(x_3609); +lean_dec(x_3431); +x_3610 = lean_ctor_get(x_3432, 0); +lean_inc(x_3610); +if (lean_is_exclusive(x_3432)) { + lean_ctor_release(x_3432, 0); + lean_ctor_release(x_3432, 1); + x_3611 = x_3432; } else { - lean_dec_ref(x_3426); - x_3605 = lean_box(0); + lean_dec_ref(x_3432); + x_3611 = lean_box(0); } -x_3606 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_3427); +x_3612 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_5, x_3433); lean_dec(x_5); -x_3607 = lean_ctor_get(x_3606, 0); -lean_inc(x_3607); -x_3608 = lean_ctor_get(x_3606, 1); -lean_inc(x_3608); -if (lean_is_exclusive(x_3606)) { - lean_ctor_release(x_3606, 0); - lean_ctor_release(x_3606, 1); - x_3609 = x_3606; +x_3613 = lean_ctor_get(x_3612, 0); +lean_inc(x_3613); +x_3614 = lean_ctor_get(x_3612, 1); +lean_inc(x_3614); +if (lean_is_exclusive(x_3612)) { + lean_ctor_release(x_3612, 0); + lean_ctor_release(x_3612, 1); + x_3615 = x_3612; } else { - lean_dec_ref(x_3606); - x_3609 = lean_box(0); + lean_dec_ref(x_3612); + x_3615 = lean_box(0); } -x_3610 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -lean_inc(x_3607); -x_3611 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3611, 0, x_3607); -lean_ctor_set(x_3611, 1, x_3610); -x_3612 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_3613 = lean_array_push(x_3612, x_3417); -x_3614 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_3615 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3615, 0, x_3614); -lean_ctor_set(x_3615, 1, x_3613); -x_3616 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_3617 = lean_array_push(x_3616, x_3615); -x_3618 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; -x_3619 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3619, 0, x_3618); -lean_ctor_set(x_3619, 1, x_3617); -x_3620 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -lean_inc(x_3607); -x_3621 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3621, 0, x_3607); -lean_ctor_set(x_3621, 1, x_3620); -x_3622 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -lean_inc(x_3607); -x_3623 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3623, 0, x_3607); -lean_ctor_set(x_3623, 1, x_3622); +x_3616 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_inc(x_3613); +x_3617 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3617, 0, x_3613); +lean_ctor_set(x_3617, 1, x_3616); +x_3618 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_3619 = lean_array_push(x_3618, x_3423); +x_3620 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_3621 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3621, 0, x_3620); +lean_ctor_set(x_3621, 1, x_3619); +x_3622 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +x_3623 = lean_array_push(x_3622, x_3621); +x_3624 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__8; +x_3625 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3625, 0, x_3624); +lean_ctor_set(x_3625, 1, x_3623); +x_3626 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_inc(x_3613); +x_3627 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3627, 0, x_3613); +lean_ctor_set(x_3627, 1, x_3626); +x_3628 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_inc(x_3613); +x_3629 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3629, 0, x_3613); +lean_ctor_set(x_3629, 1, x_3628); lean_inc(x_14); -x_3624 = lean_array_push(x_3616, x_14); +x_3630 = lean_array_push(x_3622, x_14); if (lean_is_exclusive(x_14)) { lean_ctor_release(x_14, 0); lean_ctor_release(x_14, 1); - x_3625 = x_14; + x_3631 = x_14; } else { lean_dec_ref(x_14); - x_3625 = lean_box(0); + x_3631 = lean_box(0); } -if (lean_is_scalar(x_3625)) { - x_3626 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_3631)) { + x_3632 = lean_alloc_ctor(1, 2, 0); } else { - x_3626 = x_3625; - lean_ctor_set_tag(x_3626, 1); + x_3632 = x_3631; + lean_ctor_set_tag(x_3632, 1); } -lean_ctor_set(x_3626, 0, x_3618); -lean_ctor_set(x_3626, 1, x_3624); -x_3627 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_3628 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3628, 0, x_3607); -lean_ctor_set(x_3628, 1, x_3627); -x_3629 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; -x_3630 = lean_array_push(x_3629, x_3623); -x_3631 = lean_array_push(x_3630, x_3626); -x_3632 = lean_array_push(x_3631, x_3628); -x_3633 = lean_array_push(x_3632, x_3604); -x_3634 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_3635 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3635, 0, x_3634); -lean_ctor_set(x_3635, 1, x_3633); -x_3636 = lean_array_push(x_3616, x_3635); -x_3637 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3637, 0, x_3618); -lean_ctor_set(x_3637, 1, x_3636); -x_3638 = lean_array_push(x_3616, x_3637); -x_3639 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_3640 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3640, 0, x_3639); -lean_ctor_set(x_3640, 1, x_3638); -x_3641 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; -x_3642 = lean_array_push(x_3641, x_3611); -x_3643 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_3644 = lean_array_push(x_3642, x_3643); -x_3645 = lean_array_push(x_3644, x_3619); -x_3646 = lean_array_push(x_3645, x_3643); -x_3647 = lean_array_push(x_3646, x_3621); -x_3648 = lean_array_push(x_3647, x_3640); -x_3649 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; -x_3650 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3650, 0, x_3649); -lean_ctor_set(x_3650, 1, x_3648); -x_3651 = 1; -x_3652 = lean_box(x_3651); -if (lean_is_scalar(x_3605)) { - x_3653 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3632, 0, x_3624); +lean_ctor_set(x_3632, 1, x_3630); +x_3633 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_3634 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3634, 0, x_3613); +lean_ctor_set(x_3634, 1, x_3633); +x_3635 = l_Lean_Elab_Term_expandFunBinders_loop___closed__14; +x_3636 = lean_array_push(x_3635, x_3629); +x_3637 = lean_array_push(x_3636, x_3632); +x_3638 = lean_array_push(x_3637, x_3634); +x_3639 = lean_array_push(x_3638, x_3610); +x_3640 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_3641 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3641, 0, x_3640); +lean_ctor_set(x_3641, 1, x_3639); +x_3642 = lean_array_push(x_3622, x_3641); +x_3643 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3643, 0, x_3624); +lean_ctor_set(x_3643, 1, x_3642); +x_3644 = lean_array_push(x_3622, x_3643); +x_3645 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_3646 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3646, 0, x_3645); +lean_ctor_set(x_3646, 1, x_3644); +x_3647 = l_Lean_Elab_Term_expandFunBinders_loop___closed__15; +x_3648 = lean_array_push(x_3647, x_3617); +x_3649 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_3650 = lean_array_push(x_3648, x_3649); +x_3651 = lean_array_push(x_3650, x_3625); +x_3652 = lean_array_push(x_3651, x_3649); +x_3653 = lean_array_push(x_3652, x_3627); +x_3654 = lean_array_push(x_3653, x_3646); +x_3655 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_3656 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3656, 0, x_3655); +lean_ctor_set(x_3656, 1, x_3654); +x_3657 = 1; +x_3658 = lean_box(x_3657); +if (lean_is_scalar(x_3611)) { + x_3659 = lean_alloc_ctor(0, 2, 0); } else { - x_3653 = x_3605; + x_3659 = x_3611; } -lean_ctor_set(x_3653, 0, x_3650); -lean_ctor_set(x_3653, 1, x_3652); -x_3654 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3654, 0, x_3603); -lean_ctor_set(x_3654, 1, x_3653); -if (lean_is_scalar(x_3609)) { - x_3655 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3659, 0, x_3656); +lean_ctor_set(x_3659, 1, x_3658); +x_3660 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3660, 0, x_3609); +lean_ctor_set(x_3660, 1, x_3659); +if (lean_is_scalar(x_3615)) { + x_3661 = lean_alloc_ctor(0, 2, 0); } else { - x_3655 = x_3609; + x_3661 = x_3615; } -lean_ctor_set(x_3655, 0, x_3654); -lean_ctor_set(x_3655, 1, x_3608); -return x_3655; +lean_ctor_set(x_3661, 0, x_3660); +lean_ctor_set(x_3661, 1, x_3614); +return x_3661; } } default: { -lean_object* x_3656; lean_object* x_3657; lean_object* x_3658; lean_object* x_3659; lean_object* x_3660; -x_3656 = l_Lean_mkHole(x_14); -x_3657 = lean_unsigned_to_nat(1u); -x_3658 = lean_nat_add(x_3, x_3657); +lean_object* x_3662; lean_object* x_3663; lean_object* x_3664; lean_object* x_3665; lean_object* x_3666; +x_3662 = l_Lean_mkHole(x_14); +x_3663 = lean_unsigned_to_nat(1u); +x_3664 = lean_nat_add(x_3, x_3663); lean_dec(x_3); -x_3659 = l_Lean_Elab_Term_mkExplicitBinder(x_14, x_3656); -x_3660 = lean_array_push(x_4, x_3659); -x_3 = x_3658; -x_4 = x_3660; +x_3665 = l_Lean_Elab_Term_mkExplicitBinder(x_14, x_3662); +x_3666 = lean_array_push(x_4, x_3665); +x_3 = x_3664; +x_4 = x_3666; goto _start; } } @@ -24327,7 +24753,7 @@ static lean_object* _init_l_Lean_Elab_Term_elabLetDeclAux___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__3; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__3; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } @@ -25175,7 +25601,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__2; x_2 = l_Lean_Elab_Term_elabLetDeclCore___closed__14; -x_3 = lean_unsigned_to_nat(611u); +x_3 = lean_unsigned_to_nat(617u); x_4 = lean_unsigned_to_nat(24u); x_5 = l_Lean_Elab_Term_quoteAutoTactic___closed__4; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -25734,7 +26160,7 @@ x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_5599_(lean_object* x_1) { +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_5688_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -25966,6 +26392,10 @@ l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__7 = _init_ lean_mark_persistent(l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__7); l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__8 = _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__8(); lean_mark_persistent(l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__8); +l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__9 = _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__9(); +lean_mark_persistent(l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__9); +l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__10 = _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__10(); +lean_mark_persistent(l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__10); l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___boxed__const__1 = _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___boxed__const__1(); lean_mark_persistent(l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___boxed__const__1); l___private_Lean_Elab_Binders_0__Lean_Elab_Term_registerFailedToInferBinderTypeInfo___closed__1 = _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_registerFailedToInferBinderTypeInfo___closed__1(); @@ -25982,19 +26412,19 @@ l___private_Lean_Elab_Binders_0__Lean_Elab_Term_ensureAtomicBinderName___closed_ lean_mark_persistent(l___private_Lean_Elab_Binders_0__Lean_Elab_Term_ensureAtomicBinderName___closed__3); l___private_Lean_Elab_Binders_0__Lean_Elab_Term_ensureAtomicBinderName___closed__4 = _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_ensureAtomicBinderName___closed__4(); lean_mark_persistent(l___private_Lean_Elab_Binders_0__Lean_Elab_Term_ensureAtomicBinderName___closed__4); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__1); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__2(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__2); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__3 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__3(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__3); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__4 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__4(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__4); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__5 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__5(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086____closed__5); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__1); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__2); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__3 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__3(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__3); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__4 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__4(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__4); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__5 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__5(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138____closed__5); l_Lean_Elab_Term_checkBinderAnnotations___closed__1 = _init_l_Lean_Elab_Term_checkBinderAnnotations___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_checkBinderAnnotations___closed__1); -res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1086_(lean_io_mk_world()); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1138_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Elab_Term_checkBinderAnnotations = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Elab_Term_checkBinderAnnotations); @@ -26284,7 +26714,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabLetDelayedDecl___closed__ res = l___regBuiltin_Lean_Elab_Term_elabLetDelayedDecl(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_5599_(lean_io_mk_world()); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_5688_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c b/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c index 31a280a7ca..7c0a43a37c 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c @@ -63,6 +63,7 @@ lean_object* lean_local_ctx_get_unused_name(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabLetE___closed__1; static lean_object* l_Lean_PrettyPrinter_Delaborator_isRegularApp___lambda__3___closed__2; static lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabDIte___closed__1; +static lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__9; lean_object* lean_mk_empty_array_with_capacity(lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_delabSort___closed__16; lean_object* l_Array_mapMUnsafe_map___at_Lean_PrettyPrinter_Delaborator_getParamKinds___spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -75,8 +76,7 @@ static lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__ lean_object* l_Lean_Meta_mkForallFVars(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_SubExpr_descend___at_Lean_PrettyPrinter_Delaborator_delab___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_unexpandStructureInstance___lambda__3___closed__14; -lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam_match__1___rarg(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyMUnsafe_any___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam_match__1___rarg(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppImplicit___lambda__4___closed__4; static lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabOfScientific___closed__7; lean_object* l_Array_anyMUnsafe_any___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -107,7 +107,6 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(lean_object*, uint8_t l_USize_decEq(size_t, size_t); lean_object* l_Lean_Meta_withLocalDecl___at_Lean_PrettyPrinter_Delaborator_withBindingBodyUnusedName___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uget(lean_object*, size_t); -lean_object* l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Range_forIn_loop___at_Lean_PrettyPrinter_Delaborator_unexpandStructureInstance___spec__1___closed__3; static lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppImplicit___lambda__4___closed__8; lean_object* l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__4(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -134,7 +133,6 @@ static lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabMData___c static lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppImplicit___lambda__4___closed__2; static lean_object* l_Lean_PrettyPrinter_Delaborator_delabMVar___closed__8; static lean_object* l_Lean_PrettyPrinter_Delaborator_delabDoElems___closed__2; -lean_object* l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__8(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabFVar___closed__1; lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabNameMkNum(lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__1; @@ -179,7 +177,6 @@ static lean_object* l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___clo size_t l_USize_sub(size_t, size_t); lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppImplicit___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_shouldShowMotive___closed__1; -lean_object* l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__7(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_SubExpr_withMDataExpr___at_Lean_PrettyPrinter_Delaborator_delabMData___spec__2___closed__6; lean_object* l_Lean_PrettyPrinter_Delaborator_unexpandCoe___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_environment_find(lean_object*, lean_object*); @@ -222,7 +219,7 @@ lean_object* l_Array_anyMUnsafe_any___at_Lean_PrettyPrinter_Delaborator_delabApp lean_object* l_Std_Range_forIn_loop___at_Lean_PrettyPrinter_Delaborator_isRegularApp___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabOfScientific___closed__5; lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabDo(lean_object*); -lean_object* l_Lean_PrettyPrinter_Delaborator_delabForall_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Delaborator_delabForall_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabNameMkStr___closed__5; lean_object* l_Lean_Expr_appFn_x21(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabSort(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -250,7 +247,7 @@ static lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppMatch___closed__4; lean_object* l_List_firstM___at_Lean_PrettyPrinter_Delaborator_unexpandRegularApp___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_delabDoElems___lambda__3___closed__1; lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabAppExplicit(lean_object*); -lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withLetDecl___at_Lean_PrettyPrinter_Delaborator_delabLetE___spec__1(lean_object*); static lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabProjectionApp___closed__3; lean_object* lean_nat_pow(lean_object*, lean_object*); @@ -342,7 +339,6 @@ static lean_object* l_Lean_PrettyPrinter_Delaborator_delabDIte_delabBranch___clo lean_object* l_Lean_Syntax_SepArray_ofElems(lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1___closed__1; lean_object* l_Lean_PrettyPrinter_Delaborator_unfoldMDatas(lean_object*); -lean_object* l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabProjectionApp_match__3___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabBVar___closed__5; lean_object* l_Lean_PrettyPrinter_Delaborator_SubExpr_withAppFn___at___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_delabPatterns___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -352,7 +348,6 @@ static lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppMatch___lambda__6__ static lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabMVar___closed__1; static lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppMatch___closed__3; lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfScientific_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyMUnsafe_any___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__9(lean_object*, lean_object*, size_t, size_t); static lean_object* l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__2; lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_skippingBinders_loop_visitLambda___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_mkAppN(lean_object*, lean_object*); @@ -740,6 +735,7 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_delabSort_match__3(lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_unexpandStructureInstance___closed__2; static lean_object* l_Lean_PrettyPrinter_Delaborator_delabMVar___closed__7; uint8_t lean_expr_eqv(lean_object*, lean_object*); +static lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__10; static lean_object* l_Lean_getConstInfo___at_Lean_PrettyPrinter_Delaborator_delabAppMatch___spec__1___closed__1; lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppMatch_match__4___rarg(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabLam(lean_object*); @@ -764,6 +760,7 @@ static lean_object* l_Lean_PrettyPrinter_Delaborator_delabLetE___closed__4; static lean_object* l_Lean_PrettyPrinter_Delaborator_unexpandStructureInstance___lambda__3___closed__9; lean_object* l_Lean_PrettyPrinter_Delaborator_delabMVar_match__2(lean_object*); lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_delabPatterns_usingNamesAux(lean_object*); +static lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__11; lean_object* l_Lean_PrettyPrinter_Delaborator_SubExpr_getExpr___at_Lean_PrettyPrinter_Delaborator_getExprKind___spec__1___boxed(lean_object*); lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); @@ -862,6 +859,7 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_SubExpr_getPos___at_Lean_PrettyPri lean_object* l_Lean_PrettyPrinter_Delaborator_SubExpr_withBindingBody___at___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_delabPatterns_usingNamesAux___spec__1___rarg___lambda__1___boxed(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_PrettyPrinter_Delaborator_appUnexpanderAttribute; static lean_object* l_Lean_PrettyPrinter_Delaborator_delabDoElems___lambda__6___closed__2; +static lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__12; static lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfScientific_match__1___rarg___closed__3; static lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppMatch___lambda__6___closed__1; lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabBVar(lean_object*); @@ -1017,7 +1015,7 @@ lean_object* l_Lean_Level_quote(lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___closed__2; lean_object* l_Lean_PrettyPrinter_Delaborator_delabDoElems___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabProj_match__1(lean_object*); -lean_object* l_Lean_PrettyPrinter_Delaborator_delabForall_match__1___rarg(uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Delaborator_delabForall_match__1___rarg(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_SubExpr_descend___at_Lean_PrettyPrinter_Delaborator_delabAppMatch___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppMatch___lambda__6___closed__3; lean_object* l_Lean_Name_replacePrefix(lean_object*, lean_object*, lean_object*); @@ -19938,83 +19936,113 @@ return x_32; } } } -lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam_match__1___rarg(uint8_t x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam_match__1___rarg(uint8_t x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { -lean_object* x_9; -x_9 = lean_box(x_1); -switch (lean_obj_tag(x_9)) { +switch (x_1) { case 0: { +lean_dec(x_10); +lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); if (x_2 == 0) { -lean_object* x_10; lean_object* x_11; +lean_object* x_11; lean_object* x_12; lean_dec(x_3); -x_10 = lean_box(0); -x_11 = lean_apply_1(x_4, x_10); -return x_11; +x_11 = lean_box(0); +x_12 = lean_apply_1(x_4, x_11); +return x_12; } else { -lean_object* x_12; lean_object* x_13; +lean_object* x_13; lean_object* x_14; lean_dec(x_4); -x_12 = lean_box(0); -x_13 = lean_apply_1(x_3, x_12); -return x_13; +x_13 = lean_box(0); +x_14 = lean_apply_1(x_3, x_13); +return x_14; } } case 1: { +lean_dec(x_10); +lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_4); lean_dec(x_3); if (x_2 == 0) { -lean_object* x_14; lean_object* x_15; +lean_object* x_15; lean_object* x_16; lean_dec(x_5); -x_14 = lean_box(0); -x_15 = lean_apply_1(x_6, x_14); -return x_15; +x_15 = lean_box(0); +x_16 = lean_apply_1(x_6, x_15); +return x_16; } else { -lean_object* x_16; lean_object* x_17; +lean_object* x_17; lean_object* x_18; lean_dec(x_6); -x_16 = lean_box(0); -x_17 = lean_apply_1(x_5, x_16); -return x_17; +x_17 = lean_box(0); +x_18 = lean_apply_1(x_5, x_17); +return x_18; } } -case 3: +case 2: { -lean_object* x_18; lean_object* x_19; -lean_dec(x_8); +lean_dec(x_10); +lean_dec(x_9); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_18 = lean_box(x_2); -x_19 = lean_apply_1(x_7, x_18); -return x_19; -} -default: +if (x_2 == 0) { -lean_object* x_20; lean_object* x_21; lean_object* x_22; -lean_dec(x_9); +lean_object* x_19; lean_object* x_20; +lean_dec(x_7); +x_19 = lean_box(0); +x_20 = lean_apply_1(x_8, x_19); +return x_20; +} +else +{ +lean_object* x_21; lean_object* x_22; +lean_dec(x_8); +x_21 = lean_box(0); +x_22 = lean_apply_1(x_7, x_21); +return x_22; +} +} +case 3: +{ +lean_object* x_23; lean_object* x_24; +lean_dec(x_10); +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_20 = lean_box(x_1); -x_21 = lean_box(x_2); -x_22 = lean_apply_2(x_8, x_20, x_21); -return x_22; +x_23 = lean_box(x_2); +x_24 = lean_apply_1(x_9, x_23); +return x_24; +} +default: +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +lean_dec(x_9); +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_25 = lean_box(x_1); +x_26 = lean_box(x_2); +x_27 = lean_apply_2(x_10, x_25, x_26); +return x_27; } } } @@ -20023,20 +20051,20 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam_match__1(lean_object* x_1 _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Delaborator_delabLam_match__1___rarg___boxed), 8, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Delaborator_delabLam_match__1___rarg___boxed), 10, 0); return x_2; } } -lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam_match__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam_match__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { -uint8_t x_9; uint8_t x_10; lean_object* x_11; -x_9 = lean_unbox(x_1); +uint8_t x_11; uint8_t x_12; lean_object* x_13; +x_11 = lean_unbox(x_1); lean_dec(x_1); -x_10 = lean_unbox(x_2); +x_12 = lean_unbox(x_2); lean_dec(x_2); -x_11 = l_Lean_PrettyPrinter_Delaborator_delabLam_match__1___rarg(x_9, x_10, x_3, x_4, x_5, x_6, x_7, x_8); -return x_11; +x_13 = l_Lean_PrettyPrinter_Delaborator_delabLam_match__1___rarg(x_11, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_13; } } lean_object* l_Lean_PrettyPrinter_Delaborator_SubExpr_withBindingDomain___at_Lean_PrettyPrinter_Delaborator_delabLam___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { @@ -20553,17 +20581,51 @@ static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3_ _start: { lean_object* x_1; -x_1 = lean_mk_string("Lean.PrettyPrinter.Delaborator.delabLam"); +x_1 = lean_mk_string("strictImplicitBinder"); return x_1; } } static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__8() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__7; +x_2 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__7; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("⦃"); +return x_1; +} +} +static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__10() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("⦄"); +return x_1; +} +} +static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Lean.PrettyPrinter.Delaborator.delabLam"); +return x_1; +} +} +static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__12() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__2; -x_2 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__7; -x_3 = lean_unsigned_to_nat(515u); +x_2 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__11; +x_3 = lean_unsigned_to_nat(517u); x_4 = lean_unsigned_to_nat(44u); x_5 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__4; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -20621,7 +20683,7 @@ lean_inc(x_3); x_22 = l_Lean_PrettyPrinter_Delaborator_getPPOption(x_21, x_3, x_4, x_5, x_6, x_7, x_8, x_20); if (lean_obj_tag(x_22) == 0) { -lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; lean_object* x_28; uint8_t x_46; lean_object* x_47; lean_object* x_72; +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; lean_object* x_28; uint8_t x_46; lean_object* x_47; lean_object* x_72; lean_object* x_120; x_23 = lean_ctor_get(x_22, 1); lean_inc(x_23); lean_dec(x_22); @@ -20635,75 +20697,81 @@ x_46 = l_Lean_Expr_binderInfo(x_11); lean_dec(x_11); if (x_26 == 0) { -lean_object* x_120; -x_120 = lean_box(x_46); -switch (lean_obj_tag(x_120)) { +switch (x_46) { case 0: { -lean_object* x_121; -x_121 = lean_box(0); -x_47 = x_121; +lean_object* x_168; +x_168 = lean_box(0); +x_47 = x_168; goto block_71; } case 1: { -lean_object* x_122; +lean_object* x_169; lean_dec(x_27); lean_dec(x_24); -x_122 = lean_box(0); -x_72 = x_122; +x_169 = lean_box(0); +x_72 = x_169; goto block_119; } +case 2: +{ +lean_object* x_170; +lean_dec(x_27); +lean_dec(x_24); +x_170 = lean_box(0); +x_120 = x_170; +goto block_167; +} case 3: { -lean_object* x_123; +lean_object* x_171; lean_dec(x_27); lean_dec(x_24); lean_dec(x_19); lean_dec(x_1); -x_123 = lean_box(0); -x_28 = x_123; +x_171 = lean_box(0); +x_28 = x_171; goto block_45; } default: { -lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; -lean_dec(x_120); +lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_dec(x_27); lean_dec(x_24); lean_dec(x_19); lean_dec(x_15); lean_dec(x_1); -x_124 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__1; -x_125 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__8; -x_126 = lean_panic_fn(x_124, x_125); +x_172 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__1; +x_173 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__12; +x_174 = lean_panic_fn(x_172, x_173); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_127 = lean_apply_7(x_126, x_3, x_4, x_5, x_6, x_7, x_8, x_23); -if (lean_obj_tag(x_127) == 0) +x_175 = lean_apply_7(x_174, x_3, x_4, x_5, x_6, x_7, x_8, x_23); +if (lean_obj_tag(x_175) == 0) { -lean_object* x_128; lean_object* x_129; lean_object* x_130; -x_128 = lean_ctor_get(x_127, 0); -lean_inc(x_128); -x_129 = lean_ctor_get(x_127, 1); -lean_inc(x_129); -lean_dec(x_127); -x_130 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_128, x_3, x_4, x_5, x_6, x_7, x_8, x_129); +lean_object* x_176; lean_object* x_177; lean_object* x_178; +x_176 = lean_ctor_get(x_175, 0); +lean_inc(x_176); +x_177 = lean_ctor_get(x_175, 1); +lean_inc(x_177); +lean_dec(x_175); +x_178 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_176, x_3, x_4, x_5, x_6, x_7, x_8, x_177); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -return x_130; +return x_178; } else { -uint8_t x_131; +uint8_t x_179; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); @@ -20711,23 +20779,23 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_131 = !lean_is_exclusive(x_127); -if (x_131 == 0) +x_179 = !lean_is_exclusive(x_175); +if (x_179 == 0) { -return x_127; +return x_175; } else { -lean_object* x_132; lean_object* x_133; lean_object* x_134; -x_132 = lean_ctor_get(x_127, 0); -x_133 = lean_ctor_get(x_127, 1); -lean_inc(x_133); -lean_inc(x_132); -lean_dec(x_127); -x_134 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_134, 0, x_132); -lean_ctor_set(x_134, 1, x_133); -return x_134; +lean_object* x_180; lean_object* x_181; lean_object* x_182; +x_180 = lean_ctor_get(x_175, 0); +x_181 = lean_ctor_get(x_175, 1); +lean_inc(x_181); +lean_inc(x_180); +lean_dec(x_175); +x_182 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_182, 0, x_180); +lean_ctor_set(x_182, 1, x_181); +return x_182; } } } @@ -20735,79 +20803,85 @@ return x_134; } else { -uint8_t x_135; -x_135 = lean_nat_dec_le(x_24, x_24); -if (x_135 == 0) +uint8_t x_183; +x_183 = lean_nat_dec_le(x_24, x_24); +if (x_183 == 0) { -lean_object* x_136; -x_136 = lean_box(x_46); -switch (lean_obj_tag(x_136)) { +switch (x_46) { case 0: { -lean_object* x_137; -x_137 = lean_box(0); -x_47 = x_137; +lean_object* x_184; +x_184 = lean_box(0); +x_47 = x_184; goto block_71; } case 1: { -lean_object* x_138; +lean_object* x_185; lean_dec(x_27); lean_dec(x_24); -x_138 = lean_box(0); -x_72 = x_138; +x_185 = lean_box(0); +x_72 = x_185; goto block_119; } +case 2: +{ +lean_object* x_186; +lean_dec(x_27); +lean_dec(x_24); +x_186 = lean_box(0); +x_120 = x_186; +goto block_167; +} case 3: { -lean_object* x_139; +lean_object* x_187; lean_dec(x_27); lean_dec(x_24); lean_dec(x_19); lean_dec(x_1); -x_139 = lean_box(0); -x_28 = x_139; +x_187 = lean_box(0); +x_28 = x_187; goto block_45; } default: { -lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; -lean_dec(x_136); +lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_dec(x_27); lean_dec(x_24); lean_dec(x_19); lean_dec(x_15); lean_dec(x_1); -x_140 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__1; -x_141 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__8; -x_142 = lean_panic_fn(x_140, x_141); +x_188 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__1; +x_189 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__12; +x_190 = lean_panic_fn(x_188, x_189); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_143 = lean_apply_7(x_142, x_3, x_4, x_5, x_6, x_7, x_8, x_23); -if (lean_obj_tag(x_143) == 0) +x_191 = lean_apply_7(x_190, x_3, x_4, x_5, x_6, x_7, x_8, x_23); +if (lean_obj_tag(x_191) == 0) { -lean_object* x_144; lean_object* x_145; lean_object* x_146; -x_144 = lean_ctor_get(x_143, 0); -lean_inc(x_144); -x_145 = lean_ctor_get(x_143, 1); -lean_inc(x_145); -lean_dec(x_143); -x_146 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_144, x_3, x_4, x_5, x_6, x_7, x_8, x_145); +lean_object* x_192; lean_object* x_193; lean_object* x_194; +x_192 = lean_ctor_get(x_191, 0); +lean_inc(x_192); +x_193 = lean_ctor_get(x_191, 1); +lean_inc(x_193); +lean_dec(x_191); +x_194 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_192, x_3, x_4, x_5, x_6, x_7, x_8, x_193); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -return x_146; +return x_194; } else { -uint8_t x_147; +uint8_t x_195; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); @@ -20815,181 +20889,187 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_147 = !lean_is_exclusive(x_143); -if (x_147 == 0) +x_195 = !lean_is_exclusive(x_191); +if (x_195 == 0) { -return x_143; -} -else -{ -lean_object* x_148; lean_object* x_149; lean_object* x_150; -x_148 = lean_ctor_get(x_143, 0); -x_149 = lean_ctor_get(x_143, 1); -lean_inc(x_149); -lean_inc(x_148); -lean_dec(x_143); -x_150 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_150, 0, x_148); -lean_ctor_set(x_150, 1, x_149); -return x_150; -} -} -} -} -} -else -{ -lean_object* x_151; -x_151 = lean_box(x_46); -switch (lean_obj_tag(x_151)) { -case 0: -{ -lean_object* x_152; -x_152 = lean_box(0); -x_47 = x_152; -goto block_71; -} -case 1: -{ -lean_object* x_153; -lean_dec(x_27); -lean_dec(x_24); -x_153 = lean_box(0); -x_72 = x_153; -goto block_119; -} -case 3: -{ -size_t x_154; size_t x_155; uint8_t x_156; -lean_dec(x_27); -lean_dec(x_19); -x_154 = 0; -x_155 = lean_usize_of_nat(x_24); -lean_dec(x_24); -x_156 = l_Array_anyMUnsafe_any___at_Lean_PrettyPrinter_Delaborator_delabLam___spec__2(x_2, x_1, x_154, x_155); -if (x_156 == 0) -{ -lean_object* x_157; -lean_dec(x_1); -x_157 = lean_box(0); -x_28 = x_157; -goto block_45; -} -else -{ -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; -x_158 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_7, x_8, x_23); -x_159 = lean_ctor_get(x_158, 0); -lean_inc(x_159); -x_160 = lean_ctor_get(x_158, 1); -lean_inc(x_160); -lean_dec(x_158); -x_161 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__3; -lean_inc(x_159); -x_162 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_162, 0, x_159); -lean_ctor_set(x_162, 1, x_161); -x_163 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_1); -lean_dec(x_1); -x_164 = l_Lean_PrettyPrinter_Delaborator_unexpandStructureInstance___lambda__3___closed__16; -lean_inc(x_159); -x_165 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_165, 0, x_159); -lean_ctor_set(x_165, 1, x_164); -x_166 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; -x_167 = lean_array_push(x_166, x_163); -x_168 = lean_array_push(x_167, x_165); -x_169 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; -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 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__4; -x_172 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_172, 0, x_159); -lean_ctor_set(x_172, 1, x_171); -x_173 = l_Lean_PrettyPrinter_Delaborator_delabConst___lambda__3___closed__12; -x_174 = lean_array_push(x_173, x_162); -x_175 = lean_array_push(x_174, x_170); -x_176 = lean_array_push(x_175, x_15); -x_177 = lean_array_push(x_176, x_172); -x_178 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___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 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_179, x_3, x_4, x_5, x_6, x_7, x_8, x_160); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_180; -} -} -default: -{ -lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; -lean_dec(x_151); -lean_dec(x_27); -lean_dec(x_24); -lean_dec(x_19); -lean_dec(x_15); -lean_dec(x_1); -x_181 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__1; -x_182 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__8; -x_183 = lean_panic_fn(x_181, x_182); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_184 = lean_apply_7(x_183, x_3, x_4, x_5, x_6, x_7, x_8, x_23); -if (lean_obj_tag(x_184) == 0) -{ -lean_object* x_185; lean_object* x_186; lean_object* x_187; -x_185 = lean_ctor_get(x_184, 0); -lean_inc(x_185); -x_186 = lean_ctor_get(x_184, 1); -lean_inc(x_186); -lean_dec(x_184); -x_187 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_185, x_3, x_4, x_5, x_6, x_7, x_8, x_186); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_187; -} -else -{ -uint8_t x_188; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_188 = !lean_is_exclusive(x_184); -if (x_188 == 0) -{ -return x_184; -} -else -{ -lean_object* x_189; lean_object* x_190; lean_object* x_191; -x_189 = lean_ctor_get(x_184, 0); -x_190 = lean_ctor_get(x_184, 1); -lean_inc(x_190); -lean_inc(x_189); -lean_dec(x_184); -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 +{ +lean_object* x_196; lean_object* x_197; lean_object* x_198; +x_196 = lean_ctor_get(x_191, 0); +x_197 = lean_ctor_get(x_191, 1); +lean_inc(x_197); +lean_inc(x_196); +lean_dec(x_191); +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; +} +} +} +} +} +else +{ +switch (x_46) { +case 0: +{ +lean_object* x_199; +x_199 = lean_box(0); +x_47 = x_199; +goto block_71; +} +case 1: +{ +lean_object* x_200; +lean_dec(x_27); +lean_dec(x_24); +x_200 = lean_box(0); +x_72 = x_200; +goto block_119; +} +case 2: +{ +lean_object* x_201; +lean_dec(x_27); +lean_dec(x_24); +x_201 = lean_box(0); +x_120 = x_201; +goto block_167; +} +case 3: +{ +size_t x_202; size_t x_203; uint8_t x_204; +lean_dec(x_27); +lean_dec(x_19); +x_202 = 0; +x_203 = lean_usize_of_nat(x_24); +lean_dec(x_24); +x_204 = l_Array_anyMUnsafe_any___at_Lean_PrettyPrinter_Delaborator_delabLam___spec__2(x_2, x_1, x_202, x_203); +if (x_204 == 0) +{ +lean_object* x_205; +lean_dec(x_1); +x_205 = lean_box(0); +x_28 = x_205; +goto block_45; +} +else +{ +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; +x_206 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_7, x_8, x_23); +x_207 = lean_ctor_get(x_206, 0); +lean_inc(x_207); +x_208 = lean_ctor_get(x_206, 1); +lean_inc(x_208); +lean_dec(x_206); +x_209 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__3; +lean_inc(x_207); +x_210 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_210, 0, x_207); +lean_ctor_set(x_210, 1, x_209); +x_211 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_1); +lean_dec(x_1); +x_212 = l_Lean_PrettyPrinter_Delaborator_unexpandStructureInstance___lambda__3___closed__16; +lean_inc(x_207); +x_213 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_213, 0, x_207); +lean_ctor_set(x_213, 1, x_212); +x_214 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; +x_215 = lean_array_push(x_214, x_211); +x_216 = lean_array_push(x_215, x_213); +x_217 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; +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 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__4; +x_220 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_220, 0, x_207); +lean_ctor_set(x_220, 1, x_219); +x_221 = l_Lean_PrettyPrinter_Delaborator_delabConst___lambda__3___closed__12; +x_222 = lean_array_push(x_221, x_210); +x_223 = lean_array_push(x_222, x_218); +x_224 = lean_array_push(x_223, x_15); +x_225 = lean_array_push(x_224, x_220); +x_226 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___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_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_227, x_3, x_4, x_5, x_6, x_7, x_8, x_208); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_228; +} +} +default: +{ +lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; +lean_dec(x_27); +lean_dec(x_24); +lean_dec(x_19); +lean_dec(x_15); +lean_dec(x_1); +x_229 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__1; +x_230 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__12; +x_231 = lean_panic_fn(x_229, x_230); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_232 = lean_apply_7(x_231, x_3, x_4, x_5, x_6, x_7, x_8, x_23); +if (lean_obj_tag(x_232) == 0) +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_233 = lean_ctor_get(x_232, 0); +lean_inc(x_233); +x_234 = lean_ctor_get(x_232, 1); +lean_inc(x_234); +lean_dec(x_232); +x_235 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_233, x_3, x_4, x_5, x_6, x_7, x_8, x_234); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_235; +} +else +{ +uint8_t x_236; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_236 = !lean_is_exclusive(x_232); +if (x_236 == 0) +{ +return x_232; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_232, 0); +x_238 = lean_ctor_get(x_232, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_232); +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_237); +lean_ctor_set(x_239, 1, x_238); +return x_239; +} } } } @@ -21207,10 +21287,116 @@ lean_dec(x_3); return x_118; } } +block_167: +{ +uint8_t x_121; +lean_dec(x_120); +x_121 = lean_unbox(x_19); +lean_dec(x_19); +if (x_121 == 0) +{ +lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; 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_dec(x_15); +x_122 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_7, x_8, x_23); +x_123 = lean_ctor_get(x_122, 0); +lean_inc(x_123); +x_124 = lean_ctor_get(x_122, 1); +lean_inc(x_124); +lean_dec(x_122); +x_125 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__9; +lean_inc(x_123); +x_126 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_126, 0, x_123); +lean_ctor_set(x_126, 1, x_125); +x_127 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__12; +x_128 = l_Array_append___rarg(x_127, x_1); +lean_dec(x_1); +x_129 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; +x_130 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_130, 0, x_129); +lean_ctor_set(x_130, 1, x_128); +x_131 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__10; +x_132 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_132, 0, x_123); +lean_ctor_set(x_132, 1, x_131); +x_133 = l_Lean_PrettyPrinter_Delaborator_delabConst___lambda__3___closed__12; +x_134 = lean_array_push(x_133, x_126); +x_135 = lean_array_push(x_134, x_130); +x_136 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__13; +x_137 = lean_array_push(x_135, x_136); +x_138 = lean_array_push(x_137, x_132); +x_139 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__8; +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 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_140, x_3, x_4, x_5, x_6, x_7, x_8, x_124); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_141; } else { -uint8_t x_192; +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; +x_142 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_7, x_8, x_23); +x_143 = lean_ctor_get(x_142, 0); +lean_inc(x_143); +x_144 = lean_ctor_get(x_142, 1); +lean_inc(x_144); +lean_dec(x_142); +x_145 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__9; +lean_inc(x_143); +x_146 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_146, 0, x_143); +lean_ctor_set(x_146, 1, x_145); +x_147 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__12; +x_148 = l_Array_append___rarg(x_147, x_1); +lean_dec(x_1); +x_149 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; +x_150 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_150, 0, x_149); +lean_ctor_set(x_150, 1, x_148); +x_151 = l_Lean_PrettyPrinter_Delaborator_unexpandStructureInstance___lambda__3___closed__16; +lean_inc(x_143); +x_152 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_152, 0, x_143); +lean_ctor_set(x_152, 1, x_151); +x_153 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; +x_154 = lean_array_push(x_153, x_152); +x_155 = lean_array_push(x_154, x_15); +x_156 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_156, 0, x_149); +lean_ctor_set(x_156, 1, x_155); +x_157 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__10; +x_158 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_158, 0, x_143); +lean_ctor_set(x_158, 1, x_157); +x_159 = l_Lean_PrettyPrinter_Delaborator_delabConst___lambda__3___closed__12; +x_160 = lean_array_push(x_159, x_146); +x_161 = lean_array_push(x_160, x_150); +x_162 = lean_array_push(x_161, x_156); +x_163 = lean_array_push(x_162, x_158); +x_164 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__8; +x_165 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_165, 0, x_164); +lean_ctor_set(x_165, 1, x_163); +x_166 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(x_2, x_165, x_3, x_4, x_5, x_6, x_7, x_8, x_144); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_166; +} +} +} +else +{ +uint8_t x_240; lean_dec(x_19); lean_dec(x_15); lean_dec(x_11); @@ -21222,29 +21408,29 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_192 = !lean_is_exclusive(x_22); -if (x_192 == 0) +x_240 = !lean_is_exclusive(x_22); +if (x_240 == 0) { return x_22; } else { -lean_object* x_193; lean_object* x_194; lean_object* x_195; -x_193 = lean_ctor_get(x_22, 0); -x_194 = lean_ctor_get(x_22, 1); -lean_inc(x_194); -lean_inc(x_193); +lean_object* x_241; lean_object* x_242; lean_object* x_243; +x_241 = lean_ctor_get(x_22, 0); +x_242 = lean_ctor_get(x_22, 1); +lean_inc(x_242); +lean_inc(x_241); lean_dec(x_22); -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; +x_243 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_243, 0, x_241); +lean_ctor_set(x_243, 1, x_242); +return x_243; } } } else { -uint8_t x_196; +uint8_t x_244; lean_dec(x_15); lean_dec(x_11); lean_dec(x_8); @@ -21255,29 +21441,29 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_196 = !lean_is_exclusive(x_18); -if (x_196 == 0) +x_244 = !lean_is_exclusive(x_18); +if (x_244 == 0) { return x_18; } else { -lean_object* x_197; lean_object* x_198; lean_object* x_199; -x_197 = lean_ctor_get(x_18, 0); -x_198 = lean_ctor_get(x_18, 1); -lean_inc(x_198); -lean_inc(x_197); +lean_object* x_245; lean_object* x_246; lean_object* x_247; +x_245 = lean_ctor_get(x_18, 0); +x_246 = lean_ctor_get(x_18, 1); +lean_inc(x_246); +lean_inc(x_245); lean_dec(x_18); -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; +x_247 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_247, 0, x_245); +lean_ctor_set(x_247, 1, x_246); +return x_247; } } } else { -uint8_t x_200; +uint8_t x_248; lean_dec(x_11); lean_dec(x_8); lean_dec(x_7); @@ -21287,23 +21473,23 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_200 = !lean_is_exclusive(x_14); -if (x_200 == 0) +x_248 = !lean_is_exclusive(x_14); +if (x_248 == 0) { return x_14; } else { -lean_object* x_201; lean_object* x_202; lean_object* x_203; -x_201 = lean_ctor_get(x_14, 0); -x_202 = lean_ctor_get(x_14, 1); -lean_inc(x_202); -lean_inc(x_201); +lean_object* x_249; lean_object* x_250; lean_object* x_251; +x_249 = lean_ctor_get(x_14, 0); +x_250 = lean_ctor_get(x_14, 1); +lean_inc(x_250); +lean_inc(x_249); lean_dec(x_14); -x_203 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_203, 0, x_201); -lean_ctor_set(x_203, 1, x_202); -return x_203; +x_251 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_251, 0, x_249); +lean_ctor_set(x_251, 1, x_250); +return x_251; } } } @@ -21420,39 +21606,52 @@ x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -lean_object* l_Lean_PrettyPrinter_Delaborator_delabForall_match__1___rarg(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_PrettyPrinter_Delaborator_delabForall_match__1___rarg(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { -lean_object* x_5; -x_5 = lean_box(x_1); -switch (lean_obj_tag(x_5)) { +lean_object* x_6; +x_6 = lean_box(x_1); +switch (lean_obj_tag(x_6)) { case 1: { -lean_object* x_6; lean_object* x_7; +lean_object* x_7; lean_object* x_8; +lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_6 = lean_box(0); -x_7 = lean_apply_1(x_2, x_6); -return x_7; +x_7 = lean_box(0); +x_8 = lean_apply_1(x_2, x_7); +return x_8; +} +case 2: +{ +lean_object* x_9; lean_object* x_10; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_9 = lean_box(0); +x_10 = lean_apply_1(x_3, x_9); +return x_10; } case 3: { -lean_object* x_8; lean_object* x_9; -lean_dec(x_4); -lean_dec(x_2); -x_8 = lean_box(0); -x_9 = lean_apply_1(x_3, x_8); -return x_9; -} -default: -{ -lean_object* x_10; lean_object* x_11; +lean_object* x_11; lean_object* x_12; lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); -x_10 = lean_box(x_1); -x_11 = lean_apply_1(x_4, x_10); -return x_11; +x_11 = lean_box(0); +x_12 = lean_apply_1(x_4, x_11); +return x_12; +} +default: +{ +lean_object* x_13; lean_object* x_14; +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_13 = lean_box(x_1); +x_14 = lean_apply_1(x_5, x_13); +return x_14; } } } @@ -21461,18 +21660,18 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_delabForall_match__1(lean_object* _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Delaborator_delabForall_match__1___rarg___boxed), 4, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Delaborator_delabForall_match__1___rarg___boxed), 5, 0); return x_2; } } -lean_object* l_Lean_PrettyPrinter_Delaborator_delabForall_match__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_PrettyPrinter_Delaborator_delabForall_match__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { -uint8_t x_5; lean_object* x_6; -x_5 = lean_unbox(x_1); +uint8_t x_6; lean_object* x_7; +x_6 = lean_unbox(x_1); lean_dec(x_1); -x_6 = l_Lean_PrettyPrinter_Delaborator_delabForall_match__1___rarg(x_5, x_2, x_3, x_4); -return x_6; +x_7 = l_Lean_PrettyPrinter_Delaborator_delabForall_match__1___rarg(x_6, x_2, x_3, x_4, x_5); +return x_7; } } static lean_object* _init_l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__1___closed__1() { @@ -21753,132 +21952,6 @@ return x_13; } } } -lean_object* l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__7(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -uint8_t x_13; -x_13 = x_3 == x_4; -if (x_13 == 0) -{ -size_t x_14; size_t 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; -x_14 = 1; -x_15 = x_3 - x_14; -x_16 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_10, x_11, x_12); -x_17 = lean_ctor_get(x_16, 0); -lean_inc(x_17); -x_18 = lean_ctor_get(x_16, 1); -lean_inc(x_18); -lean_dec(x_16); -x_19 = l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__1___closed__3; -x_20 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_20, 0, x_17); -lean_ctor_set(x_20, 1, x_19); -x_21 = l_Std_Range_forIn_loop___at_Lean_PrettyPrinter_Delaborator_unexpandStructureInstance___spec__1___closed__6; -lean_inc(x_1); -x_22 = lean_array_push(x_21, x_1); -x_23 = lean_array_push(x_22, x_20); -x_24 = lean_array_push(x_23, x_5); -x_25 = l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__1___closed__2; -x_26 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_26, 0, x_25); -lean_ctor_set(x_26, 1, x_24); -x_3 = x_15; -x_5 = x_26; -x_12 = x_18; -goto _start; -} -else -{ -lean_object* x_28; -lean_dec(x_1); -x_28 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_28, 0, x_5); -lean_ctor_set(x_28, 1, x_12); -return x_28; -} -} -} -lean_object* l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__8(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -uint8_t x_13; -x_13 = x_3 == x_4; -if (x_13 == 0) -{ -size_t x_14; size_t 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; -x_14 = 1; -x_15 = x_3 - x_14; -x_16 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_10, x_11, x_12); -x_17 = lean_ctor_get(x_16, 0); -lean_inc(x_17); -x_18 = lean_ctor_get(x_16, 1); -lean_inc(x_18); -lean_dec(x_16); -x_19 = l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__1___closed__3; -x_20 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_20, 0, x_17); -lean_ctor_set(x_20, 1, x_19); -x_21 = l_Std_Range_forIn_loop___at_Lean_PrettyPrinter_Delaborator_unexpandStructureInstance___spec__1___closed__6; -lean_inc(x_1); -x_22 = lean_array_push(x_21, x_1); -x_23 = lean_array_push(x_22, x_20); -x_24 = lean_array_push(x_23, x_5); -x_25 = l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__1___closed__2; -x_26 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_26, 0, x_25); -lean_ctor_set(x_26, 1, x_24); -x_3 = x_15; -x_5 = x_26; -x_12 = x_18; -goto _start; -} -else -{ -lean_object* x_28; -lean_dec(x_1); -x_28 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_28, 0, x_5); -lean_ctor_set(x_28, 1, x_12); -return x_28; -} -} -} -uint8_t l_Array_anyMUnsafe_any___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__9(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4) { -_start: -{ -uint8_t x_5; -x_5 = x_3 == x_4; -if (x_5 == 0) -{ -lean_object* x_6; lean_object* x_7; uint8_t x_8; -x_6 = lean_array_uget(x_2, x_3); -x_7 = l_Lean_Syntax_getId(x_6); -lean_dec(x_6); -x_8 = l_Lean_PrettyPrinter_Delaborator_hasIdent(x_7, x_1); -lean_dec(x_7); -if (x_8 == 0) -{ -size_t x_9; size_t x_10; -x_9 = 1; -x_10 = x_3 + x_9; -x_3 = x_10; -goto _start; -} -else -{ -uint8_t x_12; -x_12 = 1; -return x_12; -} -} -else -{ -uint8_t x_13; -x_13 = 0; -return x_13; -} -} -} static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__1___closed__1() { _start: { @@ -22661,701 +22734,354 @@ return x_169; } case 2: { -lean_object* x_170; lean_object* x_171; lean_object* x_194; uint8_t x_195; -x_170 = lean_array_get_size(x_3); -x_194 = lean_unsigned_to_nat(0u); -x_195 = lean_nat_dec_lt(x_194, x_170); -if (x_195 == 0) -{ -lean_object* x_196; -x_196 = lean_box(0); -x_171 = x_196; -goto block_193; -} -else -{ -uint8_t x_197; -x_197 = lean_nat_dec_le(x_170, x_170); -if (x_197 == 0) -{ -lean_object* x_198; -x_198 = lean_box(0); -x_171 = x_198; -goto block_193; -} -else -{ -size_t x_199; size_t x_200; uint8_t x_201; -x_199 = 0; -x_200 = lean_usize_of_nat(x_170); -x_201 = l_Array_anyMUnsafe_any___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__6(x_1, x_3, x_199, x_200); -if (x_201 == 0) -{ -lean_object* x_202; -x_202 = lean_box(0); -x_171 = x_202; -goto block_193; -} -else -{ -lean_object* x_203; lean_object* x_204; -lean_dec(x_170); +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_dec(x_16); -x_203 = l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_shouldGroupWithNext___closed__1; -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -x_204 = l_Lean_PrettyPrinter_Delaborator_getPPOption(x_203, x_5, x_6, x_7, x_8, x_9, x_10, x_15); -if (lean_obj_tag(x_204) == 0) -{ -lean_object* x_205; lean_object* x_206; lean_object* x_207; -x_205 = lean_ctor_get(x_204, 0); -lean_inc(x_205); -x_206 = lean_ctor_get(x_204, 1); -lean_inc(x_206); -lean_dec(x_204); -if (x_4 == 0) -{ -lean_object* x_236; -lean_dec(x_205); -x_236 = lean_box(0); -x_207 = x_236; -goto block_235; -} -else -{ -uint8_t x_237; -x_237 = lean_unbox(x_205); -lean_dec(x_205); -if (x_237 == 0) -{ -lean_object* x_238; uint8_t x_239; -lean_dec(x_14); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_238 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_9, x_10, x_206); -lean_dec(x_10); -lean_dec(x_9); -x_239 = !lean_is_exclusive(x_238); -if (x_239 == 0) -{ -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; -x_240 = lean_ctor_get(x_238, 0); -x_241 = l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__1___closed__5; -lean_inc(x_240); -x_242 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_242, 0, x_240); -lean_ctor_set(x_242, 1, x_241); -x_243 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__12; -x_244 = l_Array_append___rarg(x_243, x_3); -x_245 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; -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 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; -x_248 = lean_array_push(x_247, x_246); -x_249 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__13; -x_250 = lean_array_push(x_248, x_249); -x_251 = l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__2___closed__4; -x_252 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_252, 0, x_251); -lean_ctor_set(x_252, 1, x_250); -x_253 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__6; -x_254 = lean_array_push(x_253, x_252); -x_255 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_255, 0, x_245); -lean_ctor_set(x_255, 1, x_254); -x_256 = l_Lean_PrettyPrinter_Delaborator_delabConst___lambda__3___closed__9; -x_257 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_257, 0, x_240); -lean_ctor_set(x_257, 1, x_256); -x_258 = l_Lean_PrettyPrinter_Delaborator_delabConst___lambda__3___closed__12; -x_259 = lean_array_push(x_258, x_242); -x_260 = lean_array_push(x_259, x_255); -x_261 = lean_array_push(x_260, x_257); -x_262 = lean_array_push(x_261, x_1); -x_263 = l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__1___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); -lean_ctor_set(x_238, 0, x_264); -return x_238; -} -else -{ -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; 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; -x_265 = lean_ctor_get(x_238, 0); -x_266 = lean_ctor_get(x_238, 1); -lean_inc(x_266); -lean_inc(x_265); -lean_dec(x_238); -x_267 = l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__1___closed__5; -lean_inc(x_265); -x_268 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_267); -x_269 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__12; -x_270 = l_Array_append___rarg(x_269, x_3); -x_271 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; -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 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; -x_274 = lean_array_push(x_273, x_272); -x_275 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__13; -x_276 = lean_array_push(x_274, x_275); -x_277 = l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__2___closed__4; -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 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__6; -x_280 = lean_array_push(x_279, x_278); -x_281 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_281, 0, x_271); -lean_ctor_set(x_281, 1, x_280); -x_282 = l_Lean_PrettyPrinter_Delaborator_delabConst___lambda__3___closed__9; -x_283 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_283, 0, x_265); -lean_ctor_set(x_283, 1, x_282); -x_284 = l_Lean_PrettyPrinter_Delaborator_delabConst___lambda__3___closed__12; -x_285 = lean_array_push(x_284, x_268); -x_286 = lean_array_push(x_285, x_281); -x_287 = lean_array_push(x_286, x_283); -x_288 = lean_array_push(x_287, x_1); -x_289 = l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__1___closed__4; -x_290 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_290, 0, x_289); -lean_ctor_set(x_290, 1, x_288); -x_291 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_291, 0, x_290); -lean_ctor_set(x_291, 1, x_266); -return x_291; -} -} -else -{ -lean_object* x_292; -x_292 = lean_box(0); -x_207 = x_292; -goto block_235; -} -} -block_235: -{ -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_dec(x_207); -x_208 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_9, x_10, x_206); -x_209 = lean_ctor_get(x_208, 0); -lean_inc(x_209); -x_210 = lean_ctor_get(x_208, 1); -lean_inc(x_210); -lean_dec(x_208); -x_211 = l_Lean_PrettyPrinter_Delaborator_delabAppImplicit___lambda__4___closed__4; -lean_inc(x_209); -x_212 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_212, 0, x_209); -lean_ctor_set(x_212, 1, x_211); -x_213 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__12; -x_214 = l_Array_append___rarg(x_213, x_3); -x_215 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; -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_Lean_PrettyPrinter_Delaborator_unexpandStructureInstance___lambda__3___closed__16; -lean_inc(x_209); -x_218 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_218, 0, x_209); -lean_ctor_set(x_218, 1, x_217); -x_219 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; -x_220 = lean_array_push(x_219, x_218); -x_221 = lean_array_push(x_220, x_14); -x_222 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_222, 0, x_215); -lean_ctor_set(x_222, 1, x_221); -x_223 = l_Lean_PrettyPrinter_Delaborator_delabAppImplicit___lambda__4___closed__5; -x_224 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_224, 0, x_209); -lean_ctor_set(x_224, 1, x_223); -x_225 = l_Lean_PrettyPrinter_Delaborator_delabAppImplicit___lambda__4___closed__6; -x_226 = lean_array_push(x_225, x_212); -x_227 = lean_array_push(x_226, x_216); -x_228 = lean_array_push(x_227, x_222); -x_229 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__13; -x_230 = lean_array_push(x_228, x_229); -x_231 = lean_array_push(x_230, x_224); -x_232 = l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__2___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 = l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__1(x_4, x_1, x_233, x_5, x_6, x_7, x_8, x_9, x_10, x_210); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -return x_234; -} -} -else -{ -uint8_t x_293; -lean_dec(x_14); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_293 = !lean_is_exclusive(x_204); -if (x_293 == 0) -{ -return x_204; -} -else -{ -lean_object* x_294; lean_object* x_295; lean_object* x_296; -x_294 = lean_ctor_get(x_204, 0); -x_295 = lean_ctor_get(x_204, 1); -lean_inc(x_295); -lean_inc(x_294); -lean_dec(x_204); -x_296 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_296, 0, x_294); -lean_ctor_set(x_296, 1, x_295); -return x_296; -} -} -} -} -} -block_193: -{ -uint8_t x_172; -lean_dec(x_171); -x_172 = lean_nat_dec_le(x_170, x_170); -if (x_172 == 0) -{ -lean_object* x_173; uint8_t x_174; -x_173 = lean_unsigned_to_nat(0u); -x_174 = lean_nat_dec_lt(x_173, x_170); -if (x_174 == 0) -{ -lean_object* x_175; +x_170 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_9, x_10, x_15); +x_171 = lean_ctor_get(x_170, 0); +lean_inc(x_171); +x_172 = lean_ctor_get(x_170, 1); +lean_inc(x_172); lean_dec(x_170); -lean_dec(x_14); +x_173 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__9; +lean_inc(x_171); +x_174 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_174, 0, x_171); +lean_ctor_set(x_174, 1, x_173); +x_175 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__12; +x_176 = l_Array_append___rarg(x_175, x_3); +x_177 = l_Lean_PrettyPrinter_Delaborator_delabSort___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_Lean_PrettyPrinter_Delaborator_unexpandStructureInstance___lambda__3___closed__16; +lean_inc(x_171); +x_180 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_180, 0, x_171); +lean_ctor_set(x_180, 1, x_179); +x_181 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; +x_182 = lean_array_push(x_181, x_180); +x_183 = lean_array_push(x_182, x_14); +x_184 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_184, 0, x_177); +lean_ctor_set(x_184, 1, x_183); +x_185 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__10; +x_186 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_186, 0, x_171); +lean_ctor_set(x_186, 1, x_185); +x_187 = l_Lean_PrettyPrinter_Delaborator_delabConst___lambda__3___closed__12; +x_188 = lean_array_push(x_187, x_174); +x_189 = lean_array_push(x_188, x_178); +x_190 = lean_array_push(x_189, x_184); +x_191 = lean_array_push(x_190, x_186); +x_192 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__8; +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 = l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__1(x_4, x_1, x_193, x_5, x_6, x_7, x_8, x_9, x_10, x_172); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -if (lean_is_scalar(x_16)) { - x_175 = lean_alloc_ctor(0, 2, 0); -} else { - x_175 = x_16; -} -lean_ctor_set(x_175, 0, x_1); -lean_ctor_set(x_175, 1, x_15); -return x_175; -} -else -{ -size_t x_176; size_t x_177; lean_object* x_178; uint8_t x_179; -lean_dec(x_16); -x_176 = lean_usize_of_nat(x_170); -lean_dec(x_170); -x_177 = 0; -x_178 = l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__4(x_14, x_3, x_176, x_177, x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_15); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_179 = !lean_is_exclusive(x_178); -if (x_179 == 0) -{ -return x_178; -} -else -{ -lean_object* x_180; lean_object* x_181; lean_object* x_182; -x_180 = lean_ctor_get(x_178, 0); -x_181 = lean_ctor_get(x_178, 1); -lean_inc(x_181); -lean_inc(x_180); -lean_dec(x_178); -x_182 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_182, 0, x_180); -lean_ctor_set(x_182, 1, x_181); -return x_182; -} -} -} -else -{ -lean_object* x_183; uint8_t x_184; -x_183 = lean_unsigned_to_nat(0u); -x_184 = lean_nat_dec_lt(x_183, x_170); -if (x_184 == 0) -{ -lean_object* x_185; -lean_dec(x_170); -lean_dec(x_14); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -if (lean_is_scalar(x_16)) { - x_185 = lean_alloc_ctor(0, 2, 0); -} else { - x_185 = x_16; -} -lean_ctor_set(x_185, 0, x_1); -lean_ctor_set(x_185, 1, x_15); -return x_185; -} -else -{ -size_t x_186; size_t x_187; lean_object* x_188; uint8_t x_189; -lean_dec(x_16); -x_186 = lean_usize_of_nat(x_170); -lean_dec(x_170); -x_187 = 0; -x_188 = l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__5(x_14, x_3, x_186, x_187, x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_15); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_189 = !lean_is_exclusive(x_188); -if (x_189 == 0) -{ -return x_188; -} -else -{ -lean_object* x_190; lean_object* x_191; lean_object* x_192; -x_190 = lean_ctor_get(x_188, 0); -x_191 = lean_ctor_get(x_188, 1); -lean_inc(x_191); -lean_inc(x_190); -lean_dec(x_188); -x_192 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_192, 0, x_190); -lean_ctor_set(x_192, 1, x_191); -return x_192; -} -} -} -} +return x_194; } case 3: { -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_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_dec(x_16); -x_297 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_9, x_10, x_15); -x_298 = lean_ctor_get(x_297, 0); -lean_inc(x_298); -x_299 = lean_ctor_get(x_297, 1); -lean_inc(x_299); -lean_dec(x_297); -x_300 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__3; -lean_inc(x_298); -x_301 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_301, 0, x_298); -lean_ctor_set(x_301, 1, x_300); -x_302 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_3); -x_303 = l_Lean_PrettyPrinter_Delaborator_unexpandStructureInstance___lambda__3___closed__16; -lean_inc(x_298); -x_304 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_304, 0, x_298); -lean_ctor_set(x_304, 1, x_303); -x_305 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; -x_306 = lean_array_push(x_305, x_302); -x_307 = lean_array_push(x_306, x_304); -x_308 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; -x_309 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_309, 0, x_308); -lean_ctor_set(x_309, 1, x_307); -x_310 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__4; -x_311 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_311, 0, x_298); -lean_ctor_set(x_311, 1, x_310); -x_312 = l_Lean_PrettyPrinter_Delaborator_delabConst___lambda__3___closed__12; -x_313 = lean_array_push(x_312, x_301); -x_314 = lean_array_push(x_313, x_309); -x_315 = lean_array_push(x_314, x_14); -x_316 = lean_array_push(x_315, x_311); -x_317 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__2; -x_318 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_318, 0, x_317); -lean_ctor_set(x_318, 1, x_316); -x_319 = l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__1(x_4, x_1, x_318, x_5, x_6, x_7, x_8, x_9, x_10, x_299); +x_195 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_9, x_10, x_15); +x_196 = lean_ctor_get(x_195, 0); +lean_inc(x_196); +x_197 = lean_ctor_get(x_195, 1); +lean_inc(x_197); +lean_dec(x_195); +x_198 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__3; +lean_inc(x_196); +x_199 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_199, 0, x_196); +lean_ctor_set(x_199, 1, x_198); +x_200 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_3); +x_201 = l_Lean_PrettyPrinter_Delaborator_unexpandStructureInstance___lambda__3___closed__16; +lean_inc(x_196); +x_202 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_202, 0, x_196); +lean_ctor_set(x_202, 1, x_201); +x_203 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; +x_204 = lean_array_push(x_203, x_200); +x_205 = lean_array_push(x_204, x_202); +x_206 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; +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 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__4; +x_209 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_209, 0, x_196); +lean_ctor_set(x_209, 1, x_208); +x_210 = l_Lean_PrettyPrinter_Delaborator_delabConst___lambda__3___closed__12; +x_211 = lean_array_push(x_210, x_199); +x_212 = lean_array_push(x_211, x_207); +x_213 = lean_array_push(x_212, x_14); +x_214 = lean_array_push(x_213, x_209); +x_215 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___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_Lean_PrettyPrinter_Delaborator_delabForall___lambda__1(x_4, x_1, x_216, x_5, x_6, x_7, x_8, x_9, x_10, x_197); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -return x_319; +return x_217; } default: { -lean_object* x_320; lean_object* x_321; lean_object* x_344; uint8_t x_345; -x_320 = lean_array_get_size(x_3); -x_344 = lean_unsigned_to_nat(0u); -x_345 = lean_nat_dec_lt(x_344, x_320); -if (x_345 == 0) +lean_object* x_218; lean_object* x_219; lean_object* x_242; uint8_t x_243; +x_218 = lean_array_get_size(x_3); +x_242 = lean_unsigned_to_nat(0u); +x_243 = lean_nat_dec_lt(x_242, x_218); +if (x_243 == 0) { -lean_object* x_346; -x_346 = lean_box(0); -x_321 = x_346; -goto block_343; +lean_object* x_244; +x_244 = lean_box(0); +x_219 = x_244; +goto block_241; } else { -uint8_t x_347; -x_347 = lean_nat_dec_le(x_320, x_320); -if (x_347 == 0) +uint8_t x_245; +x_245 = lean_nat_dec_le(x_218, x_218); +if (x_245 == 0) { -lean_object* x_348; -x_348 = lean_box(0); -x_321 = x_348; -goto block_343; +lean_object* x_246; +x_246 = lean_box(0); +x_219 = x_246; +goto block_241; } else { -size_t x_349; size_t x_350; uint8_t x_351; -x_349 = 0; -x_350 = lean_usize_of_nat(x_320); -x_351 = l_Array_anyMUnsafe_any___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__9(x_1, x_3, x_349, x_350); -if (x_351 == 0) +size_t x_247; size_t x_248; uint8_t x_249; +x_247 = 0; +x_248 = lean_usize_of_nat(x_218); +x_249 = l_Array_anyMUnsafe_any___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__6(x_1, x_3, x_247, x_248); +if (x_249 == 0) { -lean_object* x_352; -x_352 = lean_box(0); -x_321 = x_352; -goto block_343; +lean_object* x_250; +x_250 = lean_box(0); +x_219 = x_250; +goto block_241; } else { -lean_object* x_353; lean_object* x_354; -lean_dec(x_320); +lean_object* x_251; lean_object* x_252; +lean_dec(x_218); lean_dec(x_16); -x_353 = l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_shouldGroupWithNext___closed__1; +x_251 = l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_shouldGroupWithNext___closed__1; lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); -x_354 = l_Lean_PrettyPrinter_Delaborator_getPPOption(x_353, x_5, x_6, x_7, x_8, x_9, x_10, x_15); -if (lean_obj_tag(x_354) == 0) +x_252 = l_Lean_PrettyPrinter_Delaborator_getPPOption(x_251, x_5, x_6, x_7, x_8, x_9, x_10, x_15); +if (lean_obj_tag(x_252) == 0) { -lean_object* x_355; lean_object* x_356; lean_object* x_357; -x_355 = lean_ctor_get(x_354, 0); -lean_inc(x_355); -x_356 = lean_ctor_get(x_354, 1); -lean_inc(x_356); -lean_dec(x_354); +lean_object* x_253; lean_object* x_254; lean_object* x_255; +x_253 = lean_ctor_get(x_252, 0); +lean_inc(x_253); +x_254 = lean_ctor_get(x_252, 1); +lean_inc(x_254); +lean_dec(x_252); if (x_4 == 0) { -lean_object* x_386; -lean_dec(x_355); -x_386 = lean_box(0); -x_357 = x_386; -goto block_385; +lean_object* x_284; +lean_dec(x_253); +x_284 = lean_box(0); +x_255 = x_284; +goto block_283; } else { -uint8_t x_387; -x_387 = lean_unbox(x_355); -lean_dec(x_355); -if (x_387 == 0) +uint8_t x_285; +x_285 = lean_unbox(x_253); +lean_dec(x_253); +if (x_285 == 0) { -lean_object* x_388; uint8_t x_389; +lean_object* x_286; uint8_t x_287; lean_dec(x_14); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -x_388 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_9, x_10, x_356); +x_286 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_9, x_10, x_254); lean_dec(x_10); lean_dec(x_9); -x_389 = !lean_is_exclusive(x_388); -if (x_389 == 0) +x_287 = !lean_is_exclusive(x_286); +if (x_287 == 0) { -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; -x_390 = lean_ctor_get(x_388, 0); -x_391 = l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__1___closed__5; -lean_inc(x_390); -x_392 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_392, 0, x_390); -lean_ctor_set(x_392, 1, x_391); -x_393 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__12; -x_394 = l_Array_append___rarg(x_393, x_3); -x_395 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; -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 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; -x_398 = lean_array_push(x_397, x_396); -x_399 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__13; -x_400 = lean_array_push(x_398, x_399); -x_401 = l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__2___closed__4; -x_402 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_402, 0, x_401); -lean_ctor_set(x_402, 1, x_400); -x_403 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__6; -x_404 = lean_array_push(x_403, x_402); -x_405 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_405, 0, x_395); -lean_ctor_set(x_405, 1, x_404); -x_406 = l_Lean_PrettyPrinter_Delaborator_delabConst___lambda__3___closed__9; -x_407 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_407, 0, x_390); -lean_ctor_set(x_407, 1, x_406); -x_408 = l_Lean_PrettyPrinter_Delaborator_delabConst___lambda__3___closed__12; -x_409 = lean_array_push(x_408, x_392); -x_410 = lean_array_push(x_409, x_405); -x_411 = lean_array_push(x_410, x_407); -x_412 = lean_array_push(x_411, x_1); -x_413 = l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__1___closed__4; -x_414 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_414, 0, x_413); -lean_ctor_set(x_414, 1, x_412); -lean_ctor_set(x_388, 0, x_414); -return x_388; +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; +x_288 = lean_ctor_get(x_286, 0); +x_289 = l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__1___closed__5; +lean_inc(x_288); +x_290 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_290, 0, x_288); +lean_ctor_set(x_290, 1, x_289); +x_291 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__12; +x_292 = l_Array_append___rarg(x_291, x_3); +x_293 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; +x_294 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_294, 0, x_293); +lean_ctor_set(x_294, 1, x_292); +x_295 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; +x_296 = lean_array_push(x_295, x_294); +x_297 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__13; +x_298 = lean_array_push(x_296, x_297); +x_299 = l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__2___closed__4; +x_300 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_300, 0, x_299); +lean_ctor_set(x_300, 1, x_298); +x_301 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__6; +x_302 = lean_array_push(x_301, x_300); +x_303 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_303, 0, x_293); +lean_ctor_set(x_303, 1, x_302); +x_304 = l_Lean_PrettyPrinter_Delaborator_delabConst___lambda__3___closed__9; +x_305 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_305, 0, x_288); +lean_ctor_set(x_305, 1, x_304); +x_306 = l_Lean_PrettyPrinter_Delaborator_delabConst___lambda__3___closed__12; +x_307 = lean_array_push(x_306, x_290); +x_308 = lean_array_push(x_307, x_303); +x_309 = lean_array_push(x_308, x_305); +x_310 = lean_array_push(x_309, x_1); +x_311 = l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__1___closed__4; +x_312 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_312, 0, x_311); +lean_ctor_set(x_312, 1, x_310); +lean_ctor_set(x_286, 0, x_312); +return x_286; } else { -lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; 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; -x_415 = lean_ctor_get(x_388, 0); -x_416 = lean_ctor_get(x_388, 1); -lean_inc(x_416); -lean_inc(x_415); -lean_dec(x_388); -x_417 = l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__1___closed__5; -lean_inc(x_415); -x_418 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_418, 0, x_415); -lean_ctor_set(x_418, 1, x_417); -x_419 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__12; -x_420 = l_Array_append___rarg(x_419, x_3); -x_421 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; -x_422 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_422, 0, x_421); -lean_ctor_set(x_422, 1, x_420); -x_423 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; -x_424 = lean_array_push(x_423, x_422); -x_425 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__13; -x_426 = lean_array_push(x_424, x_425); -x_427 = l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__2___closed__4; -x_428 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_428, 0, x_427); -lean_ctor_set(x_428, 1, x_426); -x_429 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__6; -x_430 = lean_array_push(x_429, x_428); -x_431 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_431, 0, x_421); -lean_ctor_set(x_431, 1, x_430); -x_432 = l_Lean_PrettyPrinter_Delaborator_delabConst___lambda__3___closed__9; -x_433 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_433, 0, x_415); -lean_ctor_set(x_433, 1, x_432); -x_434 = l_Lean_PrettyPrinter_Delaborator_delabConst___lambda__3___closed__12; -x_435 = lean_array_push(x_434, x_418); -x_436 = lean_array_push(x_435, x_431); -x_437 = lean_array_push(x_436, x_433); -x_438 = lean_array_push(x_437, x_1); -x_439 = l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__1___closed__4; -x_440 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_440, 0, x_439); -lean_ctor_set(x_440, 1, x_438); -x_441 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_441, 0, x_440); -lean_ctor_set(x_441, 1, x_416); -return x_441; +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; +x_313 = lean_ctor_get(x_286, 0); +x_314 = lean_ctor_get(x_286, 1); +lean_inc(x_314); +lean_inc(x_313); +lean_dec(x_286); +x_315 = l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__1___closed__5; +lean_inc(x_313); +x_316 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_316, 0, x_313); +lean_ctor_set(x_316, 1, x_315); +x_317 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__12; +x_318 = l_Array_append___rarg(x_317, x_3); +x_319 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; +x_320 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_320, 0, x_319); +lean_ctor_set(x_320, 1, x_318); +x_321 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; +x_322 = lean_array_push(x_321, x_320); +x_323 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__13; +x_324 = lean_array_push(x_322, x_323); +x_325 = l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__2___closed__4; +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_Lean_PrettyPrinter_Delaborator_delabSort___closed__6; +x_328 = lean_array_push(x_327, x_326); +x_329 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_329, 0, x_319); +lean_ctor_set(x_329, 1, x_328); +x_330 = l_Lean_PrettyPrinter_Delaborator_delabConst___lambda__3___closed__9; +x_331 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_331, 0, x_313); +lean_ctor_set(x_331, 1, x_330); +x_332 = l_Lean_PrettyPrinter_Delaborator_delabConst___lambda__3___closed__12; +x_333 = lean_array_push(x_332, x_316); +x_334 = lean_array_push(x_333, x_329); +x_335 = lean_array_push(x_334, x_331); +x_336 = lean_array_push(x_335, x_1); +x_337 = l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__1___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_alloc_ctor(0, 2, 0); +lean_ctor_set(x_339, 0, x_338); +lean_ctor_set(x_339, 1, x_314); +return x_339; } } else { -lean_object* x_442; -x_442 = lean_box(0); -x_357 = x_442; -goto block_385; +lean_object* x_340; +x_340 = lean_box(0); +x_255 = x_340; +goto block_283; } } -block_385: +block_283: { -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_dec(x_357); -x_358 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_9, x_10, x_356); -x_359 = lean_ctor_get(x_358, 0); -lean_inc(x_359); -x_360 = lean_ctor_get(x_358, 1); -lean_inc(x_360); -lean_dec(x_358); -x_361 = l_Lean_PrettyPrinter_Delaborator_delabAppImplicit___lambda__4___closed__4; -lean_inc(x_359); -x_362 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_362, 0, x_359); -lean_ctor_set(x_362, 1, x_361); -x_363 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__12; -x_364 = l_Array_append___rarg(x_363, x_3); -x_365 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; -x_366 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_366, 0, x_365); -lean_ctor_set(x_366, 1, x_364); -x_367 = l_Lean_PrettyPrinter_Delaborator_unexpandStructureInstance___lambda__3___closed__16; -lean_inc(x_359); -x_368 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_368, 0, x_359); -lean_ctor_set(x_368, 1, x_367); -x_369 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; -x_370 = lean_array_push(x_369, x_368); -x_371 = lean_array_push(x_370, x_14); -x_372 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_372, 0, x_365); -lean_ctor_set(x_372, 1, x_371); -x_373 = l_Lean_PrettyPrinter_Delaborator_delabAppImplicit___lambda__4___closed__5; -x_374 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_374, 0, x_359); -lean_ctor_set(x_374, 1, x_373); -x_375 = l_Lean_PrettyPrinter_Delaborator_delabAppImplicit___lambda__4___closed__6; -x_376 = lean_array_push(x_375, x_362); -x_377 = lean_array_push(x_376, x_366); -x_378 = lean_array_push(x_377, x_372); -x_379 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__13; -x_380 = lean_array_push(x_378, x_379); -x_381 = lean_array_push(x_380, x_374); -x_382 = l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__2___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_PrettyPrinter_Delaborator_delabForall___lambda__1(x_4, x_1, x_383, x_5, x_6, x_7, x_8, x_9, x_10, x_360); +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_dec(x_255); +x_256 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(x_9, x_10, x_254); +x_257 = lean_ctor_get(x_256, 0); +lean_inc(x_257); +x_258 = lean_ctor_get(x_256, 1); +lean_inc(x_258); +lean_dec(x_256); +x_259 = l_Lean_PrettyPrinter_Delaborator_delabAppImplicit___lambda__4___closed__4; +lean_inc(x_257); +x_260 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_260, 0, x_257); +lean_ctor_set(x_260, 1, x_259); +x_261 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__12; +x_262 = l_Array_append___rarg(x_261, x_3); +x_263 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__11; +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_Lean_PrettyPrinter_Delaborator_unexpandStructureInstance___lambda__3___closed__16; +lean_inc(x_257); +x_266 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_266, 0, x_257); +lean_ctor_set(x_266, 1, x_265); +x_267 = l_Lean_PrettyPrinter_Delaborator_maybeAddBlockImplicit___closed__11; +x_268 = lean_array_push(x_267, x_266); +x_269 = lean_array_push(x_268, x_14); +x_270 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_270, 0, x_263); +lean_ctor_set(x_270, 1, x_269); +x_271 = l_Lean_PrettyPrinter_Delaborator_delabAppImplicit___lambda__4___closed__5; +x_272 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_272, 0, x_257); +lean_ctor_set(x_272, 1, x_271); +x_273 = l_Lean_PrettyPrinter_Delaborator_delabAppImplicit___lambda__4___closed__6; +x_274 = lean_array_push(x_273, x_260); +x_275 = lean_array_push(x_274, x_264); +x_276 = lean_array_push(x_275, x_270); +x_277 = l_Lean_PrettyPrinter_Delaborator_delabSort___closed__13; +x_278 = lean_array_push(x_276, x_277); +x_279 = lean_array_push(x_278, x_272); +x_280 = l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__2___closed__2; +x_281 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_281, 0, x_280); +lean_ctor_set(x_281, 1, x_279); +x_282 = l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__1(x_4, x_1, x_281, x_5, x_6, x_7, x_8, x_9, x_10, x_258); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -return x_384; +return x_282; } } else { -uint8_t x_443; +uint8_t x_341; lean_dec(x_14); lean_dec(x_10); lean_dec(x_9); @@ -23364,42 +23090,42 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_1); -x_443 = !lean_is_exclusive(x_354); -if (x_443 == 0) +x_341 = !lean_is_exclusive(x_252); +if (x_341 == 0) { -return x_354; +return x_252; } else { -lean_object* x_444; lean_object* x_445; lean_object* x_446; -x_444 = lean_ctor_get(x_354, 0); -x_445 = lean_ctor_get(x_354, 1); -lean_inc(x_445); -lean_inc(x_444); -lean_dec(x_354); -x_446 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_446, 0, x_444); -lean_ctor_set(x_446, 1, x_445); -return x_446; +lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_342 = lean_ctor_get(x_252, 0); +x_343 = lean_ctor_get(x_252, 1); +lean_inc(x_343); +lean_inc(x_342); +lean_dec(x_252); +x_344 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_344, 0, x_342); +lean_ctor_set(x_344, 1, x_343); +return x_344; } } } } } -block_343: +block_241: { -uint8_t x_322; -lean_dec(x_321); -x_322 = lean_nat_dec_le(x_320, x_320); -if (x_322 == 0) +uint8_t x_220; +lean_dec(x_219); +x_220 = lean_nat_dec_le(x_218, x_218); +if (x_220 == 0) { -lean_object* x_323; uint8_t x_324; -x_323 = lean_unsigned_to_nat(0u); -x_324 = lean_nat_dec_lt(x_323, x_320); -if (x_324 == 0) +lean_object* x_221; uint8_t x_222; +x_221 = lean_unsigned_to_nat(0u); +x_222 = lean_nat_dec_lt(x_221, x_218); +if (x_222 == 0) { -lean_object* x_325; -lean_dec(x_320); +lean_object* x_223; +lean_dec(x_218); lean_dec(x_14); lean_dec(x_10); lean_dec(x_9); @@ -23408,57 +23134,57 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); if (lean_is_scalar(x_16)) { - x_325 = lean_alloc_ctor(0, 2, 0); + x_223 = lean_alloc_ctor(0, 2, 0); } else { - x_325 = x_16; + x_223 = x_16; } -lean_ctor_set(x_325, 0, x_1); -lean_ctor_set(x_325, 1, x_15); -return x_325; +lean_ctor_set(x_223, 0, x_1); +lean_ctor_set(x_223, 1, x_15); +return x_223; } else { -size_t x_326; size_t x_327; lean_object* x_328; uint8_t x_329; +size_t x_224; size_t x_225; lean_object* x_226; uint8_t x_227; lean_dec(x_16); -x_326 = lean_usize_of_nat(x_320); -lean_dec(x_320); -x_327 = 0; -x_328 = l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__7(x_14, x_3, x_326, x_327, x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_15); +x_224 = lean_usize_of_nat(x_218); +lean_dec(x_218); +x_225 = 0; +x_226 = l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__4(x_14, x_3, x_224, x_225, x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_15); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -x_329 = !lean_is_exclusive(x_328); -if (x_329 == 0) +x_227 = !lean_is_exclusive(x_226); +if (x_227 == 0) { -return x_328; +return x_226; } else { -lean_object* x_330; lean_object* x_331; lean_object* x_332; -x_330 = lean_ctor_get(x_328, 0); -x_331 = lean_ctor_get(x_328, 1); -lean_inc(x_331); -lean_inc(x_330); -lean_dec(x_328); -x_332 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_332, 0, x_330); -lean_ctor_set(x_332, 1, x_331); -return x_332; +lean_object* x_228; lean_object* x_229; lean_object* x_230; +x_228 = lean_ctor_get(x_226, 0); +x_229 = lean_ctor_get(x_226, 1); +lean_inc(x_229); +lean_inc(x_228); +lean_dec(x_226); +x_230 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_230, 0, x_228); +lean_ctor_set(x_230, 1, x_229); +return x_230; } } } else { -lean_object* x_333; uint8_t x_334; -x_333 = lean_unsigned_to_nat(0u); -x_334 = lean_nat_dec_lt(x_333, x_320); -if (x_334 == 0) +lean_object* x_231; uint8_t x_232; +x_231 = lean_unsigned_to_nat(0u); +x_232 = lean_nat_dec_lt(x_231, x_218); +if (x_232 == 0) { -lean_object* x_335; -lean_dec(x_320); +lean_object* x_233; +lean_dec(x_218); lean_dec(x_14); lean_dec(x_10); lean_dec(x_9); @@ -23467,45 +23193,45 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); if (lean_is_scalar(x_16)) { - x_335 = lean_alloc_ctor(0, 2, 0); + x_233 = lean_alloc_ctor(0, 2, 0); } else { - x_335 = x_16; + x_233 = x_16; } -lean_ctor_set(x_335, 0, x_1); -lean_ctor_set(x_335, 1, x_15); -return x_335; +lean_ctor_set(x_233, 0, x_1); +lean_ctor_set(x_233, 1, x_15); +return x_233; } else { -size_t x_336; size_t x_337; lean_object* x_338; uint8_t x_339; +size_t x_234; size_t x_235; lean_object* x_236; uint8_t x_237; lean_dec(x_16); -x_336 = lean_usize_of_nat(x_320); -lean_dec(x_320); -x_337 = 0; -x_338 = l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__8(x_14, x_3, x_336, x_337, x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_15); +x_234 = lean_usize_of_nat(x_218); +lean_dec(x_218); +x_235 = 0; +x_236 = l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__5(x_14, x_3, x_234, x_235, x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_15); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -x_339 = !lean_is_exclusive(x_338); -if (x_339 == 0) +x_237 = !lean_is_exclusive(x_236); +if (x_237 == 0) { -return x_338; +return x_236; } else { -lean_object* x_340; lean_object* x_341; lean_object* x_342; -x_340 = lean_ctor_get(x_338, 0); -x_341 = lean_ctor_get(x_338, 1); -lean_inc(x_341); -lean_inc(x_340); -lean_dec(x_338); -x_342 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_342, 0, x_340); -lean_ctor_set(x_342, 1, x_341); -return x_342; +lean_object* x_238; lean_object* x_239; lean_object* x_240; +x_238 = lean_ctor_get(x_236, 0); +x_239 = lean_ctor_get(x_236, 1); +lean_inc(x_239); +lean_inc(x_238); +lean_dec(x_236); +x_240 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_240, 0, x_238); +lean_ctor_set(x_240, 1, x_239); +return x_240; } } } @@ -23515,7 +23241,7 @@ return x_342; } else { -uint8_t x_447; +uint8_t x_345; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -23523,23 +23249,23 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_1); -x_447 = !lean_is_exclusive(x_13); -if (x_447 == 0) +x_345 = !lean_is_exclusive(x_13); +if (x_345 == 0) { return x_13; } else { -lean_object* x_448; lean_object* x_449; lean_object* x_450; -x_448 = lean_ctor_get(x_13, 0); -x_449 = lean_ctor_get(x_13, 1); -lean_inc(x_449); -lean_inc(x_448); +lean_object* x_346; lean_object* x_347; lean_object* x_348; +x_346 = lean_ctor_get(x_13, 0); +x_347 = lean_ctor_get(x_13, 1); +lean_inc(x_347); +lean_inc(x_346); lean_dec(x_13); -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; +x_348 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_348, 0, x_346); +lean_ctor_set(x_348, 1, x_347); +return x_348; } } } @@ -23711,59 +23437,6 @@ x_8 = lean_box(x_7); return x_8; } } -lean_object* l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -size_t x_13; size_t x_14; lean_object* x_15; -x_13 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_14 = lean_unbox_usize(x_4); -lean_dec(x_4); -x_15 = l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__7(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_2); -return x_15; -} -} -lean_object* l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -size_t x_13; size_t x_14; lean_object* x_15; -x_13 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_14 = lean_unbox_usize(x_4); -lean_dec(x_4); -x_15 = l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__8(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_2); -return x_15; -} -} -lean_object* l_Array_anyMUnsafe_any___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -size_t x_5; size_t x_6; uint8_t x_7; lean_object* x_8; -x_5 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_6 = lean_unbox_usize(x_4); -lean_dec(x_4); -x_7 = l_Array_anyMUnsafe_any___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__9(x_1, x_2, x_5, x_6); -lean_dec(x_2); -lean_dec(x_1); -x_8 = lean_box(x_7); -return x_8; -} -} lean_object* l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { @@ -23991,7 +23664,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__2; x_2 = l_Lean_PrettyPrinter_Delaborator_delabLetE___closed__1; -x_3 = lean_unsigned_to_nat(551u); +x_3 = lean_unsigned_to_nat(554u); x_4 = lean_unsigned_to_nat(38u); x_5 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__4; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -24851,7 +24524,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__2; x_2 = l_Lean_PrettyPrinter_Delaborator_delabLit___closed__1; -x_3 = lean_unsigned_to_nat(564u); +x_3 = lean_unsigned_to_nat(567u); x_4 = lean_unsigned_to_nat(31u); x_5 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__4; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -26525,7 +26198,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__2; x_2 = l_Lean_PrettyPrinter_Delaborator_delabProj___closed__1; -x_3 = lean_unsigned_to_nat(603u); +x_3 = lean_unsigned_to_nat(606u); x_4 = lean_unsigned_to_nat(38u); x_5 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__4; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -29151,7 +28824,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__2; x_2 = l_Lean_PrettyPrinter_Delaborator_delabDoElems___closed__5; -x_3 = lean_unsigned_to_nat(675u); +x_3 = lean_unsigned_to_nat(678u); x_4 = lean_unsigned_to_nat(40u); x_5 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__4; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -34364,6 +34037,14 @@ l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__7 = _init_l_Lean lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__7); l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__8 = _init_l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__8(); lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__8); +l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__9 = _init_l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__9(); +lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__9); +l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__10 = _init_l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__10(); +lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__10); +l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__11 = _init_l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__11(); +lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__11); +l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__12 = _init_l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__12(); +lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__12); l_Lean_PrettyPrinter_Delaborator_delabLam___closed__1 = _init_l_Lean_PrettyPrinter_Delaborator_delabLam___closed__1(); lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_delabLam___closed__1); l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabLam___closed__1 = _init_l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabLam___closed__1();