From e21c021f49d23038bf6be1f991b862aa2a0fde3d Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Tue, 26 Oct 2021 10:56:25 +0200 Subject: [PATCH] chore: update stage0 --- stage0/src/Lean/Elab/Binders.lean | 2 +- stage0/src/Lean/Elab/Quotation.lean | 2 +- stage0/src/stdlib_flags.h | 2 +- stage0/stdlib/Init/Classical.c | 628 +- stage0/stdlib/Init/Coe.c | 242 +- stage0/stdlib/Init/Control/Basic.c | 474 +- stage0/stdlib/Init/Conv.c | 1012 +- stage0/stdlib/Init/Core.c | 986 +- stage0/stdlib/Init/Data/Array/Basic.c | 282 +- stage0/stdlib/Init/Data/Array/Subarray.c | 608 +- stage0/stdlib/Init/Data/Format/Macro.c | 190 +- stage0/stdlib/Init/Data/Range.c | 962 +- stage0/stdlib/Init/Data/ToString/Macro.c | 172 +- stage0/stdlib/Init/Meta.c | 1332 +- stage0/stdlib/Init/Notation.c | 10180 ++++++++-------- stage0/stdlib/Init/NotationExtra.c | 2842 ++--- stage0/stdlib/Init/System/IO.c | 584 +- stage0/stdlib/Lean/Data/Options.c | 676 +- stage0/stdlib/Lean/Elab/AuxDef.c | 4 +- stage0/stdlib/Lean/Elab/Binders.c | 1678 +-- stage0/stdlib/Lean/Elab/BuiltinCommand.c | 4 +- stage0/stdlib/Lean/Elab/BuiltinNotation.c | 50 +- stage0/stdlib/Lean/Elab/Declaration.c | 16 +- stage0/stdlib/Lean/Elab/Deriving/BEq.c | 16 +- stage0/stdlib/Lean/Elab/Deriving/Basic.c | 4 +- stage0/stdlib/Lean/Elab/Deriving/DecEq.c | 14 +- stage0/stdlib/Lean/Elab/Deriving/FromToJson.c | 24 +- stage0/stdlib/Lean/Elab/Deriving/Hashable.c | 10 +- stage0/stdlib/Lean/Elab/Deriving/Ord.c | 20 +- stage0/stdlib/Lean/Elab/Deriving/Repr.c | 10 +- stage0/stdlib/Lean/Elab/Do.c | 80 +- stage0/stdlib/Lean/Elab/ElabRules.c | 8 +- stage0/stdlib/Lean/Elab/Macro.c | 12 +- stage0/stdlib/Lean/Elab/MacroArgUtil.c | 68 +- stage0/stdlib/Lean/Elab/Match.c | 14 +- stage0/stdlib/Lean/Elab/Mixfix.c | 12 +- stage0/stdlib/Lean/Elab/MutualDef.c | 22 +- stage0/stdlib/Lean/Elab/Notation.c | 12 +- stage0/stdlib/Lean/Elab/Quotation.c | 4711 +++---- stage0/stdlib/Lean/Elab/StructInst.c | 6 +- stage0/stdlib/Lean/Elab/Syntax.c | 6 +- stage0/stdlib/Lean/Elab/Tactic/Config.c | 2708 ++-- stage0/stdlib/Lean/Exception.c | 496 +- stage0/stdlib/Lean/Message.c | 182 +- stage0/stdlib/Lean/Meta/Basic.c | 12 +- stage0/stdlib/Lean/Meta/GetConst.c | 10 +- stage0/stdlib/Lean/Meta/WHNF.c | 8 +- stage0/stdlib/Lean/Parser/Extra.c | 1112 +- .../Lean/PrettyPrinter/Delaborator/Builtins.c | 4 +- stage0/stdlib/Lean/Util/Trace.c | 766 +- 50 files changed, 16811 insertions(+), 16464 deletions(-) diff --git a/stage0/src/Lean/Elab/Binders.lean b/stage0/src/Lean/Elab/Binders.lean index dfada60b7e..688bb7aff2 100644 --- a/stage0/src/Lean/Elab/Binders.lean +++ b/stage0/src/Lean/Elab/Binders.lean @@ -55,7 +55,7 @@ partial def quoteAutoTactic : Syntax → TermElabM Syntax else let quotedArg ← quoteAutoTactic arg quotedArgs ← `(Array.push $quotedArgs $quotedArg) - `(Syntax.node $(quote k) $quotedArgs) + `(Syntax.node SourceInfo.none $(quote k) $quotedArgs) | Syntax.atom info val => `(mkAtom $(quote val)) | Syntax.missing => throwError "invalid auto tactic, tactic is missing" diff --git a/stage0/src/Lean/Elab/Quotation.lean b/stage0/src/Lean/Elab/Quotation.lean index 34716cc4dd..3728d34e95 100644 --- a/stage0/src/Lean/Elab/Quotation.lean +++ b/stage0/src/Lean/Elab/Quotation.lean @@ -145,7 +145,7 @@ private partial def quoteSyntax : Syntax → TermElabM Syntax else do let arg ← quoteSyntax arg args := args.push arg - `(Syntax.node $(quote k) $(args.build)) + `(Syntax.node SourceInfo.none $(quote k) $(args.build)) | Syntax.atom _ val => `(Syntax.atom info $(quote val)) | Syntax.missing => throwUnsupportedSyntax diff --git a/stage0/src/stdlib_flags.h b/stage0/src/stdlib_flags.h index 77aa54db2d..fc6ece76ff 100644 --- a/stage0/src/stdlib_flags.h +++ b/stage0/src/stdlib_flags.h @@ -6,7 +6,7 @@ options get_default_options() { // see https://leanprover.github.io/lean4/doc/make/index.html#further-bootstrapping-complications #if LEAN_IS_STAGE0 == 1 // switch to `true` for ABI-breaking changes affecting meta code - opts = opts.update({"interpreter", "prefer_native"}, false); + opts = opts.update({"interpreter", "prefer_native"}, true); // switch to `true` for changing built-in parsers used in quotations opts = opts.update({"internal", "parseQuotWithCurrentStage"}, false); #endif diff --git a/stage0/stdlib/Init/Classical.c b/stage0/stdlib/Init/Classical.c index ae4a13c98f..6669db4681 100644 --- a/stage0/stdlib/Init/Classical.c +++ b/stage0/stdlib/Init/Classical.c @@ -13,89 +13,89 @@ #ifdef __cplusplus extern "C" { #endif -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__23; -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__34; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__21; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__38; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__13; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__48; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__50; lean_object* lean_mk_empty_array_with_capacity(lean_object*); +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__50; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__6; static lean_object* l_Classical_tacticByCases_____x3a_____closed__13; lean_object* lean_name_mk_string(lean_object*, lean_object*); -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__12; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__6; static lean_object* l_Classical_tacticByCases_____x3a_____closed__11; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__33; static lean_object* l_Classical_tacticByCases_____x3a_____closed__2; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__26; -LEAN_EXPORT lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140_(lean_object*, lean_object*, lean_object*); +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__24; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__49; +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__20; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__10; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__32; lean_object* lean_array_push(lean_object*, lean_object*); -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__31; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__43; static lean_object* l_Classical_tacticByCases_____x3a_____closed__7; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__11; static lean_object* l_Classical_tacticByCases_____x3a_____closed__16; lean_object* lean_string_utf8_byte_size(lean_object*); -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__39; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__51; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__19; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__35; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__45; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__36; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__16; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__16; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__7; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__19; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__51; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__39; static lean_object* l_Classical_tacticByCases_____x3a_____closed__20; static lean_object* l_Classical_tacticByCases_____x3a_____closed__10; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__49; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__20; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__10; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__32; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__31; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__11; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__35; static lean_object* l_Classical_tacticByCases_____x3a_____closed__12; LEAN_EXPORT lean_object* l_Classical_tacticByCases_____x3a__; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__43; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__36; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__12; +LEAN_EXPORT lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__26; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__21; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__38; static lean_object* l_Classical_tacticByCases_____x3a_____closed__3; static lean_object* l_Classical_tacticByCases_____x3a_____closed__15; static lean_object* l_Classical_tacticByCases_____x3a_____closed__14; static lean_object* l_Classical_tacticByCases_____x3a_____closed__18; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__25; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__13; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__41; static lean_object* l_Classical_tacticByCases_____x3a_____closed__5; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__46; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__52; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__23; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__34; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__9; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__40; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__45; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__4; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__27; static lean_object* l_Classical_tacticByCases_____x3a_____closed__4; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__29; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__28; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__22; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__14; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__33; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__2; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__47; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__48; static lean_object* l_Classical_tacticByCases_____x3a_____closed__9; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__5; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__30; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__3; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__53; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__42; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__18; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__15; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__37; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__17; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__44; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__8; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__5; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__14; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__28; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__15; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__18; static lean_object* l_Classical_tacticByCases_____x3a_____closed__19; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__7; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__24; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__40; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__8; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__30; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__3; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__42; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__4; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__9; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__27; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__44; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__17; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__53; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__46; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__25; static lean_object* l_Classical_tacticByCases_____x3a_____closed__1; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__1; static lean_object* l_Classical_tacticByCases_____x3a_____closed__8; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__22; static lean_object* l_Classical_tacticByCases_____x3a_____closed__17; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__1; static lean_object* l_Classical_tacticByCases_____x3a_____closed__6; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__2; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__41; -static lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__47; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__37; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__52; +static lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__29; static lean_object* _init_l_Classical_tacticByCases_____x3a_____closed__1() { _start: { @@ -310,7 +310,7 @@ x_1 = l_Classical_tacticByCases_____x3a_____closed__20; return x_1; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__1() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -318,17 +318,17 @@ x_1 = lean_mk_string("Lean"); return x_1; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__2() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__1; +x_2 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__3() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__3() { _start: { lean_object* x_1; @@ -336,17 +336,17 @@ x_1 = lean_mk_string("Parser"); return x_1; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__4() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__2; -x_2 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__3; +x_1 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__2; +x_2 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__5() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__5() { _start: { lean_object* x_1; @@ -354,17 +354,17 @@ x_1 = lean_mk_string("Tactic"); return x_1; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__6() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__4; -x_2 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__5; +x_1 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__4; +x_2 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__7() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__7() { _start: { lean_object* x_1; @@ -372,17 +372,17 @@ x_1 = lean_mk_string("seq1"); return x_1; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__8() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__6; -x_2 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__7; +x_1 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__6; +x_2 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__9() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__9() { _start: { lean_object* x_1; @@ -390,17 +390,17 @@ x_1 = lean_mk_string("null"); return x_1; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__10() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__9; +x_2 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__9; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__11() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__11() { _start: { lean_object* x_1; @@ -408,17 +408,17 @@ x_1 = lean_mk_string("cases"); return x_1; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__12() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__6; -x_2 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__11; +x_1 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__6; +x_2 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__11; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__13() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__13() { _start: { lean_object* x_1; @@ -426,17 +426,17 @@ x_1 = lean_mk_string("casesTarget"); return x_1; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__14() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__6; -x_2 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__13; +x_1 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__6; +x_2 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__13; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__15() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__15() { _start: { lean_object* x_1; lean_object* x_2; @@ -445,19 +445,19 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__16() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__10; -x_2 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__15; +x_1 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__10; +x_2 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__15; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__17() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__17() { _start: { lean_object* x_1; @@ -465,17 +465,17 @@ x_1 = lean_mk_string("Term"); return x_1; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__18() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__4; -x_2 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__17; +x_1 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__4; +x_2 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__17; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__19() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__19() { _start: { lean_object* x_1; @@ -483,17 +483,17 @@ x_1 = lean_mk_string("app"); return x_1; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__20() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__18; -x_2 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__19; +x_1 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__18; +x_2 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__19; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__21() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__21() { _start: { lean_object* x_1; @@ -501,22 +501,22 @@ x_1 = lean_mk_string("em"); return x_1; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__22() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__22() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__21; +x_1 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__21; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__23() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__21; +x_1 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__21; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__22; +x_3 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__22; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -524,51 +524,51 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__24() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__21; +x_2 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__21; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__25() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__25() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Classical_tacticByCases_____x3a_____closed__2; -x_2 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__21; +x_2 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__21; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__26() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__25; +x_2 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__25; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__27() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__27() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__26; +x_2 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__26; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__28() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__28() { _start: { lean_object* x_1; lean_object* x_2; @@ -577,7 +577,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__29() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__29() { _start: { lean_object* x_1; lean_object* x_2; @@ -586,17 +586,17 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__30() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__30() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__29; -x_2 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__16; +x_1 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__29; +x_2 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__16; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__31() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__31() { _start: { lean_object* x_1; @@ -604,17 +604,17 @@ x_1 = lean_mk_string("inductionAlts"); return x_1; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__32() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__32() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__6; -x_2 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__31; +x_1 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__6; +x_2 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__31; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__33() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__33() { _start: { lean_object* x_1; @@ -622,7 +622,7 @@ x_1 = lean_mk_string("with"); return x_1; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__34() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__34() { _start: { lean_object* x_1; @@ -630,17 +630,17 @@ x_1 = lean_mk_string("inductionAlt"); return x_1; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__35() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__35() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__6; -x_2 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__34; +x_1 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__6; +x_2 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__34; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__36() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__36() { _start: { lean_object* x_1; @@ -648,7 +648,7 @@ x_1 = lean_mk_string("|"); return x_1; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__37() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__37() { _start: { lean_object* x_1; @@ -656,17 +656,17 @@ x_1 = lean_mk_string("group"); return x_1; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__38() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__38() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__37; +x_2 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__37; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__39() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__39() { _start: { lean_object* x_1; @@ -674,22 +674,22 @@ x_1 = lean_mk_string("inl"); return x_1; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__40() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__40() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__39; +x_1 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__39; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__41() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__41() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__39; +x_1 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__39; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__40; +x_3 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__40; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -697,17 +697,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__42() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__42() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__39; +x_2 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__39; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__43() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__43() { _start: { lean_object* x_1; @@ -715,7 +715,7 @@ x_1 = lean_mk_string("=>"); return x_1; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__44() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__44() { _start: { lean_object* x_1; @@ -723,17 +723,17 @@ x_1 = lean_mk_string("hole"); return x_1; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__45() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__45() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__18; -x_2 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__44; +x_1 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__18; +x_2 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__44; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__46() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__46() { _start: { lean_object* x_1; @@ -741,7 +741,7 @@ x_1 = lean_mk_string("_"); return x_1; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__47() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__47() { _start: { lean_object* x_1; lean_object* x_2; @@ -750,7 +750,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__48() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__48() { _start: { lean_object* x_1; @@ -758,22 +758,22 @@ x_1 = lean_mk_string("inr"); return x_1; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__49() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__49() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__48; +x_1 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__48; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__50() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__50() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__48; +x_1 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__48; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__49; +x_3 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__49; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -781,17 +781,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__51() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__51() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__48; +x_2 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__48; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__52() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__52() { _start: { lean_object* x_1; lean_object* x_2; @@ -800,7 +800,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__53() { +static lean_object* _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__53() { _start: { lean_object* x_1; lean_object* x_2; @@ -809,7 +809,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_1140_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -836,7 +836,7 @@ x_10 = lean_unsigned_to_nat(3u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -847,40 +847,40 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__11; +x_17 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__11; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); -x_19 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__24; +x_19 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__24; lean_inc(x_15); lean_inc(x_16); x_20 = l_Lean_addMacroScope(x_16, x_19, x_15); x_21 = lean_box(0); -x_22 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__23; -x_23 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__27; +x_22 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__23; +x_23 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__27; lean_inc(x_14); x_24 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_24, 0, x_14); lean_ctor_set(x_24, 1, x_22); lean_ctor_set(x_24, 2, x_20); lean_ctor_set(x_24, 3, x_23); -x_25 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__28; +x_25 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__28; x_26 = lean_array_push(x_25, x_11); -x_27 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__10; +x_27 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__10; x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_26); -x_29 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__29; +x_29 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__29; x_30 = lean_array_push(x_29, x_24); x_31 = lean_array_push(x_30, x_28); -x_32 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__20; +x_32 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__20; x_33 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_33, 0, x_32); lean_ctor_set(x_33, 1, x_31); -x_34 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__30; +x_34 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__30; x_35 = lean_array_push(x_34, x_33); -x_36 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__14; +x_36 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__14; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); @@ -888,21 +888,21 @@ x_38 = lean_array_push(x_25, x_37); x_39 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_39, 0, x_27); lean_ctor_set(x_39, 1, x_38); -x_40 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__33; +x_40 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__33; lean_inc(x_14); x_41 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_41, 0, x_14); lean_ctor_set(x_41, 1, x_40); -x_42 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__36; +x_42 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__36; lean_inc(x_14); x_43 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_43, 0, x_14); lean_ctor_set(x_43, 1, x_42); -x_44 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__42; +x_44 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__42; lean_inc(x_15); lean_inc(x_16); x_45 = l_Lean_addMacroScope(x_16, x_44, x_15); -x_46 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__41; +x_46 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__41; lean_inc(x_14); x_47 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_47, 0, x_14); @@ -910,7 +910,7 @@ lean_ctor_set(x_47, 1, x_46); lean_ctor_set(x_47, 2, x_45); lean_ctor_set(x_47, 3, x_21); x_48 = lean_array_push(x_34, x_47); -x_49 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__38; +x_49 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__38; x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); @@ -918,22 +918,22 @@ x_51 = lean_array_push(x_25, x_9); x_52 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_52, 0, x_27); lean_ctor_set(x_52, 1, x_51); -x_53 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__43; +x_53 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__43; lean_inc(x_14); x_54 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_54, 0, x_14); lean_ctor_set(x_54, 1, x_53); -x_55 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__46; +x_55 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__46; lean_inc(x_14); x_56 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_56, 0, x_14); lean_ctor_set(x_56, 1, x_55); x_57 = lean_array_push(x_25, x_56); -x_58 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__45; +x_58 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__45; x_59 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_59, 0, x_58); lean_ctor_set(x_59, 1, x_57); -x_60 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__47; +x_60 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__47; x_61 = lean_array_push(x_60, x_43); lean_inc(x_61); x_62 = lean_array_push(x_61, x_50); @@ -943,13 +943,13 @@ lean_inc(x_54); x_64 = lean_array_push(x_63, x_54); lean_inc(x_59); x_65 = lean_array_push(x_64, x_59); -x_66 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__35; +x_66 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__35; x_67 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_67, 0, x_66); lean_ctor_set(x_67, 1, x_65); -x_68 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__51; +x_68 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__51; x_69 = l_Lean_addMacroScope(x_16, x_68, x_15); -x_70 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__50; +x_70 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__50; x_71 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_71, 0, x_14); lean_ctor_set(x_71, 1, x_70); @@ -971,12 +971,12 @@ x_80 = lean_array_push(x_79, x_78); x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_27); lean_ctor_set(x_81, 1, x_80); -x_82 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__52; +x_82 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__52; x_83 = lean_array_push(x_82, x_41); -x_84 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__16; +x_84 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__16; x_85 = lean_array_push(x_83, x_84); x_86 = lean_array_push(x_85, x_81); -x_87 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__32; +x_87 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__32; x_88 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_88, 0, x_87); lean_ctor_set(x_88, 1, x_86); @@ -984,12 +984,12 @@ x_89 = lean_array_push(x_25, x_88); x_90 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_90, 0, x_27); lean_ctor_set(x_90, 1, x_89); -x_91 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__53; +x_91 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__53; x_92 = lean_array_push(x_91, x_18); x_93 = lean_array_push(x_92, x_39); x_94 = lean_array_push(x_93, x_84); x_95 = lean_array_push(x_94, x_90); -x_96 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__12; +x_96 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__12; x_97 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_97, 0, x_96); lean_ctor_set(x_97, 1, x_95); @@ -998,7 +998,7 @@ x_99 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_99, 0, x_27); lean_ctor_set(x_99, 1, x_98); x_100 = lean_array_push(x_25, x_99); -x_101 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__8; +x_101 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__8; x_102 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_102, 0, x_101); lean_ctor_set(x_102, 1, x_100); @@ -1018,40 +1018,40 @@ lean_inc(x_105); x_106 = lean_ctor_get(x_2, 1); lean_inc(x_106); lean_dec(x_2); -x_107 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__11; +x_107 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__11; lean_inc(x_103); x_108 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_108, 0, x_103); lean_ctor_set(x_108, 1, x_107); -x_109 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__24; +x_109 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__24; lean_inc(x_105); lean_inc(x_106); x_110 = l_Lean_addMacroScope(x_106, x_109, x_105); x_111 = lean_box(0); -x_112 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__23; -x_113 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__27; +x_112 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__23; +x_113 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__27; lean_inc(x_103); x_114 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_114, 0, x_103); lean_ctor_set(x_114, 1, x_112); lean_ctor_set(x_114, 2, x_110); lean_ctor_set(x_114, 3, x_113); -x_115 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__28; +x_115 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__28; x_116 = lean_array_push(x_115, x_11); -x_117 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__10; +x_117 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__10; x_118 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_118, 0, x_117); lean_ctor_set(x_118, 1, x_116); -x_119 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__29; +x_119 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__29; x_120 = lean_array_push(x_119, x_114); x_121 = lean_array_push(x_120, x_118); -x_122 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__20; +x_122 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__20; x_123 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_123, 0, x_122); lean_ctor_set(x_123, 1, x_121); -x_124 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__30; +x_124 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__30; x_125 = lean_array_push(x_124, x_123); -x_126 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__14; +x_126 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__14; x_127 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_127, 0, x_126); lean_ctor_set(x_127, 1, x_125); @@ -1059,21 +1059,21 @@ x_128 = lean_array_push(x_115, x_127); x_129 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_129, 0, x_117); lean_ctor_set(x_129, 1, x_128); -x_130 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__33; +x_130 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__33; lean_inc(x_103); x_131 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_131, 0, x_103); lean_ctor_set(x_131, 1, x_130); -x_132 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__36; +x_132 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__36; lean_inc(x_103); x_133 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_133, 0, x_103); lean_ctor_set(x_133, 1, x_132); -x_134 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__42; +x_134 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__42; lean_inc(x_105); lean_inc(x_106); x_135 = l_Lean_addMacroScope(x_106, x_134, x_105); -x_136 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__41; +x_136 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__41; lean_inc(x_103); x_137 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_137, 0, x_103); @@ -1081,7 +1081,7 @@ lean_ctor_set(x_137, 1, x_136); lean_ctor_set(x_137, 2, x_135); lean_ctor_set(x_137, 3, x_111); x_138 = lean_array_push(x_124, x_137); -x_139 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__38; +x_139 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__38; x_140 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_140, 0, x_139); lean_ctor_set(x_140, 1, x_138); @@ -1089,22 +1089,22 @@ x_141 = lean_array_push(x_115, x_9); x_142 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_142, 0, x_117); lean_ctor_set(x_142, 1, x_141); -x_143 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__43; +x_143 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__43; lean_inc(x_103); x_144 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_144, 0, x_103); lean_ctor_set(x_144, 1, x_143); -x_145 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__46; +x_145 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__46; lean_inc(x_103); x_146 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_146, 0, x_103); lean_ctor_set(x_146, 1, x_145); x_147 = lean_array_push(x_115, x_146); -x_148 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__45; +x_148 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__45; x_149 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_149, 0, x_148); lean_ctor_set(x_149, 1, x_147); -x_150 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__47; +x_150 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__47; x_151 = lean_array_push(x_150, x_133); lean_inc(x_151); x_152 = lean_array_push(x_151, x_140); @@ -1114,13 +1114,13 @@ lean_inc(x_144); x_154 = lean_array_push(x_153, x_144); lean_inc(x_149); x_155 = lean_array_push(x_154, x_149); -x_156 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__35; +x_156 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__35; x_157 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_157, 0, x_156); lean_ctor_set(x_157, 1, x_155); -x_158 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__51; +x_158 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__51; x_159 = l_Lean_addMacroScope(x_106, x_158, x_105); -x_160 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__50; +x_160 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__50; x_161 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_161, 0, x_103); lean_ctor_set(x_161, 1, x_160); @@ -1142,12 +1142,12 @@ x_170 = lean_array_push(x_169, x_168); x_171 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_171, 0, x_117); lean_ctor_set(x_171, 1, x_170); -x_172 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__52; +x_172 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__52; x_173 = lean_array_push(x_172, x_131); -x_174 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__16; +x_174 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__16; x_175 = lean_array_push(x_173, x_174); x_176 = lean_array_push(x_175, x_171); -x_177 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__32; +x_177 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__32; x_178 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_178, 0, x_177); lean_ctor_set(x_178, 1, x_176); @@ -1155,12 +1155,12 @@ x_179 = lean_array_push(x_115, x_178); x_180 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_180, 0, x_117); lean_ctor_set(x_180, 1, x_179); -x_181 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__53; +x_181 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__53; x_182 = lean_array_push(x_181, x_108); x_183 = lean_array_push(x_182, x_129); x_184 = lean_array_push(x_183, x_174); x_185 = lean_array_push(x_184, x_180); -x_186 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__12; +x_186 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__12; x_187 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_187, 0, x_186); lean_ctor_set(x_187, 1, x_185); @@ -1169,7 +1169,7 @@ x_189 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_189, 0, x_117); lean_ctor_set(x_189, 1, x_188); x_190 = lean_array_push(x_115, x_189); -x_191 = l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__8; +x_191 = l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__8; x_192 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_192, 0, x_191); lean_ctor_set(x_192, 1, x_190); @@ -1236,112 +1236,112 @@ l_Classical_tacticByCases_____x3a_____closed__20 = _init_l_Classical_tacticByCas lean_mark_persistent(l_Classical_tacticByCases_____x3a_____closed__20); l_Classical_tacticByCases_____x3a__ = _init_l_Classical_tacticByCases_____x3a__(); lean_mark_persistent(l_Classical_tacticByCases_____x3a__); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__1 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__1(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__1); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__2 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__2(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__2); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__3 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__3(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__3); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__4 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__4(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__4); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__5 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__5(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__5); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__6 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__6(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__6); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__7 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__7(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__7); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__8 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__8(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__8); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__9 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__9(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__9); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__10 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__10(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__10); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__11 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__11(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__11); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__12 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__12(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__12); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__13 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__13(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__13); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__14 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__14(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__14); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__15 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__15(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__15); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__16 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__16(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__16); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__17 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__17(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__17); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__18 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__18(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__18); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__19 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__19(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__19); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__20 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__20(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__20); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__21 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__21(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__21); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__22 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__22(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__22); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__23 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__23(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__23); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__24 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__24(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__24); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__25 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__25(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__25); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__26 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__26(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__26); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__27 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__27(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__27); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__28 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__28(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__28); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__29 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__29(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__29); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__30 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__30(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__30); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__31 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__31(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__31); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__32 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__32(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__32); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__33 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__33(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__33); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__34 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__34(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__34); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__35 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__35(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__35); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__36 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__36(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__36); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__37 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__37(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__37); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__38 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__38(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__38); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__39 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__39(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__39); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__40 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__40(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__40); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__41 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__41(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__41); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__42 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__42(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__42); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__43 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__43(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__43); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__44 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__44(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__44); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__45 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__45(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__45); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__46 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__46(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__46); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__47 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__47(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__47); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__48 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__48(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__48); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__49 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__49(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__49); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__50 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__50(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__50); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__51 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__51(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__51); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__52 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__52(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__52); -l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__53 = _init_l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__53(); -lean_mark_persistent(l_Classical_myMacro____x40_Init_Classical___hyg_1140____closed__53); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__1 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__1(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__1); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__2 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__2(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__2); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__3 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__3(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__3); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__4 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__4(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__4); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__5 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__5(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__5); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__6 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__6(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__6); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__7 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__7(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__7); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__8 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__8(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__8); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__9 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__9(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__9); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__10 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__10(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__10); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__11 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__11(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__11); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__12 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__12(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__12); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__13 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__13(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__13); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__14 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__14(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__14); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__15 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__15(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__15); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__16 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__16(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__16); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__17 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__17(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__17); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__18 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__18(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__18); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__19 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__19(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__19); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__20 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__20(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__20); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__21 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__21(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__21); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__22 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__22(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__22); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__23 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__23(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__23); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__24 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__24(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__24); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__25 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__25(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__25); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__26 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__26(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__26); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__27 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__27(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__27); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__28 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__28(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__28); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__29 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__29(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__29); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__30 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__30(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__30); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__31 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__31(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__31); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__32 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__32(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__32); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__33 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__33(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__33); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__34 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__34(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__34); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__35 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__35(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__35); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__36 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__36(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__36); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__37 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__37(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__37); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__38 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__38(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__38); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__39 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__39(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__39); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__40 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__40(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__40); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__41 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__41(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__41); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__42 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__42(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__42); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__43 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__43(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__43); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__44 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__44(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__44); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__45 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__45(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__45); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__46 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__46(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__46); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__47 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__47(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__47); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__48 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__48(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__48); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__49 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__49(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__49); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__50 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__50(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__50); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__51 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__51(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__51); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__52 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__52(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__52); +l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__53 = _init_l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__53(); +lean_mark_persistent(l_Classical___aux__Init__Classical______macroRules__Classical___xabtacticByCases_____x3a___xbb__1___closed__53); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Coe.c b/stage0/stdlib/Init/Coe.c index 8e66679091..6639fe2f3a 100644 --- a/stage0/stdlib/Init/Coe.c +++ b/stage0/stdlib/Init/Coe.c @@ -13,15 +13,13 @@ #ifdef __cplusplus extern "C" { #endif +static lean_object* l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__6; static lean_object* l_term_u2191_____closed__1; -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Coe___hyg_162____closed__12; LEAN_EXPORT lean_object* l_coeTC(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_coeBase___rarg(lean_object*); LEAN_EXPORT lean_object* l_instCoeDep___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_coeOfHead___rarg(lean_object*); LEAN_EXPORT lean_object* l_coeTail___rarg(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Coe___hyg_162____closed__11; LEAN_EXPORT lean_object* l_instCoeTail__1___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_coeOfDep___rarg___boxed(lean_object*); LEAN_EXPORT lean_object* l_coeSortToCoeTail(lean_object*, lean_object*); @@ -45,9 +43,11 @@ LEAN_EXPORT lean_object* l_coeBase(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_coeTrans(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_coeB___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_coeOfTail(lean_object*, lean_object*); -static lean_object* l_unexpand____x40_Init_Coe___hyg_144____closed__2; +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); +static lean_object* l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__13; static lean_object* l_term_u2191_____closed__11; lean_object* lean_array_push(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___aux__Init__Coe______unexpand__coe__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_coeOfHeadOfTC___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_decPropToBool___rarg___boxed(lean_object*); LEAN_EXPORT lean_object* l_coeSort___rarg(lean_object*, lean_object*); @@ -55,31 +55,31 @@ static lean_object* l_term_u2191_____closed__8; lean_object* lean_string_utf8_byte_size(lean_object*); LEAN_EXPORT lean_object* l_instCoeDep(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_hasOfNatOfCoe___rarg(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Coe___hyg_162____closed__4; +static lean_object* l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__7; static lean_object* l_term_u2191_____closed__6; LEAN_EXPORT lean_object* l_coeSortToCoeTail___rarg___boxed(lean_object*); -static lean_object* l_myMacro____x40_Init_Coe___hyg_162____closed__2; LEAN_EXPORT lean_object* l_liftCoeM___rarg___lambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_coeOfHTCT(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_boolToSort; +static lean_object* l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__16; LEAN_EXPORT lean_object* l_coeOfHeadOfTC(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_coeOfTCOfTail___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Coe___hyg_162____closed__8; -static lean_object* l_myMacro____x40_Init_Coe___hyg_162____closed__17; -static lean_object* l_myMacro____x40_Init_Coe___hyg_162____closed__9; +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(lean_object*); +static lean_object* l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__14; +static lean_object* l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__5; static lean_object* l_term_u2191_____closed__2; LEAN_EXPORT lean_object* l_coe___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_subtypeCoe___rarg___boxed(lean_object*); LEAN_EXPORT lean_object* l_coeOfHead(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Coe___hyg_162____closed__1; LEAN_EXPORT lean_object* l_optionCoe___rarg(lean_object*); +static lean_object* l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__15; +static lean_object* l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__18; LEAN_EXPORT lean_object* l_hasOfNatOfCoe(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__3; LEAN_EXPORT lean_object* l_coeOfDep___rarg(lean_object*); LEAN_EXPORT lean_object* l_coeOfTC(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_coeDecidableEq(uint8_t); -static lean_object* l_myMacro____x40_Init_Coe___hyg_162____closed__5; static lean_object* l_term_u2191_____closed__10; -static lean_object* l_myMacro____x40_Init_Coe___hyg_162____closed__14; LEAN_EXPORT lean_object* l_coeD___rarg___boxed(lean_object*); LEAN_EXPORT lean_object* l_liftCoeM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_term_u2191_____closed__7; @@ -87,50 +87,50 @@ LEAN_EXPORT lean_object* l_coeOfTail___rarg(lean_object*); LEAN_EXPORT lean_object* l_coe___rarg(lean_object*); LEAN_EXPORT lean_object* l_hasOfNatOfCoe___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__12; LEAN_EXPORT lean_object* l_coe(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isNodeOf(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Coe______unexpand__coe__1___closed__2; LEAN_EXPORT lean_object* l_coeDecidableEq___boxed(lean_object*); -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(lean_object*); LEAN_EXPORT lean_object* l_instCoeTail__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_coeOfDep___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Coe___hyg_162____closed__6; +static lean_object* l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__10; +static lean_object* l___aux__Init__Coe______unexpand__coe__1___closed__1; static lean_object* l_term_u2191_____closed__5; LEAN_EXPORT lean_object* l_coeTrans___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_optionCoe(lean_object*); static lean_object* l_term_u2191_____closed__3; LEAN_EXPORT lean_object* l_coeM(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Coe___hyg_144_(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Coe___hyg_162____closed__13; LEAN_EXPORT lean_object* l_coeId(lean_object*); LEAN_EXPORT lean_object* l_subtypeCoe___rarg(lean_object*); LEAN_EXPORT lean_object* l_coeFun___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_coeB(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_subtypeCoe(lean_object*, lean_object*); +static lean_object* l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__17; +static lean_object* l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__8; LEAN_EXPORT lean_object* l_coeSort(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Coe___hyg_162_(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_coeM___rarg(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Coe___hyg_162____closed__10; LEAN_EXPORT lean_object* l_liftCoeM(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_coeOfHeafOfTCOfTail___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__9; +static lean_object* l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__1; LEAN_EXPORT lean_object* l_coe___rarg___boxed(lean_object*); LEAN_EXPORT lean_object* l_boolToProp; +static lean_object* l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__4; +static lean_object* l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__2; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_coeHead___rarg(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Coe___hyg_162____closed__16; -static lean_object* l_myMacro____x40_Init_Coe___hyg_162____closed__15; -static lean_object* l_myMacro____x40_Init_Coe___hyg_162____closed__18; +static lean_object* l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__11; LEAN_EXPORT lean_object* l_coeId___rarg(lean_object*); LEAN_EXPORT lean_object* l_coeId___rarg___boxed(lean_object*); -static lean_object* l_myMacro____x40_Init_Coe___hyg_162____closed__7; LEAN_EXPORT lean_object* l_instCoeTail(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_coeD___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_unexpand____x40_Init_Coe___hyg_144____closed__1; LEAN_EXPORT lean_object* l_term_u2191__; LEAN_EXPORT lean_object* l_decPropToBool(lean_object*); LEAN_EXPORT lean_object* l_coeOfHeafOfTCOfTail(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_coeHead(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Coe___hyg_162____closed__3; LEAN_EXPORT lean_object* l_coeD(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_coeB___rarg(lean_object* x_1, lean_object* x_2) { _start: @@ -382,7 +382,7 @@ x_1 = l_term_u2191_____closed__11; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Coe___hyg_162____closed__1() { +static lean_object* _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -390,17 +390,17 @@ x_1 = lean_mk_string("Lean"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Coe___hyg_162____closed__2() { +static lean_object* _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Coe___hyg_162____closed__1; +x_2 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Coe___hyg_162____closed__3() { +static lean_object* _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__3() { _start: { lean_object* x_1; @@ -408,17 +408,17 @@ x_1 = lean_mk_string("Parser"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Coe___hyg_162____closed__4() { +static lean_object* _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Coe___hyg_162____closed__2; -x_2 = l_myMacro____x40_Init_Coe___hyg_162____closed__3; +x_1 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__2; +x_2 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Coe___hyg_162____closed__5() { +static lean_object* _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__5() { _start: { lean_object* x_1; @@ -426,17 +426,17 @@ x_1 = lean_mk_string("Term"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Coe___hyg_162____closed__6() { +static lean_object* _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Coe___hyg_162____closed__4; -x_2 = l_myMacro____x40_Init_Coe___hyg_162____closed__5; +x_1 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__4; +x_2 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Coe___hyg_162____closed__7() { +static lean_object* _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__7() { _start: { lean_object* x_1; @@ -444,17 +444,17 @@ x_1 = lean_mk_string("app"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Coe___hyg_162____closed__8() { +static lean_object* _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Coe___hyg_162____closed__6; -x_2 = l_myMacro____x40_Init_Coe___hyg_162____closed__7; +x_1 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__6; +x_2 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Coe___hyg_162____closed__9() { +static lean_object* _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__9() { _start: { lean_object* x_1; @@ -462,22 +462,22 @@ x_1 = lean_mk_string("coe"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Coe___hyg_162____closed__10() { +static lean_object* _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Coe___hyg_162____closed__9; +x_1 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__9; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Coe___hyg_162____closed__11() { +static lean_object* _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Coe___hyg_162____closed__9; +x_1 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__9; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Coe___hyg_162____closed__10; +x_3 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__10; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -485,41 +485,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Coe___hyg_162____closed__12() { +static lean_object* _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Coe___hyg_162____closed__9; +x_2 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__9; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Coe___hyg_162____closed__13() { +static lean_object* _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Coe___hyg_162____closed__12; +x_2 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__12; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Coe___hyg_162____closed__14() { +static lean_object* _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Coe___hyg_162____closed__13; +x_2 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__13; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Coe___hyg_162____closed__15() { +static lean_object* _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__15() { _start: { lean_object* x_1; @@ -527,17 +527,17 @@ x_1 = lean_mk_string("null"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Coe___hyg_162____closed__16() { +static lean_object* _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Coe___hyg_162____closed__15; +x_2 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__15; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Coe___hyg_162____closed__17() { +static lean_object* _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__17() { _start: { lean_object* x_1; lean_object* x_2; @@ -546,7 +546,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Coe___hyg_162____closed__18() { +static lean_object* _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__18() { _start: { lean_object* x_1; lean_object* x_2; @@ -555,7 +555,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Coe___hyg_162_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -580,7 +580,7 @@ x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); lean_inc(x_2); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { @@ -591,25 +591,25 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_2, 1); lean_inc(x_14); lean_dec(x_2); -x_15 = l_myMacro____x40_Init_Coe___hyg_162____closed__12; +x_15 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__12; x_16 = l_Lean_addMacroScope(x_14, x_15, x_13); -x_17 = l_myMacro____x40_Init_Coe___hyg_162____closed__11; -x_18 = l_myMacro____x40_Init_Coe___hyg_162____closed__14; +x_17 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__11; +x_18 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__14; x_19 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_19, 0, x_12); lean_ctor_set(x_19, 1, x_17); lean_ctor_set(x_19, 2, x_16); lean_ctor_set(x_19, 3, x_18); -x_20 = l_myMacro____x40_Init_Coe___hyg_162____closed__17; +x_20 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__17; x_21 = lean_array_push(x_20, x_9); -x_22 = l_myMacro____x40_Init_Coe___hyg_162____closed__16; +x_22 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__16; x_23 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_23, 0, x_22); lean_ctor_set(x_23, 1, x_21); -x_24 = l_myMacro____x40_Init_Coe___hyg_162____closed__18; +x_24 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__18; x_25 = lean_array_push(x_24, x_19); x_26 = lean_array_push(x_25, x_23); -x_27 = l_myMacro____x40_Init_Coe___hyg_162____closed__8; +x_27 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__8; x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_26); @@ -629,25 +629,25 @@ lean_inc(x_31); x_32 = lean_ctor_get(x_2, 1); lean_inc(x_32); lean_dec(x_2); -x_33 = l_myMacro____x40_Init_Coe___hyg_162____closed__12; +x_33 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__12; x_34 = l_Lean_addMacroScope(x_32, x_33, x_31); -x_35 = l_myMacro____x40_Init_Coe___hyg_162____closed__11; -x_36 = l_myMacro____x40_Init_Coe___hyg_162____closed__14; +x_35 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__11; +x_36 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__14; x_37 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_37, 0, x_29); lean_ctor_set(x_37, 1, x_35); lean_ctor_set(x_37, 2, x_34); lean_ctor_set(x_37, 3, x_36); -x_38 = l_myMacro____x40_Init_Coe___hyg_162____closed__17; +x_38 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__17; x_39 = lean_array_push(x_38, x_9); -x_40 = l_myMacro____x40_Init_Coe___hyg_162____closed__16; +x_40 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__16; x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_39); -x_42 = l_myMacro____x40_Init_Coe___hyg_162____closed__18; +x_42 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__18; x_43 = lean_array_push(x_42, x_37); x_44 = lean_array_push(x_43, x_41); -x_45 = l_myMacro____x40_Init_Coe___hyg_162____closed__8; +x_45 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__8; x_46 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_44); @@ -659,7 +659,7 @@ return x_47; } } } -static lean_object* _init_l_unexpand____x40_Init_Coe___hyg_144____closed__1() { +static lean_object* _init_l___aux__Init__Coe______unexpand__coe__1___closed__1() { _start: { lean_object* x_1; @@ -667,21 +667,21 @@ x_1 = lean_mk_string("ident"); return x_1; } } -static lean_object* _init_l_unexpand____x40_Init_Coe___hyg_144____closed__2() { +static lean_object* _init_l___aux__Init__Coe______unexpand__coe__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_unexpand____x40_Init_Coe___hyg_144____closed__1; +x_2 = l___aux__Init__Coe______unexpand__coe__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Coe___hyg_144_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Coe______unexpand__coe__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Coe___hyg_162____closed__8; +x_3 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__8; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -699,7 +699,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Coe___hyg_144____closed__2; +x_9 = l___aux__Init__Coe______unexpand__coe__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -735,7 +735,7 @@ else lean_object* x_19; lean_object* x_20; uint8_t x_21; x_19 = l_Lean_Syntax_getArg(x_14, x_7); lean_dec(x_14); -x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_21 = !lean_is_exclusive(x_20); if (x_21 == 0) { @@ -745,7 +745,7 @@ x_23 = l_term_u2191_____closed__5; x_24 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_24, 0, x_22); lean_ctor_set(x_24, 1, x_23); -x_25 = l_myMacro____x40_Init_Coe___hyg_162____closed__18; +x_25 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__18; x_26 = lean_array_push(x_25, x_24); x_27 = lean_array_push(x_26, x_19); x_28 = l_term_u2191_____closed__2; @@ -767,7 +767,7 @@ x_32 = l_term_u2191_____closed__5; x_33 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_33, 0, x_30); lean_ctor_set(x_33, 1, x_32); -x_34 = l_myMacro____x40_Init_Coe___hyg_162____closed__18; +x_34 = l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__18; x_35 = lean_array_push(x_34, x_33); x_36 = lean_array_push(x_35, x_19); x_37 = l_term_u2191_____closed__2; @@ -1309,46 +1309,46 @@ l_term_u2191_____closed__11 = _init_l_term_u2191_____closed__11(); lean_mark_persistent(l_term_u2191_____closed__11); l_term_u2191__ = _init_l_term_u2191__(); lean_mark_persistent(l_term_u2191__); -l_myMacro____x40_Init_Coe___hyg_162____closed__1 = _init_l_myMacro____x40_Init_Coe___hyg_162____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Coe___hyg_162____closed__1); -l_myMacro____x40_Init_Coe___hyg_162____closed__2 = _init_l_myMacro____x40_Init_Coe___hyg_162____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Coe___hyg_162____closed__2); -l_myMacro____x40_Init_Coe___hyg_162____closed__3 = _init_l_myMacro____x40_Init_Coe___hyg_162____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Coe___hyg_162____closed__3); -l_myMacro____x40_Init_Coe___hyg_162____closed__4 = _init_l_myMacro____x40_Init_Coe___hyg_162____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Coe___hyg_162____closed__4); -l_myMacro____x40_Init_Coe___hyg_162____closed__5 = _init_l_myMacro____x40_Init_Coe___hyg_162____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Coe___hyg_162____closed__5); -l_myMacro____x40_Init_Coe___hyg_162____closed__6 = _init_l_myMacro____x40_Init_Coe___hyg_162____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Coe___hyg_162____closed__6); -l_myMacro____x40_Init_Coe___hyg_162____closed__7 = _init_l_myMacro____x40_Init_Coe___hyg_162____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Coe___hyg_162____closed__7); -l_myMacro____x40_Init_Coe___hyg_162____closed__8 = _init_l_myMacro____x40_Init_Coe___hyg_162____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Coe___hyg_162____closed__8); -l_myMacro____x40_Init_Coe___hyg_162____closed__9 = _init_l_myMacro____x40_Init_Coe___hyg_162____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Coe___hyg_162____closed__9); -l_myMacro____x40_Init_Coe___hyg_162____closed__10 = _init_l_myMacro____x40_Init_Coe___hyg_162____closed__10(); -lean_mark_persistent(l_myMacro____x40_Init_Coe___hyg_162____closed__10); -l_myMacro____x40_Init_Coe___hyg_162____closed__11 = _init_l_myMacro____x40_Init_Coe___hyg_162____closed__11(); -lean_mark_persistent(l_myMacro____x40_Init_Coe___hyg_162____closed__11); -l_myMacro____x40_Init_Coe___hyg_162____closed__12 = _init_l_myMacro____x40_Init_Coe___hyg_162____closed__12(); -lean_mark_persistent(l_myMacro____x40_Init_Coe___hyg_162____closed__12); -l_myMacro____x40_Init_Coe___hyg_162____closed__13 = _init_l_myMacro____x40_Init_Coe___hyg_162____closed__13(); -lean_mark_persistent(l_myMacro____x40_Init_Coe___hyg_162____closed__13); -l_myMacro____x40_Init_Coe___hyg_162____closed__14 = _init_l_myMacro____x40_Init_Coe___hyg_162____closed__14(); -lean_mark_persistent(l_myMacro____x40_Init_Coe___hyg_162____closed__14); -l_myMacro____x40_Init_Coe___hyg_162____closed__15 = _init_l_myMacro____x40_Init_Coe___hyg_162____closed__15(); -lean_mark_persistent(l_myMacro____x40_Init_Coe___hyg_162____closed__15); -l_myMacro____x40_Init_Coe___hyg_162____closed__16 = _init_l_myMacro____x40_Init_Coe___hyg_162____closed__16(); -lean_mark_persistent(l_myMacro____x40_Init_Coe___hyg_162____closed__16); -l_myMacro____x40_Init_Coe___hyg_162____closed__17 = _init_l_myMacro____x40_Init_Coe___hyg_162____closed__17(); -lean_mark_persistent(l_myMacro____x40_Init_Coe___hyg_162____closed__17); -l_myMacro____x40_Init_Coe___hyg_162____closed__18 = _init_l_myMacro____x40_Init_Coe___hyg_162____closed__18(); -lean_mark_persistent(l_myMacro____x40_Init_Coe___hyg_162____closed__18); -l_unexpand____x40_Init_Coe___hyg_144____closed__1 = _init_l_unexpand____x40_Init_Coe___hyg_144____closed__1(); -lean_mark_persistent(l_unexpand____x40_Init_Coe___hyg_144____closed__1); -l_unexpand____x40_Init_Coe___hyg_144____closed__2 = _init_l_unexpand____x40_Init_Coe___hyg_144____closed__2(); -lean_mark_persistent(l_unexpand____x40_Init_Coe___hyg_144____closed__2); +l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__1 = _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__1); +l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__2 = _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__2); +l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__3 = _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__3); +l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__4 = _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__4); +l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__5 = _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__5); +l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__6 = _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__6); +l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__7 = _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__7); +l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__8 = _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__8); +l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__9 = _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__9); +l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__10 = _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__10(); +lean_mark_persistent(l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__10); +l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__11 = _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__11(); +lean_mark_persistent(l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__11); +l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__12 = _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__12(); +lean_mark_persistent(l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__12); +l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__13 = _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__13(); +lean_mark_persistent(l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__13); +l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__14 = _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__14(); +lean_mark_persistent(l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__14); +l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__15 = _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__15(); +lean_mark_persistent(l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__15); +l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__16 = _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__16(); +lean_mark_persistent(l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__16); +l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__17 = _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__17(); +lean_mark_persistent(l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__17); +l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__18 = _init_l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__18(); +lean_mark_persistent(l___aux__Init__Coe______macroRules___xabterm_u2191___xbb__1___closed__18); +l___aux__Init__Coe______unexpand__coe__1___closed__1 = _init_l___aux__Init__Coe______unexpand__coe__1___closed__1(); +lean_mark_persistent(l___aux__Init__Coe______unexpand__coe__1___closed__1); +l___aux__Init__Coe______unexpand__coe__1___closed__2 = _init_l___aux__Init__Coe______unexpand__coe__1___closed__2(); +lean_mark_persistent(l___aux__Init__Coe______unexpand__coe__1___closed__2); l_boolToProp = _init_l_boolToProp(); l_boolToSort = _init_l_boolToSort(); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Init/Control/Basic.c b/stage0/stdlib/Init/Control/Basic.c index 7d80fca322..4c7e536ae9 100644 --- a/stage0/stdlib/Init/Control/Basic.c +++ b/stage0/stdlib/Init/Control/Basic.c @@ -13,135 +13,135 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__4; static lean_object* l_term___x3c_x7c_x7c_x3e_____closed__3; -static lean_object* l_unexpand____x40_Init_Control_Basic___hyg_39____closed__2; +LEAN_EXPORT lean_object* l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1(lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); static lean_object* l_term___x3c_x26_x26_x3e_____closed__7; extern lean_object* l_Lean_nullKind; +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__19; lean_object* lean_name_mk_string(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_term___x3c_x26_x3e__; -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_586____closed__4; +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__5; LEAN_EXPORT lean_object* l_term___x3c_x7c_x7c_x3e__; static lean_object* l_term___x3c_x7c_x7c_x3e_____closed__7; LEAN_EXPORT lean_object* l_instMonadControlT___rarg___lambda__3(lean_object*, lean_object*, lean_object*); -static lean_object* l_unexpand____x40_Init_Control_Basic___hyg_39____closed__3; +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__3; LEAN_EXPORT lean_object* l_control___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_56____closed__19; -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_56____closed__11; -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Control_Basic___hyg_906_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Control_Basic___hyg_555_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Control_Basic___hyg_39_(lean_object*, lean_object*); -static lean_object* l_unexpand____x40_Init_Control_Basic___hyg_39____closed__1; static lean_object* l_term___x3c_x7c_x7c_x3e_____closed__5; LEAN_EXPORT lean_object* l_guard___rarg(lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_controlAt___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instOrElse(lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___aux__Init__Control__Basic______unexpand__orM__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_term___x3c_x26_x26_x3e__; static lean_object* l_term___x3c_x7c_x7c_x3e_____closed__2; -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_56____closed__12; LEAN_EXPORT lean_object* l_controlAt(lean_object*, lean_object*); static lean_object* l_term___x3c_x26_x26_x3e_____closed__3; lean_object* lean_string_utf8_byte_size(lean_object*); LEAN_EXPORT lean_object* l_Functor_discard(lean_object*, lean_object*); +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__11; LEAN_EXPORT lean_object* l_instMonadControlT(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Functor_mapRev(lean_object*); +LEAN_EXPORT lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instMonadControlT__1___rarg___lambda__1___boxed(lean_object*, lean_object*); +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__12; +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__20; +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__10; +LEAN_EXPORT lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_term___x3c_x7c_x7c_x3e_____closed__1; -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_586____closed__6; LEAN_EXPORT lean_object* l_Functor_discard___rarg(lean_object*, lean_object*); +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__5; static lean_object* l_optional___rarg___closed__1; static lean_object* l_term___x3c_x26_x3e_____closed__5; LEAN_EXPORT lean_object* l_instMonadControlT___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instMonadControlT__1(lean_object*); -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_937____closed__6; lean_object* l_not___boxed(lean_object*); +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(lean_object*); LEAN_EXPORT lean_object* l_andM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_term___x3c_x26_x3e_____closed__1; LEAN_EXPORT lean_object* l_optional___rarg___lambda__2___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instOrElse___rarg(lean_object*); -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_937____closed__3; LEAN_EXPORT lean_object* l_instMonadControlT___rarg___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_56____closed__20; LEAN_EXPORT lean_object* l_optional___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_56____closed__10; static lean_object* l_term___x3c_x26_x26_x3e_____closed__5; static lean_object* l_term___x3c_x7c_x7c_x3e_____closed__6; +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__2; static lean_object* l_term___x3c_x26_x3e_____closed__8; -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_937____closed__5; LEAN_EXPORT lean_object* l_instToBoolBool___boxed(lean_object*); static lean_object* l_term___x3c_x26_x3e_____closed__4; -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_56____closed__16; +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__16; static lean_object* l_term___x3c_x26_x3e_____closed__9; static lean_object* l_notM___rarg___closed__1; LEAN_EXPORT lean_object* l_guard___rarg___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_56____closed__7; +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__2; +static lean_object* l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1___closed__3; static lean_object* l_term___x3c_x26_x3e_____closed__2; +LEAN_EXPORT lean_object* l___aux__Init__Control__Basic______unexpand__andM__1(lean_object*, lean_object*); +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__18; +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__1; LEAN_EXPORT lean_object* l_orM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instMonadControlT__1___rarg___lambda__3(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Control_Basic___hyg_586_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Control_Basic___hyg_56_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Control_Basic___hyg_937_(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__6; LEAN_EXPORT lean_object* l_instMonadControlT__1___rarg___lambda__2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_bool___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_56____closed__15; -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_56____closed__18; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instMonadControlT___rarg___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_56____closed__3; +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__3; +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__7; LEAN_EXPORT lean_object* l_notM(lean_object*); -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_56____closed__14; +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__15; uint8_t l_Lean_Syntax_isNodeOf(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instMonadControlT___rarg___lambda__2(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_bool(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_56____closed__9; static lean_object* l_term___x3c_x26_x26_x3e_____closed__2; -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_586____closed__1; -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(lean_object*); +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__3; +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__6; static lean_object* l_instMonadControlT__1___rarg___lambda__2___closed__1; -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_586____closed__2; +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__1; LEAN_EXPORT lean_object* l_Functor_mapRev___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_instToBoolBool(uint8_t); static lean_object* l_term___x3c_x26_x3e_____closed__3; static lean_object* l_instMonadControlT__1___rarg___closed__1; LEAN_EXPORT lean_object* l_instMonadControlT___rarg(lean_object*, lean_object*); +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__4; LEAN_EXPORT lean_object* l_orM___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_term___x3c_x26_x3e_____closed__6; LEAN_EXPORT lean_object* l_instMonadControlT__1___rarg___lambda__1(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_56____closed__6; LEAN_EXPORT lean_object* l_optional___rarg___lambda__1(lean_object*); +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__5; +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__14; LEAN_EXPORT lean_object* l_orM___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_term___x3c_x7c_x7c_x3e_____closed__4; -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_56____closed__5; LEAN_EXPORT lean_object* l_andM___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_937____closed__1; +LEAN_EXPORT lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_term___x3c_x26_x26_x3e_____closed__6; LEAN_EXPORT lean_object* l_bool___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_937____closed__4; +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__2; +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__1; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); static lean_object* l_term___x3c_x26_x26_x3e_____closed__4; -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_56____closed__13; +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__13; static lean_object* l_term___x3c_x26_x3e_____closed__11; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_56____closed__2; +static lean_object* l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1___closed__1; +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__6; +static lean_object* l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1___closed__2; LEAN_EXPORT lean_object* l_andM___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_andM(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_guard(lean_object*); LEAN_EXPORT lean_object* l_optional(lean_object*); LEAN_EXPORT lean_object* l_optional___rarg___lambda__2(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_56____closed__8; LEAN_EXPORT lean_object* l_orM(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_56____closed__1; -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_586____closed__5; +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__17; +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__4; LEAN_EXPORT lean_object* l_control(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_56____closed__4; -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_937____closed__2; -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_586____closed__3; static lean_object* l_term___x3c_x26_x3e_____closed__7; LEAN_EXPORT lean_object* l_instMonadControlT__1___rarg(lean_object*); -static lean_object* l_myMacro____x40_Init_Control_Basic___hyg_56____closed__17; +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__8; static lean_object* l_term___x3c_x26_x3e_____closed__10; +static lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__9; LEAN_EXPORT lean_object* l_notM___rarg(lean_object*, lean_object*); static lean_object* l_term___x3c_x26_x26_x3e_____closed__1; LEAN_EXPORT lean_object* l_Functor_mapRev___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { @@ -285,7 +285,7 @@ x_1 = l_term___x3c_x26_x3e_____closed__11; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__1() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -293,17 +293,17 @@ x_1 = lean_mk_string("Lean"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__2() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__1; +x_2 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__3() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__3() { _start: { lean_object* x_1; @@ -311,17 +311,17 @@ x_1 = lean_mk_string("Parser"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__4() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__2; -x_2 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__3; +x_1 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__2; +x_2 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__5() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__5() { _start: { lean_object* x_1; @@ -329,17 +329,17 @@ x_1 = lean_mk_string("Term"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__6() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__4; -x_2 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__5; +x_1 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__4; +x_2 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__7() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__7() { _start: { lean_object* x_1; @@ -347,17 +347,17 @@ x_1 = lean_mk_string("app"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__8() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__6; -x_2 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__7; +x_1 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__6; +x_2 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__9() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__9() { _start: { lean_object* x_1; @@ -365,22 +365,22 @@ x_1 = lean_mk_string("Functor.mapRev"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__10() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__9; +x_1 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__9; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__11() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__9; +x_1 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__9; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__10; +x_3 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__10; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -388,7 +388,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__12() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__12() { _start: { lean_object* x_1; @@ -396,17 +396,17 @@ x_1 = lean_mk_string("Functor"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__13() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__12; +x_2 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__12; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__14() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__14() { _start: { lean_object* x_1; @@ -414,41 +414,41 @@ x_1 = lean_mk_string("mapRev"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__15() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__13; -x_2 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__14; +x_1 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__13; +x_2 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__14; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__16() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__15; +x_2 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__15; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__17() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__16; +x_2 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__16; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__18() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__18() { _start: { lean_object* x_1; @@ -456,17 +456,17 @@ x_1 = lean_mk_string("null"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__19() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__18; +x_2 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__18; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__20() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__20() { _start: { lean_object* x_1; lean_object* x_2; @@ -475,7 +475,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Control_Basic___hyg_56_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -502,7 +502,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -513,25 +513,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__15; +x_17 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__15; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__11; -x_20 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__17; +x_19 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__11; +x_20 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__17; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__20; +x_22 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__20; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__19; +x_25 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__19; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__8; +x_29 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__8; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -551,25 +551,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__15; +x_35 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__15; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__11; -x_38 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__17; +x_37 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__11; +x_38 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__17; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__20; +x_40 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__20; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__19; +x_43 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__19; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__8; +x_47 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__8; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -581,7 +581,7 @@ return x_49; } } } -static lean_object* _init_l_unexpand____x40_Init_Control_Basic___hyg_39____closed__1() { +static lean_object* _init_l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1___closed__1() { _start: { lean_object* x_1; @@ -589,17 +589,17 @@ x_1 = lean_mk_string("ident"); return x_1; } } -static lean_object* _init_l_unexpand____x40_Init_Control_Basic___hyg_39____closed__2() { +static lean_object* _init_l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_unexpand____x40_Init_Control_Basic___hyg_39____closed__1; +x_2 = l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_unexpand____x40_Init_Control_Basic___hyg_39____closed__3() { +static lean_object* _init_l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; @@ -608,11 +608,11 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Control_Basic___hyg_39_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__8; +x_3 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__8; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -630,7 +630,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Control_Basic___hyg_39____closed__2; +x_9 = l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -668,7 +668,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -678,7 +678,7 @@ x_25 = l_term___x3c_x26_x3e_____closed__5; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Control_Basic___hyg_39____closed__3; +x_27 = l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -701,7 +701,7 @@ x_35 = l_term___x3c_x26_x3e_____closed__5; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Control_Basic___hyg_39____closed__3; +x_37 = l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -1071,7 +1071,7 @@ x_1 = l_term___x3c_x7c_x7c_x3e_____closed__7; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_586____closed__1() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -1079,22 +1079,22 @@ x_1 = lean_mk_string("orM"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_586____closed__2() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Control_Basic___hyg_586____closed__1; +x_1 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_586____closed__3() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Control_Basic___hyg_586____closed__1; +x_1 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Control_Basic___hyg_586____closed__2; +x_3 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1102,41 +1102,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_586____closed__4() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Control_Basic___hyg_586____closed__1; +x_2 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_586____closed__5() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Control_Basic___hyg_586____closed__4; +x_2 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__4; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_586____closed__6() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Control_Basic___hyg_586____closed__5; +x_2 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Control_Basic___hyg_586_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -1163,7 +1163,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -1174,25 +1174,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Control_Basic___hyg_586____closed__4; +x_17 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__4; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Control_Basic___hyg_586____closed__3; -x_20 = l_myMacro____x40_Init_Control_Basic___hyg_586____closed__6; +x_19 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__3; +x_20 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__6; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__20; +x_22 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__20; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__19; +x_25 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__19; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__8; +x_29 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__8; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -1212,25 +1212,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Control_Basic___hyg_586____closed__4; +x_35 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__4; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Control_Basic___hyg_586____closed__3; -x_38 = l_myMacro____x40_Init_Control_Basic___hyg_586____closed__6; +x_37 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__3; +x_38 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__6; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__20; +x_40 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__20; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__19; +x_43 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__19; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__8; +x_47 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__8; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -1242,11 +1242,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Control_Basic___hyg_555_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Control__Basic______unexpand__orM__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__8; +x_3 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__8; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -1264,7 +1264,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Control_Basic___hyg_39____closed__2; +x_9 = l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -1302,7 +1302,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -1312,7 +1312,7 @@ x_25 = l_term___x3c_x7c_x7c_x3e_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Control_Basic___hyg_39____closed__3; +x_27 = l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -1335,7 +1335,7 @@ x_35 = l_term___x3c_x7c_x7c_x3e_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Control_Basic___hyg_39____closed__3; +x_37 = l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -1499,7 +1499,7 @@ x_1 = l_term___x3c_x26_x26_x3e_____closed__7; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_937____closed__1() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -1507,22 +1507,22 @@ x_1 = lean_mk_string("andM"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_937____closed__2() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Control_Basic___hyg_937____closed__1; +x_1 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_937____closed__3() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Control_Basic___hyg_937____closed__1; +x_1 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Control_Basic___hyg_937____closed__2; +x_3 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1530,41 +1530,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_937____closed__4() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Control_Basic___hyg_937____closed__1; +x_2 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_937____closed__5() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Control_Basic___hyg_937____closed__4; +x_2 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__4; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Control_Basic___hyg_937____closed__6() { +static lean_object* _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Control_Basic___hyg_937____closed__5; +x_2 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Control_Basic___hyg_937_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -1591,7 +1591,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -1602,25 +1602,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Control_Basic___hyg_937____closed__4; +x_17 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__4; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Control_Basic___hyg_937____closed__3; -x_20 = l_myMacro____x40_Init_Control_Basic___hyg_937____closed__6; +x_19 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__3; +x_20 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__6; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__20; +x_22 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__20; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__19; +x_25 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__19; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__8; +x_29 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__8; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -1640,25 +1640,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Control_Basic___hyg_937____closed__4; +x_35 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__4; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Control_Basic___hyg_937____closed__3; -x_38 = l_myMacro____x40_Init_Control_Basic___hyg_937____closed__6; +x_37 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__3; +x_38 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__6; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__20; +x_40 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__20; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__19; +x_43 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__19; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__8; +x_47 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__8; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -1670,11 +1670,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Control_Basic___hyg_906_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Control__Basic______unexpand__andM__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Control_Basic___hyg_56____closed__8; +x_3 = l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__8; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -1692,7 +1692,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Control_Basic___hyg_39____closed__2; +x_9 = l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -1730,7 +1730,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -1740,7 +1740,7 @@ x_25 = l_term___x3c_x26_x26_x3e_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Control_Basic___hyg_39____closed__3; +x_27 = l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -1763,7 +1763,7 @@ x_35 = l_term___x3c_x26_x26_x3e_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Control_Basic___hyg_39____closed__3; +x_37 = l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -2050,52 +2050,52 @@ l_term___x3c_x26_x3e_____closed__11 = _init_l_term___x3c_x26_x3e_____closed__11( lean_mark_persistent(l_term___x3c_x26_x3e_____closed__11); l_term___x3c_x26_x3e__ = _init_l_term___x3c_x26_x3e__(); lean_mark_persistent(l_term___x3c_x26_x3e__); -l_myMacro____x40_Init_Control_Basic___hyg_56____closed__1 = _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_56____closed__1); -l_myMacro____x40_Init_Control_Basic___hyg_56____closed__2 = _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_56____closed__2); -l_myMacro____x40_Init_Control_Basic___hyg_56____closed__3 = _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_56____closed__3); -l_myMacro____x40_Init_Control_Basic___hyg_56____closed__4 = _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_56____closed__4); -l_myMacro____x40_Init_Control_Basic___hyg_56____closed__5 = _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_56____closed__5); -l_myMacro____x40_Init_Control_Basic___hyg_56____closed__6 = _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_56____closed__6); -l_myMacro____x40_Init_Control_Basic___hyg_56____closed__7 = _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_56____closed__7); -l_myMacro____x40_Init_Control_Basic___hyg_56____closed__8 = _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_56____closed__8); -l_myMacro____x40_Init_Control_Basic___hyg_56____closed__9 = _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_56____closed__9); -l_myMacro____x40_Init_Control_Basic___hyg_56____closed__10 = _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__10(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_56____closed__10); -l_myMacro____x40_Init_Control_Basic___hyg_56____closed__11 = _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__11(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_56____closed__11); -l_myMacro____x40_Init_Control_Basic___hyg_56____closed__12 = _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__12(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_56____closed__12); -l_myMacro____x40_Init_Control_Basic___hyg_56____closed__13 = _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__13(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_56____closed__13); -l_myMacro____x40_Init_Control_Basic___hyg_56____closed__14 = _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__14(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_56____closed__14); -l_myMacro____x40_Init_Control_Basic___hyg_56____closed__15 = _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__15(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_56____closed__15); -l_myMacro____x40_Init_Control_Basic___hyg_56____closed__16 = _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__16(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_56____closed__16); -l_myMacro____x40_Init_Control_Basic___hyg_56____closed__17 = _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__17(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_56____closed__17); -l_myMacro____x40_Init_Control_Basic___hyg_56____closed__18 = _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__18(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_56____closed__18); -l_myMacro____x40_Init_Control_Basic___hyg_56____closed__19 = _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__19(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_56____closed__19); -l_myMacro____x40_Init_Control_Basic___hyg_56____closed__20 = _init_l_myMacro____x40_Init_Control_Basic___hyg_56____closed__20(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_56____closed__20); -l_unexpand____x40_Init_Control_Basic___hyg_39____closed__1 = _init_l_unexpand____x40_Init_Control_Basic___hyg_39____closed__1(); -lean_mark_persistent(l_unexpand____x40_Init_Control_Basic___hyg_39____closed__1); -l_unexpand____x40_Init_Control_Basic___hyg_39____closed__2 = _init_l_unexpand____x40_Init_Control_Basic___hyg_39____closed__2(); -lean_mark_persistent(l_unexpand____x40_Init_Control_Basic___hyg_39____closed__2); -l_unexpand____x40_Init_Control_Basic___hyg_39____closed__3 = _init_l_unexpand____x40_Init_Control_Basic___hyg_39____closed__3(); -lean_mark_persistent(l_unexpand____x40_Init_Control_Basic___hyg_39____closed__3); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__1 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__1); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__2 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__2); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__3 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__3); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__4 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__4); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__5 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__5); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__6 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__6); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__7 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__7); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__8 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__8); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__9 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__9); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__10 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__10(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__10); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__11 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__11(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__11); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__12 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__12(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__12); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__13 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__13(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__13); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__14 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__14(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__14); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__15 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__15(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__15); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__16 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__16(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__16); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__17 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__17(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__17); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__18 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__18(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__18); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__19 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__19(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__19); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__20 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__20(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x3e___xbb__1___closed__20); +l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1___closed__1 = _init_l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1___closed__1(); +lean_mark_persistent(l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1___closed__1); +l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1___closed__2 = _init_l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1___closed__2(); +lean_mark_persistent(l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1___closed__2); +l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1___closed__3 = _init_l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1___closed__3(); +lean_mark_persistent(l___aux__Init__Control__Basic______unexpand__Functor__mapRev__1___closed__3); l_optional___rarg___closed__1 = _init_l_optional___rarg___closed__1(); lean_mark_persistent(l_optional___rarg___closed__1); l_term___x3c_x7c_x7c_x3e_____closed__1 = _init_l_term___x3c_x7c_x7c_x3e_____closed__1(); @@ -2114,18 +2114,18 @@ l_term___x3c_x7c_x7c_x3e_____closed__7 = _init_l_term___x3c_x7c_x7c_x3e_____clos lean_mark_persistent(l_term___x3c_x7c_x7c_x3e_____closed__7); l_term___x3c_x7c_x7c_x3e__ = _init_l_term___x3c_x7c_x7c_x3e__(); lean_mark_persistent(l_term___x3c_x7c_x7c_x3e__); -l_myMacro____x40_Init_Control_Basic___hyg_586____closed__1 = _init_l_myMacro____x40_Init_Control_Basic___hyg_586____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_586____closed__1); -l_myMacro____x40_Init_Control_Basic___hyg_586____closed__2 = _init_l_myMacro____x40_Init_Control_Basic___hyg_586____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_586____closed__2); -l_myMacro____x40_Init_Control_Basic___hyg_586____closed__3 = _init_l_myMacro____x40_Init_Control_Basic___hyg_586____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_586____closed__3); -l_myMacro____x40_Init_Control_Basic___hyg_586____closed__4 = _init_l_myMacro____x40_Init_Control_Basic___hyg_586____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_586____closed__4); -l_myMacro____x40_Init_Control_Basic___hyg_586____closed__5 = _init_l_myMacro____x40_Init_Control_Basic___hyg_586____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_586____closed__5); -l_myMacro____x40_Init_Control_Basic___hyg_586____closed__6 = _init_l_myMacro____x40_Init_Control_Basic___hyg_586____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_586____closed__6); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__1 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__1); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__2 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__2); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__3 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__3); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__4 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__4); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__5 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__5); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__6 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x7c_x7c_x3e___xbb__1___closed__6); l_term___x3c_x26_x26_x3e_____closed__1 = _init_l_term___x3c_x26_x26_x3e_____closed__1(); lean_mark_persistent(l_term___x3c_x26_x26_x3e_____closed__1); l_term___x3c_x26_x26_x3e_____closed__2 = _init_l_term___x3c_x26_x26_x3e_____closed__2(); @@ -2142,18 +2142,18 @@ l_term___x3c_x26_x26_x3e_____closed__7 = _init_l_term___x3c_x26_x26_x3e_____clos lean_mark_persistent(l_term___x3c_x26_x26_x3e_____closed__7); l_term___x3c_x26_x26_x3e__ = _init_l_term___x3c_x26_x26_x3e__(); lean_mark_persistent(l_term___x3c_x26_x26_x3e__); -l_myMacro____x40_Init_Control_Basic___hyg_937____closed__1 = _init_l_myMacro____x40_Init_Control_Basic___hyg_937____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_937____closed__1); -l_myMacro____x40_Init_Control_Basic___hyg_937____closed__2 = _init_l_myMacro____x40_Init_Control_Basic___hyg_937____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_937____closed__2); -l_myMacro____x40_Init_Control_Basic___hyg_937____closed__3 = _init_l_myMacro____x40_Init_Control_Basic___hyg_937____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_937____closed__3); -l_myMacro____x40_Init_Control_Basic___hyg_937____closed__4 = _init_l_myMacro____x40_Init_Control_Basic___hyg_937____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_937____closed__4); -l_myMacro____x40_Init_Control_Basic___hyg_937____closed__5 = _init_l_myMacro____x40_Init_Control_Basic___hyg_937____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_937____closed__5); -l_myMacro____x40_Init_Control_Basic___hyg_937____closed__6 = _init_l_myMacro____x40_Init_Control_Basic___hyg_937____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Control_Basic___hyg_937____closed__6); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__1 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__1); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__2 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__2); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__3 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__3); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__4 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__4); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__5 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__5); +l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__6 = _init_l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Control__Basic______macroRules___xabterm___x3c_x26_x26_x3e___xbb__1___closed__6); l_notM___rarg___closed__1 = _init_l_notM___rarg___closed__1(); lean_mark_persistent(l_notM___rarg___closed__1); l_instMonadControlT__1___rarg___lambda__2___closed__1 = _init_l_instMonadControlT__1___rarg___lambda__2___closed__1(); diff --git a/stage0/stdlib/Init/Conv.c b/stage0/stdlib/Init/Conv.c index 0609bfb5c0..34396f7577 100644 --- a/stage0/stdlib/Init/Conv.c +++ b/stage0/stdlib/Init/Conv.c @@ -13,29 +13,24 @@ #ifdef __cplusplus extern "C" { #endif -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__1; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__13; static lean_object* l_Lean_Parser_Tactic_Conv_convApply_____closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_rewrite___closed__6; static lean_object* l_Lean_Parser_Tactic_Conv_convEnter_x5b_____x5d___closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_convTrace__state___closed__2; static lean_object* l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__15; -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_Conv_conv_quot___closed__19; static lean_object* l_Lean_Parser_Tactic_Conv_conv___closed__13; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_convEnter_x5b_____x5d; static lean_object* l_Lean_Parser_Tactic_Conv_first___closed__8; static lean_object* l_Lean_Parser_Tactic_Conv_ext___closed__8; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__21; static lean_object* l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__18; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__23; static lean_object* l_Lean_Parser_Tactic_Conv_convArgs___closed__3; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__6; static lean_object* l_Lean_Parser_Tactic_Conv_nestedTactic___closed__2; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_convSeq___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_convSeq; static lean_object* l_Lean_Parser_Tactic_Conv_conv_xb7_x2e_____closed__3; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__27; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRepeat____1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_Conv_change___closed__5; lean_object* lean_mk_empty_array_with_capacity(lean_object*); static lean_object* l_Lean_Parser_Tactic_Conv_convSeqBracketed___closed__5; @@ -47,63 +42,64 @@ static lean_object* l_Lean_Parser_Tactic_Conv_simp___closed__24; extern lean_object* l_Lean_nullKind; static lean_object* l_Lean_Parser_Tactic_Conv_ext___closed__6; static lean_object* l_Lean_Parser_Tactic_Conv_conv___closed__6; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRw______1___closed__2; lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getOptional_x3f(lean_object*); -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__8; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__34; static lean_object* l_Lean_Parser_Tactic_Conv_simp___closed__16; static lean_object* l_Lean_Parser_Tactic_Conv_arg___closed__6; static lean_object* l_Lean_Parser_Tactic_Conv_delta___closed__2; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_587____closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_first___closed__11; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__5; static lean_object* l_Lean_Parser_Tactic_Conv_convConvSeq___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_convIntro______; static lean_object* l_Lean_Parser_Tactic_Conv_convEnter_x5b_____x5d___closed__1; lean_object* l_Array_append___rarg(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2157____closed__2; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__2; static lean_object* l_Lean_Parser_Tactic_Conv_convTrace__state___closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_convTrace__state___closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_reduce___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_convTrace__state; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convLeft__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_Conv_first___closed__12; static lean_object* l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__8; static lean_object* l_Lean_Parser_Tactic_Conv_conv___closed__18; static lean_object* l_Lean_Parser_Tactic_Conv_conv___closed__15; static lean_object* l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__9; static lean_object* l_Lean_Parser_Tactic_Conv_conv_quot___closed__9; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__25; static lean_object* l_Lean_Parser_Tactic_Conv_convApply_____closed__2; lean_object* l_Array_extract___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__5; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__13; static lean_object* l_Lean_Parser_Tactic_Conv_simpMatch___closed__4; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__3; static lean_object* l_Lean_Parser_Tactic_Conv_change___closed__3; static lean_object* l_Lean_Parser_Tactic_Conv_conv_quot___closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_enterArg___closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_convApply_____closed__4; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__6; static lean_object* l_Lean_Parser_Tactic_Conv_simp___closed__10; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_nestedConv; static lean_object* l_Lean_Parser_Tactic_Conv_lhs___closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_congr___closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_ext___closed__2; static lean_object* l_Lean_Parser_Tactic_Conv_conv___closed__8; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__25; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__12; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convApply____1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_Conv_convEnter_x5b_____x5d___closed__3; static lean_object* l_Lean_Parser_Tactic_Conv_lhs___closed__1; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2316____closed__1; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__1; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__31; static lean_object* l_Lean_Parser_Tactic_Conv_convEnter_x5b_____x5d___closed__7; static lean_object* l_Lean_Parser_Tactic_Conv_simp___closed__11; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__21; +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_Conv_ext___closed__9; extern lean_object* l_Lean_Parser_Tactic_config; static lean_object* l_Lean_Parser_Tactic_Conv_convSeqBracketed___closed__6; static lean_object* l_Lean_Parser_Tactic_Conv_ext___closed__1; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_nestedTacticCore___closed__7; static lean_object* l_Lean_Parser_Tactic_Conv_paren___closed__7; static lean_object* l_Lean_Parser_Tactic_Conv_convEnter_x5b_____x5d___closed__5; static lean_object* l_Lean_Parser_Tactic_Conv_change___closed__6; lean_object* lean_array_push(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convDone__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_convRepeat__; static lean_object* l_Lean_Parser_Tactic_Conv_convRepeat_____closed__5; static lean_object* l_Lean_Parser_Tactic_Conv_convArgs___closed__5; @@ -113,42 +109,47 @@ static lean_object* l_Lean_Parser_Tactic_Conv_conv___closed__2; static lean_object* l_Lean_Parser_Tactic_Conv_convApply_____closed__5; static lean_object* l_Lean_Parser_Tactic_Conv_whnf___closed__2; static lean_object* l_Lean_Parser_Tactic_Conv_conv___closed__23; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__5; static lean_object* l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__14; static lean_object* l_Lean_Parser_Tactic_Conv_ext___closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_rewrite___closed__3; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRw______1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_Conv_convRw_______closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_simp___closed__19; lean_object* lean_string_utf8_byte_size(lean_object*); -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__2; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__2; static lean_object* l_Lean_Parser_Tactic_Conv_rewrite___closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_convSeqBracketed___closed__3; static lean_object* l_Lean_Parser_Tactic_Conv_nestedTactic___closed__1; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2157____closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_congr___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_enterArg; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_587____closed__2; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__19; static lean_object* l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__3; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; static lean_object* l_Lean_Parser_Tactic_Conv_convDone___closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_ext___closed__7; static lean_object* l_Lean_Parser_Tactic_Conv_convSeq___closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_conv___closed__7; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRepeat____1___closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_convRepeat_____closed__6; static lean_object* l_Lean_Parser_Tactic_Conv_rewrite___closed__7; static lean_object* l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__1; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__11; static lean_object* l_Lean_Parser_Tactic_Conv_conv_quot___closed__13; static lean_object* l_Lean_Parser_Tactic_Conv_nestedTacticCore___closed__10; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__3; static lean_object* l_Lean_Parser_Tactic_Conv_ext___closed__5; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__7; static lean_object* l_Lean_Parser_Tactic_Conv_arg___closed__9; static lean_object* l_Lean_Parser_Tactic_Conv_ext___closed__3; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__19; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_simp; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__12; static lean_object* l_Lean_Parser_Tactic_Conv_convApply_____closed__3; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convApply____1___closed__2; static lean_object* l_Lean_Parser_Tactic_Conv_conv___closed__10; static lean_object* l_Lean_Parser_Tactic_Conv_arg___closed__4; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convTrace__state__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_Conv_first___closed__6; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convIntro________1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_Conv_reduce___closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_nestedTactic___closed__5; static lean_object* l_Lean_Parser_Tactic_Conv_conv_quot___closed__1; @@ -157,8 +158,10 @@ static lean_object* l_Lean_Parser_Tactic_Conv_conv_xb7_x2e_____closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_simp___closed__12; static lean_object* l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__2; static lean_object* l_Lean_Parser_Tactic_Conv_conv_xb7_x2e_____closed__2; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convApply____1___closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_convErw_____closed__2; static lean_object* l_Lean_Parser_Tactic_Conv_conv___closed__24; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__12; static lean_object* l_Lean_Parser_Tactic_Conv_lhs___closed__2; static lean_object* l_Lean_Parser_Tactic_Conv_first___closed__4; @@ -170,26 +173,24 @@ static lean_object* l_Lean_Parser_Tactic_Conv_convDone___closed__2; static lean_object* l_Lean_Parser_Tactic_Conv_rhs___closed__2; static lean_object* l_Lean_Parser_Tactic_Conv_first___closed__2; static lean_object* l_Lean_Parser_Tactic_Conv_conv_xb7_x2e_____closed__8; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__31; static lean_object* l_Lean_Parser_Tactic_Conv_simp___closed__26; static lean_object* l_Lean_Parser_Tactic_Conv_conv_quot___closed__6; static lean_object* l_Lean_Parser_Tactic_Conv_first___closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_conv___closed__20; static lean_object* l_Lean_Parser_Tactic_Conv_convIntro_________closed__6; static lean_object* l_Lean_Parser_Tactic_Conv_ext___closed__10; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_convRight; static lean_object* l_Lean_Parser_Tactic_Conv_arg___closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_pattern___closed__3; lean_object* lean_nat_sub(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__3; static lean_object* l_Lean_Parser_Tactic_Conv_first___closed__9; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__11; static lean_object* l_Lean_Parser_Tactic_Conv_convConvSeq___closed__5; static lean_object* l_Lean_Parser_Tactic_Conv_convSkip___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_convConvSeq; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__17; static lean_object* l_Lean_Parser_Tactic_Conv_arg___closed__8; static lean_object* l_Lean_Parser_Tactic_Conv_convSkip___closed__1; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__24; static lean_object* l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__17; static lean_object* l_Lean_Parser_Tactic_Conv_conv_xb7_x2e_____closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_simp___closed__21; @@ -203,18 +204,21 @@ static lean_object* l_Lean_Parser_Tactic_Conv_conv___closed__22; static lean_object* l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_enterArg___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_paren; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__17; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__32; static lean_object* l_Lean_Parser_Tactic_Conv_simp___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_convSeqBracketed; extern lean_object* l_Lean_Parser_Tactic_simpStar; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__10; static lean_object* l_Lean_Parser_Tactic_Conv_nestedTacticCore___closed__6; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_nestedTactic___closed__7; static lean_object* l_Lean_Parser_Tactic_Conv_convSeqBracketed___closed__7; static lean_object* l_Lean_Parser_Tactic_Conv_conv___closed__5; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__20; static lean_object* l_Lean_Parser_Tactic_Conv_conv___closed__14; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_whnf; static lean_object* l_Lean_Parser_Tactic_Conv_convSeqBracketed___closed__2; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__7; static lean_object* l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__21; static lean_object* l_Lean_Parser_Tactic_Conv_convConvSeq___closed__3; static lean_object* l_Lean_Parser_Tactic_Conv_conv___closed__3; @@ -223,28 +227,31 @@ static lean_object* l_Lean_Parser_Tactic_Conv_convIntro_________closed__3; static lean_object* l_Lean_Parser_Tactic_Conv_simp___closed__23; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_rewrite; extern lean_object* l_Lean_Parser_Tactic_rwRuleSeq; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRw______1___closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_simp___closed__13; static lean_object* l_Lean_Parser_Tactic_Conv_conv_quot___closed__11; static lean_object* l_Lean_Parser_Tactic_Conv_conv___closed__16; static lean_object* l_Lean_Parser_Tactic_Conv_enterArg___closed__2; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRight__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__23; static lean_object* l_Lean_Parser_Tactic_Conv_convIntro_________closed__5; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__13; static lean_object* l_Lean_Parser_Tactic_Conv_convSeqBracketed___closed__1; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__9; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6; static lean_object* l_Lean_Parser_Tactic_Conv_change___closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_lhs___closed__3; static lean_object* l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__19; static lean_object* l_Lean_Parser_Tactic_Conv_convDone___closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_paren___closed__3; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_ext; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convArgs__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_Conv_convSeqBracketed___closed__11; static lean_object* l_Lean_Parser_Tactic_Conv_convConvSeq___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_convArgs; static lean_object* l_Lean_Parser_Tactic_Conv_convErw_____closed__5; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_first; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2031____closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_conv_quot; static lean_object* l_Lean_Parser_Tactic_Conv_simp___closed__8; static lean_object* l_Lean_Parser_Tactic_Conv_first___closed__7; @@ -256,23 +263,22 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_conv; static lean_object* l_Lean_Parser_Tactic_Conv_convRight___closed__2; static lean_object* l_Lean_Parser_Tactic_Conv_convRepeat_____closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_simp___closed__9; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__3; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_Conv_convRw_______closed__5; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__10; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__32; static lean_object* l_Lean_Parser_Tactic_Conv_delta___closed__5; static lean_object* l_Lean_Parser_Tactic_Conv_nestedTacticCore___closed__5; static lean_object* l_Lean_Parser_Tactic_Conv_conv_quot___closed__7; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__20; static lean_object* l_Lean_Parser_Tactic_Conv_nestedTacticCore___closed__3; static lean_object* l_Lean_Parser_Tactic_Conv_simp___closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_conv_xb7_x2e_____closed__5; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__6; static lean_object* l_Lean_Parser_Tactic_Conv_simp___closed__17; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__26; static lean_object* l_Lean_Parser_Tactic_Conv_convSeqBracketed___closed__8; static lean_object* l_Lean_Parser_Tactic_Conv_convEnter_x5b_____x5d___closed__10; static lean_object* l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_congr; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_simpLemma; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_convLeft; static lean_object* l_Lean_Parser_Tactic_Conv_delta___closed__3; @@ -296,72 +302,80 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_change; static lean_object* l_Lean_Parser_Tactic_Conv_pattern___closed__5; static lean_object* l_Lean_Parser_Tactic_Conv_arg___closed__5; static lean_object* l_Lean_Parser_Tactic_Conv_pattern___closed__2; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_first___closed__5; static lean_object* l_Lean_Parser_Tactic_Conv_paren___closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_convArgs___closed__1; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__26; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_simpMatch; lean_object* l_Lean_Syntax_getNumArgs(lean_object*); static lean_object* l_Lean_Parser_Tactic_Conv_convLeft___closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_paren___closed__2; static lean_object* l_Lean_Parser_Tactic_Conv_rewrite___closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_pattern___closed__6; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__22; static lean_object* l_Lean_Parser_Tactic_Conv_nestedTacticCore___closed__9; static lean_object* l_Lean_Parser_Tactic_Conv_simp___closed__14; static lean_object* l_Lean_Parser_Tactic_Conv_convArgs___closed__2; static lean_object* l_Lean_Parser_Tactic_Conv_conv_xb7_x2e_____closed__6; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__24; static lean_object* l_Lean_Parser_Tactic_Conv_nestedTactic___closed__6; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__2; uint8_t lean_nat_dec_le(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_Conv_arg___closed__3; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_Conv_first___closed__10; static lean_object* l_Lean_Parser_Tactic_Conv_simp___closed__5; lean_object* l_Lean_Syntax_getArgs(lean_object*); static lean_object* l_Lean_Parser_Tactic_Conv_congr___closed__4; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__6; static lean_object* l_Lean_Parser_Tactic_Conv_convErw_____closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_simp___closed__15; static lean_object* l_Lean_Parser_Tactic_Conv_convErw_____closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_nestedTacticCore___closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_convRw_______closed__3; static lean_object* l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__11; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convTrace__state__1___closed__2; static lean_object* l_Lean_Parser_Tactic_Conv_simp___closed__3; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_conv_quot___closed__21; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__3; static lean_object* l_Lean_Parser_Tactic_Conv_first___closed__3; static lean_object* l_Lean_Parser_Tactic_Conv_convLeft___closed__1; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2; static lean_object* l_Lean_Parser_Tactic_Conv_conv___closed__12; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1910____closed__1; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__4; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__33; static lean_object* l_Lean_Parser_Tactic_Conv_convLeft___closed__2; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__29; static lean_object* l_Lean_Parser_Tactic_Conv_enterArg___closed__3; static lean_object* l_Lean_Parser_Tactic_Conv_paren___closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_conv_quot___closed__23; static lean_object* l_Lean_Parser_Tactic_Conv_conv_quot___closed__8; static lean_object* l_Lean_Parser_Tactic_Conv_pattern___closed__4; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__28; static lean_object* l_Lean_Parser_Tactic_Conv_rhs___closed__3; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__14; static lean_object* l_Lean_Parser_Tactic_Conv_simpMatch___closed__3; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__3; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2031____closed__1; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__18; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__30; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__5; static lean_object* l_Lean_Parser_Tactic_Conv_convSkip___closed__3; static lean_object* l_Lean_Parser_Tactic_Conv_simpMatch___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_lhs; static lean_object* l_Lean_Parser_Tactic_Conv_conv_quot___closed__10; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__15; static lean_object* l_Lean_Parser_Tactic_Conv_conv___closed__1; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__3; static lean_object* l_Lean_Parser_Tactic_Conv_simpMatch___closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_simp___closed__6; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__34; static lean_object* l_Lean_Parser_Tactic_Conv_nestedTacticCore___closed__2; static lean_object* l_Lean_Parser_Tactic_Conv_delta___closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_convLeft___closed__3; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_Conv_conv_quot___closed__20; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__22; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_convErw__; static lean_object* l_Lean_Parser_Tactic_Conv_convRight___closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_pattern___closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_arg___closed__7; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__29; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_nestedTactic; extern lean_object* l_Lean_Parser_Tactic_simpErase; static lean_object* l_Lean_Parser_Tactic_Conv_convSkip___closed__5; @@ -375,7 +389,8 @@ static lean_object* l_Lean_Parser_Tactic_Conv_convRight___closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_conv___closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_conv_quot___closed__12; static lean_object* l_Lean_Parser_Tactic_Conv_whnf___closed__4; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__30; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__7; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__16; static lean_object* l_Lean_Parser_Tactic_Conv_conv___closed__21; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_reduce; static lean_object* l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__6; @@ -383,60 +398,44 @@ static lean_object* l_Lean_Parser_Tactic_Conv_convRepeat_____closed__3; extern lean_object* l_Lean_Parser_Tactic_discharger; static lean_object* l_Lean_Parser_Tactic_Conv_convDone___closed__5; static lean_object* l_Lean_Parser_Tactic_Conv_congr___closed__3; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__2; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_pattern; static lean_object* l_Lean_Parser_Tactic_Conv_convRw_______closed__2; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__28; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__14; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_convSeq1Indented; static lean_object* l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__25; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__5; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__3; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__7; static lean_object* l_Lean_Parser_Tactic_Conv_ext___closed__11; static lean_object* l_Lean_Parser_Tactic_Conv_rhs___closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_conv___closed__11; static lean_object* l_Lean_Parser_Tactic_Conv_convRw_______closed__6; static lean_object* l_Lean_Parser_Tactic_Conv_simp___closed__22; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_Conv_rewrite___closed__2; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__27; static lean_object* l_Lean_Parser_Tactic_Conv_convEnter_x5b_____x5d___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_rhs; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__16; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_conv_xb7_x2e__; static lean_object* l_Lean_Parser_Tactic_Conv_whnf___closed__3; static lean_object* l_Lean_Parser_Tactic_Conv_delta___closed__6; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__9; static lean_object* l_Lean_Parser_Tactic_Conv_convApply_____closed__6; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convTrace__state__1___closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_convRepeat_____closed__2; static lean_object* l_Lean_Parser_Tactic_Conv_convEnter_x5b_____x5d___closed__6; static lean_object* l_Lean_Parser_Tactic_Conv_convSeqBracketed___closed__9; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__18; static lean_object* l_Lean_Parser_Tactic_Conv_conv_xb7_x2e_____closed__7; static lean_object* l_Lean_Parser_Tactic_Conv_convSeqBracketed___closed__10; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_convTrace__state___closed__5; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__5; static lean_object* l_Lean_Parser_Tactic_Conv_simp___closed__20; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__15; static lean_object* l_Lean_Parser_Tactic_Conv_convSeq___closed__2; static lean_object* l_Lean_Parser_Tactic_Conv_paren___closed__6; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convDone__1___closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_arg___closed__2; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__2; static lean_object* l_Lean_Parser_Tactic_Conv_convRw_______closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_delta; static lean_object* l_Lean_Parser_Tactic_Conv_convRight___closed__5; static lean_object* l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__20; -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_587_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1194_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1100_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2316_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1910_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2031_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2157_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1017_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_934_(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_Conv_convTrace__state___closed__3; static lean_object* l_Lean_Parser_Tactic_Conv_nestedTactic___closed__4; static lean_object* l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__10; @@ -448,25 +447,26 @@ static lean_object* l_Lean_Parser_Tactic_Conv_simpMatch___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_arg; static lean_object* l_Lean_Parser_Tactic_Conv_conv_xb7_x2e_____closed__9; static lean_object* l_Lean_Parser_Tactic_Conv_nestedTacticCore___closed__8; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_nestedTacticCore___closed__1; static lean_object* l_Lean_Parser_Tactic_Conv_conv_quot___closed__5; static lean_object* l_Lean_Parser_Tactic_Conv_convRight___closed__3; static lean_object* l_Lean_Parser_Tactic_Conv_conv_quot___closed__14; static lean_object* l_Lean_Parser_Tactic_Conv_nestedConv___closed__3; static lean_object* l_Lean_Parser_Tactic_Conv_conv_quot___closed__18; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_nestedTacticCore; static lean_object* l_Lean_Parser_Tactic_Conv_convEnter_x5b_____x5d___closed__8; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__33; static lean_object* l_Lean_Parser_Tactic_Conv_reduce___closed__1; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__8; static lean_object* l_Lean_Parser_Tactic_Conv_conv_quot___closed__3; static lean_object* l_Lean_Parser_Tactic_Conv_conv___closed__9; static lean_object* l_Lean_Parser_Tactic_Conv_ext___closed__12; static lean_object* l_Lean_Parser_Tactic_Conv_convEnter_x5b_____x5d___closed__9; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_convDone; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__24; static lean_object* l_Lean_Parser_Tactic_Conv_conv_quot___closed__15; +static lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__23; static lean_object* l_Lean_Parser_Tactic_Conv_nestedConv___closed__2; -static lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__4; static lean_object* _init_l_Lean_Parser_Tactic_Conv_conv_quot___closed__1() { _start: { @@ -3159,7 +3159,7 @@ x_1 = l_Lean_Parser_Tactic_Conv_conv_xb7_x2e_____closed__9; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -3167,17 +3167,17 @@ x_1 = lean_mk_string("null"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__1; +x_2 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; @@ -3186,7 +3186,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -3195,19 +3195,19 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2; -x_2 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__4; +x_1 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2; +x_2 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__4; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; @@ -3216,7 +3216,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; @@ -3225,7 +3225,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -3251,7 +3251,7 @@ x_9 = l_Lean_Syntax_getArg(x_1, x_8); x_10 = lean_unsigned_to_nat(1u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -3269,7 +3269,7 @@ lean_inc(x_14); x_19 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_19, 0, x_14); lean_ctor_set(x_19, 1, x_18); -x_20 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__3; +x_20 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__3; x_21 = lean_array_push(x_20, x_17); x_22 = lean_array_push(x_21, x_11); x_23 = lean_array_push(x_22, x_19); @@ -3277,17 +3277,17 @@ x_24 = l_Lean_Parser_Tactic_Conv_paren___closed__2; x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); -x_26 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6; +x_26 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6; x_27 = lean_array_push(x_26, x_25); -x_28 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__5; +x_28 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__5; x_29 = lean_array_push(x_27, x_28); x_30 = l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__12; x_31 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); -x_32 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_32 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_33 = lean_array_push(x_32, x_31); -x_34 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2; +x_34 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2; x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); @@ -3365,7 +3365,7 @@ lean_inc(x_59); x_65 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_65, 0, x_59); lean_ctor_set(x_65, 1, x_64); -x_66 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__3; +x_66 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__3; x_67 = lean_array_push(x_66, x_63); x_68 = lean_array_push(x_67, x_11); x_69 = lean_array_push(x_68, x_65); @@ -3373,17 +3373,17 @@ x_70 = l_Lean_Parser_Tactic_Conv_paren___closed__2; x_71 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_71, 0, x_70); lean_ctor_set(x_71, 1, x_69); -x_72 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6; +x_72 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6; x_73 = lean_array_push(x_72, x_71); -x_74 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__5; +x_74 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__5; x_75 = lean_array_push(x_73, x_74); x_76 = l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__12; x_77 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_77, 0, x_76); lean_ctor_set(x_77, 1, x_75); -x_78 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_78 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_79 = lean_array_push(x_78, x_77); -x_80 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2; +x_80 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2; x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_80); lean_ctor_set(x_81, 1, x_79); @@ -3536,28 +3536,28 @@ x_1 = l_Lean_Parser_Tactic_Conv_convRw_______closed__7; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_587____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRw______1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__4; +x_1 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__4; x_2 = l_Array_append___rarg(x_1, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_587____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRw______1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2; -x_2 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_587____closed__1; +x_1 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2; +x_2 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRw______1___closed__1; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_587_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRw______1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -3583,7 +3583,7 @@ x_9 = l_Lean_Syntax_getArg(x_1, x_8); x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -3595,12 +3595,12 @@ lean_ctor_set(x_16, 0, x_14); lean_ctor_set(x_16, 1, x_15); x_17 = l_Lean_Syntax_getOptional_x3f(x_9); lean_dec(x_9); -x_18 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__3; +x_18 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__3; x_19 = lean_array_push(x_18, x_16); if (lean_obj_tag(x_17) == 0) { lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_20 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_587____closed__2; +x_20 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRw______1___closed__2; x_21 = lean_array_push(x_19, x_20); x_22 = lean_array_push(x_21, x_11); x_23 = l_Lean_Parser_Tactic_Conv_rewrite___closed__2; @@ -3616,11 +3616,11 @@ lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean x_25 = lean_ctor_get(x_17, 0); lean_inc(x_25); lean_dec(x_17); -x_26 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_26 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_27 = lean_array_push(x_26, x_25); -x_28 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__4; +x_28 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__4; x_29 = l_Array_append___rarg(x_28, x_27); -x_30 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2; +x_30 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2; x_31 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -3648,12 +3648,12 @@ lean_ctor_set(x_39, 0, x_36); lean_ctor_set(x_39, 1, x_38); x_40 = l_Lean_Syntax_getOptional_x3f(x_9); lean_dec(x_9); -x_41 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__3; +x_41 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__3; x_42 = lean_array_push(x_41, x_39); if (lean_obj_tag(x_40) == 0) { lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; -x_43 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_587____closed__2; +x_43 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRw______1___closed__2; x_44 = lean_array_push(x_42, x_43); x_45 = lean_array_push(x_44, x_11); x_46 = l_Lean_Parser_Tactic_Conv_rewrite___closed__2; @@ -3671,11 +3671,11 @@ lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean x_49 = lean_ctor_get(x_40, 0); lean_inc(x_49); lean_dec(x_40); -x_50 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_50 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_51 = lean_array_push(x_50, x_49); -x_52 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__4; +x_52 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__4; x_53 = l_Array_append___rarg(x_52, x_51); -x_54 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2; +x_54 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2; x_55 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_55, 0, x_54); lean_ctor_set(x_55, 1, x_53); @@ -3768,7 +3768,7 @@ x_1 = l_Lean_Parser_Tactic_Conv_convErw_____closed__6; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__1() { _start: { lean_object* x_1; @@ -3776,7 +3776,7 @@ x_1 = lean_mk_string("rw"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__2() { _start: { lean_object* x_1; @@ -3784,17 +3784,17 @@ x_1 = lean_mk_string("config"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__2; -x_2 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__2; +x_2 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__2; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__4() { _start: { lean_object* x_1; @@ -3802,7 +3802,7 @@ x_1 = lean_mk_string(":="); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__5() { _start: { lean_object* x_1; @@ -3810,17 +3810,17 @@ x_1 = lean_mk_string("structInst"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_Conv_conv_quot___closed__6; -x_2 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__5; +x_2 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__7() { _start: { lean_object* x_1; @@ -3828,17 +3828,17 @@ x_1 = lean_mk_string("structInstField"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__8() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_Conv_conv_quot___closed__6; -x_2 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__7; +x_2 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__9() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__9() { _start: { lean_object* x_1; @@ -3846,17 +3846,17 @@ x_1 = lean_mk_string("structInstLVal"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__10() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_Conv_conv_quot___closed__6; -x_2 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__9; +x_2 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__9; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__11() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__11() { _start: { lean_object* x_1; @@ -3864,22 +3864,22 @@ x_1 = lean_mk_string("transparency"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__12() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__11; +x_1 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__11; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__13() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__11; +x_1 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__11; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__12; +x_3 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__12; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -3887,17 +3887,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__14() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__11; +x_2 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__11; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__15() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__15() { _start: { lean_object* x_1; @@ -3905,22 +3905,22 @@ x_1 = lean_mk_string("Meta.TransparencyMode.default"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__16() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__16() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__15; +x_1 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__15; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__17() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__15; +x_1 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__15; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__16; +x_3 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__16; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -3928,7 +3928,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__18() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__18() { _start: { lean_object* x_1; @@ -3936,17 +3936,17 @@ x_1 = lean_mk_string("Meta"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__19() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__18; +x_2 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__18; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__20() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__20() { _start: { lean_object* x_1; @@ -3954,17 +3954,17 @@ x_1 = lean_mk_string("TransparencyMode"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__21() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__19; -x_2 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__20; +x_1 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__19; +x_2 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__20; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__22() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__22() { _start: { lean_object* x_1; @@ -3972,71 +3972,71 @@ x_1 = lean_mk_string("default"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__23() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__21; -x_2 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__22; +x_1 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__21; +x_2 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__22; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__24() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_Conv_conv_quot___closed__2; -x_2 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__18; +x_2 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__18; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__25() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__25() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__24; -x_2 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__20; +x_1 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__24; +x_2 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__20; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__26() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__25; -x_2 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__22; +x_1 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__25; +x_2 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__22; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__27() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__27() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__26; +x_2 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__26; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__28() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__27; +x_2 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__27; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__29() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__29() { _start: { lean_object* x_1; @@ -4044,39 +4044,39 @@ x_1 = lean_mk_string("optEllipsis"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__30() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__30() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_Conv_conv_quot___closed__6; -x_2 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__29; +x_2 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__29; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__31() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__31() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; -x_2 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__5; +x_1 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; +x_2 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__32() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__32() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__30; -x_2 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__31; +x_1 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__30; +x_2 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__31; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__33() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__33() { _start: { lean_object* x_1; lean_object* x_2; @@ -4085,7 +4085,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__34() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__34() { _start: { lean_object* x_1; lean_object* x_2; @@ -4094,7 +4094,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -4119,7 +4119,7 @@ x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); lean_inc(x_2); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { @@ -4130,7 +4130,7 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_2, 1); lean_inc(x_14); lean_dec(x_2); -x_15 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__1; +x_15 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__1; lean_inc(x_12); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_12); @@ -4140,12 +4140,12 @@ lean_inc(x_12); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_12); lean_ctor_set(x_18, 1, x_17); -x_19 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__2; +x_19 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__2; lean_inc(x_12); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_12); lean_ctor_set(x_20, 1, x_19); -x_21 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__4; +x_21 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__4; lean_inc(x_12); x_22 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_22, 0, x_12); @@ -4155,42 +4155,42 @@ lean_inc(x_12); x_24 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_24, 0, x_12); lean_ctor_set(x_24, 1, x_23); -x_25 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__14; +x_25 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__14; lean_inc(x_13); lean_inc(x_14); x_26 = l_Lean_addMacroScope(x_14, x_25, x_13); x_27 = lean_box(0); -x_28 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__13; +x_28 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__13; lean_inc(x_12); x_29 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_29, 0, x_12); lean_ctor_set(x_29, 1, x_28); lean_ctor_set(x_29, 2, x_26); lean_ctor_set(x_29, 3, x_27); -x_30 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6; +x_30 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6; x_31 = lean_array_push(x_30, x_29); -x_32 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__5; +x_32 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__5; x_33 = lean_array_push(x_31, x_32); -x_34 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__10; +x_34 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__10; x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); -x_36 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__23; +x_36 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__23; x_37 = l_Lean_addMacroScope(x_14, x_36, x_13); -x_38 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__17; -x_39 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__28; +x_38 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__17; +x_39 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__28; lean_inc(x_12); x_40 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_40, 0, x_12); lean_ctor_set(x_40, 1, x_38); lean_ctor_set(x_40, 2, x_37); lean_ctor_set(x_40, 3, x_39); -x_41 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__3; +x_41 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__3; x_42 = lean_array_push(x_41, x_35); lean_inc(x_22); x_43 = lean_array_push(x_42, x_22); x_44 = lean_array_push(x_43, x_40); -x_45 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__8; +x_45 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__8; x_46 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_44); @@ -4200,9 +4200,9 @@ x_49 = l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__12; x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); -x_51 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_51 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_52 = lean_array_push(x_51, x_50); -x_53 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2; +x_53 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2; x_54 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_54, 0, x_53); lean_ctor_set(x_54, 1, x_52); @@ -4211,15 +4211,15 @@ lean_inc(x_12); x_56 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_56, 0, x_12); lean_ctor_set(x_56, 1, x_55); -x_57 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__33; +x_57 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__33; x_58 = lean_array_push(x_57, x_24); x_59 = lean_array_push(x_58, x_32); x_60 = lean_array_push(x_59, x_54); -x_61 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__32; +x_61 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__32; x_62 = lean_array_push(x_60, x_61); x_63 = lean_array_push(x_62, x_32); x_64 = lean_array_push(x_63, x_56); -x_65 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__6; +x_65 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__6; x_66 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_66, 0, x_65); lean_ctor_set(x_66, 1, x_64); @@ -4227,13 +4227,13 @@ x_67 = l_Lean_Parser_Tactic_Conv_conv_quot___closed__19; x_68 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_68, 0, x_12); lean_ctor_set(x_68, 1, x_67); -x_69 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__34; +x_69 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__34; x_70 = lean_array_push(x_69, x_18); x_71 = lean_array_push(x_70, x_20); x_72 = lean_array_push(x_71, x_22); x_73 = lean_array_push(x_72, x_66); x_74 = lean_array_push(x_73, x_68); -x_75 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__3; +x_75 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__3; x_76 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_74); @@ -4264,7 +4264,7 @@ lean_inc(x_86); x_87 = lean_ctor_get(x_2, 1); lean_inc(x_87); lean_dec(x_2); -x_88 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__1; +x_88 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__1; lean_inc(x_84); x_89 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_89, 0, x_84); @@ -4274,12 +4274,12 @@ lean_inc(x_84); x_91 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_91, 0, x_84); lean_ctor_set(x_91, 1, x_90); -x_92 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__2; +x_92 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__2; lean_inc(x_84); x_93 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_93, 0, x_84); lean_ctor_set(x_93, 1, x_92); -x_94 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__4; +x_94 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__4; lean_inc(x_84); x_95 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_95, 0, x_84); @@ -4289,42 +4289,42 @@ lean_inc(x_84); x_97 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_97, 0, x_84); lean_ctor_set(x_97, 1, x_96); -x_98 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__14; +x_98 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__14; lean_inc(x_86); lean_inc(x_87); x_99 = l_Lean_addMacroScope(x_87, x_98, x_86); x_100 = lean_box(0); -x_101 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__13; +x_101 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__13; lean_inc(x_84); x_102 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_102, 0, x_84); lean_ctor_set(x_102, 1, x_101); lean_ctor_set(x_102, 2, x_99); lean_ctor_set(x_102, 3, x_100); -x_103 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6; +x_103 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6; x_104 = lean_array_push(x_103, x_102); -x_105 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__5; +x_105 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__5; x_106 = lean_array_push(x_104, x_105); -x_107 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__10; +x_107 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__10; x_108 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_108, 0, x_107); lean_ctor_set(x_108, 1, x_106); -x_109 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__23; +x_109 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__23; x_110 = l_Lean_addMacroScope(x_87, x_109, x_86); -x_111 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__17; -x_112 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__28; +x_111 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__17; +x_112 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__28; lean_inc(x_84); x_113 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_113, 0, x_84); lean_ctor_set(x_113, 1, x_111); lean_ctor_set(x_113, 2, x_110); lean_ctor_set(x_113, 3, x_112); -x_114 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__3; +x_114 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__3; x_115 = lean_array_push(x_114, x_108); lean_inc(x_95); x_116 = lean_array_push(x_115, x_95); x_117 = lean_array_push(x_116, x_113); -x_118 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__8; +x_118 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__8; x_119 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_119, 0, x_118); lean_ctor_set(x_119, 1, x_117); @@ -4334,9 +4334,9 @@ x_122 = l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__12; x_123 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_123, 0, x_122); lean_ctor_set(x_123, 1, x_121); -x_124 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_124 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_125 = lean_array_push(x_124, x_123); -x_126 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2; +x_126 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2; x_127 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_127, 0, x_126); lean_ctor_set(x_127, 1, x_125); @@ -4345,15 +4345,15 @@ lean_inc(x_84); x_129 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_129, 0, x_84); lean_ctor_set(x_129, 1, x_128); -x_130 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__33; +x_130 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__33; x_131 = lean_array_push(x_130, x_97); x_132 = lean_array_push(x_131, x_105); x_133 = lean_array_push(x_132, x_127); -x_134 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__32; +x_134 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__32; x_135 = lean_array_push(x_133, x_134); x_136 = lean_array_push(x_135, x_105); x_137 = lean_array_push(x_136, x_129); -x_138 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__6; +x_138 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__6; x_139 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_139, 0, x_138); lean_ctor_set(x_139, 1, x_137); @@ -4361,13 +4361,13 @@ x_140 = l_Lean_Parser_Tactic_Conv_conv_quot___closed__19; x_141 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_141, 0, x_84); lean_ctor_set(x_141, 1, x_140); -x_142 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__34; +x_142 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__34; x_143 = lean_array_push(x_142, x_91); x_144 = lean_array_push(x_143, x_93); x_145 = lean_array_push(x_144, x_95); x_146 = lean_array_push(x_145, x_139); x_147 = lean_array_push(x_146, x_141); -x_148 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__3; +x_148 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__3; x_149 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_149, 0, x_148); lean_ctor_set(x_149, 1, x_147); @@ -4450,7 +4450,7 @@ x_1 = l_Lean_Parser_Tactic_Conv_convArgs___closed__5; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_934_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convArgs__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -4469,7 +4469,7 @@ return x_7; else { lean_object* x_8; uint8_t x_9; -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { @@ -4479,7 +4479,7 @@ x_11 = l_Lean_Parser_Tactic_Conv_congr___closed__1; x_12 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); -x_13 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_13 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_14 = lean_array_push(x_13, x_12); x_15 = l_Lean_Parser_Tactic_Conv_congr___closed__2; x_16 = lean_alloc_ctor(1, 2, 0); @@ -4500,7 +4500,7 @@ x_19 = l_Lean_Parser_Tactic_Conv_congr___closed__1; 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_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_21 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_22 = lean_array_push(x_21, x_20); x_23 = l_Lean_Parser_Tactic_Conv_congr___closed__2; x_24 = lean_alloc_ctor(1, 2, 0); @@ -4574,7 +4574,7 @@ x_1 = l_Lean_Parser_Tactic_Conv_convLeft___closed__5; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1017_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convLeft__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -4593,7 +4593,7 @@ return x_7; else { lean_object* x_8; uint8_t x_9; -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { @@ -4603,7 +4603,7 @@ x_11 = l_Lean_Parser_Tactic_Conv_lhs___closed__1; x_12 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); -x_13 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_13 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_14 = lean_array_push(x_13, x_12); x_15 = l_Lean_Parser_Tactic_Conv_lhs___closed__2; x_16 = lean_alloc_ctor(1, 2, 0); @@ -4624,7 +4624,7 @@ x_19 = l_Lean_Parser_Tactic_Conv_lhs___closed__1; 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_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_21 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_22 = lean_array_push(x_21, x_20); x_23 = l_Lean_Parser_Tactic_Conv_lhs___closed__2; x_24 = lean_alloc_ctor(1, 2, 0); @@ -4698,7 +4698,7 @@ x_1 = l_Lean_Parser_Tactic_Conv_convRight___closed__5; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1100_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRight__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -4717,7 +4717,7 @@ return x_7; else { lean_object* x_8; uint8_t x_9; -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { @@ -4727,7 +4727,7 @@ x_11 = l_Lean_Parser_Tactic_Conv_rhs___closed__1; x_12 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); -x_13 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_13 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_14 = lean_array_push(x_13, x_12); x_15 = l_Lean_Parser_Tactic_Conv_rhs___closed__2; x_16 = lean_alloc_ctor(1, 2, 0); @@ -4748,7 +4748,7 @@ x_19 = l_Lean_Parser_Tactic_Conv_rhs___closed__1; 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_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_21 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_22 = lean_array_push(x_21, x_20); x_23 = l_Lean_Parser_Tactic_Conv_rhs___closed__2; x_24 = lean_alloc_ctor(1, 2, 0); @@ -4836,7 +4836,7 @@ x_1 = l_Lean_Parser_Tactic_Conv_convIntro_________closed__6; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1194_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convIntro________1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -4860,7 +4860,7 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { @@ -4872,13 +4872,13 @@ lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); x_15 = l_Lean_Syntax_getArgs(x_9); lean_dec(x_9); -x_16 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__4; +x_16 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__4; x_17 = l_Array_append___rarg(x_16, x_15); -x_18 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2; +x_18 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2; x_19 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_19, 0, x_18); lean_ctor_set(x_19, 1, x_17); -x_20 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6; +x_20 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6; x_21 = lean_array_push(x_20, x_14); x_22 = lean_array_push(x_21, x_19); x_23 = l_Lean_Parser_Tactic_Conv_ext___closed__2; @@ -4902,13 +4902,13 @@ lean_ctor_set(x_28, 0, x_25); lean_ctor_set(x_28, 1, x_27); x_29 = l_Lean_Syntax_getArgs(x_9); lean_dec(x_9); -x_30 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__4; +x_30 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__4; x_31 = l_Array_append___rarg(x_30, x_29); -x_32 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2; +x_32 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2; x_33 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_33, 0, x_32); lean_ctor_set(x_33, 1, x_31); -x_34 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6; +x_34 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6; x_35 = lean_array_push(x_34, x_28); x_36 = lean_array_push(x_35, x_33); x_37 = l_Lean_Parser_Tactic_Conv_ext___closed__2; @@ -5109,7 +5109,7 @@ x_1 = l_Lean_Parser_Tactic_Conv_convEnter_x5b_____x5d___closed__10; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__1() { _start: { lean_object* x_1; @@ -5117,7 +5117,7 @@ x_1 = lean_mk_string("enter"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; @@ -5126,7 +5126,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__3() { _start: { lean_object* x_1; @@ -5134,17 +5134,17 @@ x_1 = lean_mk_string("numLit"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__3; +x_2 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -5223,7 +5223,7 @@ lean_ctor_set(x_26, 0, x_10); lean_ctor_set(x_26, 1, x_25); x_27 = l_Lean_Syntax_getArgs(x_26); lean_dec(x_26); -x_28 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_28 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_29 = !lean_is_exclusive(x_28); if (x_29 == 0) { @@ -5234,7 +5234,7 @@ lean_inc(x_30); x_32 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_32, 0, x_30); lean_ctor_set(x_32, 1, x_31); -x_33 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__1; +x_33 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__1; lean_inc(x_30); x_34 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_34, 0, x_30); @@ -5244,9 +5244,9 @@ lean_inc(x_30); x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_30); lean_ctor_set(x_36, 1, x_35); -x_37 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_37 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_38 = lean_array_push(x_37, x_18); -x_39 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2; +x_39 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2; x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); @@ -5255,7 +5255,7 @@ lean_inc(x_30); x_42 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_42, 0, x_30); lean_ctor_set(x_42, 1, x_41); -x_43 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__2; +x_43 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__2; x_44 = lean_array_push(x_43, x_34); x_45 = lean_array_push(x_44, x_36); lean_inc(x_45); @@ -5274,14 +5274,14 @@ x_51 = lean_array_push(x_37, x_50); x_52 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_52, 0, x_39); lean_ctor_set(x_52, 1, x_51); -x_53 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6; +x_53 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6; x_54 = lean_array_push(x_53, x_48); x_55 = lean_array_push(x_54, x_52); x_56 = l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__12; x_57 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_57, 0, x_56); lean_ctor_set(x_57, 1, x_55); -x_58 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__4; +x_58 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__4; x_59 = l_Array_append___rarg(x_58, x_27); x_60 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_60, 0, x_39); @@ -5292,7 +5292,7 @@ x_63 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_63, 0, x_4); lean_ctor_set(x_63, 1, x_62); x_64 = lean_array_push(x_53, x_63); -x_65 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__5; +x_65 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__5; x_66 = lean_array_push(x_64, x_65); x_67 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_67, 0, x_56); @@ -5316,7 +5316,7 @@ x_77 = l_Lean_Parser_Tactic_Conv_conv_quot___closed__19; x_78 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_78, 0, x_30); lean_ctor_set(x_78, 1, x_77); -x_79 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__3; +x_79 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__3; x_80 = lean_array_push(x_79, x_32); x_81 = lean_array_push(x_80, x_76); x_82 = lean_array_push(x_81, x_78); @@ -5340,7 +5340,7 @@ lean_inc(x_85); x_88 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_88, 0, x_85); lean_ctor_set(x_88, 1, x_87); -x_89 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__1; +x_89 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__1; lean_inc(x_85); x_90 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_90, 0, x_85); @@ -5350,9 +5350,9 @@ lean_inc(x_85); x_92 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_92, 0, x_85); lean_ctor_set(x_92, 1, x_91); -x_93 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_93 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_94 = lean_array_push(x_93, x_18); -x_95 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2; +x_95 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2; x_96 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_96, 0, x_95); lean_ctor_set(x_96, 1, x_94); @@ -5361,7 +5361,7 @@ lean_inc(x_85); x_98 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_98, 0, x_85); lean_ctor_set(x_98, 1, x_97); -x_99 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__2; +x_99 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__2; x_100 = lean_array_push(x_99, x_90); x_101 = lean_array_push(x_100, x_92); lean_inc(x_101); @@ -5380,14 +5380,14 @@ x_107 = lean_array_push(x_93, x_106); x_108 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_108, 0, x_95); lean_ctor_set(x_108, 1, x_107); -x_109 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6; +x_109 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6; x_110 = lean_array_push(x_109, x_104); x_111 = lean_array_push(x_110, x_108); x_112 = l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__12; x_113 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_113, 0, x_112); lean_ctor_set(x_113, 1, x_111); -x_114 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__4; +x_114 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__4; x_115 = l_Array_append___rarg(x_114, x_27); x_116 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_116, 0, x_95); @@ -5398,7 +5398,7 @@ x_119 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_119, 0, x_4); lean_ctor_set(x_119, 1, x_118); x_120 = lean_array_push(x_109, x_119); -x_121 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__5; +x_121 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__5; x_122 = lean_array_push(x_120, x_121); x_123 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_123, 0, x_112); @@ -5422,7 +5422,7 @@ x_133 = l_Lean_Parser_Tactic_Conv_conv_quot___closed__19; x_134 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_134, 0, x_85); lean_ctor_set(x_134, 1, x_133); -x_135 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__3; +x_135 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__3; x_136 = lean_array_push(x_135, x_88); x_137 = lean_array_push(x_136, x_132); x_138 = lean_array_push(x_137, x_134); @@ -5463,7 +5463,7 @@ else lean_object* x_148; lean_object* x_149; uint8_t x_150; x_148 = l_Lean_Syntax_getArg(x_143, x_142); lean_dec(x_143); -x_149 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__4; +x_149 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__4; lean_inc(x_148); x_150 = l_Lean_Syntax_isOfKind(x_148, x_149); if (x_150 == 0) @@ -5486,7 +5486,7 @@ return x_154; else { lean_object* x_155; uint8_t x_156; -x_155 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_155 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_156 = !lean_is_exclusive(x_155); if (x_156 == 0) { @@ -5496,13 +5496,13 @@ x_158 = l_Lean_Parser_Tactic_Conv_ext___closed__1; x_159 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_159, 0, x_157); lean_ctor_set(x_159, 1, x_158); -x_160 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_160 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_161 = lean_array_push(x_160, x_148); -x_162 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2; +x_162 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2; x_163 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_163, 0, x_162); lean_ctor_set(x_163, 1, x_161); -x_164 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6; +x_164 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6; x_165 = lean_array_push(x_164, x_159); x_166 = lean_array_push(x_165, x_163); x_167 = l_Lean_Parser_Tactic_Conv_ext___closed__2; @@ -5524,13 +5524,13 @@ x_171 = l_Lean_Parser_Tactic_Conv_ext___closed__1; x_172 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_172, 0, x_169); lean_ctor_set(x_172, 1, x_171); -x_173 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_173 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_174 = lean_array_push(x_173, x_148); -x_175 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2; +x_175 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2; x_176 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_176, 0, x_175); lean_ctor_set(x_176, 1, x_174); -x_177 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6; +x_177 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6; x_178 = lean_array_push(x_177, x_172); x_179 = lean_array_push(x_178, x_176); x_180 = l_Lean_Parser_Tactic_Conv_ext___closed__2; @@ -5547,7 +5547,7 @@ return x_182; else { lean_object* x_183; uint8_t x_184; -x_183 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_183 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_184 = !lean_is_exclusive(x_183); if (x_184 == 0) { @@ -5557,7 +5557,7 @@ x_186 = l_Lean_Parser_Tactic_Conv_arg___closed__1; x_187 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_187, 0, x_185); lean_ctor_set(x_187, 1, x_186); -x_188 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6; +x_188 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6; x_189 = lean_array_push(x_188, x_187); x_190 = lean_array_push(x_189, x_148); x_191 = l_Lean_Parser_Tactic_Conv_arg___closed__2; @@ -5579,7 +5579,7 @@ x_195 = l_Lean_Parser_Tactic_Conv_arg___closed__1; x_196 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_196, 0, x_193); lean_ctor_set(x_196, 1, x_195); -x_197 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6; +x_197 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6; x_198 = lean_array_push(x_197, x_196); x_199 = lean_array_push(x_198, x_148); x_200 = l_Lean_Parser_Tactic_Conv_arg___closed__2; @@ -5657,7 +5657,7 @@ x_1 = l_Lean_Parser_Tactic_Conv_convSkip___closed__5; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__1() { _start: { lean_object* x_1; @@ -5665,7 +5665,7 @@ x_1 = lean_mk_string("=>"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -5675,7 +5675,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__3() { _start: { lean_object* x_1; @@ -5683,17 +5683,17 @@ x_1 = lean_mk_string("tacticSeq1Indented"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__2; -x_2 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__3; +x_2 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__5() { _start: { lean_object* x_1; @@ -5701,17 +5701,17 @@ x_1 = lean_mk_string("tacticRfl"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__2; -x_2 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__5; +x_2 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__7() { _start: { lean_object* x_1; @@ -5719,7 +5719,7 @@ x_1 = lean_mk_string("rfl"); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -5738,7 +5738,7 @@ return x_7; else { lean_object* x_8; uint8_t x_9; -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { @@ -5749,45 +5749,45 @@ lean_inc(x_10); x_12 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); -x_13 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__1; +x_13 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__1; lean_inc(x_10); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_10); lean_ctor_set(x_14, 1, x_13); -x_15 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__7; +x_15 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__7; x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_10); lean_ctor_set(x_16, 1, x_15); -x_17 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_17 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_18 = lean_array_push(x_17, x_16); -x_19 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__6; +x_19 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__6; x_20 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); -x_21 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6; +x_21 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6; x_22 = lean_array_push(x_21, x_20); -x_23 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__5; +x_23 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__5; x_24 = lean_array_push(x_22, x_23); x_25 = l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__12; 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_27 = lean_array_push(x_17, x_26); -x_28 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2; +x_28 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); x_30 = lean_array_push(x_17, x_29); -x_31 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__4; +x_31 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__4; x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); x_33 = lean_array_push(x_17, x_32); -x_34 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__2; +x_34 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__2; x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); -x_36 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__3; +x_36 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__3; x_37 = lean_array_push(x_36, x_12); x_38 = lean_array_push(x_37, x_14); x_39 = lean_array_push(x_38, x_35); @@ -5811,45 +5811,45 @@ lean_inc(x_42); x_45 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_45, 0, x_42); lean_ctor_set(x_45, 1, x_44); -x_46 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__1; +x_46 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__1; lean_inc(x_42); x_47 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_47, 0, x_42); lean_ctor_set(x_47, 1, x_46); -x_48 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__7; +x_48 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__7; x_49 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_49, 0, x_42); lean_ctor_set(x_49, 1, x_48); -x_50 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_50 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_51 = lean_array_push(x_50, x_49); -x_52 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__6; +x_52 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__6; x_53 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_53, 0, x_52); lean_ctor_set(x_53, 1, x_51); -x_54 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6; +x_54 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6; x_55 = lean_array_push(x_54, x_53); -x_56 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__5; +x_56 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__5; x_57 = lean_array_push(x_55, x_56); x_58 = l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__12; x_59 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_59, 0, x_58); lean_ctor_set(x_59, 1, x_57); x_60 = lean_array_push(x_50, x_59); -x_61 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2; +x_61 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2; x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_61); lean_ctor_set(x_62, 1, x_60); x_63 = lean_array_push(x_50, x_62); -x_64 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__4; +x_64 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__4; x_65 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_65, 0, x_64); lean_ctor_set(x_65, 1, x_63); x_66 = lean_array_push(x_50, x_65); -x_67 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__2; +x_67 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__2; x_68 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_68, 0, x_67); lean_ctor_set(x_68, 1, x_66); -x_69 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__3; +x_69 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__3; x_70 = lean_array_push(x_69, x_45); x_71 = lean_array_push(x_70, x_47); x_72 = lean_array_push(x_71, x_68); @@ -5925,7 +5925,7 @@ x_1 = l_Lean_Parser_Tactic_Conv_convDone___closed__5; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1910____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convDone__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -5935,7 +5935,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1910_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convDone__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -5954,7 +5954,7 @@ return x_7; else { lean_object* x_8; uint8_t x_9; -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { @@ -5965,7 +5965,7 @@ lean_inc(x_10); x_12 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); -x_13 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__1; +x_13 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__1; lean_inc(x_10); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_10); @@ -5974,36 +5974,36 @@ x_15 = l_Lean_Parser_Tactic_Conv_convDone___closed__3; x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_10); lean_ctor_set(x_16, 1, x_15); -x_17 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_17 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_18 = lean_array_push(x_17, x_16); -x_19 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1910____closed__1; +x_19 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convDone__1___closed__1; x_20 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); -x_21 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6; +x_21 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6; x_22 = lean_array_push(x_21, x_20); -x_23 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__5; +x_23 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__5; x_24 = lean_array_push(x_22, x_23); x_25 = l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__12; 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_27 = lean_array_push(x_17, x_26); -x_28 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2; +x_28 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); x_30 = lean_array_push(x_17, x_29); -x_31 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__4; +x_31 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__4; x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); x_33 = lean_array_push(x_17, x_32); -x_34 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__2; +x_34 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__2; x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); -x_36 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__3; +x_36 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__3; x_37 = lean_array_push(x_36, x_12); x_38 = lean_array_push(x_37, x_14); x_39 = lean_array_push(x_38, x_35); @@ -6027,7 +6027,7 @@ lean_inc(x_42); x_45 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_45, 0, x_42); lean_ctor_set(x_45, 1, x_44); -x_46 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__1; +x_46 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__1; lean_inc(x_42); x_47 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_47, 0, x_42); @@ -6036,36 +6036,36 @@ x_48 = l_Lean_Parser_Tactic_Conv_convDone___closed__3; x_49 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_49, 0, x_42); lean_ctor_set(x_49, 1, x_48); -x_50 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_50 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_51 = lean_array_push(x_50, x_49); -x_52 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1910____closed__1; +x_52 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convDone__1___closed__1; x_53 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_53, 0, x_52); lean_ctor_set(x_53, 1, x_51); -x_54 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6; +x_54 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6; x_55 = lean_array_push(x_54, x_53); -x_56 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__5; +x_56 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__5; x_57 = lean_array_push(x_55, x_56); x_58 = l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__12; x_59 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_59, 0, x_58); lean_ctor_set(x_59, 1, x_57); x_60 = lean_array_push(x_50, x_59); -x_61 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2; +x_61 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2; x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_61); lean_ctor_set(x_62, 1, x_60); x_63 = lean_array_push(x_50, x_62); -x_64 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__4; +x_64 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__4; x_65 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_65, 0, x_64); lean_ctor_set(x_65, 1, x_63); x_66 = lean_array_push(x_50, x_65); -x_67 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__2; +x_67 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__2; x_68 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_68, 0, x_67); lean_ctor_set(x_68, 1, x_66); -x_69 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__3; +x_69 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__3; x_70 = lean_array_push(x_69, x_45); x_71 = lean_array_push(x_70, x_47); x_72 = lean_array_push(x_71, x_68); @@ -6141,7 +6141,7 @@ x_1 = l_Lean_Parser_Tactic_Conv_convTrace__state___closed__5; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2031____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convTrace__state__1___closed__1() { _start: { lean_object* x_1; @@ -6149,17 +6149,17 @@ x_1 = lean_mk_string("traceState"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2031____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convTrace__state__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__2; -x_2 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2031____closed__1; +x_2 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convTrace__state__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2031_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convTrace__state__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -6178,7 +6178,7 @@ return x_7; else { lean_object* x_8; uint8_t x_9; -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { @@ -6189,7 +6189,7 @@ lean_inc(x_10); x_12 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); -x_13 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__1; +x_13 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__1; lean_inc(x_10); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_10); @@ -6198,36 +6198,36 @@ x_15 = l_Lean_Parser_Tactic_Conv_convTrace__state___closed__3; x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_10); lean_ctor_set(x_16, 1, x_15); -x_17 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_17 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_18 = lean_array_push(x_17, x_16); -x_19 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2031____closed__2; +x_19 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convTrace__state__1___closed__2; x_20 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); -x_21 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6; +x_21 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6; x_22 = lean_array_push(x_21, x_20); -x_23 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__5; +x_23 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__5; x_24 = lean_array_push(x_22, x_23); x_25 = l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__12; 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_27 = lean_array_push(x_17, x_26); -x_28 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2; +x_28 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); x_30 = lean_array_push(x_17, x_29); -x_31 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__4; +x_31 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__4; x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); x_33 = lean_array_push(x_17, x_32); -x_34 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__2; +x_34 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__2; x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); -x_36 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__3; +x_36 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__3; x_37 = lean_array_push(x_36, x_12); x_38 = lean_array_push(x_37, x_14); x_39 = lean_array_push(x_38, x_35); @@ -6251,7 +6251,7 @@ lean_inc(x_42); x_45 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_45, 0, x_42); lean_ctor_set(x_45, 1, x_44); -x_46 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__1; +x_46 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__1; lean_inc(x_42); x_47 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_47, 0, x_42); @@ -6260,36 +6260,36 @@ x_48 = l_Lean_Parser_Tactic_Conv_convTrace__state___closed__3; x_49 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_49, 0, x_42); lean_ctor_set(x_49, 1, x_48); -x_50 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_50 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_51 = lean_array_push(x_50, x_49); -x_52 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2031____closed__2; +x_52 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convTrace__state__1___closed__2; x_53 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_53, 0, x_52); lean_ctor_set(x_53, 1, x_51); -x_54 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6; +x_54 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6; x_55 = lean_array_push(x_54, x_53); -x_56 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__5; +x_56 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__5; x_57 = lean_array_push(x_55, x_56); x_58 = l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__12; x_59 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_59, 0, x_58); lean_ctor_set(x_59, 1, x_57); x_60 = lean_array_push(x_50, x_59); -x_61 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2; +x_61 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2; x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_61); lean_ctor_set(x_62, 1, x_60); x_63 = lean_array_push(x_50, x_62); -x_64 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__4; +x_64 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__4; x_65 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_65, 0, x_64); lean_ctor_set(x_65, 1, x_63); x_66 = lean_array_push(x_50, x_65); -x_67 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__2; +x_67 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__2; x_68 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_68, 0, x_67); lean_ctor_set(x_68, 1, x_66); -x_69 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__3; +x_69 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__3; x_70 = lean_array_push(x_69, x_45); x_71 = lean_array_push(x_70, x_47); x_72 = lean_array_push(x_71, x_68); @@ -6379,7 +6379,7 @@ x_1 = l_Lean_Parser_Tactic_Conv_convApply_____closed__6; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2157____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convApply____1___closed__1() { _start: { lean_object* x_1; @@ -6387,17 +6387,17 @@ x_1 = lean_mk_string("apply"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2157____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convApply____1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__2; -x_2 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2157____closed__1; +x_2 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convApply____1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2157_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convApply____1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -6421,7 +6421,7 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { @@ -6432,46 +6432,46 @@ lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); -x_15 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__1; +x_15 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__1; lean_inc(x_12); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_12); lean_ctor_set(x_16, 1, x_15); -x_17 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2157____closed__1; +x_17 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convApply____1___closed__1; x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_12); lean_ctor_set(x_18, 1, x_17); -x_19 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6; +x_19 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6; x_20 = lean_array_push(x_19, x_18); x_21 = lean_array_push(x_20, x_9); -x_22 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2157____closed__2; +x_22 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convApply____1___closed__2; x_23 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_23, 0, x_22); lean_ctor_set(x_23, 1, x_21); x_24 = lean_array_push(x_19, x_23); -x_25 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__5; +x_25 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__5; x_26 = lean_array_push(x_24, x_25); x_27 = l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__12; x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_26); -x_29 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_29 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_30 = lean_array_push(x_29, x_28); -x_31 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2; +x_31 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2; x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); x_33 = lean_array_push(x_29, x_32); -x_34 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__4; +x_34 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__4; x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); x_36 = lean_array_push(x_29, x_35); -x_37 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__2; +x_37 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__2; x_38 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_38, 0, x_37); lean_ctor_set(x_38, 1, x_36); -x_39 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__3; +x_39 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__3; x_40 = lean_array_push(x_39, x_14); x_41 = lean_array_push(x_40, x_16); x_42 = lean_array_push(x_41, x_38); @@ -6495,46 +6495,46 @@ lean_inc(x_45); x_48 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_48, 0, x_45); lean_ctor_set(x_48, 1, x_47); -x_49 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__1; +x_49 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__1; lean_inc(x_45); x_50 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_50, 0, x_45); lean_ctor_set(x_50, 1, x_49); -x_51 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2157____closed__1; +x_51 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convApply____1___closed__1; x_52 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_52, 0, x_45); lean_ctor_set(x_52, 1, x_51); -x_53 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6; +x_53 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6; x_54 = lean_array_push(x_53, x_52); x_55 = lean_array_push(x_54, x_9); -x_56 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2157____closed__2; +x_56 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convApply____1___closed__2; x_57 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_57, 0, x_56); lean_ctor_set(x_57, 1, x_55); x_58 = lean_array_push(x_53, x_57); -x_59 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__5; +x_59 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__5; x_60 = lean_array_push(x_58, x_59); x_61 = l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__12; x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_61); lean_ctor_set(x_62, 1, x_60); -x_63 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_63 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_64 = lean_array_push(x_63, x_62); -x_65 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2; +x_65 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2; x_66 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_66, 0, x_65); lean_ctor_set(x_66, 1, x_64); x_67 = lean_array_push(x_63, x_66); -x_68 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__4; +x_68 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__4; x_69 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_69, 0, x_68); lean_ctor_set(x_69, 1, x_67); x_70 = lean_array_push(x_63, x_69); -x_71 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__2; +x_71 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__2; x_72 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_72, 0, x_71); lean_ctor_set(x_72, 1, x_70); -x_73 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__3; +x_73 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__3; x_74 = lean_array_push(x_73, x_48); x_75 = lean_array_push(x_74, x_50); x_76 = lean_array_push(x_75, x_72); @@ -6780,7 +6780,7 @@ x_1 = l_Lean_Parser_Tactic_Conv_convRepeat_____closed__6; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2316____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRepeat____1___closed__1() { _start: { lean_object* x_1; @@ -6788,7 +6788,7 @@ x_1 = lean_mk_string("repeat"); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2316_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRepeat____1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -6812,7 +6812,7 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { @@ -6838,7 +6838,7 @@ lean_inc(x_12); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_12); lean_ctor_set(x_20, 1, x_19); -x_21 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__3; +x_21 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__3; x_22 = lean_array_push(x_21, x_18); lean_inc(x_9); x_23 = lean_array_push(x_22, x_9); @@ -6852,20 +6852,20 @@ lean_inc(x_12); x_28 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_28, 0, x_12); lean_ctor_set(x_28, 1, x_27); -x_29 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_29 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_30 = lean_array_push(x_29, x_28); -x_31 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2; +x_31 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2; x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); -x_33 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6; +x_33 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6; x_34 = lean_array_push(x_33, x_26); x_35 = lean_array_push(x_34, x_32); x_36 = l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__12; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); -x_38 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2316____closed__1; +x_38 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRepeat____1___closed__1; lean_inc(x_12); x_39 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_39, 0, x_12); @@ -6876,7 +6876,7 @@ x_42 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_42, 0, x_4); lean_ctor_set(x_42, 1, x_41); x_43 = lean_array_push(x_33, x_42); -x_44 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__5; +x_44 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__5; x_45 = lean_array_push(x_43, x_44); x_46 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_46, 0, x_36); @@ -6974,7 +6974,7 @@ lean_inc(x_82); x_91 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_91, 0, x_82); lean_ctor_set(x_91, 1, x_90); -x_92 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__3; +x_92 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__3; x_93 = lean_array_push(x_92, x_89); lean_inc(x_9); x_94 = lean_array_push(x_93, x_9); @@ -6988,20 +6988,20 @@ lean_inc(x_82); x_99 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_99, 0, x_82); lean_ctor_set(x_99, 1, x_98); -x_100 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7; +x_100 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7; x_101 = lean_array_push(x_100, x_99); -x_102 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2; +x_102 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2; x_103 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_103, 0, x_102); lean_ctor_set(x_103, 1, x_101); -x_104 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6; +x_104 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6; x_105 = lean_array_push(x_104, x_97); x_106 = lean_array_push(x_105, x_103); x_107 = l_Lean_Parser_Tactic_Conv_convSeq1Indented___closed__12; x_108 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_108, 0, x_107); lean_ctor_set(x_108, 1, x_106); -x_109 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2316____closed__1; +x_109 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRepeat____1___closed__1; lean_inc(x_82); x_110 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_110, 0, x_82); @@ -7012,7 +7012,7 @@ x_113 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_113, 0, x_4); lean_ctor_set(x_113, 1, x_112); x_114 = lean_array_push(x_104, x_113); -x_115 = l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__5; +x_115 = l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__5; x_116 = lean_array_push(x_114, x_115); x_117 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_117, 0, x_107); @@ -7606,20 +7606,20 @@ l_Lean_Parser_Tactic_Conv_conv_xb7_x2e_____closed__9 = _init_l_Lean_Parser_Tacti lean_mark_persistent(l_Lean_Parser_Tactic_Conv_conv_xb7_x2e_____closed__9); l_Lean_Parser_Tactic_Conv_conv_xb7_x2e__ = _init_l_Lean_Parser_Tactic_Conv_conv_xb7_x2e__(); lean_mark_persistent(l_Lean_Parser_Tactic_Conv_conv_xb7_x2e__); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__1 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__1); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__2); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__3 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__3); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__4 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__4); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__5 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__5); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__6); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_440____closed__7); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__1 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__1); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__2); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__3 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__3); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__4 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__4); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__5 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__5); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__6); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconv_xb7_x2e___xbb__1___closed__7); l_Lean_Parser_Tactic_Conv_convRw_______closed__1 = _init_l_Lean_Parser_Tactic_Conv_convRw_______closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_Conv_convRw_______closed__1); l_Lean_Parser_Tactic_Conv_convRw_______closed__2 = _init_l_Lean_Parser_Tactic_Conv_convRw_______closed__2(); @@ -7636,10 +7636,10 @@ l_Lean_Parser_Tactic_Conv_convRw_______closed__7 = _init_l_Lean_Parser_Tactic_Co lean_mark_persistent(l_Lean_Parser_Tactic_Conv_convRw_______closed__7); l_Lean_Parser_Tactic_Conv_convRw____ = _init_l_Lean_Parser_Tactic_Conv_convRw____(); lean_mark_persistent(l_Lean_Parser_Tactic_Conv_convRw____); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_587____closed__1 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_587____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_587____closed__1); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_587____closed__2 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_587____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_587____closed__2); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRw______1___closed__1 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRw______1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRw______1___closed__1); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRw______1___closed__2 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRw______1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRw______1___closed__2); l_Lean_Parser_Tactic_Conv_convErw_____closed__1 = _init_l_Lean_Parser_Tactic_Conv_convErw_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_Conv_convErw_____closed__1); l_Lean_Parser_Tactic_Conv_convErw_____closed__2 = _init_l_Lean_Parser_Tactic_Conv_convErw_____closed__2(); @@ -7654,74 +7654,74 @@ l_Lean_Parser_Tactic_Conv_convErw_____closed__6 = _init_l_Lean_Parser_Tactic_Con lean_mark_persistent(l_Lean_Parser_Tactic_Conv_convErw_____closed__6); l_Lean_Parser_Tactic_Conv_convErw__ = _init_l_Lean_Parser_Tactic_Conv_convErw__(); lean_mark_persistent(l_Lean_Parser_Tactic_Conv_convErw__); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__1 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__1); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__2 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__2); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__3 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__3); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__4 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__4); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__5 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__5); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__6 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__6); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__7 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__7); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__8 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__8); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__9 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__9); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__10 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__10); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__11 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__11(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__11); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__12 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__12(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__12); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__13 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__13(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__13); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__14 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__14(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__14); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__15 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__15(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__15); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__16 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__16(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__16); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__17 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__17(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__17); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__18 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__18(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__18); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__19 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__19(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__19); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__20 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__20(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__20); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__21 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__21(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__21); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__22 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__22(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__22); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__23 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__23(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__23); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__24 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__24(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__24); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__25 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__25(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__25); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__26 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__26(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__26); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__27 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__27(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__27); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__28 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__28(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__28); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__29 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__29(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__29); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__30 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__30(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__30); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__31 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__31(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__31); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__32 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__32(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__32); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__33 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__33(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__33); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__34 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__34(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_719____closed__34); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__1 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__1); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__2 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__2); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__3 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__3); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__4 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__4); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__5 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__5); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__6 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__6); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__7 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__7); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__8 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__8); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__9 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__9(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__9); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__10 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__10(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__10); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__11 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__11(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__11); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__12 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__12(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__12); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__13 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__13(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__13); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__14 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__14(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__14); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__15 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__15(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__15); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__16 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__16(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__16); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__17 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__17(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__17); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__18 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__18(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__18); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__19 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__19(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__19); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__20 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__20(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__20); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__21 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__21(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__21); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__22 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__22(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__22); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__23 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__23(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__23); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__24 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__24(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__24); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__25 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__25(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__25); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__26 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__26(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__26); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__27 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__27(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__27); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__28 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__28(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__28); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__29 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__29(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__29); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__30 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__30(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__30); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__31 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__31(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__31); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__32 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__32(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__32); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__33 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__33(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__33); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__34 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__34(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convErw____1___closed__34); l_Lean_Parser_Tactic_Conv_convArgs___closed__1 = _init_l_Lean_Parser_Tactic_Conv_convArgs___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_Conv_convArgs___closed__1); l_Lean_Parser_Tactic_Conv_convArgs___closed__2 = _init_l_Lean_Parser_Tactic_Conv_convArgs___closed__2(); @@ -7804,14 +7804,14 @@ l_Lean_Parser_Tactic_Conv_convEnter_x5b_____x5d___closed__10 = _init_l_Lean_Pars lean_mark_persistent(l_Lean_Parser_Tactic_Conv_convEnter_x5b_____x5d___closed__10); l_Lean_Parser_Tactic_Conv_convEnter_x5b_____x5d = _init_l_Lean_Parser_Tactic_Conv_convEnter_x5b_____x5d(); lean_mark_persistent(l_Lean_Parser_Tactic_Conv_convEnter_x5b_____x5d); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__1 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__1); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__2 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__2); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__3 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__3); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__4 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1324____closed__4); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__1 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__1); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__2 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__2); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__3 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__3); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__4 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv___xabconvEnter_x5b_____x5d_xbb__1___closed__4); l_Lean_Parser_Tactic_Conv_convSkip___closed__1 = _init_l_Lean_Parser_Tactic_Conv_convSkip___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_Conv_convSkip___closed__1); l_Lean_Parser_Tactic_Conv_convSkip___closed__2 = _init_l_Lean_Parser_Tactic_Conv_convSkip___closed__2(); @@ -7824,20 +7824,20 @@ l_Lean_Parser_Tactic_Conv_convSkip___closed__5 = _init_l_Lean_Parser_Tactic_Conv lean_mark_persistent(l_Lean_Parser_Tactic_Conv_convSkip___closed__5); l_Lean_Parser_Tactic_Conv_convSkip = _init_l_Lean_Parser_Tactic_Conv_convSkip(); lean_mark_persistent(l_Lean_Parser_Tactic_Conv_convSkip); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__1 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__1); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__2 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__2); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__3 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__3); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__4 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__4); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__5 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__5); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__6 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__6); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__7 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1789____closed__7); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__1 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__1); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__2 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__2); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__3 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__3); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__4 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__4); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__5 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__5); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__6 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__6); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__7 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convSkip__1___closed__7); l_Lean_Parser_Tactic_Conv_convDone___closed__1 = _init_l_Lean_Parser_Tactic_Conv_convDone___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_Conv_convDone___closed__1); l_Lean_Parser_Tactic_Conv_convDone___closed__2 = _init_l_Lean_Parser_Tactic_Conv_convDone___closed__2(); @@ -7850,8 +7850,8 @@ l_Lean_Parser_Tactic_Conv_convDone___closed__5 = _init_l_Lean_Parser_Tactic_Conv lean_mark_persistent(l_Lean_Parser_Tactic_Conv_convDone___closed__5); l_Lean_Parser_Tactic_Conv_convDone = _init_l_Lean_Parser_Tactic_Conv_convDone(); lean_mark_persistent(l_Lean_Parser_Tactic_Conv_convDone); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1910____closed__1 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1910____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_1910____closed__1); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convDone__1___closed__1 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convDone__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convDone__1___closed__1); l_Lean_Parser_Tactic_Conv_convTrace__state___closed__1 = _init_l_Lean_Parser_Tactic_Conv_convTrace__state___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_Conv_convTrace__state___closed__1); l_Lean_Parser_Tactic_Conv_convTrace__state___closed__2 = _init_l_Lean_Parser_Tactic_Conv_convTrace__state___closed__2(); @@ -7864,10 +7864,10 @@ l_Lean_Parser_Tactic_Conv_convTrace__state___closed__5 = _init_l_Lean_Parser_Tac lean_mark_persistent(l_Lean_Parser_Tactic_Conv_convTrace__state___closed__5); l_Lean_Parser_Tactic_Conv_convTrace__state = _init_l_Lean_Parser_Tactic_Conv_convTrace__state(); lean_mark_persistent(l_Lean_Parser_Tactic_Conv_convTrace__state); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2031____closed__1 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2031____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2031____closed__1); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2031____closed__2 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2031____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2031____closed__2); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convTrace__state__1___closed__1 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convTrace__state__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convTrace__state__1___closed__1); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convTrace__state__1___closed__2 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convTrace__state__1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convTrace__state__1___closed__2); l_Lean_Parser_Tactic_Conv_convApply_____closed__1 = _init_l_Lean_Parser_Tactic_Conv_convApply_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_Conv_convApply_____closed__1); l_Lean_Parser_Tactic_Conv_convApply_____closed__2 = _init_l_Lean_Parser_Tactic_Conv_convApply_____closed__2(); @@ -7882,10 +7882,10 @@ l_Lean_Parser_Tactic_Conv_convApply_____closed__6 = _init_l_Lean_Parser_Tactic_C lean_mark_persistent(l_Lean_Parser_Tactic_Conv_convApply_____closed__6); l_Lean_Parser_Tactic_Conv_convApply__ = _init_l_Lean_Parser_Tactic_Conv_convApply__(); lean_mark_persistent(l_Lean_Parser_Tactic_Conv_convApply__); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2157____closed__1 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2157____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2157____closed__1); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2157____closed__2 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2157____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2157____closed__2); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convApply____1___closed__1 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convApply____1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convApply____1___closed__1); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convApply____1___closed__2 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convApply____1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convApply____1___closed__2); l_Lean_Parser_Tactic_Conv_first___closed__1 = _init_l_Lean_Parser_Tactic_Conv_first___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_Conv_first___closed__1); l_Lean_Parser_Tactic_Conv_first___closed__2 = _init_l_Lean_Parser_Tactic_Conv_first___closed__2(); @@ -7928,8 +7928,8 @@ l_Lean_Parser_Tactic_Conv_convRepeat_____closed__6 = _init_l_Lean_Parser_Tactic_ lean_mark_persistent(l_Lean_Parser_Tactic_Conv_convRepeat_____closed__6); l_Lean_Parser_Tactic_Conv_convRepeat__ = _init_l_Lean_Parser_Tactic_Conv_convRepeat__(); lean_mark_persistent(l_Lean_Parser_Tactic_Conv_convRepeat__); -l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2316____closed__1 = _init_l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2316____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_Conv_myMacro____x40_Init_Conv___hyg_2316____closed__1); +l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRepeat____1___closed__1 = _init_l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRepeat____1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_Conv___aux__Init__Conv______macroRules__Lean__Parser__Tactic__Conv__convRepeat____1___closed__1); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Core.c b/stage0/stdlib/Init/Core.c index 50c698dbc7..a790fd2d3f 100644 --- a/stage0/stdlib/Init/Core.c +++ b/stage0/stdlib/Init/Core.c @@ -14,27 +14,24 @@ extern "C" { #endif LEAN_EXPORT lean_object* l_instDecidableIte___rarg___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_1017____closed__6; LEAN_EXPORT lean_object* l_strictAnd___boxed(lean_object*, lean_object*); -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); static lean_object* l_term___u2295_____closed__2; +LEAN_EXPORT lean_object* l___aux__Init__Core______macroRules___xabterm_u2205_xbb__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Thunk_map(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instDecidableArrow___rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instInhabitedTask___rarg(lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_2250____closed__3; LEAN_EXPORT lean_object* l_term___u2194__; LEAN_EXPORT lean_object* l_Quotient_hrecOn___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Quotient_lift(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_2250____closed__5; -static lean_object* l_myMacro____x40_Init_Core___hyg_184____closed__16; +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__6; +static lean_object* l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__13; LEAN_EXPORT uint8_t l_Lean_reduceBool(uint8_t); LEAN_EXPORT lean_object* l_inline(lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_1500____closed__5; LEAN_EXPORT lean_object* l_instLTProd___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__5; LEAN_EXPORT lean_object* l_instDecidableDite(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Quotient_lift_u2082___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_2712____closed__1; extern lean_object* l_Lean_nullKind; LEAN_EXPORT lean_object* l_Quotient_rec___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_bne(lean_object*); @@ -44,40 +41,44 @@ LEAN_EXPORT lean_object* l_Quotient_recOn(lean_object*, lean_object*, lean_objec LEAN_EXPORT lean_object* l_term___x3c_x2d_x3e__; LEAN_EXPORT lean_object* l_Quotient_recOn___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_term___x21_x3d_____closed__6; -static lean_object* l_unexpand____x40_Init_Core___hyg_167____closed__3; +LEAN_EXPORT lean_object* l___aux__Init__Core______unexpand__Sum__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_bne___rarg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Quotient_lift___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Squash_mk___rarg___boxed(lean_object*); LEAN_EXPORT lean_object* l_instDecidableEqSum___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__10; static lean_object* l_term___u2194_____closed__5; -static lean_object* l_myMacro____x40_Init_Core___hyg_2712____closed__2; LEAN_EXPORT lean_object* l_Lean_reduceBool___boxed(lean_object*); LEAN_EXPORT lean_object* l_Subtype_instDecidableEqSubtype(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instDecidableIff___rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Quotient_liftOn_u2082(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_term_u2205; +LEAN_EXPORT lean_object* l___aux__Init__Core______unexpand__EmptyCollection__emptyCollection__2(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_decidableOfDecidableOfEq___rarg(uint8_t, lean_object*); static lean_object* l_term___x21_x3d_____closed__5; LEAN_EXPORT lean_object* l_Quot_indep(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Eq_ndrecOn___rarg(lean_object*); static lean_object* l_term_x7b_x7d___closed__4; -static lean_object* l_myMacro____x40_Init_Core___hyg_1765____closed__7; static lean_object* l_term___x21_x3d_____closed__2; +static lean_object* l___aux__Init__Core______unexpand__EmptyCollection__emptyCollection__2___closed__1; LEAN_EXPORT lean_object* l_Quot_liftOn___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__2; +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__3; +static lean_object* l___aux__Init__Core______unexpand__Iff__1___closed__3; LEAN_EXPORT lean_object* l_Eq_mpr___rarg___boxed(lean_object*); LEAN_EXPORT lean_object* l_Thunk_map___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Quotient_recOnSubsingleton_u2082___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instBEqProd(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_instDecidableTrue; -static lean_object* l_myMacro____x40_Init_Core___hyg_1500____closed__6; +static lean_object* l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__16; static lean_object* l_term___x3c_x2d_x3e_____closed__10; static lean_object* l_term_x7b_x7d___closed__1; +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Quotient_recOnSubsingleton___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instInhabitedForInStep(lean_object*); static lean_object* l_term_x7b_x7d___closed__2; static lean_object* l_term___x21_x3d_____closed__1; lean_object* lean_array_push(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_184____closed__3; static lean_object* l_term_u2205___closed__3; lean_object* lean_task_spawn(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instDecidableEqPUnit___boxed(lean_object*, lean_object*); @@ -85,12 +86,14 @@ LEAN_EXPORT lean_object* l_noConfusionEnum___rarg(lean_object*, lean_object*, le LEAN_EXPORT uint8_t l_instDecidableEqPUnit(lean_object*, lean_object*); static lean_object* l_term___x21_x3d_____closed__3; LEAN_EXPORT lean_object* l_prodHasDecidableLt___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_184____closed__15; -static lean_object* l_unexpand____x40_Init_Core___hyg_167____closed__1; -static lean_object* l_myMacro____x40_Init_Core___hyg_733____closed__4; +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__3; +LEAN_EXPORT lean_object* l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__7; +static lean_object* l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__2; lean_object* lean_string_utf8_byte_size(lean_object*); +LEAN_EXPORT lean_object* l___aux__Init__Core______unexpand__Ne__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Quotient_recOnSubsingleton___rarg(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_184____closed__10; +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__5; LEAN_EXPORT lean_object* l_Task_get___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Task_map___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Decidable_byCases___rarg___boxed(lean_object*, lean_object*, lean_object*); @@ -100,18 +103,18 @@ LEAN_EXPORT lean_object* l_Eq_ndrecOn___rarg___boxed(lean_object*); LEAN_EXPORT lean_object* l_Quotient_mk(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Quotient_liftOn___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_term___u2260_____closed__1; +static lean_object* l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__11; LEAN_EXPORT lean_object* l_Quot_rec___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l_unexpand____x40_Init_Core___hyg_1909____closed__1; LEAN_EXPORT lean_object* l_instHasEquiv(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Task_bind___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_1765____closed__1; -static lean_object* l_myMacro____x40_Init_Core___hyg_1765____closed__2; lean_object* lean_thunk_pure(lean_object*); +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__6; static lean_object* l_term___u2194_____closed__2; LEAN_EXPORT lean_object* l_decidableOfDecidableOfEq___rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_toBoolUsing___rarg___boxed(lean_object*); +static lean_object* l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__3; LEAN_EXPORT lean_object* l_strictOr___boxed(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_733____closed__3; +LEAN_EXPORT lean_object* l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Subtype_instDecidableEqSubtype___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_term___x3c_x2d_x3e_____closed__6; LEAN_EXPORT lean_object* l_Quotient_mk___boxed(lean_object*, lean_object*); @@ -123,70 +126,48 @@ LEAN_EXPORT lean_object* l_noConfusionEnum(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Eq_mpr(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Quot_recOn___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Thunk_get___boxed(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_184____closed__12; -static lean_object* l_myMacro____x40_Init_Core___hyg_1500____closed__1; LEAN_EXPORT lean_object* l_Quot_recOnSubsingleton(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__9; LEAN_EXPORT lean_object* l_Lean_reduceNat(lean_object*); LEAN_EXPORT lean_object* l_Squash_lift___rarg(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_1500____closed__8; +static lean_object* l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__6; static lean_object* l_term___u2194_____closed__4; LEAN_EXPORT lean_object* l_Sum_inhabitedLeft___rarg(lean_object*); LEAN_EXPORT uint8_t l_instDecidableIte___rarg(uint8_t, uint8_t, uint8_t); static lean_object* l_term___u2295_____closed__4; -static lean_object* l_myMacro____x40_Init_Core___hyg_1500____closed__2; static lean_object* l_term___u2295_x27_____closed__2; static lean_object* l_term___u2295_x27_____closed__1; LEAN_EXPORT lean_object* l_Quot_hrecOn(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Core___hyg_733_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Core___hyg_449_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Core___hyg_1920_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Core___hyg_1500_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Core___hyg_1765_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Core___hyg_184_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Core___hyg_1017_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Core___hyg_2712_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Core___hyg_2250_(lean_object*, lean_object*, lean_object*); static lean_object* l_term_x7b_x7d___closed__6; LEAN_EXPORT lean_object* l_Task_Priority_dedicated; -static lean_object* l_myMacro____x40_Init_Core___hyg_1765____closed__8; +LEAN_EXPORT lean_object* l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Core______unexpand__Iff__1___closed__1; +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(lean_object*); +LEAN_EXPORT lean_object* l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Sum_inhabitedRight___rarg(lean_object*); LEAN_EXPORT lean_object* l_Quotient_lift___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_1765____closed__6; +LEAN_EXPORT lean_object* l___aux__Init__Core______unexpand__Iff__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instInhabitedProd(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_1500____closed__4; LEAN_EXPORT lean_object* l_instInhabitedForInStep___rarg(lean_object*); LEAN_EXPORT lean_object* l_term_x7b_x7d; LEAN_EXPORT lean_object* l_Quotient_lift_u2082(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instInhabitedPNonScalar; static lean_object* l_term___u2295_____closed__1; static lean_object* l_term___x3c_x2d_x3e_____closed__11; -static lean_object* l_myMacro____x40_Init_Core___hyg_2250____closed__6; LEAN_EXPORT lean_object* l_instDecidableEqQuotient(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_1765____closed__9; -static lean_object* l_myMacro____x40_Init_Core___hyg_1765____closed__4; static lean_object* l_term___u2194_____closed__1; -static lean_object* l_myMacro____x40_Init_Core___hyg_2250____closed__2; lean_object* lean_task_map(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_184____closed__11; LEAN_EXPORT lean_object* l_instInhabitedProp; +static lean_object* l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__5; LEAN_EXPORT lean_object* l_term___u2248__; LEAN_EXPORT lean_object* l_flip___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_term___u2260_____closed__4; -static lean_object* l_myMacro____x40_Init_Core___hyg_1017____closed__2; LEAN_EXPORT lean_object* l_term___u2260__; +static lean_object* l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__1; LEAN_EXPORT lean_object* l_Quotient_hrecOn___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Quotient_rec(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_1017____closed__1; +LEAN_EXPORT lean_object* l___aux__Init__Core______unexpand__bne__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instInhabitedNonScalar; -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Core___hyg_1000_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Core___hyg_716_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Core___hyg_432_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Core___hyg_167_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Core___hyg_2233_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Core___hyg_1909_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Core___hyg_1750_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Core___hyg_1483_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Core___hyg_2695_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instDecidableIff(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_instDecidableIff___rarg(uint8_t, uint8_t); static lean_object* l_term___x3c_x2d_x3e_____closed__5; @@ -196,99 +177,109 @@ static lean_object* l_term_x7b_x7d___closed__3; LEAN_EXPORT uint8_t l_strictOr(uint8_t, uint8_t); LEAN_EXPORT lean_object* l_term___x21_x3d__; static lean_object* l_term___u2295_x27_____closed__3; -static lean_object* l_myMacro____x40_Init_Core___hyg_184____closed__8; LEAN_EXPORT lean_object* l_Eq_mpr___rarg(lean_object*); static lean_object* l_term___x3c_x2d_x3e_____closed__4; LEAN_EXPORT lean_object* l_decidableOfDecidableOfEq(lean_object*, lean_object*); +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__4; static lean_object* l_term_u2205___closed__1; LEAN_EXPORT lean_object* l_instDecidableEqProd___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Squash_mk(lean_object*); static lean_object* l_term___u2260_____closed__6; static lean_object* l_term___u2248_____closed__5; -static lean_object* l_myMacro____x40_Init_Core___hyg_184____closed__17; lean_object* lean_mk_thunk(lean_object*); LEAN_EXPORT lean_object* l_instLTProd(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_term___x3c_x2d_x3e_____closed__7; LEAN_EXPORT lean_object* l_Task_Priority_default; static lean_object* l_noConfusionEnum___rarg___closed__1; LEAN_EXPORT lean_object* l_Thunk_mk___boxed(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_184____closed__4; +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__1; static lean_object* l_term___u2248_____closed__7; LEAN_EXPORT lean_object* l_instDecidableEqQuotient___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Quotient_liftOn_u2082___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Thunk_map___rarg___lambda__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__3; LEAN_EXPORT lean_object* l_instBEqProd___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_term_x7b_x7d___closed__5; static lean_object* l_term___u2248_____closed__3; LEAN_EXPORT lean_object* l_term___u2295__; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__1; +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__2; static lean_object* l_term___u2260_____closed__2; -static lean_object* l_myMacro____x40_Init_Core___hyg_184____closed__6; -static lean_object* l_myMacro____x40_Init_Core___hyg_1017____closed__4; +static lean_object* l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__4; +static lean_object* l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__2; LEAN_EXPORT lean_object* l_Squash_lift(lean_object*, lean_object*, lean_object*); static lean_object* l_term_x7b_x7d___closed__7; LEAN_EXPORT lean_object* l_Thunk_map___rarg(lean_object*, lean_object*); static lean_object* l_term___x3c_x2d_x3e_____closed__3; LEAN_EXPORT lean_object* l_Eq_mp(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isNodeOf(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__8; static lean_object* l_term___u2295_____closed__6; LEAN_EXPORT lean_object* l_toBoolUsing(lean_object*); +LEAN_EXPORT lean_object* l___aux__Init__Core______unexpand__HasEquiv__Equiv__1(lean_object*, lean_object*); static lean_object* l_term___u2260_____closed__3; static lean_object* l_term___x3c_x2d_x3e_____closed__9; -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_2712____closed__5; -static lean_object* l_myMacro____x40_Init_Core___hyg_2250____closed__4; +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__6; +static lean_object* l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__4; LEAN_EXPORT lean_object* l_Subtype_instInhabitedSubtype___rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instInhabitedProd___rarg(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_2712____closed__3; LEAN_EXPORT uint8_t l_instDecidableFalse; LEAN_EXPORT lean_object* l_instDecidableArrow(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_1500____closed__9; +static lean_object* l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__6; +static lean_object* l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__17; static lean_object* l_term___x3c_x2d_x3e_____closed__2; LEAN_EXPORT lean_object* l_prodHasDecidableLt___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Quotient_mk___rarg(lean_object*); LEAN_EXPORT lean_object* l_Prod_map___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_task_bind(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___aux__Init__Core______unexpand__EmptyCollection__emptyCollection__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Thunk_bind___rarg(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_bne___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_733____closed__6; +static lean_object* l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8; +static lean_object* l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__9; LEAN_EXPORT lean_object* l_Quotient_liftOn_u2082___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instDecidableEqSum(lean_object*, lean_object*); static lean_object* l_term___u2194_____closed__3; LEAN_EXPORT lean_object* l_Subtype_instInhabitedSubtype(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_184____closed__9; +static lean_object* l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__2; LEAN_EXPORT lean_object* l_Quot_recOnSubsingleton___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___aux__Init__Core______unexpand__PSum__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Sum_inhabitedLeft(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_noConfusionEnum___rarg___lambda__1___boxed(lean_object*); LEAN_EXPORT lean_object* l_Quotient_mk___rarg___boxed(lean_object*); +static lean_object* l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__3; LEAN_EXPORT lean_object* l_Eq_mp___rarg(lean_object*); static lean_object* l_term___u2295_____closed__5; LEAN_EXPORT lean_object* l_instHasEquiv___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Quotient_liftOn___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_2250____closed__1; +static lean_object* l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__7; LEAN_EXPORT lean_object* l_inline___rarg___boxed(lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_733____closed__5; static lean_object* l_term___u2295_x27_____closed__5; LEAN_EXPORT lean_object* l_Quotient_recOnSubsingleton(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_184____closed__2; LEAN_EXPORT lean_object* l_instDecidableEqProd(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_184____closed__1; LEAN_EXPORT lean_object* l_Quot_liftOn(lean_object*, lean_object*, lean_object*); static lean_object* l_term___x3c_x2d_x3e_____closed__8; +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__1; LEAN_EXPORT lean_object* l_instDecidableDite___rarg___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__14; LEAN_EXPORT lean_object* l_prodHasDecidableLt___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Quot_rec(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_1500____closed__3; +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__5; +static lean_object* l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__15; +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__8; LEAN_EXPORT lean_object* l_Task_Priority_max; +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__5; LEAN_EXPORT lean_object* l_Lean_reduceNat___boxed(lean_object*); static lean_object* l_term___u2248_____closed__4; +static lean_object* l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__3; static lean_object* l_term_u2205___closed__5; -static lean_object* l_myMacro____x40_Init_Core___hyg_1765____closed__3; LEAN_EXPORT lean_object* l_Thunk_bind___rarg___lambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Eq_ndrecOn___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_term___u2248_____closed__1; -static lean_object* l_myMacro____x40_Init_Core___hyg_1765____closed__5; static lean_object* l_term___u2295_____closed__3; +static lean_object* l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__5; LEAN_EXPORT lean_object* l_Quotient_rec___rarg(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); static lean_object* l_term___x3c_x2d_x3e_____closed__1; @@ -297,14 +288,11 @@ LEAN_EXPORT lean_object* l_Prod_map(lean_object*, lean_object*, lean_object*, le static lean_object* l_term___x21_x3d_____closed__4; LEAN_EXPORT lean_object* l_term___u2295_x27__; LEAN_EXPORT lean_object* l_Quot_indep___rarg(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_733____closed__1; -static lean_object* l_myMacro____x40_Init_Core___hyg_733____closed__2; -static lean_object* l_myMacro____x40_Init_Core___hyg_184____closed__5; LEAN_EXPORT lean_object* l_Eq_mp___rarg___boxed(lean_object*); LEAN_EXPORT lean_object* l_Quotient_lift_u2082___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_term___u2248_____closed__6; LEAN_EXPORT lean_object* l_Decidable_byCases___rarg(uint8_t, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_184____closed__7; +LEAN_EXPORT lean_object* l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_term_u2205___closed__4; LEAN_EXPORT lean_object* l_prodHasDecidableLt(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_decidableOfDecidableOfIff___rarg___boxed(lean_object*, lean_object*); @@ -312,33 +300,46 @@ LEAN_EXPORT lean_object* l_Subtype_instInhabitedSubtype___rarg(lean_object*, lea LEAN_EXPORT lean_object* l_flip(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Decidable_byCases(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___aux__Init__Core______unexpand__Iff__2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_inline___rarg(lean_object*); static lean_object* l_term___u2260_____closed__5; static lean_object* l_term___u2295_____closed__7; +static lean_object* l___aux__Init__Core______unexpand__Iff__1___closed__2; +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__1; +static lean_object* l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__7; +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__2; LEAN_EXPORT lean_object* l___private_Init_Core_0__funSetoid(lean_object*, lean_object*); +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__2; +LEAN_EXPORT lean_object* l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Sum_inhabitedRight(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_1017____closed__3; +static lean_object* l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__12; LEAN_EXPORT uint8_t l_strictAnd(uint8_t, uint8_t); static lean_object* l_term___u2248_____closed__2; LEAN_EXPORT uint8_t l_instDecidableArrow___rarg(uint8_t, uint8_t); +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__9; static lean_object* l_term___u2295_x27_____closed__4; LEAN_EXPORT lean_object* l_Squash_mk___rarg(lean_object*); LEAN_EXPORT lean_object* l_Quotient_recOnSubsingleton_u2082(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instDecidableIte(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Thunk_pure___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_decidableOfDecidableOfIff(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_1500____closed__7; +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__4; LEAN_EXPORT lean_object* l___private_Init_Core_0__extfunApp(lean_object*, lean_object*); +static lean_object* l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__5; +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__3; LEAN_EXPORT lean_object* l_Task_spawn___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_184____closed__13; -static lean_object* l_myMacro____x40_Init_Core___hyg_1017____closed__5; +static lean_object* l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__4; +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__4; +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__4; lean_object* lean_thunk_get_own(lean_object*); +static lean_object* l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__1; LEAN_EXPORT lean_object* l_Quotient_hrecOn(lean_object*, lean_object*, lean_object*); lean_object* lean_task_pure(lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_184____closed__14; +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__1; LEAN_EXPORT lean_object* l___private_Init_Core_0__extfunApp___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Eq_ndrecOn(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Core___hyg_2712____closed__6; +LEAN_EXPORT lean_object* l___aux__Init__Core______macroRules___xabterm___u2194___xbb__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__6; lean_object* lean_task_get_own(lean_object*); LEAN_EXPORT lean_object* l_instInhabitedPUnit; LEAN_EXPORT uint8_t l_decidableOfDecidableOfIff___rarg(uint8_t, lean_object*); @@ -348,8 +349,7 @@ LEAN_EXPORT lean_object* l_noConfusionEnum___rarg___lambda__1(lean_object*); LEAN_EXPORT lean_object* l_Quotient_recOn___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Quot_recOn(lean_object*, lean_object*, lean_object*); static lean_object* l_term___u2194_____closed__6; -static lean_object* l_myMacro____x40_Init_Core___hyg_2712____closed__4; -static lean_object* l_unexpand____x40_Init_Core___hyg_167____closed__2; +static lean_object* l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__6; LEAN_EXPORT lean_object* l_Quotient_recOnSubsingleton_u2082___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Quot_hrecOn___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_inline___rarg(lean_object* x_1) { @@ -651,7 +651,7 @@ x_1 = l_term___x3c_x2d_x3e_____closed__11; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_184____closed__1() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -659,17 +659,17 @@ x_1 = lean_mk_string("Lean"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_184____closed__2() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Core___hyg_184____closed__1; +x_2 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_184____closed__3() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__3() { _start: { lean_object* x_1; @@ -677,17 +677,17 @@ x_1 = lean_mk_string("Parser"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_184____closed__4() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Core___hyg_184____closed__2; -x_2 = l_myMacro____x40_Init_Core___hyg_184____closed__3; +x_1 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__2; +x_2 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_184____closed__5() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__5() { _start: { lean_object* x_1; @@ -695,17 +695,17 @@ x_1 = lean_mk_string("Term"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_184____closed__6() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Core___hyg_184____closed__4; -x_2 = l_myMacro____x40_Init_Core___hyg_184____closed__5; +x_1 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__4; +x_2 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_184____closed__7() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__7() { _start: { lean_object* x_1; @@ -713,17 +713,17 @@ x_1 = lean_mk_string("app"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_184____closed__8() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Core___hyg_184____closed__6; -x_2 = l_myMacro____x40_Init_Core___hyg_184____closed__7; +x_1 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__6; +x_2 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_184____closed__9() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__9() { _start: { lean_object* x_1; @@ -731,22 +731,22 @@ x_1 = lean_mk_string("Iff"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_184____closed__10() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Core___hyg_184____closed__9; +x_1 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__9; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_184____closed__11() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Core___hyg_184____closed__9; +x_1 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__9; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Core___hyg_184____closed__10; +x_3 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__10; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -754,41 +754,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_184____closed__12() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Core___hyg_184____closed__9; +x_2 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__9; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_184____closed__13() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Core___hyg_184____closed__12; +x_2 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__12; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_184____closed__14() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Core___hyg_184____closed__13; +x_2 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__13; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_184____closed__15() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__15() { _start: { lean_object* x_1; @@ -796,17 +796,17 @@ x_1 = lean_mk_string("null"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_184____closed__16() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Core___hyg_184____closed__15; +x_2 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__15; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_184____closed__17() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__17() { _start: { lean_object* x_1; lean_object* x_2; @@ -815,7 +815,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Core___hyg_184_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -842,7 +842,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -853,25 +853,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Core___hyg_184____closed__12; +x_17 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__12; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Core___hyg_184____closed__11; -x_20 = l_myMacro____x40_Init_Core___hyg_184____closed__14; +x_19 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__11; +x_20 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__14; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Core___hyg_184____closed__17; +x_22 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__17; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Core___hyg_184____closed__16; +x_25 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__16; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Core___hyg_184____closed__8; +x_29 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -891,25 +891,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Core___hyg_184____closed__12; +x_35 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__12; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Core___hyg_184____closed__11; -x_38 = l_myMacro____x40_Init_Core___hyg_184____closed__14; +x_37 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__11; +x_38 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__14; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Core___hyg_184____closed__17; +x_40 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__17; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Core___hyg_184____closed__16; +x_43 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__16; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Core___hyg_184____closed__8; +x_47 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -921,7 +921,7 @@ return x_49; } } } -static lean_object* _init_l_unexpand____x40_Init_Core___hyg_167____closed__1() { +static lean_object* _init_l___aux__Init__Core______unexpand__Iff__1___closed__1() { _start: { lean_object* x_1; @@ -929,17 +929,17 @@ x_1 = lean_mk_string("ident"); return x_1; } } -static lean_object* _init_l_unexpand____x40_Init_Core___hyg_167____closed__2() { +static lean_object* _init_l___aux__Init__Core______unexpand__Iff__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_unexpand____x40_Init_Core___hyg_167____closed__1; +x_2 = l___aux__Init__Core______unexpand__Iff__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_unexpand____x40_Init_Core___hyg_167____closed__3() { +static lean_object* _init_l___aux__Init__Core______unexpand__Iff__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; @@ -948,11 +948,11 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Core___hyg_167_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Core______unexpand__Iff__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Core___hyg_184____closed__8; +x_3 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -970,7 +970,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Core___hyg_167____closed__2; +x_9 = l___aux__Init__Core______unexpand__Iff__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -1008,7 +1008,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -1018,7 +1018,7 @@ x_25 = l_term___x3c_x2d_x3e_____closed__5; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Core___hyg_167____closed__3; +x_27 = l___aux__Init__Core______unexpand__Iff__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -1041,7 +1041,7 @@ x_35 = l_term___x3c_x2d_x3e_____closed__5; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Core___hyg_167____closed__3; +x_37 = l___aux__Init__Core______unexpand__Iff__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -1133,7 +1133,7 @@ x_1 = l_term___u2194_____closed__6; return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Core___hyg_449_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Core______macroRules___xabterm___u2194___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -1160,7 +1160,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -1171,25 +1171,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Core___hyg_184____closed__12; +x_17 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__12; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Core___hyg_184____closed__11; -x_20 = l_myMacro____x40_Init_Core___hyg_184____closed__14; +x_19 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__11; +x_20 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__14; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Core___hyg_184____closed__17; +x_22 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__17; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Core___hyg_184____closed__16; +x_25 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__16; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Core___hyg_184____closed__8; +x_29 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -1209,25 +1209,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Core___hyg_184____closed__12; +x_35 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__12; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Core___hyg_184____closed__11; -x_38 = l_myMacro____x40_Init_Core___hyg_184____closed__14; +x_37 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__11; +x_38 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__14; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Core___hyg_184____closed__17; +x_40 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__17; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Core___hyg_184____closed__16; +x_43 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__16; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Core___hyg_184____closed__8; +x_47 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -1239,11 +1239,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Core___hyg_432_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Core______unexpand__Iff__2(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Core___hyg_184____closed__8; +x_3 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -1261,7 +1261,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Core___hyg_167____closed__2; +x_9 = l___aux__Init__Core______unexpand__Iff__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -1299,7 +1299,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -1309,7 +1309,7 @@ x_25 = l_term___u2194_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Core___hyg_167____closed__3; +x_27 = l___aux__Init__Core______unexpand__Iff__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -1332,7 +1332,7 @@ x_35 = l_term___u2194_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Core___hyg_167____closed__3; +x_37 = l___aux__Init__Core______unexpand__Iff__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -1436,7 +1436,7 @@ x_1 = l_term___u2295_____closed__7; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_733____closed__1() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -1444,22 +1444,22 @@ x_1 = lean_mk_string("Sum"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_733____closed__2() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Core___hyg_733____closed__1; +x_1 = l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_733____closed__3() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Core___hyg_733____closed__1; +x_1 = l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Core___hyg_733____closed__2; +x_3 = l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1467,41 +1467,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_733____closed__4() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Core___hyg_733____closed__1; +x_2 = l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_733____closed__5() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Core___hyg_733____closed__4; +x_2 = l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__4; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_733____closed__6() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Core___hyg_733____closed__5; +x_2 = l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Core___hyg_733_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -1528,7 +1528,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -1539,25 +1539,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Core___hyg_733____closed__4; +x_17 = l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__4; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Core___hyg_733____closed__3; -x_20 = l_myMacro____x40_Init_Core___hyg_733____closed__6; +x_19 = l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__3; +x_20 = l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__6; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Core___hyg_184____closed__17; +x_22 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__17; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Core___hyg_184____closed__16; +x_25 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__16; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Core___hyg_184____closed__8; +x_29 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -1577,25 +1577,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Core___hyg_733____closed__4; +x_35 = l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__4; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Core___hyg_733____closed__3; -x_38 = l_myMacro____x40_Init_Core___hyg_733____closed__6; +x_37 = l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__3; +x_38 = l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__6; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Core___hyg_184____closed__17; +x_40 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__17; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Core___hyg_184____closed__16; +x_43 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__16; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Core___hyg_184____closed__8; +x_47 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -1607,11 +1607,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Core___hyg_716_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Core______unexpand__Sum__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Core___hyg_184____closed__8; +x_3 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -1629,7 +1629,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Core___hyg_167____closed__2; +x_9 = l___aux__Init__Core______unexpand__Iff__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -1667,7 +1667,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -1677,7 +1677,7 @@ x_25 = l_term___u2295_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Core___hyg_167____closed__3; +x_27 = l___aux__Init__Core______unexpand__Iff__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -1700,7 +1700,7 @@ x_35 = l_term___u2295_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Core___hyg_167____closed__3; +x_37 = l___aux__Init__Core______unexpand__Iff__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -1792,7 +1792,7 @@ x_1 = l_term___u2295_x27_____closed__6; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_1017____closed__1() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -1800,22 +1800,22 @@ x_1 = lean_mk_string("PSum"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_1017____closed__2() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Core___hyg_1017____closed__1; +x_1 = l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_1017____closed__3() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Core___hyg_1017____closed__1; +x_1 = l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Core___hyg_1017____closed__2; +x_3 = l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1823,41 +1823,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_1017____closed__4() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Core___hyg_1017____closed__1; +x_2 = l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_1017____closed__5() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Core___hyg_1017____closed__4; +x_2 = l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__4; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_1017____closed__6() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Core___hyg_1017____closed__5; +x_2 = l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Core___hyg_1017_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -1884,7 +1884,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -1895,25 +1895,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Core___hyg_1017____closed__4; +x_17 = l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__4; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Core___hyg_1017____closed__3; -x_20 = l_myMacro____x40_Init_Core___hyg_1017____closed__6; +x_19 = l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__3; +x_20 = l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__6; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Core___hyg_184____closed__17; +x_22 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__17; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Core___hyg_184____closed__16; +x_25 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__16; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Core___hyg_184____closed__8; +x_29 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -1933,25 +1933,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Core___hyg_1017____closed__4; +x_35 = l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__4; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Core___hyg_1017____closed__3; -x_38 = l_myMacro____x40_Init_Core___hyg_1017____closed__6; +x_37 = l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__3; +x_38 = l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__6; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Core___hyg_184____closed__17; +x_40 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__17; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Core___hyg_184____closed__16; +x_43 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__16; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Core___hyg_184____closed__8; +x_47 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -1963,11 +1963,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Core___hyg_1000_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Core______unexpand__PSum__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Core___hyg_184____closed__8; +x_3 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -1985,7 +1985,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Core___hyg_167____closed__2; +x_9 = l___aux__Init__Core______unexpand__Iff__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -2023,7 +2023,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -2033,7 +2033,7 @@ x_25 = l_term___u2295_x27_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Core___hyg_167____closed__3; +x_27 = l___aux__Init__Core______unexpand__Iff__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -2056,7 +2056,7 @@ x_35 = l_term___u2295_x27_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Core___hyg_167____closed__3; +x_37 = l___aux__Init__Core______unexpand__Iff__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -2160,7 +2160,7 @@ x_1 = l_term___u2248_____closed__7; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_1500____closed__1() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -2168,22 +2168,22 @@ x_1 = lean_mk_string("HasEquiv.Equiv"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_1500____closed__2() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Core___hyg_1500____closed__1; +x_1 = l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_1500____closed__3() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Core___hyg_1500____closed__1; +x_1 = l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Core___hyg_1500____closed__2; +x_3 = l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2191,7 +2191,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_1500____closed__4() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -2199,17 +2199,17 @@ x_1 = lean_mk_string("HasEquiv"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_1500____closed__5() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Core___hyg_1500____closed__4; +x_2 = l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_1500____closed__6() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -2217,41 +2217,41 @@ x_1 = lean_mk_string("Equiv"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_1500____closed__7() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Core___hyg_1500____closed__5; -x_2 = l_myMacro____x40_Init_Core___hyg_1500____closed__6; +x_1 = l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__5; +x_2 = l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_1500____closed__8() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Core___hyg_1500____closed__7; +x_2 = l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_1500____closed__9() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Core___hyg_1500____closed__8; +x_2 = l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Core___hyg_1500_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2278,7 +2278,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -2289,25 +2289,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Core___hyg_1500____closed__7; +x_17 = l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__7; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Core___hyg_1500____closed__3; -x_20 = l_myMacro____x40_Init_Core___hyg_1500____closed__9; +x_19 = l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__3; +x_20 = l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__9; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Core___hyg_184____closed__17; +x_22 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__17; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Core___hyg_184____closed__16; +x_25 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__16; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Core___hyg_184____closed__8; +x_29 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -2327,25 +2327,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Core___hyg_1500____closed__7; +x_35 = l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__7; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Core___hyg_1500____closed__3; -x_38 = l_myMacro____x40_Init_Core___hyg_1500____closed__9; +x_37 = l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__3; +x_38 = l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__9; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Core___hyg_184____closed__17; +x_40 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__17; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Core___hyg_184____closed__16; +x_43 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__16; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Core___hyg_184____closed__8; +x_47 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -2357,11 +2357,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Core___hyg_1483_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Core______unexpand__HasEquiv__Equiv__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Core___hyg_184____closed__8; +x_3 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -2379,7 +2379,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Core___hyg_167____closed__2; +x_9 = l___aux__Init__Core______unexpand__Iff__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -2417,7 +2417,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -2427,7 +2427,7 @@ x_25 = l_term___u2248_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Core___hyg_167____closed__3; +x_27 = l___aux__Init__Core______unexpand__Iff__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -2450,7 +2450,7 @@ x_35 = l_term___u2248_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Core___hyg_167____closed__3; +x_37 = l___aux__Init__Core______unexpand__Iff__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -2558,7 +2558,7 @@ x_1 = l_term_x7b_x7d___closed__8; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_1765____closed__1() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__1() { _start: { lean_object* x_1; @@ -2566,22 +2566,22 @@ x_1 = lean_mk_string("EmptyCollection.emptyCollection"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_1765____closed__2() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Core___hyg_1765____closed__1; +x_1 = l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_1765____closed__3() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Core___hyg_1765____closed__1; +x_1 = l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Core___hyg_1765____closed__2; +x_3 = l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2589,7 +2589,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_1765____closed__4() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__4() { _start: { lean_object* x_1; @@ -2597,17 +2597,17 @@ x_1 = lean_mk_string("EmptyCollection"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_1765____closed__5() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Core___hyg_1765____closed__4; +x_2 = l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_1765____closed__6() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__6() { _start: { lean_object* x_1; @@ -2615,41 +2615,41 @@ x_1 = lean_mk_string("emptyCollection"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_1765____closed__7() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Core___hyg_1765____closed__5; -x_2 = l_myMacro____x40_Init_Core___hyg_1765____closed__6; +x_1 = l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__5; +x_2 = l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_1765____closed__8() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Core___hyg_1765____closed__7; +x_2 = l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_1765____closed__9() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Core___hyg_1765____closed__8; +x_2 = l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Core___hyg_1765_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2669,7 +2669,7 @@ else { lean_object* x_8; uint8_t x_9; lean_inc(x_2); -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { @@ -2680,10 +2680,10 @@ lean_inc(x_11); x_12 = lean_ctor_get(x_2, 1); lean_inc(x_12); lean_dec(x_2); -x_13 = l_myMacro____x40_Init_Core___hyg_1765____closed__7; +x_13 = l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__7; x_14 = l_Lean_addMacroScope(x_12, x_13, x_11); -x_15 = l_myMacro____x40_Init_Core___hyg_1765____closed__3; -x_16 = l_myMacro____x40_Init_Core___hyg_1765____closed__9; +x_15 = l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__3; +x_16 = l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__9; x_17 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_17, 0, x_10); lean_ctor_set(x_17, 1, x_15); @@ -2705,10 +2705,10 @@ lean_inc(x_20); x_21 = lean_ctor_get(x_2, 1); lean_inc(x_21); lean_dec(x_2); -x_22 = l_myMacro____x40_Init_Core___hyg_1765____closed__7; +x_22 = l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__7; x_23 = l_Lean_addMacroScope(x_21, x_22, x_20); -x_24 = l_myMacro____x40_Init_Core___hyg_1765____closed__3; -x_25 = l_myMacro____x40_Init_Core___hyg_1765____closed__9; +x_24 = l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__3; +x_25 = l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__9; x_26 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_26, 0, x_18); lean_ctor_set(x_26, 1, x_24); @@ -2722,11 +2722,11 @@ return x_27; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Core___hyg_1750_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Core______unexpand__EmptyCollection__emptyCollection__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_unexpand____x40_Init_Core___hyg_167____closed__2; +x_3 = l___aux__Init__Core______unexpand__Iff__1___closed__2; x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) { @@ -2740,7 +2740,7 @@ return x_6; else { lean_object* x_7; uint8_t x_8; -x_7 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_7 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_8 = !lean_is_exclusive(x_7); if (x_8 == 0) { @@ -2755,7 +2755,7 @@ x_12 = l_term_x7b_x7d___closed__5; x_13 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_13, 0, x_9); lean_ctor_set(x_13, 1, x_12); -x_14 = l_myMacro____x40_Init_Core___hyg_184____closed__17; +x_14 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__17; x_15 = lean_array_push(x_14, x_11); x_16 = lean_array_push(x_15, x_13); x_17 = l_term_x7b_x7d___closed__2; @@ -2782,7 +2782,7 @@ x_23 = l_term_x7b_x7d___closed__5; x_24 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_24, 0, x_19); lean_ctor_set(x_24, 1, x_23); -x_25 = l_myMacro____x40_Init_Core___hyg_184____closed__17; +x_25 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__17; x_26 = lean_array_push(x_25, x_22); x_27 = lean_array_push(x_26, x_24); x_28 = l_term_x7b_x7d___closed__2; @@ -2855,7 +2855,7 @@ x_1 = l_term_u2205___closed__5; return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Core___hyg_1920_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Core______macroRules___xabterm_u2205_xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2875,7 +2875,7 @@ else { lean_object* x_8; uint8_t x_9; lean_inc(x_2); -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { @@ -2886,10 +2886,10 @@ lean_inc(x_11); x_12 = lean_ctor_get(x_2, 1); lean_inc(x_12); lean_dec(x_2); -x_13 = l_myMacro____x40_Init_Core___hyg_1765____closed__7; +x_13 = l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__7; x_14 = l_Lean_addMacroScope(x_12, x_13, x_11); -x_15 = l_myMacro____x40_Init_Core___hyg_1765____closed__3; -x_16 = l_myMacro____x40_Init_Core___hyg_1765____closed__9; +x_15 = l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__3; +x_16 = l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__9; x_17 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_17, 0, x_10); lean_ctor_set(x_17, 1, x_15); @@ -2911,10 +2911,10 @@ lean_inc(x_20); x_21 = lean_ctor_get(x_2, 1); lean_inc(x_21); lean_dec(x_2); -x_22 = l_myMacro____x40_Init_Core___hyg_1765____closed__7; +x_22 = l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__7; x_23 = l_Lean_addMacroScope(x_21, x_22, x_20); -x_24 = l_myMacro____x40_Init_Core___hyg_1765____closed__3; -x_25 = l_myMacro____x40_Init_Core___hyg_1765____closed__9; +x_24 = l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__3; +x_25 = l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__9; x_26 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_26, 0, x_18); lean_ctor_set(x_26, 1, x_24); @@ -2928,7 +2928,7 @@ return x_27; } } } -static lean_object* _init_l_unexpand____x40_Init_Core___hyg_1909____closed__1() { +static lean_object* _init_l___aux__Init__Core______unexpand__EmptyCollection__emptyCollection__2___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -2937,11 +2937,11 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Core___hyg_1909_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Core______unexpand__EmptyCollection__emptyCollection__2(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_unexpand____x40_Init_Core___hyg_167____closed__2; +x_3 = l___aux__Init__Core______unexpand__Iff__1___closed__2; x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) { @@ -2955,7 +2955,7 @@ return x_6; else { lean_object* x_7; uint8_t x_8; -x_7 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_7 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_8 = !lean_is_exclusive(x_7); if (x_8 == 0) { @@ -2965,7 +2965,7 @@ x_10 = l_term_u2205___closed__3; x_11 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_11, 0, x_9); lean_ctor_set(x_11, 1, x_10); -x_12 = l_unexpand____x40_Init_Core___hyg_1909____closed__1; +x_12 = l___aux__Init__Core______unexpand__EmptyCollection__emptyCollection__2___closed__1; x_13 = lean_array_push(x_12, x_11); x_14 = l_term_u2205___closed__2; x_15 = lean_alloc_ctor(1, 2, 0); @@ -2986,7 +2986,7 @@ x_18 = l_term_u2205___closed__3; x_19 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_19, 0, x_16); lean_ctor_set(x_19, 1, x_18); -x_20 = l_unexpand____x40_Init_Core___hyg_1909____closed__1; +x_20 = l___aux__Init__Core______unexpand__EmptyCollection__emptyCollection__2___closed__1; x_21 = lean_array_push(x_20, x_19); x_22 = l_term_u2205___closed__2; x_23 = lean_alloc_ctor(1, 2, 0); @@ -3219,7 +3219,7 @@ x_1 = l_term___x21_x3d_____closed__6; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_2250____closed__1() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -3227,22 +3227,22 @@ x_1 = lean_mk_string("bne"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_2250____closed__2() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Core___hyg_2250____closed__1; +x_1 = l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_2250____closed__3() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Core___hyg_2250____closed__1; +x_1 = l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Core___hyg_2250____closed__2; +x_3 = l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -3250,41 +3250,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_2250____closed__4() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Core___hyg_2250____closed__1; +x_2 = l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_2250____closed__5() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Core___hyg_2250____closed__4; +x_2 = l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__4; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_2250____closed__6() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Core___hyg_2250____closed__5; +x_2 = l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Core___hyg_2250_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -3311,7 +3311,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -3322,25 +3322,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Core___hyg_2250____closed__4; +x_17 = l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__4; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Core___hyg_2250____closed__3; -x_20 = l_myMacro____x40_Init_Core___hyg_2250____closed__6; +x_19 = l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__3; +x_20 = l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__6; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Core___hyg_184____closed__17; +x_22 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__17; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Core___hyg_184____closed__16; +x_25 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__16; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Core___hyg_184____closed__8; +x_29 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -3360,25 +3360,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Core___hyg_2250____closed__4; +x_35 = l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__4; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Core___hyg_2250____closed__3; -x_38 = l_myMacro____x40_Init_Core___hyg_2250____closed__6; +x_37 = l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__3; +x_38 = l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__6; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Core___hyg_184____closed__17; +x_40 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__17; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Core___hyg_184____closed__16; +x_43 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__16; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Core___hyg_184____closed__8; +x_47 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -3390,11 +3390,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Core___hyg_2233_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Core______unexpand__bne__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Core___hyg_184____closed__8; +x_3 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -3412,7 +3412,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Core___hyg_167____closed__2; +x_9 = l___aux__Init__Core______unexpand__Iff__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -3450,7 +3450,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -3460,7 +3460,7 @@ x_25 = l_term___x21_x3d_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Core___hyg_167____closed__3; +x_27 = l___aux__Init__Core______unexpand__Iff__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -3483,7 +3483,7 @@ x_35 = l_term___x21_x3d_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Core___hyg_167____closed__3; +x_37 = l___aux__Init__Core______unexpand__Iff__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -3623,7 +3623,7 @@ x_1 = l_term___u2260_____closed__6; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_2712____closed__1() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -3631,22 +3631,22 @@ x_1 = lean_mk_string("Ne"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_2712____closed__2() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Core___hyg_2712____closed__1; +x_1 = l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_2712____closed__3() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Core___hyg_2712____closed__1; +x_1 = l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Core___hyg_2712____closed__2; +x_3 = l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -3654,41 +3654,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_2712____closed__4() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Core___hyg_2712____closed__1; +x_2 = l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_2712____closed__5() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Core___hyg_2712____closed__4; +x_2 = l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__4; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Core___hyg_2712____closed__6() { +static lean_object* _init_l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Core___hyg_2712____closed__5; +x_2 = l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Core___hyg_2712_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -3715,7 +3715,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -3726,25 +3726,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Core___hyg_2712____closed__4; +x_17 = l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__4; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Core___hyg_2712____closed__3; -x_20 = l_myMacro____x40_Init_Core___hyg_2712____closed__6; +x_19 = l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__3; +x_20 = l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__6; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Core___hyg_184____closed__17; +x_22 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__17; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Core___hyg_184____closed__16; +x_25 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__16; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Core___hyg_184____closed__8; +x_29 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -3764,25 +3764,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Core___hyg_2712____closed__4; +x_35 = l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__4; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Core___hyg_2712____closed__3; -x_38 = l_myMacro____x40_Init_Core___hyg_2712____closed__6; +x_37 = l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__3; +x_38 = l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__6; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Core___hyg_184____closed__17; +x_40 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__17; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Core___hyg_184____closed__16; +x_43 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__16; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Core___hyg_184____closed__8; +x_47 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -3794,11 +3794,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Core___hyg_2695_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Core______unexpand__Ne__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Core___hyg_184____closed__8; +x_3 = l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -3816,7 +3816,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Core___hyg_167____closed__2; +x_9 = l___aux__Init__Core______unexpand__Iff__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -3854,7 +3854,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -3864,7 +3864,7 @@ x_25 = l_term___u2260_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Core___hyg_167____closed__3; +x_27 = l___aux__Init__Core______unexpand__Iff__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -3887,7 +3887,7 @@ x_35 = l_term___u2260_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Core___hyg_167____closed__3; +x_37 = l___aux__Init__Core______unexpand__Iff__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -5226,46 +5226,46 @@ l_term___x3c_x2d_x3e_____closed__11 = _init_l_term___x3c_x2d_x3e_____closed__11( lean_mark_persistent(l_term___x3c_x2d_x3e_____closed__11); l_term___x3c_x2d_x3e__ = _init_l_term___x3c_x2d_x3e__(); lean_mark_persistent(l_term___x3c_x2d_x3e__); -l_myMacro____x40_Init_Core___hyg_184____closed__1 = _init_l_myMacro____x40_Init_Core___hyg_184____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_184____closed__1); -l_myMacro____x40_Init_Core___hyg_184____closed__2 = _init_l_myMacro____x40_Init_Core___hyg_184____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_184____closed__2); -l_myMacro____x40_Init_Core___hyg_184____closed__3 = _init_l_myMacro____x40_Init_Core___hyg_184____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_184____closed__3); -l_myMacro____x40_Init_Core___hyg_184____closed__4 = _init_l_myMacro____x40_Init_Core___hyg_184____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_184____closed__4); -l_myMacro____x40_Init_Core___hyg_184____closed__5 = _init_l_myMacro____x40_Init_Core___hyg_184____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_184____closed__5); -l_myMacro____x40_Init_Core___hyg_184____closed__6 = _init_l_myMacro____x40_Init_Core___hyg_184____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_184____closed__6); -l_myMacro____x40_Init_Core___hyg_184____closed__7 = _init_l_myMacro____x40_Init_Core___hyg_184____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_184____closed__7); -l_myMacro____x40_Init_Core___hyg_184____closed__8 = _init_l_myMacro____x40_Init_Core___hyg_184____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_184____closed__8); -l_myMacro____x40_Init_Core___hyg_184____closed__9 = _init_l_myMacro____x40_Init_Core___hyg_184____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_184____closed__9); -l_myMacro____x40_Init_Core___hyg_184____closed__10 = _init_l_myMacro____x40_Init_Core___hyg_184____closed__10(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_184____closed__10); -l_myMacro____x40_Init_Core___hyg_184____closed__11 = _init_l_myMacro____x40_Init_Core___hyg_184____closed__11(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_184____closed__11); -l_myMacro____x40_Init_Core___hyg_184____closed__12 = _init_l_myMacro____x40_Init_Core___hyg_184____closed__12(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_184____closed__12); -l_myMacro____x40_Init_Core___hyg_184____closed__13 = _init_l_myMacro____x40_Init_Core___hyg_184____closed__13(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_184____closed__13); -l_myMacro____x40_Init_Core___hyg_184____closed__14 = _init_l_myMacro____x40_Init_Core___hyg_184____closed__14(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_184____closed__14); -l_myMacro____x40_Init_Core___hyg_184____closed__15 = _init_l_myMacro____x40_Init_Core___hyg_184____closed__15(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_184____closed__15); -l_myMacro____x40_Init_Core___hyg_184____closed__16 = _init_l_myMacro____x40_Init_Core___hyg_184____closed__16(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_184____closed__16); -l_myMacro____x40_Init_Core___hyg_184____closed__17 = _init_l_myMacro____x40_Init_Core___hyg_184____closed__17(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_184____closed__17); -l_unexpand____x40_Init_Core___hyg_167____closed__1 = _init_l_unexpand____x40_Init_Core___hyg_167____closed__1(); -lean_mark_persistent(l_unexpand____x40_Init_Core___hyg_167____closed__1); -l_unexpand____x40_Init_Core___hyg_167____closed__2 = _init_l_unexpand____x40_Init_Core___hyg_167____closed__2(); -lean_mark_persistent(l_unexpand____x40_Init_Core___hyg_167____closed__2); -l_unexpand____x40_Init_Core___hyg_167____closed__3 = _init_l_unexpand____x40_Init_Core___hyg_167____closed__3(); -lean_mark_persistent(l_unexpand____x40_Init_Core___hyg_167____closed__3); +l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__1 = _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__1); +l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__2 = _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__2); +l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__3 = _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__3); +l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__4 = _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__4); +l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__5 = _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__5); +l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__6 = _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__6); +l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__7 = _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__7); +l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8 = _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__8); +l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__9 = _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__9); +l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__10 = _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__10(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__10); +l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__11 = _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__11(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__11); +l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__12 = _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__12(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__12); +l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__13 = _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__13(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__13); +l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__14 = _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__14(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__14); +l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__15 = _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__15(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__15); +l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__16 = _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__16(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__16); +l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__17 = _init_l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__17(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___x3c_x2d_x3e___xbb__1___closed__17); +l___aux__Init__Core______unexpand__Iff__1___closed__1 = _init_l___aux__Init__Core______unexpand__Iff__1___closed__1(); +lean_mark_persistent(l___aux__Init__Core______unexpand__Iff__1___closed__1); +l___aux__Init__Core______unexpand__Iff__1___closed__2 = _init_l___aux__Init__Core______unexpand__Iff__1___closed__2(); +lean_mark_persistent(l___aux__Init__Core______unexpand__Iff__1___closed__2); +l___aux__Init__Core______unexpand__Iff__1___closed__3 = _init_l___aux__Init__Core______unexpand__Iff__1___closed__3(); +lean_mark_persistent(l___aux__Init__Core______unexpand__Iff__1___closed__3); l_term___u2194_____closed__1 = _init_l_term___u2194_____closed__1(); lean_mark_persistent(l_term___u2194_____closed__1); l_term___u2194_____closed__2 = _init_l_term___u2194_____closed__2(); @@ -5296,18 +5296,18 @@ l_term___u2295_____closed__7 = _init_l_term___u2295_____closed__7(); lean_mark_persistent(l_term___u2295_____closed__7); l_term___u2295__ = _init_l_term___u2295__(); lean_mark_persistent(l_term___u2295__); -l_myMacro____x40_Init_Core___hyg_733____closed__1 = _init_l_myMacro____x40_Init_Core___hyg_733____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_733____closed__1); -l_myMacro____x40_Init_Core___hyg_733____closed__2 = _init_l_myMacro____x40_Init_Core___hyg_733____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_733____closed__2); -l_myMacro____x40_Init_Core___hyg_733____closed__3 = _init_l_myMacro____x40_Init_Core___hyg_733____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_733____closed__3); -l_myMacro____x40_Init_Core___hyg_733____closed__4 = _init_l_myMacro____x40_Init_Core___hyg_733____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_733____closed__4); -l_myMacro____x40_Init_Core___hyg_733____closed__5 = _init_l_myMacro____x40_Init_Core___hyg_733____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_733____closed__5); -l_myMacro____x40_Init_Core___hyg_733____closed__6 = _init_l_myMacro____x40_Init_Core___hyg_733____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_733____closed__6); +l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__1 = _init_l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__1); +l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__2 = _init_l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__2); +l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__3 = _init_l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__3); +l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__4 = _init_l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__4); +l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__5 = _init_l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__5); +l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__6 = _init_l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2295___xbb__1___closed__6); l_term___u2295_x27_____closed__1 = _init_l_term___u2295_x27_____closed__1(); lean_mark_persistent(l_term___u2295_x27_____closed__1); l_term___u2295_x27_____closed__2 = _init_l_term___u2295_x27_____closed__2(); @@ -5322,18 +5322,18 @@ l_term___u2295_x27_____closed__6 = _init_l_term___u2295_x27_____closed__6(); lean_mark_persistent(l_term___u2295_x27_____closed__6); l_term___u2295_x27__ = _init_l_term___u2295_x27__(); lean_mark_persistent(l_term___u2295_x27__); -l_myMacro____x40_Init_Core___hyg_1017____closed__1 = _init_l_myMacro____x40_Init_Core___hyg_1017____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_1017____closed__1); -l_myMacro____x40_Init_Core___hyg_1017____closed__2 = _init_l_myMacro____x40_Init_Core___hyg_1017____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_1017____closed__2); -l_myMacro____x40_Init_Core___hyg_1017____closed__3 = _init_l_myMacro____x40_Init_Core___hyg_1017____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_1017____closed__3); -l_myMacro____x40_Init_Core___hyg_1017____closed__4 = _init_l_myMacro____x40_Init_Core___hyg_1017____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_1017____closed__4); -l_myMacro____x40_Init_Core___hyg_1017____closed__5 = _init_l_myMacro____x40_Init_Core___hyg_1017____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_1017____closed__5); -l_myMacro____x40_Init_Core___hyg_1017____closed__6 = _init_l_myMacro____x40_Init_Core___hyg_1017____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_1017____closed__6); +l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__1 = _init_l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__1); +l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__2 = _init_l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__2); +l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__3 = _init_l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__3); +l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__4 = _init_l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__4); +l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__5 = _init_l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__5); +l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__6 = _init_l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2295_x27___xbb__1___closed__6); l_term___u2248_____closed__1 = _init_l_term___u2248_____closed__1(); lean_mark_persistent(l_term___u2248_____closed__1); l_term___u2248_____closed__2 = _init_l_term___u2248_____closed__2(); @@ -5350,24 +5350,24 @@ l_term___u2248_____closed__7 = _init_l_term___u2248_____closed__7(); lean_mark_persistent(l_term___u2248_____closed__7); l_term___u2248__ = _init_l_term___u2248__(); lean_mark_persistent(l_term___u2248__); -l_myMacro____x40_Init_Core___hyg_1500____closed__1 = _init_l_myMacro____x40_Init_Core___hyg_1500____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_1500____closed__1); -l_myMacro____x40_Init_Core___hyg_1500____closed__2 = _init_l_myMacro____x40_Init_Core___hyg_1500____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_1500____closed__2); -l_myMacro____x40_Init_Core___hyg_1500____closed__3 = _init_l_myMacro____x40_Init_Core___hyg_1500____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_1500____closed__3); -l_myMacro____x40_Init_Core___hyg_1500____closed__4 = _init_l_myMacro____x40_Init_Core___hyg_1500____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_1500____closed__4); -l_myMacro____x40_Init_Core___hyg_1500____closed__5 = _init_l_myMacro____x40_Init_Core___hyg_1500____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_1500____closed__5); -l_myMacro____x40_Init_Core___hyg_1500____closed__6 = _init_l_myMacro____x40_Init_Core___hyg_1500____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_1500____closed__6); -l_myMacro____x40_Init_Core___hyg_1500____closed__7 = _init_l_myMacro____x40_Init_Core___hyg_1500____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_1500____closed__7); -l_myMacro____x40_Init_Core___hyg_1500____closed__8 = _init_l_myMacro____x40_Init_Core___hyg_1500____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_1500____closed__8); -l_myMacro____x40_Init_Core___hyg_1500____closed__9 = _init_l_myMacro____x40_Init_Core___hyg_1500____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_1500____closed__9); +l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__1 = _init_l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__1); +l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__2 = _init_l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__2); +l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__3 = _init_l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__3); +l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__4 = _init_l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__4); +l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__5 = _init_l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__5); +l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__6 = _init_l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__6); +l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__7 = _init_l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__7); +l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__8 = _init_l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__8); +l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__9 = _init_l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2248___xbb__1___closed__9); l_term_x7b_x7d___closed__1 = _init_l_term_x7b_x7d___closed__1(); lean_mark_persistent(l_term_x7b_x7d___closed__1); l_term_x7b_x7d___closed__2 = _init_l_term_x7b_x7d___closed__2(); @@ -5386,24 +5386,24 @@ l_term_x7b_x7d___closed__8 = _init_l_term_x7b_x7d___closed__8(); lean_mark_persistent(l_term_x7b_x7d___closed__8); l_term_x7b_x7d = _init_l_term_x7b_x7d(); lean_mark_persistent(l_term_x7b_x7d); -l_myMacro____x40_Init_Core___hyg_1765____closed__1 = _init_l_myMacro____x40_Init_Core___hyg_1765____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_1765____closed__1); -l_myMacro____x40_Init_Core___hyg_1765____closed__2 = _init_l_myMacro____x40_Init_Core___hyg_1765____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_1765____closed__2); -l_myMacro____x40_Init_Core___hyg_1765____closed__3 = _init_l_myMacro____x40_Init_Core___hyg_1765____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_1765____closed__3); -l_myMacro____x40_Init_Core___hyg_1765____closed__4 = _init_l_myMacro____x40_Init_Core___hyg_1765____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_1765____closed__4); -l_myMacro____x40_Init_Core___hyg_1765____closed__5 = _init_l_myMacro____x40_Init_Core___hyg_1765____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_1765____closed__5); -l_myMacro____x40_Init_Core___hyg_1765____closed__6 = _init_l_myMacro____x40_Init_Core___hyg_1765____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_1765____closed__6); -l_myMacro____x40_Init_Core___hyg_1765____closed__7 = _init_l_myMacro____x40_Init_Core___hyg_1765____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_1765____closed__7); -l_myMacro____x40_Init_Core___hyg_1765____closed__8 = _init_l_myMacro____x40_Init_Core___hyg_1765____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_1765____closed__8); -l_myMacro____x40_Init_Core___hyg_1765____closed__9 = _init_l_myMacro____x40_Init_Core___hyg_1765____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_1765____closed__9); +l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__1 = _init_l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__1); +l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__2 = _init_l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__2); +l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__3 = _init_l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__3); +l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__4 = _init_l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__4); +l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__5 = _init_l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__5); +l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__6 = _init_l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__6); +l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__7 = _init_l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__7); +l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__8 = _init_l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__8); +l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__9 = _init_l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm_x7b_x7d_xbb__1___closed__9); l_term_u2205___closed__1 = _init_l_term_u2205___closed__1(); lean_mark_persistent(l_term_u2205___closed__1); l_term_u2205___closed__2 = _init_l_term_u2205___closed__2(); @@ -5416,8 +5416,8 @@ l_term_u2205___closed__5 = _init_l_term_u2205___closed__5(); lean_mark_persistent(l_term_u2205___closed__5); l_term_u2205 = _init_l_term_u2205(); lean_mark_persistent(l_term_u2205); -l_unexpand____x40_Init_Core___hyg_1909____closed__1 = _init_l_unexpand____x40_Init_Core___hyg_1909____closed__1(); -lean_mark_persistent(l_unexpand____x40_Init_Core___hyg_1909____closed__1); +l___aux__Init__Core______unexpand__EmptyCollection__emptyCollection__2___closed__1 = _init_l___aux__Init__Core______unexpand__EmptyCollection__emptyCollection__2___closed__1(); +lean_mark_persistent(l___aux__Init__Core______unexpand__EmptyCollection__emptyCollection__2___closed__1); l_Task_Priority_default = _init_l_Task_Priority_default(); lean_mark_persistent(l_Task_Priority_default); l_Task_Priority_max = _init_l_Task_Priority_max(); @@ -5438,18 +5438,18 @@ l_term___x21_x3d_____closed__6 = _init_l_term___x21_x3d_____closed__6(); lean_mark_persistent(l_term___x21_x3d_____closed__6); l_term___x21_x3d__ = _init_l_term___x21_x3d__(); lean_mark_persistent(l_term___x21_x3d__); -l_myMacro____x40_Init_Core___hyg_2250____closed__1 = _init_l_myMacro____x40_Init_Core___hyg_2250____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_2250____closed__1); -l_myMacro____x40_Init_Core___hyg_2250____closed__2 = _init_l_myMacro____x40_Init_Core___hyg_2250____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_2250____closed__2); -l_myMacro____x40_Init_Core___hyg_2250____closed__3 = _init_l_myMacro____x40_Init_Core___hyg_2250____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_2250____closed__3); -l_myMacro____x40_Init_Core___hyg_2250____closed__4 = _init_l_myMacro____x40_Init_Core___hyg_2250____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_2250____closed__4); -l_myMacro____x40_Init_Core___hyg_2250____closed__5 = _init_l_myMacro____x40_Init_Core___hyg_2250____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_2250____closed__5); -l_myMacro____x40_Init_Core___hyg_2250____closed__6 = _init_l_myMacro____x40_Init_Core___hyg_2250____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_2250____closed__6); +l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__1 = _init_l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__1); +l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__2 = _init_l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__2); +l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__3 = _init_l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__3); +l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__4 = _init_l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__4); +l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__5 = _init_l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__5); +l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__6 = _init_l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___x21_x3d___xbb__1___closed__6); l_term___u2260_____closed__1 = _init_l_term___u2260_____closed__1(); lean_mark_persistent(l_term___u2260_____closed__1); l_term___u2260_____closed__2 = _init_l_term___u2260_____closed__2(); @@ -5464,18 +5464,18 @@ l_term___u2260_____closed__6 = _init_l_term___u2260_____closed__6(); lean_mark_persistent(l_term___u2260_____closed__6); l_term___u2260__ = _init_l_term___u2260__(); lean_mark_persistent(l_term___u2260__); -l_myMacro____x40_Init_Core___hyg_2712____closed__1 = _init_l_myMacro____x40_Init_Core___hyg_2712____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_2712____closed__1); -l_myMacro____x40_Init_Core___hyg_2712____closed__2 = _init_l_myMacro____x40_Init_Core___hyg_2712____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_2712____closed__2); -l_myMacro____x40_Init_Core___hyg_2712____closed__3 = _init_l_myMacro____x40_Init_Core___hyg_2712____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_2712____closed__3); -l_myMacro____x40_Init_Core___hyg_2712____closed__4 = _init_l_myMacro____x40_Init_Core___hyg_2712____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_2712____closed__4); -l_myMacro____x40_Init_Core___hyg_2712____closed__5 = _init_l_myMacro____x40_Init_Core___hyg_2712____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_2712____closed__5); -l_myMacro____x40_Init_Core___hyg_2712____closed__6 = _init_l_myMacro____x40_Init_Core___hyg_2712____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Core___hyg_2712____closed__6); +l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__1 = _init_l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__1); +l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__2 = _init_l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__2); +l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__3 = _init_l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__3); +l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__4 = _init_l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__4); +l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__5 = _init_l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__5); +l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__6 = _init_l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Core______macroRules___xabterm___u2260___xbb__1___closed__6); l_instDecidableTrue = _init_l_instDecidableTrue(); l_instDecidableFalse = _init_l_instDecidableFalse(); l_noConfusionEnum___rarg___closed__1 = _init_l_noConfusionEnum___rarg___closed__1(); diff --git a/stage0/stdlib/Init/Data/Array/Basic.c b/stage0/stdlib/Init/Data/Array/Basic.c index 431861693a..0f5cdf04e8 100644 --- a/stage0/stdlib/Init/Data/Array/Basic.c +++ b/stage0/stdlib/Init/Data/Array/Basic.c @@ -18,9 +18,9 @@ LEAN_EXPORT lean_object* l_List_foldl___at_Array_appendList___spec__1(lean_objec LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_concatMap___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forM(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_findM_x3f(lean_object*, lean_object*); -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___at_Array_findRevM_x3f___spec__1___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_getEvenElems___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__24; LEAN_EXPORT lean_object* l_Array_getMax_x3f___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Array_findIdxM_x3f___spec__1___rarg___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_term_x23_x5b___x2c_x5d___closed__11; @@ -28,6 +28,7 @@ size_t lean_usize_add(size_t, size_t); LEAN_EXPORT lean_object* l_Array_isPrefixOf(lean_object*); LEAN_EXPORT lean_object* l_Array_instBEqArray(lean_object*); static lean_object* l_Array_instReprArray___rarg___closed__5; +LEAN_EXPORT lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_elem___rarg___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_term_x23_x5b___x2c_x5d___closed__8; LEAN_EXPORT lean_object* l_Array_filterM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -55,17 +56,18 @@ lean_object* lean_array_uget(lean_object*, size_t); LEAN_EXPORT lean_object* l_Array_getIdx_x3f___rarg___lambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlM_loop___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at_Array_mapIdx___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__17; LEAN_EXPORT lean_object* l_Array_zipWith___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_term_x23_x5b___x2c_x5d; LEAN_EXPORT lean_object* l_Array_filterMapM___at_Array_filterMap___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Array_all___spec__1___rarg(lean_object*, lean_object*, size_t, size_t); -static lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__24; LEAN_EXPORT lean_object* l_Array_append___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___at_Array_findRev_x3f___spec__1(lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_getEvenElems___spec__1(lean_object*); LEAN_EXPORT lean_object* l_Array_modifyM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_mapM___spec__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapIdxM_map___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__4; LEAN_EXPORT lean_object* l_Array_uset___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___at_Array_findRevM_x3f___spec__1___rarg___lambda__1(lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___at_Array_findSomeRev_x3f___spec__1(lean_object*, lean_object*); @@ -74,7 +76,7 @@ LEAN_EXPORT lean_object* l_Array_filterMapM___rarg___lambda__1(lean_object*, lea LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_swapAt(lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); -static lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__16; +static lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__9; lean_object* lean_array_fswap(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_zip___rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Array_allM___spec__1___rarg___lambda__2(size_t, lean_object*, lean_object*, lean_object*, lean_object*, size_t, uint8_t); @@ -98,7 +100,7 @@ LEAN_EXPORT lean_object* l_Array_uget___boxed(lean_object*, lean_object*, lean_o static lean_object* l_Array_instReprArray___rarg___closed__6; LEAN_EXPORT lean_object* l_Array_foldl___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapIdxM_map___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__20; +static lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__14; LEAN_EXPORT lean_object* l_Array_isEqvAux___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___at_Array_findRevM_x3f___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe(lean_object*, lean_object*); @@ -109,9 +111,10 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_foldl___spec__1(le LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Array_findIdxM_x3f___spec__1(lean_object*, lean_object*); static lean_object* l_term_x23_x5b___x2c_x5d___closed__13; -static lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__10; +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_isEqvAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__22; LEAN_EXPORT lean_object* l_Array_instToStringArray___rarg(lean_object*, lean_object*); static lean_object* l_term_x23_x5b___x2c_x5d___closed__4; LEAN_EXPORT lean_object* l_Array_split___rarg(lean_object*, lean_object*); @@ -135,23 +138,27 @@ LEAN_EXPORT lean_object* l_Array_findRev_x3f___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_shrink___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapIdxM_map___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__19; LEAN_EXPORT lean_object* l_Array_findIdx_x3f___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_find_x3f___rarg(lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__15; LEAN_EXPORT lean_object* l_Array_back(lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Array_findIdxM_x3f___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_findM_x3f___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__18; lean_object* lean_string_utf8_byte_size(lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Array_findM_x3f___spec__1___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_findSomeM_x3f___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__5; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Array_foldr___spec__2___rarg(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Array_singleton(lean_object*); LEAN_EXPORT lean_object* l_Array_find_x3f(lean_object*); uint8_t lean_usize_dec_lt(size_t, size_t); LEAN_EXPORT lean_object* l_Array_mapM(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__3; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_unzip___spec__1___rarg(lean_object*, size_t, size_t, lean_object*); static lean_object* l_term_x23_x5b___x2c_x5d___closed__2; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_concatMap___spec__1(lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__7; LEAN_EXPORT lean_object* l_Array_back_x3f___rarg(lean_object*); LEAN_EXPORT lean_object* l_Array_concatMapM(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_getIdx_x3f(lean_object*); @@ -194,7 +201,6 @@ LEAN_EXPORT lean_object* l_Array_getLit(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_isPrefixOf___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Array_foldr___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___rarg(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); -static lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__12; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Array_forRevM___spec__1___rarg(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Array_foldl(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_getMax_x3f(lean_object*); @@ -218,6 +224,7 @@ LEAN_EXPORT uint8_t l_Array_all___rarg(lean_object*, lean_object*, lean_object*, LEAN_EXPORT lean_object* l_Array_filter___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_eraseIdx_x27___rarg___boxed(lean_object*, lean_object*); lean_object* lean_array_swap(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__25; LEAN_EXPORT lean_object* l_Array_getIdx_x3f___rarg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Array_all___spec__1(lean_object*); LEAN_EXPORT lean_object* l_Array_get_x3f___rarg___boxed(lean_object*, lean_object*); @@ -232,12 +239,12 @@ LEAN_EXPORT lean_object* l_List_foldl___at_Array_appendList___spec__1___rarg(lea LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_filter___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_instBEqArray___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_indexOf_x3f___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__20; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___rarg___lambda__1(size_t, lean_object*, lean_object*, lean_object*, size_t, uint8_t); static lean_object* l_Array_instReprArray___rarg___closed__9; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Array_contains___spec__1(lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Array_any___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_allM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__11; LEAN_EXPORT lean_object* l_Array_allDiff(lean_object*); LEAN_EXPORT lean_object* l_Array_findIdxM_x3f___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Array_findIdxM_x3f___spec__1___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -258,6 +265,7 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_filter___spec__1__ LEAN_EXPORT lean_object* l_Array_insertAtAux(lean_object*); LEAN_EXPORT lean_object* l_Std_Format_joinSep___at_Array_instReprArray___spec__1___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_forM___spec__1(lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__10; LEAN_EXPORT lean_object* l_Array_reverse(lean_object*); LEAN_EXPORT lean_object* l_Array_modifyM___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -274,7 +282,6 @@ LEAN_EXPORT lean_object* l_Array_foldlM_loop___rarg(lean_object*, lean_object*, LEAN_EXPORT lean_object* l_Array_forIn_loop___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_toArrayLit(lean_object*); LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___at_Array_findRevM_x3f___spec__1___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__21; LEAN_EXPORT lean_object* l_Array_shrink___rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -282,7 +289,6 @@ static lean_object* l_Array_swapAt_x21___rarg___closed__4; LEAN_EXPORT lean_object* l_Array_instBEqArray___rarg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_getLit___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___rarg___lambda__1(lean_object*, size_t, lean_object*, lean_object*, size_t, lean_object*); -static lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__23; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___rarg(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_Array_swapAt_x21___rarg___closed__1; LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___at_Array_findRev_x3f___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -305,7 +311,6 @@ LEAN_EXPORT lean_object* l_Array_modify___rarg___boxed(lean_object*, lean_object lean_object* l_List_toString___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___at_Array_findRevM_x3f___spec__1___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__13; LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___at_Array_findRev_x3f___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_term_x23_x5b___x2c_x5d___closed__15; LEAN_EXPORT lean_object* l_Array_indexOfAux(lean_object*); @@ -328,7 +333,6 @@ LEAN_EXPORT lean_object* l_Array_find_x3f___rarg___lambda__1(lean_object*, lean_ LEAN_EXPORT lean_object* l_Array_any(lean_object*); LEAN_EXPORT lean_object* l_Array_findRevM_x3f___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_swapAt___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__6; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Array_allM___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Array_toList___spec__2(lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Array_findIdxM_x3f___spec__1___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -345,7 +349,6 @@ LEAN_EXPORT lean_object* l_Array_allDiff___rarg___boxed(lean_object*, lean_objec LEAN_EXPORT lean_object* l_Array_eraseIdx_x27(lean_object*); LEAN_EXPORT lean_object* l_Array_findIdx_x3f_loop___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_shrink_loop(lean_object*); -static lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__4; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___rarg(lean_object*, lean_object*, lean_object*, size_t, size_t); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_foldl___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); @@ -362,12 +365,9 @@ LEAN_EXPORT lean_object* l_Array_zipWith___rarg___boxed(lean_object*, lean_objec LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Array_foldr___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapIdxM_map(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Array_partition___spec__1___rarg(lean_object*, lean_object*, size_t, size_t, lean_object*); -static lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__17; LEAN_EXPORT lean_object* l_Array_swapAt___rarg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_feraseIdx___rarg(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__8; LEAN_EXPORT uint8_t l_Array_contains___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__9; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_filterMap___spec__2___rarg(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_filterMap___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -385,6 +385,7 @@ LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Array_findIdxM_x3f___spec LEAN_EXPORT lean_object* l_Array_foldrM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_eraseIdxSzAux___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_forM___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__16; LEAN_EXPORT lean_object* l_Array_find_x3f___rarg___lambda__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_insertAt___rarg___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_insertAt___rarg___closed__1; @@ -401,15 +402,14 @@ LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at_Array_mapIdx___spec__1(lean_ob lean_object* l_List_redLength___rarg(lean_object*); LEAN_EXPORT lean_object* l_Array_indexOf_x3f___rarg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyM_loop(lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__11; static lean_object* l_term_x23_x5b___x2c_x5d___closed__7; -static lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__2; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_forM___spec__1___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forRevM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_filterMapM(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_foldl___spec__1___rarg(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Array_indexOf_x3f(lean_object*); LEAN_EXPORT lean_object* l_Array_partition___rarg___boxed(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__1; LEAN_EXPORT uint8_t l_Array_isEqv___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_partition___rarg___closed__1; LEAN_EXPORT lean_object* l_Array_getLit___boxed(lean_object*, lean_object*); @@ -418,7 +418,6 @@ LEAN_EXPORT lean_object* l_Array_modify(lean_object*); extern lean_object* l_Id_instMonadId; uint8_t lean_nat_dec_le(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_findSomeRev_x3f___rarg(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__5; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Array_all___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_modifyM(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -426,15 +425,12 @@ lean_object* l_Lean_Syntax_getArgs(lean_object*); LEAN_EXPORT lean_object* l_Array_shrink(lean_object*); LEAN_EXPORT lean_object* l_panic___at_Array_swapAt_x21___spec__1___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_isEmpty(lean_object*); -static lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__15; +static lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__19; LEAN_EXPORT uint8_t l_Array_any___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__18; -static lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__14; static lean_object* l_Array_instToStringArray___rarg___closed__1; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_insertAtAux___rarg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_elem___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__3; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Array_findSome_x3f___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Array_findM_x3f___spec__1___rarg___lambda__2(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Array_findSome_x21___spec__1___rarg(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); @@ -467,7 +463,6 @@ LEAN_EXPORT lean_object* l_Array_eraseIdx___rarg___boxed(lean_object*, lean_obje LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___at_Array_findSomeRev_x3f___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_filterM___spec__1___rarg___lambda__2(size_t, lean_object*, lean_object*, lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_append___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__7; LEAN_EXPORT lean_object* l_Array_concatMapM___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapIdx___rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -482,8 +477,8 @@ LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___at_Array_findRevM_x3f__ LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Array_find_x3f___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_modify___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__13; LEAN_EXPORT lean_object* l_Array_findIdx_x3f(lean_object*); -static lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__25; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Array_findSomeM_x3f___spec__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_insertAt___rarg___closed__3; LEAN_EXPORT lean_object* l_Array_feraseIdx___rarg___boxed(lean_object*, lean_object*); @@ -496,6 +491,7 @@ static lean_object* l_Array_instReprArray___rarg___closed__2; lean_object* lean_mk_array(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyM_loop___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__12; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Array_toList___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_unzip___rarg___closed__1; LEAN_EXPORT lean_object* l_Array_unzip___rarg___boxed(lean_object*); @@ -524,8 +520,10 @@ LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Array_allM___spec__1___rarg LEAN_EXPORT lean_object* l_Array_foldlM_loop___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrM_fold___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_filterMap___spec__2(lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__1; LEAN_EXPORT lean_object* l_Array_findIdx_x3f_loop___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__2; LEAN_EXPORT lean_object* l_Array_contains(lean_object*); LEAN_EXPORT lean_object* l_Array_insertAtAux___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); @@ -540,12 +538,12 @@ LEAN_EXPORT lean_object* l_Array_foldrMUnsafe(lean_object*, lean_object*, lean_o LEAN_EXPORT lean_object* l_Array_instReprArray___rarg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_swapAt_x21(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___rarg___lambda__1(size_t, lean_object*, lean_object*, lean_object*, size_t, lean_object*); +static lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__8; LEAN_EXPORT lean_object* l_Array_toListLitAux(lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Array_toList___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_filterM(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_concatMapM___spec__1___rarg___lambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_filterMapM___at_Array_filterMap___spec__1(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__22; LEAN_EXPORT uint8_t l_Array_allDiff___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_isEqv___rarg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold(lean_object*, lean_object*, lean_object*); @@ -560,14 +558,15 @@ LEAN_EXPORT lean_object* l_Array_filter___rarg(lean_object*, lean_object*, lean_ LEAN_EXPORT uint8_t l___private_Init_Data_Array_Basic_0__Array_allDiffAuxAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Array_findSomeM_x3f___spec__1___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrM_fold(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__21; LEAN_EXPORT lean_object* l_Array_insertAt___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Array_map___spec__1___rarg(lean_object*, size_t, size_t, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095_(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_contains___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_to_int(lean_object*); LEAN_EXPORT lean_object* l_panic___at_Array_insertAt___spec__1___rarg(lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Array_toList___spec__1___rarg(lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Array_instHAppendArrayListArray(lean_object*); +static lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__23; LEAN_EXPORT lean_object* l_Array_eraseIdxAux___rarg(lean_object*, lean_object*); static lean_object* l_Array_instReprArray___rarg___closed__3; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Array_forRevM___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -587,6 +586,7 @@ LEAN_EXPORT lean_object* l_Array_any___rarg___boxed(lean_object*, lean_object*, LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Array_findSomeM_x3f___spec__1___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Array_foldr___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__6; LEAN_EXPORT lean_object* l_Array_foldr(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_filterMap___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_indexOfAux___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -7357,7 +7357,7 @@ x_1 = l_term_x23_x5b___x2c_x5d___closed__15; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__1() { +static lean_object* _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__1() { _start: { lean_object* x_1; @@ -7365,17 +7365,17 @@ x_1 = lean_mk_string("Lean"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__2() { +static lean_object* _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__1; +x_2 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__3() { +static lean_object* _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__3() { _start: { lean_object* x_1; @@ -7383,17 +7383,17 @@ x_1 = lean_mk_string("Parser"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__4() { +static lean_object* _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__2; -x_2 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__3; +x_1 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__2; +x_2 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__5() { +static lean_object* _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__5() { _start: { lean_object* x_1; @@ -7401,17 +7401,17 @@ x_1 = lean_mk_string("Term"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__6() { +static lean_object* _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__4; -x_2 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__5; +x_1 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__4; +x_2 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__7() { +static lean_object* _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__7() { _start: { lean_object* x_1; @@ -7419,17 +7419,17 @@ x_1 = lean_mk_string("app"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__8() { +static lean_object* _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__6; -x_2 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__7; +x_1 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__6; +x_2 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__9() { +static lean_object* _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__9() { _start: { lean_object* x_1; @@ -7437,22 +7437,22 @@ x_1 = lean_mk_string("List.toArray"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__10() { +static lean_object* _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__9; +x_1 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__9; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__11() { +static lean_object* _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__9; +x_1 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__9; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__10; +x_3 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__10; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -7460,7 +7460,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__12() { +static lean_object* _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__12() { _start: { lean_object* x_1; @@ -7468,17 +7468,17 @@ x_1 = lean_mk_string("List"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__13() { +static lean_object* _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__12; +x_2 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__12; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__14() { +static lean_object* _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__14() { _start: { lean_object* x_1; @@ -7486,41 +7486,41 @@ x_1 = lean_mk_string("toArray"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__15() { +static lean_object* _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__13; -x_2 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__14; +x_1 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__13; +x_2 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__14; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__16() { +static lean_object* _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__15; +x_2 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__15; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__17() { +static lean_object* _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__16; +x_2 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__16; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__18() { +static lean_object* _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__18() { _start: { lean_object* x_1; @@ -7528,17 +7528,17 @@ x_1 = lean_mk_string("null"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__19() { +static lean_object* _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__18; +x_2 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__18; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__20() { +static lean_object* _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__20() { _start: { lean_object* x_1; @@ -7546,17 +7546,17 @@ x_1 = lean_mk_string("term[_]"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__21() { +static lean_object* _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__20; +x_2 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__20; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__22() { +static lean_object* _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__22() { _start: { lean_object* x_1; @@ -7564,7 +7564,7 @@ x_1 = lean_mk_string("["); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__23() { +static lean_object* _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__23() { _start: { lean_object* x_1; lean_object* x_2; @@ -7573,7 +7573,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__24() { +static lean_object* _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__24() { _start: { lean_object* x_1; lean_object* x_2; @@ -7582,7 +7582,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__25() { +static lean_object* _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__25() { _start: { lean_object* x_1; lean_object* x_2; @@ -7591,7 +7591,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_4095_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -7618,7 +7618,7 @@ lean_dec(x_1); x_10 = l_Lean_Syntax_getArgs(x_9); lean_dec(x_9); lean_inc(x_2); -x_11 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_11 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_12 = !lean_is_exclusive(x_11); if (x_12 == 0) { @@ -7629,24 +7629,24 @@ lean_inc(x_14); x_15 = lean_ctor_get(x_2, 1); lean_inc(x_15); lean_dec(x_2); -x_16 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__15; +x_16 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__15; x_17 = l_Lean_addMacroScope(x_15, x_16, x_14); -x_18 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__11; -x_19 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__17; +x_18 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__11; +x_19 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__17; lean_inc(x_13); x_20 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_20, 0, x_13); lean_ctor_set(x_20, 1, x_18); lean_ctor_set(x_20, 2, x_17); lean_ctor_set(x_20, 3, x_19); -x_21 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__22; +x_21 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__22; lean_inc(x_13); x_22 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_22, 0, x_13); lean_ctor_set(x_22, 1, x_21); x_23 = l_Array_instEmptyCollectionArray___closed__1; x_24 = l_Array_append___rarg(x_23, x_10); -x_25 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__19; +x_25 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__19; x_26 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_26, 0, x_25); lean_ctor_set(x_26, 1, x_24); @@ -7654,23 +7654,23 @@ x_27 = l_Array_instReprArray___rarg___closed__8; x_28 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_28, 0, x_13); lean_ctor_set(x_28, 1, x_27); -x_29 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__23; +x_29 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__23; x_30 = lean_array_push(x_29, x_22); x_31 = lean_array_push(x_30, x_26); x_32 = lean_array_push(x_31, x_28); -x_33 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__21; +x_33 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__21; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); -x_35 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__24; +x_35 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__24; x_36 = lean_array_push(x_35, x_34); x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_25); lean_ctor_set(x_37, 1, x_36); -x_38 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__25; +x_38 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__25; x_39 = lean_array_push(x_38, x_20); x_40 = lean_array_push(x_39, x_37); -x_41 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__8; +x_41 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__8; x_42 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_42, 0, x_41); lean_ctor_set(x_42, 1, x_40); @@ -7690,24 +7690,24 @@ lean_inc(x_45); x_46 = lean_ctor_get(x_2, 1); lean_inc(x_46); lean_dec(x_2); -x_47 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__15; +x_47 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__15; x_48 = l_Lean_addMacroScope(x_46, x_47, x_45); -x_49 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__11; -x_50 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__17; +x_49 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__11; +x_50 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__17; lean_inc(x_43); x_51 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_51, 0, x_43); lean_ctor_set(x_51, 1, x_49); lean_ctor_set(x_51, 2, x_48); lean_ctor_set(x_51, 3, x_50); -x_52 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__22; +x_52 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__22; lean_inc(x_43); x_53 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_53, 0, x_43); lean_ctor_set(x_53, 1, x_52); x_54 = l_Array_instEmptyCollectionArray___closed__1; x_55 = l_Array_append___rarg(x_54, x_10); -x_56 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__19; +x_56 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__19; x_57 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_57, 0, x_56); lean_ctor_set(x_57, 1, x_55); @@ -7715,23 +7715,23 @@ x_58 = l_Array_instReprArray___rarg___closed__8; x_59 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_59, 0, x_43); lean_ctor_set(x_59, 1, x_58); -x_60 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__23; +x_60 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__23; x_61 = lean_array_push(x_60, x_53); x_62 = lean_array_push(x_61, x_57); x_63 = lean_array_push(x_62, x_59); -x_64 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__21; +x_64 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__21; x_65 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_65, 0, x_64); lean_ctor_set(x_65, 1, x_63); -x_66 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__24; +x_66 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__24; x_67 = lean_array_push(x_66, x_65); x_68 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_68, 0, x_56); lean_ctor_set(x_68, 1, x_67); -x_69 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__25; +x_69 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__25; x_70 = lean_array_push(x_69, x_51); x_71 = lean_array_push(x_70, x_68); -x_72 = l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__8; +x_72 = l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__8; x_73 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_73, 0, x_72); lean_ctor_set(x_73, 1, x_71); @@ -10094,56 +10094,56 @@ l_term_x23_x5b___x2c_x5d___closed__15 = _init_l_term_x23_x5b___x2c_x5d___closed_ lean_mark_persistent(l_term_x23_x5b___x2c_x5d___closed__15); l_term_x23_x5b___x2c_x5d = _init_l_term_x23_x5b___x2c_x5d(); lean_mark_persistent(l_term_x23_x5b___x2c_x5d); -l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__1 = _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__1); -l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__2 = _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__2); -l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__3 = _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__3); -l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__4 = _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__4); -l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__5 = _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__5); -l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__6 = _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__6); -l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__7 = _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__7); -l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__8 = _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__8); -l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__9 = _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__9); -l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__10 = _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__10(); -lean_mark_persistent(l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__10); -l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__11 = _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__11(); -lean_mark_persistent(l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__11); -l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__12 = _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__12(); -lean_mark_persistent(l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__12); -l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__13 = _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__13(); -lean_mark_persistent(l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__13); -l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__14 = _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__14(); -lean_mark_persistent(l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__14); -l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__15 = _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__15(); -lean_mark_persistent(l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__15); -l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__16 = _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__16(); -lean_mark_persistent(l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__16); -l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__17 = _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__17(); -lean_mark_persistent(l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__17); -l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__18 = _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__18(); -lean_mark_persistent(l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__18); -l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__19 = _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__19(); -lean_mark_persistent(l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__19); -l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__20 = _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__20(); -lean_mark_persistent(l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__20); -l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__21 = _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__21(); -lean_mark_persistent(l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__21); -l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__22 = _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__22(); -lean_mark_persistent(l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__22); -l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__23 = _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__23(); -lean_mark_persistent(l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__23); -l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__24 = _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__24(); -lean_mark_persistent(l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__24); -l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__25 = _init_l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__25(); -lean_mark_persistent(l_myMacro____x40_Init_Data_Array_Basic___hyg_4095____closed__25); +l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__1 = _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__1); +l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__2 = _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__2); +l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__3 = _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__3); +l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__4 = _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__4); +l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__5 = _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__5); +l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__6 = _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__6); +l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__7 = _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__7); +l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__8 = _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__8); +l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__9 = _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__9); +l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__10 = _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__10(); +lean_mark_persistent(l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__10); +l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__11 = _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__11(); +lean_mark_persistent(l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__11); +l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__12 = _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__12(); +lean_mark_persistent(l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__12); +l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__13 = _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__13(); +lean_mark_persistent(l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__13); +l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__14 = _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__14(); +lean_mark_persistent(l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__14); +l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__15 = _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__15(); +lean_mark_persistent(l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__15); +l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__16 = _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__16(); +lean_mark_persistent(l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__16); +l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__17 = _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__17(); +lean_mark_persistent(l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__17); +l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__18 = _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__18(); +lean_mark_persistent(l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__18); +l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__19 = _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__19(); +lean_mark_persistent(l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__19); +l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__20 = _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__20(); +lean_mark_persistent(l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__20); +l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__21 = _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__21(); +lean_mark_persistent(l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__21); +l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__22 = _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__22(); +lean_mark_persistent(l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__22); +l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__23 = _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__23(); +lean_mark_persistent(l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__23); +l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__24 = _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__24(); +lean_mark_persistent(l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__24); +l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__25 = _init_l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__25(); +lean_mark_persistent(l___aux__Init__Data__Array__Basic______macroRules___xabterm_x23_x5b___x2c_x5d_xbb__1___closed__25); l_Array_partition___rarg___closed__1 = _init_l_Array_partition___rarg___closed__1(); lean_mark_persistent(l_Array_partition___rarg___closed__1); l_Array_insertAt___rarg___closed__1 = _init_l_Array_insertAt___rarg___closed__1(); diff --git a/stage0/stdlib/Init/Data/Array/Subarray.c b/stage0/stdlib/Init/Data/Array/Subarray.c index d254752933..99155dcd0b 100644 --- a/stage0/stdlib/Init/Data/Array/Subarray.c +++ b/stage0/stdlib/Init/Data/Array/Subarray.c @@ -15,18 +15,16 @@ extern "C" { #endif static lean_object* l_Array_term_____x5b___x3a___x5d___closed__4; lean_object* l_Array_foldrMUnsafe_fold___rarg(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__10; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__1; size_t lean_usize_add(size_t, size_t); static lean_object* l_Array_term_____x5b___x3a___x5d___closed__2; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Subarray_forM___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__16; static lean_object* l_Array_instCoeSubarrayArray___closed__1; lean_object* lean_mk_empty_array_with_capacity(lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__7; static lean_object* l_Array_term_____x5b___x3a___x5d___closed__9; -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__1; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__14; LEAN_EXPORT lean_object* l_Subarray_forInUnsafe_loop___at_Array_ofSubarray___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__19; LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Subarray_any___spec__1___rarg(lean_object*, lean_object*, size_t, size_t); lean_object* lean_name_mk_string(lean_object*, lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); @@ -34,93 +32,90 @@ lean_object* lean_array_uget(lean_object*, size_t); static lean_object* l_Array_term_____x5b___x3a___x5d___closed__8; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Subarray_forRevM___spec__2___rarg(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); lean_object* l_Array_append___rarg(lean_object*, lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__19; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__11; static lean_object* l_Array_term_____x5b___x3a___x5d___closed__19; LEAN_EXPORT lean_object* l_Std_Format_joinSep___at_instReprSubarray___spec__1(lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Subarray_forM___spec__1___rarg___lambda__1(size_t, lean_object*, lean_object*, lean_object*, size_t, lean_object*); -LEAN_EXPORT lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025_(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Subarray_any___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__11; -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__4; LEAN_EXPORT lean_object* l_Subarray_foldr(lean_object*, lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__20; LEAN_EXPORT lean_object* l_Array_extract___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_term_____x5b___x3a___x5d___closed__1; -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__10; static lean_object* l_instReprSubarray___rarg___closed__12; size_t lean_usize_sub(size_t, size_t); LEAN_EXPORT lean_object* l_Subarray_anyM___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__5; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Subarray_foldr___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_term_____x5b___x3a___x5d___closed__21; -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__2; -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__23; +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__7; LEAN_EXPORT lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); static lean_object* l_Array_term_____x5b___x3a___x5d___closed__23; LEAN_EXPORT lean_object* l_Subarray_forM(lean_object*, lean_object*); +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__12; lean_object* lean_array_get_size(lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__13; lean_object* lean_string_append(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instReprSubarray___rarg___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__21; static lean_object* l_instReprSubarray___rarg___closed__1; LEAN_EXPORT lean_object* l_Subarray_forInUnsafe_loop___at_Array_ofSubarray___spec__1(lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__16; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__1; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Subarray_all___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_term_____x5b___x3a___x5d___closed__17; static lean_object* l_instReprSubarray___rarg___closed__2; lean_object* lean_string_utf8_byte_size(lean_object*); LEAN_EXPORT lean_object* l_Subarray_foldlM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_term_____x5b___x3a_x5d___closed__1; -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__7; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__10; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Subarray_any___spec__1(lean_object*); +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__18; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__20; uint8_t lean_usize_dec_lt(size_t, size_t); +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__15; LEAN_EXPORT lean_object* l_Array_instCoeSubarrayArray(lean_object*); +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__3; lean_object* lean_nat_add(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Subarray_allM___spec__1(lean_object*, lean_object*); static lean_object* l_Array_term_____x5b___x3a_x5d___closed__3; static lean_object* l_instReprSubarray___rarg___closed__7; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__4; LEAN_EXPORT lean_object* l_Subarray_any___rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Subarray_popFront(lean_object*); +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__16; static lean_object* l_Array_term_____x5b___x3a___x5d___closed__12; LEAN_EXPORT lean_object* l_instReprSubarray___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Subarray_popFront___rarg(lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__4; -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__12; +LEAN_EXPORT lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Subarray_anyM(lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Subarray_all___rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Subarray_toArray___rarg(lean_object*); LEAN_EXPORT uint8_t l_Subarray_any___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Subarray_allM___spec__1___rarg___lambda__2(size_t, lean_object*, lean_object*, lean_object*, lean_object*, size_t, uint8_t); +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__2; LEAN_EXPORT lean_object* l_Subarray_forIn___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Subarray_foldr___spec__2___rarg(lean_object*, lean_object*, size_t, size_t, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__7; static lean_object* l_Array_term_____x5b_x3a___x5d___closed__3; LEAN_EXPORT lean_object* l_Subarray_forInUnsafe_loop(lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__14; -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__5; LEAN_EXPORT lean_object* l_Subarray_forInUnsafe_loop___at_Array_ofSubarray___spec__1___rarg(lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Subarray_forM___spec__1___rarg(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__3; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__16; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Subarray_allM___spec__1___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Subarray_allM___spec__1___rarg___lambda__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Subarray_toArray(lean_object*); LEAN_EXPORT lean_object* l_Subarray_forInUnsafe_loop___rarg(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__18; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Subarray_foldl___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__15; LEAN_EXPORT lean_object* l_Array_term_____x5b___x3a_x5d; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__10; LEAN_EXPORT lean_object* l_Subarray_forInUnsafe(lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___rarg(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_instReprSubarray___rarg___closed__11; LEAN_EXPORT lean_object* l_Array_term_____x5b___x3a___x5d; -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__6; LEAN_EXPORT lean_object* l_Subarray_forInUnsafe_loop___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_to_list(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Subarray_foldl___spec__1___rarg(lean_object*, lean_object*, size_t, size_t, lean_object*); +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__22; lean_object* l_List_toString___rarg(lean_object*, lean_object*); static lean_object* l_Array_term_____x5b___x3a___x5d___closed__11; LEAN_EXPORT lean_object* l_Subarray_foldl(lean_object*, lean_object*); @@ -129,37 +124,33 @@ LEAN_EXPORT lean_object* l_Subarray_all(lean_object*); static lean_object* l_instReprSubarray___rarg___closed__6; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Subarray_allM___spec__1___rarg___lambda__1(lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Subarray_foldr___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__2; LEAN_EXPORT lean_object* l_Array_ofSubarray(lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__8; -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__9; static lean_object* l_Array_term_____x5b___x3a___x5d___closed__24; LEAN_EXPORT lean_object* l_Subarray_instForInSubarray___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_term_____x5b_x3a___x5d___closed__4; -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__17; LEAN_EXPORT lean_object* l_Subarray_forInUnsafe_loop___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__12; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__3; static lean_object* l_Array_term_____x5b_x3a___x5d___closed__2; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__11; LEAN_EXPORT lean_object* l_Array_extract(lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__4; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__15; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Subarray_foldr___spec__1(lean_object*, lean_object*); +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__12; lean_object* l_Array_anyMUnsafe_any___rarg(lean_object*, lean_object*, lean_object*, size_t, size_t); static lean_object* l_Array_term_____x5b___x3a___x5d___closed__10; size_t lean_usize_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Array_toSubarray(lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__3; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__14; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__18; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__5; LEAN_EXPORT lean_object* l_Subarray_allM___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Subarray_all___spec__1(lean_object*); LEAN_EXPORT lean_object* l_Subarray_foldrM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_term_____x5b___x3a___x5d___closed__7; static lean_object* l_Array_term_____x5b_x3a___x5d___closed__1; -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__3; -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__8; static lean_object* l_Array_term_____x5b___x3a___x5d___closed__20; -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__14; -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__2; -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__5; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__6; static lean_object* l_instReprSubarray___rarg___closed__5; LEAN_EXPORT lean_object* l_instAppendSubarray___rarg(lean_object*, lean_object*); static lean_object* l_instToStringSubarray___rarg___closed__1; @@ -168,68 +159,77 @@ static lean_object* l_Array_term_____x5b_x3a___x5d___closed__5; LEAN_EXPORT lean_object* l_Subarray_foldrM(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Subarray_forInUnsafe_loop___rarg___lambda__1(lean_object*, size_t, lean_object*, lean_object*, size_t, lean_object*); static lean_object* l_instReprSubarray___rarg___closed__3; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__19; LEAN_EXPORT lean_object* l_instAppendSubarray(lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Subarray_forRevM___spec__2(lean_object*, lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__15; -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__18; LEAN_EXPORT lean_object* l_Subarray_any(lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Subarray_foldr___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Subarray_allM___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Subarray_instForInSubarray(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_term_____x5b_x3a___x5d___closed__6; LEAN_EXPORT lean_object* l_Subarray_forInUnsafe___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__17; LEAN_EXPORT lean_object* l_instToStringSubarray___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Subarray_forRevM___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Subarray_foldr___spec__2(lean_object*, lean_object*); +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__3; LEAN_EXPORT lean_object* l_Array_term_____x5b_x3a___x5d; LEAN_EXPORT lean_object* l_Subarray_forRevM___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Subarray_foldr___spec__1___rarg(lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_instReprSubarray___rarg___closed__10; LEAN_EXPORT lean_object* l_Subarray_forM___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__9; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__2; LEAN_EXPORT lean_object* l_Array_ofSubarray___rarg(lean_object*); +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__1; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__4; static lean_object* l_instReprSubarray___rarg___closed__8; LEAN_EXPORT uint8_t l_Subarray_all___rarg(lean_object*, lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__6; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__8; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__17; static lean_object* l_instReprSubarray___rarg___closed__4; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Subarray_forRevM___spec__1___rarg(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_Array_term_____x5b___x3a_x5d___closed__2; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__23; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__13; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__9; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__21; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Subarray_forM___spec__1___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Subarray_forRevM(lean_object*, lean_object*); static lean_object* l_Array_term_____x5b___x3a___x5d___closed__13; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Subarray_forRevM___spec__1(lean_object*, lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__13; lean_object* lean_string_length(lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Subarray_forRevM___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_term_____x5b___x3a___x5d___closed__6; LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Subarray_all___spec__1___rarg(lean_object*, lean_object*, size_t, size_t); LEAN_EXPORT lean_object* l_Subarray_foldl___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__22; static lean_object* l_Array_term_____x5b___x3a___x5d___closed__22; static lean_object* l_instReprSubarray___rarg___closed__9; -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__1; static lean_object* l_Array_term_____x5b___x3a___x5d___closed__15; LEAN_EXPORT lean_object* l_instToStringSubarray(lean_object*); +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__8; LEAN_EXPORT lean_object* l_Subarray_forIn___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__11; static lean_object* l_Array_term_____x5b___x3a_x5d___closed__4; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__9; static lean_object* l_instReprSubarray___rarg___closed__13; static lean_object* l_Array_term_____x5b___x3a___x5d___closed__18; -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__19; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__13; static lean_object* l_Array_term_____x5b___x3a___x5d___closed__5; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__6; LEAN_EXPORT lean_object* l_Subarray_allM(lean_object*, lean_object*); -static lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__1; static lean_object* l_Array_term_____x5b___x3a___x5d___closed__3; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__17; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Subarray_forM___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Subarray_forIn(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Format_joinSep___at_instReprSubarray___spec__1___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instReprSubarray(lean_object*); lean_object* lean_nat_to_int(lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Subarray_allM___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t); +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__4; +static lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__2; static lean_object* l_Array_term_____x5b___x3a___x5d___closed__14; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Subarray_foldl___spec__1(lean_object*, lean_object*); @@ -2417,7 +2417,7 @@ x_1 = l_Array_term_____x5b_x3a___x5d___closed__6; return x_1; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__1() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__1() { _start: { lean_object* x_1; @@ -2425,17 +2425,17 @@ x_1 = lean_mk_string("Lean"); return x_1; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__2() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__1; +x_2 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__3() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__3() { _start: { lean_object* x_1; @@ -2443,17 +2443,17 @@ x_1 = lean_mk_string("Parser"); return x_1; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__4() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__2; -x_2 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__3; +x_1 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__2; +x_2 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__5() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__5() { _start: { lean_object* x_1; @@ -2461,17 +2461,17 @@ x_1 = lean_mk_string("Term"); return x_1; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__6() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__4; -x_2 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__5; +x_1 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__4; +x_2 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__7() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__7() { _start: { lean_object* x_1; @@ -2479,17 +2479,17 @@ x_1 = lean_mk_string("app"); return x_1; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__8() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__6; -x_2 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__7; +x_1 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__6; +x_2 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__9() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__9() { _start: { lean_object* x_1; @@ -2497,22 +2497,22 @@ x_1 = lean_mk_string("Array.toSubarray"); return x_1; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__10() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__9; +x_1 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__9; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__11() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__9; +x_1 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__9; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__10; +x_3 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__10; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2520,7 +2520,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__12() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__12() { _start: { lean_object* x_1; @@ -2528,41 +2528,41 @@ x_1 = lean_mk_string("toSubarray"); return x_1; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__13() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_term_____x5b___x3a___x5d___closed__2; -x_2 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__12; +x_2 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__12; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__14() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__13; +x_2 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__13; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__15() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__14; +x_2 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__14; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__16() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__16() { _start: { lean_object* x_1; @@ -2570,17 +2570,17 @@ x_1 = lean_mk_string("null"); return x_1; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__17() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__16; +x_2 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__16; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__18() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__18() { _start: { lean_object* x_1; lean_object* x_2; @@ -2589,7 +2589,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__19() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__19() { _start: { lean_object* x_1; lean_object* x_2; @@ -2598,7 +2598,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2627,7 +2627,7 @@ x_12 = lean_unsigned_to_nat(4u); x_13 = l_Lean_Syntax_getArg(x_1, x_12); lean_dec(x_1); lean_inc(x_2); -x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_15 = !lean_is_exclusive(x_14); if (x_15 == 0) { @@ -2638,27 +2638,27 @@ lean_inc(x_17); x_18 = lean_ctor_get(x_2, 1); lean_inc(x_18); lean_dec(x_2); -x_19 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__13; +x_19 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__13; x_20 = l_Lean_addMacroScope(x_18, x_19, x_17); -x_21 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__11; -x_22 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__15; +x_21 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__11; +x_22 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__15; x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_16); lean_ctor_set(x_23, 1, x_21); lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_22); -x_24 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__18; +x_24 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__18; x_25 = lean_array_push(x_24, x_9); x_26 = lean_array_push(x_25, x_11); x_27 = lean_array_push(x_26, x_13); -x_28 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__17; +x_28 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__17; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); -x_30 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__19; +x_30 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__19; x_31 = lean_array_push(x_30, x_23); x_32 = lean_array_push(x_31, x_29); -x_33 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__8; +x_33 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__8; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); @@ -2678,27 +2678,27 @@ lean_inc(x_37); x_38 = lean_ctor_get(x_2, 1); lean_inc(x_38); lean_dec(x_2); -x_39 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__13; +x_39 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__13; x_40 = l_Lean_addMacroScope(x_38, x_39, x_37); -x_41 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__11; -x_42 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__15; +x_41 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__11; +x_42 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__15; x_43 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_43, 0, x_35); lean_ctor_set(x_43, 1, x_41); lean_ctor_set(x_43, 2, x_40); lean_ctor_set(x_43, 3, x_42); -x_44 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__18; +x_44 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__18; x_45 = lean_array_push(x_44, x_9); x_46 = lean_array_push(x_45, x_11); x_47 = lean_array_push(x_46, x_13); -x_48 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__17; +x_48 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__17; x_49 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); -x_50 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__19; +x_50 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__19; x_51 = lean_array_push(x_50, x_43); x_52 = lean_array_push(x_51, x_49); -x_53 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__8; +x_53 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__8; x_54 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_54, 0, x_53); lean_ctor_set(x_54, 1, x_52); @@ -2710,7 +2710,7 @@ return x_55; } } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__1() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__1() { _start: { lean_object* x_1; @@ -2718,17 +2718,17 @@ x_1 = lean_mk_string("numLit"); return x_1; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__2() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__1; +x_2 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__3() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__3() { _start: { lean_object* x_1; @@ -2736,7 +2736,7 @@ x_1 = lean_mk_string("0"); return x_1; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__4() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -2745,7 +2745,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2772,7 +2772,7 @@ x_10 = lean_unsigned_to_nat(3u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -2783,38 +2783,38 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__13; +x_17 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__13; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__11; -x_20 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__15; +x_19 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__11; +x_20 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__15; lean_inc(x_14); x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__3; +x_22 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__3; x_23 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_22); -x_24 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__4; +x_24 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__4; x_25 = lean_array_push(x_24, x_23); -x_26 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__2; +x_26 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__2; x_27 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_27, 0, x_26); lean_ctor_set(x_27, 1, x_25); -x_28 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__18; +x_28 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__18; x_29 = lean_array_push(x_28, x_9); x_30 = lean_array_push(x_29, x_27); x_31 = lean_array_push(x_30, x_11); -x_32 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__17; +x_32 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__17; x_33 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_33, 0, x_32); lean_ctor_set(x_33, 1, x_31); -x_34 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__19; +x_34 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__19; x_35 = lean_array_push(x_34, x_21); x_36 = lean_array_push(x_35, x_33); -x_37 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__8; +x_37 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__8; x_38 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_38, 0, x_37); lean_ctor_set(x_38, 1, x_36); @@ -2834,38 +2834,38 @@ lean_inc(x_41); x_42 = lean_ctor_get(x_2, 1); lean_inc(x_42); lean_dec(x_2); -x_43 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__13; +x_43 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__13; x_44 = l_Lean_addMacroScope(x_42, x_43, x_41); -x_45 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__11; -x_46 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__15; +x_45 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__11; +x_46 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__15; lean_inc(x_39); x_47 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_47, 0, x_39); lean_ctor_set(x_47, 1, x_45); lean_ctor_set(x_47, 2, x_44); lean_ctor_set(x_47, 3, x_46); -x_48 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__3; +x_48 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__3; x_49 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_49, 0, x_39); lean_ctor_set(x_49, 1, x_48); -x_50 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__4; +x_50 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__4; x_51 = lean_array_push(x_50, x_49); -x_52 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__2; +x_52 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__2; x_53 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_53, 0, x_52); lean_ctor_set(x_53, 1, x_51); -x_54 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__18; +x_54 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__18; x_55 = lean_array_push(x_54, x_9); x_56 = lean_array_push(x_55, x_53); x_57 = lean_array_push(x_56, x_11); -x_58 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__17; +x_58 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__17; x_59 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_59, 0, x_58); lean_ctor_set(x_59, 1, x_57); -x_60 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__19; +x_60 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__19; x_61 = lean_array_push(x_60, x_47); x_62 = lean_array_push(x_61, x_59); -x_63 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__8; +x_63 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__8; x_64 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_64, 0, x_63); lean_ctor_set(x_64, 1, x_62); @@ -2877,7 +2877,7 @@ return x_65; } } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__1() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__1() { _start: { lean_object* x_1; @@ -2885,17 +2885,17 @@ x_1 = lean_mk_string("let"); return x_1; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__2() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__6; -x_2 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__1; +x_1 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__6; +x_2 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__3() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__3() { _start: { lean_object* x_1; @@ -2903,17 +2903,17 @@ x_1 = lean_mk_string("letDecl"); return x_1; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__4() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__6; -x_2 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__3; +x_1 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__6; +x_2 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__5() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__5() { _start: { lean_object* x_1; @@ -2921,17 +2921,17 @@ x_1 = lean_mk_string("letIdDecl"); return x_1; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__6() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__6; -x_2 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__5; +x_1 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__6; +x_2 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__7() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__7() { _start: { lean_object* x_1; @@ -2939,22 +2939,22 @@ x_1 = lean_mk_string("a"); return x_1; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__8() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__7; +x_1 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__7; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__9() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__7; +x_1 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__7; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__8; +x_3 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__8; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2962,17 +2962,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__10() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__7; +x_2 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__11() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; @@ -2981,19 +2981,19 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__12() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__17; -x_2 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__11; +x_1 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__17; +x_2 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__11; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__13() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__13() { _start: { lean_object* x_1; @@ -3001,7 +3001,7 @@ x_1 = lean_mk_string(":="); return x_1; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__14() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; @@ -3010,7 +3010,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__15() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__15() { _start: { lean_object* x_1; @@ -3018,31 +3018,31 @@ x_1 = lean_mk_string(";"); return x_1; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__16() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__13; +x_2 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__13; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__17() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__16; +x_2 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__16; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__18() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__18() { _start: { lean_object* x_1; @@ -3050,22 +3050,22 @@ x_1 = lean_mk_string("a.size"); return x_1; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__19() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__19() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__18; +x_1 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__18; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__20() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__18; +x_1 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__18; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__19; +x_3 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__19; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -3073,7 +3073,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__21() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__21() { _start: { lean_object* x_1; @@ -3081,17 +3081,17 @@ x_1 = lean_mk_string("size"); return x_1; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__22() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__10; -x_2 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__21; +x_1 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__10; +x_2 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__21; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__23() { +static lean_object* _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__23() { _start: { lean_object* x_1; lean_object* x_2; @@ -3100,7 +3100,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -3127,7 +3127,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -3138,96 +3138,96 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__1; +x_17 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__1; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); -x_19 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__10; +x_19 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__10; lean_inc(x_15); lean_inc(x_16); x_20 = l_Lean_addMacroScope(x_16, x_19, x_15); x_21 = lean_box(0); -x_22 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__9; +x_22 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__9; lean_inc(x_14); x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_22); lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_21); -x_24 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__13; +x_24 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__13; lean_inc(x_14); x_25 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_25, 0, x_14); lean_ctor_set(x_25, 1, x_24); -x_26 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__14; +x_26 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__14; lean_inc(x_23); x_27 = lean_array_push(x_26, x_23); -x_28 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__12; +x_28 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__12; x_29 = lean_array_push(x_27, x_28); x_30 = lean_array_push(x_29, x_28); x_31 = lean_array_push(x_30, x_25); x_32 = lean_array_push(x_31, x_9); -x_33 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__6; +x_33 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__6; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); -x_35 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__4; +x_35 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__4; x_36 = lean_array_push(x_35, x_34); -x_37 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__4; +x_37 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__4; x_38 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_38, 0, x_37); lean_ctor_set(x_38, 1, x_36); -x_39 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__15; +x_39 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__15; lean_inc(x_14); x_40 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_40, 0, x_14); lean_ctor_set(x_40, 1, x_39); x_41 = lean_array_push(x_35, x_40); -x_42 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__17; +x_42 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__17; x_43 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_43, 0, x_42); lean_ctor_set(x_43, 1, x_41); -x_44 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__13; +x_44 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__13; lean_inc(x_15); lean_inc(x_16); x_45 = l_Lean_addMacroScope(x_16, x_44, x_15); -x_46 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__11; -x_47 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__17; +x_46 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__11; +x_47 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__17; lean_inc(x_14); x_48 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_48, 0, x_14); lean_ctor_set(x_48, 1, x_46); lean_ctor_set(x_48, 2, x_45); lean_ctor_set(x_48, 3, x_47); -x_49 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__22; +x_49 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__22; x_50 = l_Lean_addMacroScope(x_16, x_49, x_15); -x_51 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__20; +x_51 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__20; x_52 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_52, 0, x_14); lean_ctor_set(x_52, 1, x_51); lean_ctor_set(x_52, 2, x_50); lean_ctor_set(x_52, 3, x_21); -x_53 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__18; +x_53 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__18; x_54 = lean_array_push(x_53, x_23); x_55 = lean_array_push(x_54, x_11); x_56 = lean_array_push(x_55, x_52); x_57 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_57, 0, x_42); lean_ctor_set(x_57, 1, x_56); -x_58 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__19; +x_58 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__19; x_59 = lean_array_push(x_58, x_48); x_60 = lean_array_push(x_59, x_57); -x_61 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__8; +x_61 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__8; x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_61); lean_ctor_set(x_62, 1, x_60); -x_63 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__23; +x_63 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__23; x_64 = lean_array_push(x_63, x_18); x_65 = lean_array_push(x_64, x_38); x_66 = lean_array_push(x_65, x_43); x_67 = lean_array_push(x_66, x_62); -x_68 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__2; +x_68 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__2; x_69 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_69, 0, x_68); lean_ctor_set(x_69, 1, x_67); @@ -3247,96 +3247,96 @@ lean_inc(x_72); x_73 = lean_ctor_get(x_2, 1); lean_inc(x_73); lean_dec(x_2); -x_74 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__1; +x_74 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__1; lean_inc(x_70); x_75 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_75, 0, x_70); lean_ctor_set(x_75, 1, x_74); -x_76 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__10; +x_76 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__10; lean_inc(x_72); lean_inc(x_73); x_77 = l_Lean_addMacroScope(x_73, x_76, x_72); x_78 = lean_box(0); -x_79 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__9; +x_79 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__9; lean_inc(x_70); x_80 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_80, 0, x_70); lean_ctor_set(x_80, 1, x_79); lean_ctor_set(x_80, 2, x_77); lean_ctor_set(x_80, 3, x_78); -x_81 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__13; +x_81 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__13; lean_inc(x_70); x_82 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_82, 0, x_70); lean_ctor_set(x_82, 1, x_81); -x_83 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__14; +x_83 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__14; lean_inc(x_80); x_84 = lean_array_push(x_83, x_80); -x_85 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__12; +x_85 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__12; x_86 = lean_array_push(x_84, x_85); x_87 = lean_array_push(x_86, x_85); x_88 = lean_array_push(x_87, x_82); x_89 = lean_array_push(x_88, x_9); -x_90 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__6; +x_90 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__6; x_91 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_91, 0, x_90); lean_ctor_set(x_91, 1, x_89); -x_92 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__4; +x_92 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__4; x_93 = lean_array_push(x_92, x_91); -x_94 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__4; +x_94 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__4; x_95 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_95, 0, x_94); lean_ctor_set(x_95, 1, x_93); -x_96 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__15; +x_96 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__15; lean_inc(x_70); x_97 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_97, 0, x_70); lean_ctor_set(x_97, 1, x_96); x_98 = lean_array_push(x_92, x_97); -x_99 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__17; +x_99 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__17; x_100 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_100, 0, x_99); lean_ctor_set(x_100, 1, x_98); -x_101 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__13; +x_101 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__13; lean_inc(x_72); lean_inc(x_73); x_102 = l_Lean_addMacroScope(x_73, x_101, x_72); -x_103 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__11; -x_104 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__17; +x_103 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__11; +x_104 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__17; lean_inc(x_70); x_105 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_105, 0, x_70); lean_ctor_set(x_105, 1, x_103); lean_ctor_set(x_105, 2, x_102); lean_ctor_set(x_105, 3, x_104); -x_106 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__22; +x_106 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__22; x_107 = l_Lean_addMacroScope(x_73, x_106, x_72); -x_108 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__20; +x_108 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__20; x_109 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_109, 0, x_70); lean_ctor_set(x_109, 1, x_108); lean_ctor_set(x_109, 2, x_107); lean_ctor_set(x_109, 3, x_78); -x_110 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__18; +x_110 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__18; x_111 = lean_array_push(x_110, x_80); x_112 = lean_array_push(x_111, x_11); x_113 = lean_array_push(x_112, x_109); x_114 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_114, 0, x_99); lean_ctor_set(x_114, 1, x_113); -x_115 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__19; +x_115 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__19; x_116 = lean_array_push(x_115, x_105); x_117 = lean_array_push(x_116, x_114); -x_118 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__8; +x_118 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__8; x_119 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_119, 0, x_118); lean_ctor_set(x_119, 1, x_117); -x_120 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__23; +x_120 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__23; x_121 = lean_array_push(x_120, x_75); x_122 = lean_array_push(x_121, x_95); x_123 = lean_array_push(x_122, x_100); x_124 = lean_array_push(x_123, x_119); -x_125 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__2; +x_125 = l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__2; x_126 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_126, 0, x_125); lean_ctor_set(x_126, 1, x_124); @@ -3744,98 +3744,98 @@ l_Array_term_____x5b_x3a___x5d___closed__6 = _init_l_Array_term_____x5b_x3a___x5 lean_mark_persistent(l_Array_term_____x5b_x3a___x5d___closed__6); l_Array_term_____x5b_x3a___x5d = _init_l_Array_term_____x5b_x3a___x5d(); lean_mark_persistent(l_Array_term_____x5b_x3a___x5d); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__1 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__1(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__1); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__2 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__2(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__2); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__3 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__3(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__3); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__4 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__4(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__4); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__5 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__5(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__5); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__6 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__6(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__6); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__7 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__7(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__7); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__8 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__8(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__8); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__9 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__9(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__9); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__10 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__10(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__10); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__11 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__11(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__11); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__12 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__12(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__12); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__13 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__13(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__13); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__14 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__14(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__14); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__15 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__15(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__15); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__16 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__16(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__16); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__17 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__17(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__17); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__18 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__18(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__18); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__19 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__19(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_764____closed__19); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__1 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__1(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__1); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__2 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__2(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__2); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__3 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__3(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__3); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__4 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__4(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_896____closed__4); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__1 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__1(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__1); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__2 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__2(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__2); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__3 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__3(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__3); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__4 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__4(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__4); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__5 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__5(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__5); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__6 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__6(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__6); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__7 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__7(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__7); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__8 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__8(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__8); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__9 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__9(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__9); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__10 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__10(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__10); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__11 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__11(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__11); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__12 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__12(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__12); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__13 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__13(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__13); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__14 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__14(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__14); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__15 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__15(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__15); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__16 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__16(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__16); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__17 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__17(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__17); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__18 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__18(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__18); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__19 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__19(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__19); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__20 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__20(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__20); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__21 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__21(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__21); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__22 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__22(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__22); -l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__23 = _init_l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__23(); -lean_mark_persistent(l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1025____closed__23); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__1 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__1(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__1); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__2 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__2(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__2); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__3 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__3(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__3); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__4 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__4(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__4); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__5 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__5(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__5); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__6 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__6(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__6); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__7 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__7(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__7); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__8 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__8(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__8); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__9 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__9(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__9); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__10 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__10(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__10); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__11 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__11(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__11); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__12 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__12(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__12); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__13 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__13(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__13); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__14 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__14(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__14); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__15 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__15(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__15); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__16 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__16(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__16); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__17 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__17(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__17); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__18 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__18(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__18); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__19 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__19(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a___x5d_xbb__1___closed__19); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__1 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__1(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__1); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__2 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__2(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__2); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__3 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__3(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__3); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__4 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__4(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b_x3a___x5d_xbb__1___closed__4); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__1 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__1(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__1); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__2 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__2(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__2); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__3 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__3(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__3); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__4 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__4(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__4); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__5 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__5(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__5); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__6 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__6(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__6); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__7 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__7(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__7); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__8 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__8(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__8); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__9 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__9(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__9); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__10 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__10(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__10); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__11 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__11(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__11); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__12 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__12(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__12); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__13 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__13(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__13); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__14 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__14(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__14); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__15 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__15(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__15); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__16 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__16(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__16); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__17 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__17(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__17); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__18 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__18(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__18); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__19 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__19(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__19); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__20 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__20(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__20); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__21 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__21(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__21); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__22 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__22(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__22); +l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__23 = _init_l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__23(); +lean_mark_persistent(l_Array___aux__Init__Data__Array__Subarray______macroRules__Array___xabterm_____x5b___x3a_x5d_xbb__1___closed__23); l_instReprSubarray___rarg___closed__1 = _init_l_instReprSubarray___rarg___closed__1(); lean_mark_persistent(l_instReprSubarray___rarg___closed__1); l_instReprSubarray___rarg___closed__2 = _init_l_instReprSubarray___rarg___closed__2(); diff --git a/stage0/stdlib/Init/Data/Format/Macro.c b/stage0/stdlib/Init/Data/Format/Macro.c index ce707aa2cd..7d4e8e7a7f 100644 --- a/stage0/stdlib/Init/Data/Format/Macro.c +++ b/stage0/stdlib/Init/Data/Format/Macro.c @@ -13,48 +13,48 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); +static lean_object* l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__3; static lean_object* l_Std_termF_x21_____closed__11; -static lean_object* l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__10; -static lean_object* l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__5; -static lean_object* l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__14; +static lean_object* l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__12; lean_object* lean_name_mk_string(lean_object*, lean_object*); -static lean_object* l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__15; -static lean_object* l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__3; -static lean_object* l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__12; +static lean_object* l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__14; +static lean_object* l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__15; +static lean_object* l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__5; +static lean_object* l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__16; static lean_object* l_Std_termF_x21_____closed__7; static lean_object* l_Std_termF_x21_____closed__16; -static lean_object* l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__16; -static lean_object* l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__7; +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1(lean_object*, lean_object*, lean_object*); lean_object* lean_string_utf8_byte_size(lean_object*); +static lean_object* l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__7; +static lean_object* l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__4; LEAN_EXPORT lean_object* l_Std_termF_x21__; -static lean_object* l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__13; +static lean_object* l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__10; lean_object* l_Lean_Syntax_expandInterpolatedStr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_termF_x21_____closed__10; -LEAN_EXPORT lean_object* l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20_(lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__6; -static lean_object* l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__2; static lean_object* l_Std_termF_x21_____closed__14; static lean_object* l_Std_termF_x21_____closed__5; static lean_object* l_Std_termF_x21_____closed__3; -static lean_object* l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__11; static lean_object* l_Std_termF_x21_____closed__15; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__8; -static lean_object* l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__9; +static lean_object* l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__11; +static lean_object* l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__17; static lean_object* l_Std_termF_x21_____closed__4; static lean_object* l_Std_termF_x21_____closed__9; -static lean_object* l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__17; -static lean_object* l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__4; -static lean_object* l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__1; +static lean_object* l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__9; +static lean_object* l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__13; static lean_object* l_Std_termF_x21_____closed__13; +static lean_object* l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__2; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); static lean_object* l_Std_termF_x21_____closed__8; static lean_object* l_Std_termF_x21_____closed__2; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); static lean_object* l_Std_termF_x21_____closed__1; +static lean_object* l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__8; static lean_object* l_Std_termF_x21_____closed__6; +static lean_object* l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__1; static lean_object* l_Std_termF_x21_____closed__12; +static lean_object* l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__6; static lean_object* _init_l_Std_termF_x21_____closed__1() { _start: { @@ -223,7 +223,7 @@ x_1 = l_Std_termF_x21_____closed__16; return x_1; } } -static lean_object* _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__1() { +static lean_object* _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__1() { _start: { lean_object* x_1; @@ -231,22 +231,22 @@ x_1 = lean_mk_string("Format"); return x_1; } } -static lean_object* _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__2() { +static lean_object* _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__1; +x_1 = l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__3() { +static lean_object* _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__1; +x_1 = l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__2; +x_3 = l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -254,51 +254,51 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__4() { +static lean_object* _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__1; +x_2 = l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__5() { +static lean_object* _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Std_termF_x21_____closed__2; -x_2 = l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__1; +x_2 = l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__6() { +static lean_object* _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__5; +x_2 = l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__5; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__7() { +static lean_object* _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__6; +x_2 = l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__6; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__8() { +static lean_object* _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__8() { _start: { lean_object* x_1; @@ -306,22 +306,22 @@ x_1 = lean_mk_string("Std.format"); return x_1; } } -static lean_object* _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__9() { +static lean_object* _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__8; +x_1 = l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__8; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__10() { +static lean_object* _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__8; +x_1 = l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__8; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__9; +x_3 = l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__9; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -329,7 +329,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__11() { +static lean_object* _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__11() { _start: { lean_object* x_1; @@ -337,17 +337,17 @@ x_1 = lean_mk_string("format"); return x_1; } } -static lean_object* _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__12() { +static lean_object* _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Std_termF_x21_____closed__2; -x_2 = l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__11; +x_2 = l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__11; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__13() { +static lean_object* _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__13() { _start: { lean_object* x_1; @@ -355,51 +355,51 @@ x_1 = lean_mk_string("ToFormat"); return x_1; } } -static lean_object* _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__14() { +static lean_object* _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Std_termF_x21_____closed__2; -x_2 = l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__13; +x_2 = l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__13; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__15() { +static lean_object* _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__14; -x_2 = l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__11; +x_1 = l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__14; +x_2 = l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__11; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__16() { +static lean_object* _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__15; +x_2 = l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__15; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__17() { +static lean_object* _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__16; +x_2 = l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__16; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -424,7 +424,7 @@ x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); lean_inc(x_2); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = lean_ctor_get(x_10, 0); lean_inc(x_11); x_12 = lean_ctor_get(x_10, 1); @@ -434,28 +434,28 @@ x_13 = lean_ctor_get(x_2, 2); lean_inc(x_13); x_14 = lean_ctor_get(x_2, 1); lean_inc(x_14); -x_15 = l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__4; +x_15 = l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__4; lean_inc(x_13); lean_inc(x_14); x_16 = l_Lean_addMacroScope(x_14, x_15, x_13); -x_17 = l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__3; -x_18 = l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__7; +x_17 = l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__3; +x_18 = l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__7; x_19 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_19, 0, x_11); lean_ctor_set(x_19, 1, x_17); lean_ctor_set(x_19, 2, x_16); lean_ctor_set(x_19, 3, x_18); lean_inc(x_2); -x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_12); +x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_12); 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 = l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__12; +x_23 = l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__12; x_24 = l_Lean_addMacroScope(x_14, x_23, x_13); -x_25 = l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__10; -x_26 = l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__17; +x_25 = l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__10; +x_26 = l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__17; x_27 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_27, 0, x_21); lean_ctor_set(x_27, 1, x_25); @@ -514,40 +514,40 @@ l_Std_termF_x21_____closed__16 = _init_l_Std_termF_x21_____closed__16(); lean_mark_persistent(l_Std_termF_x21_____closed__16); l_Std_termF_x21__ = _init_l_Std_termF_x21__(); lean_mark_persistent(l_Std_termF_x21__); -l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__1 = _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__1(); -lean_mark_persistent(l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__1); -l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__2 = _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__2(); -lean_mark_persistent(l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__2); -l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__3 = _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__3(); -lean_mark_persistent(l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__3); -l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__4 = _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__4(); -lean_mark_persistent(l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__4); -l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__5 = _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__5(); -lean_mark_persistent(l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__5); -l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__6 = _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__6(); -lean_mark_persistent(l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__6); -l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__7 = _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__7(); -lean_mark_persistent(l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__7); -l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__8 = _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__8(); -lean_mark_persistent(l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__8); -l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__9 = _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__9(); -lean_mark_persistent(l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__9); -l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__10 = _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__10(); -lean_mark_persistent(l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__10); -l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__11 = _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__11(); -lean_mark_persistent(l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__11); -l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__12 = _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__12(); -lean_mark_persistent(l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__12); -l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__13 = _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__13(); -lean_mark_persistent(l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__13); -l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__14 = _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__14(); -lean_mark_persistent(l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__14); -l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__15 = _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__15(); -lean_mark_persistent(l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__15); -l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__16 = _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__16(); -lean_mark_persistent(l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__16); -l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__17 = _init_l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__17(); -lean_mark_persistent(l_Std_myMacro____x40_Init_Data_Format_Macro___hyg_20____closed__17); +l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__1 = _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__1(); +lean_mark_persistent(l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__1); +l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__2 = _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__2(); +lean_mark_persistent(l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__2); +l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__3 = _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__3(); +lean_mark_persistent(l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__3); +l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__4 = _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__4(); +lean_mark_persistent(l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__4); +l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__5 = _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__5(); +lean_mark_persistent(l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__5); +l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__6 = _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__6(); +lean_mark_persistent(l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__6); +l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__7 = _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__7(); +lean_mark_persistent(l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__7); +l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__8 = _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__8(); +lean_mark_persistent(l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__8); +l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__9 = _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__9(); +lean_mark_persistent(l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__9); +l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__10 = _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__10(); +lean_mark_persistent(l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__10); +l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__11 = _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__11(); +lean_mark_persistent(l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__11); +l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__12 = _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__12(); +lean_mark_persistent(l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__12); +l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__13 = _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__13(); +lean_mark_persistent(l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__13); +l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__14 = _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__14(); +lean_mark_persistent(l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__14); +l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__15 = _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__15(); +lean_mark_persistent(l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__15); +l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__16 = _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__16(); +lean_mark_persistent(l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__16); +l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__17 = _init_l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__17(); +lean_mark_persistent(l_Std___aux__Init__Data__Format__Macro______macroRules__Std__termF_x21____1___closed__17); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Data/Range.c b/stage0/stdlib/Init/Data/Range.c index b4e30597d4..4af9873c11 100644 --- a/stage0/stdlib/Init/Data/Range.c +++ b/stage0/stdlib/Init/Data/Range.c @@ -13,143 +13,143 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__38; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__21; LEAN_EXPORT lean_object* l_Std_Range_forM(lean_object*); -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__7; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__22; static lean_object* l_Std_Range_term_x5b_x3a___x5d___closed__19; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__25; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__23; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__41; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__13; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__6; lean_object* lean_mk_empty_array_with_capacity(lean_object*); +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__34; static lean_object* l_Std_Range_term_x5b___x3a___x3a___x5d___closed__3; static lean_object* l_Std_Range_term_x5b___x3a___x3a___x5d___closed__5; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__29; lean_object* lean_name_mk_string(lean_object*, lean_object*); -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__29; static lean_object* l_Std_Range_term_x5b_x3a___x3a___x5d___closed__4; static lean_object* l_Std_Range_term_x5b_x3a___x5d___closed__11; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__37; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__6; static lean_object* l_Std_Range_term_x5b_x3a___x5d___closed__9; static lean_object* l_Std_Range_term_x5b___x3a___x5d___closed__7; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__7; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__18; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__30; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__15; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__12; +LEAN_EXPORT lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Range_term_x5b_x3a___x3a___x5d; LEAN_EXPORT lean_object* l_Std_Range_step___default; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__14; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__5; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__28; +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__26; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__35; LEAN_EXPORT lean_object* l_Std_Range_instForInRangeNat___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__3; +LEAN_EXPORT lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__31; lean_object* lean_string_utf8_byte_size(lean_object*); -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__1; LEAN_EXPORT lean_object* l_Std_Range_forIn_loop(lean_object*, lean_object*); -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__3; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__11; LEAN_EXPORT lean_object* l_Std_Range_forM_loop___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Range_term_x5b_x3a___x5d___closed__13; lean_object* lean_nat_add(lean_object*, lean_object*); -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__10; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__15; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__3; static lean_object* l_Std_Range_term_x5b___x3a___x5d___closed__2; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__2; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__4; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__9; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__18; static lean_object* l_Std_Range_term_x5b_x3a___x5d___closed__21; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__27; LEAN_EXPORT lean_object* l_Std_Range_forM_loop___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__40; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__1; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__8; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__17; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__2; LEAN_EXPORT lean_object* l_Std_Range_term_x5b___x3a___x3a___x5d; static lean_object* l_Std_Range_term_x5b___x3a___x5d___closed__1; LEAN_EXPORT lean_object* l_Std_Range_forM___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__4; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__6; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__7; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__24; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__27; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__1; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__4; static lean_object* l_Std_Range_term_x5b_x3a___x5d___closed__17; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__21; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__38; static lean_object* l_Std_Range_term_x5b_x3a___x3a___x5d___closed__3; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__17; static lean_object* l_Std_Range_term_x5b_x3a___x5d___closed__1; static lean_object* l_Std_Range_term_x5b_x3a___x5d___closed__4; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__7; static lean_object* l_Std_Range_term_x5b___x3a___x3a___x5d___closed__6; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__34; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__23; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__4; LEAN_EXPORT lean_object* l_Std_Range_forM_loop(lean_object*); +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__9; +LEAN_EXPORT lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x3a___x5d_xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Range_term_x5b_x3a___x5d___closed__8; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__13; -LEAN_EXPORT lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_1132_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389_(lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__41; static lean_object* l_Std_Range_term_x5b_x3a___x5d___closed__2; LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__2; static lean_object* l_Std_Range_term_x5b_x3a___x3a___x5d___closed__5; LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__8; static lean_object* l_Std_Range_instForMRangeNat___closed__1; static lean_object* l_Std_Range_term_x5b_x3a___x5d___closed__5; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__31; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__8; static lean_object* l_Std_Range_term_x5b_x3a___x5d___closed__3; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__5; static lean_object* l_Std_Range_term_x5b_x3a___x5d___closed__15; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__12; static lean_object* l_Std_Range_term_x5b___x3a___x5d___closed__4; static lean_object* l_Std_Range_term_x5b_x3a___x5d___closed__18; static lean_object* l_Std_Range_term_x5b___x3a___x5d___closed__5; LEAN_EXPORT lean_object* l_Std_Range_start___default; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__3; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__26; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__36; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__4; static lean_object* l_Std_Range_term_x5b_x3a___x5d___closed__14; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__35; static lean_object* l_Std_Range_term_x5b_x3a___x5d___closed__6; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__6; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__25; static lean_object* l_Std_Range_term_x5b___x3a___x3a___x5d___closed__2; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__2; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__6; static lean_object* l_Std_Range_term_x5b___x3a___x3a___x5d___closed__4; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__11; uint8_t lean_nat_dec_le(lean_object*, lean_object*); -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__39; static lean_object* l_Std_Range_term_x5b_x3a___x3a___x5d___closed__2; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__37; LEAN_EXPORT lean_object* l_Std_Range_forM_loop___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Range_term_x5b_x3a___x3a___x5d___closed__1; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__33; static lean_object* l_Std_Range_term_x5b___x3a___x3a___x5d___closed__1; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__19; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__22; LEAN_EXPORT lean_object* l_Std_Range_instForMRangeNat(lean_object*); +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__14; LEAN_EXPORT lean_object* l_Std_Range_forM_loop___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__28; LEAN_EXPORT lean_object* l_Std_Range_term_x5b___x3a___x5d; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__6; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__10; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__32; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__2; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__20; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__30; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__5; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__40; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__9; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__3; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__5; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__19; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__39; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__2; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__7; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__1; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__1; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__8; LEAN_EXPORT lean_object* l_Std_Range_term_x5b_x3a___x5d; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__24; LEAN_EXPORT lean_object* l_Std_Range_instForInRangeNat(lean_object*, lean_object*); static lean_object* l_Std_Range_term_x5b_x3a___x3a___x5d___closed__6; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__16; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__36; LEAN_EXPORT lean_object* l_Std_Range_forIn(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__5; static lean_object* l_Std_Range_term_x5b_x3a___x5d___closed__12; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__5; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__7; static lean_object* l_Std_Range_term_x5b_x3a___x5d___closed__7; +LEAN_EXPORT lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Range_term_x5b___x3a___x5d___closed__6; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__16; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__10; LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Range_term_x5b_x3a___x5d___closed__16; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__9; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__4; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__3; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__32; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__10; static lean_object* l_Std_Range_term_x5b___x3a___x5d___closed__3; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__33; +static lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__20; static lean_object* l_Std_Range_term_x5b_x3a___x5d___closed__20; static lean_object* l_Std_Range_term_x5b_x3a___x5d___closed__10; -static lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__1; static lean_object* _init_l_Std_Range_start___default() { _start: { @@ -953,7 +953,7 @@ x_1 = l_Std_Range_term_x5b___x3a___x3a___x5d___closed__6; return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__1() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__1() { _start: { lean_object* x_1; @@ -961,17 +961,17 @@ x_1 = lean_mk_string("Lean"); return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__2() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__1; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__3() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__3() { _start: { lean_object* x_1; @@ -979,17 +979,17 @@ x_1 = lean_mk_string("Parser"); return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__4() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__2; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__3; +x_1 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__2; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__5() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__5() { _start: { lean_object* x_1; @@ -997,17 +997,17 @@ x_1 = lean_mk_string("Term"); return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__6() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__4; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__5; +x_1 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__4; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__7() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__7() { _start: { lean_object* x_1; @@ -1015,17 +1015,17 @@ x_1 = lean_mk_string("structInst"); return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__8() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__6; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__7; +x_1 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__6; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__9() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__9() { _start: { lean_object* x_1; @@ -1033,7 +1033,7 @@ x_1 = lean_mk_string("{"); return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__10() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__10() { _start: { lean_object* x_1; @@ -1041,17 +1041,17 @@ x_1 = lean_mk_string("null"); return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__11() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__10; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__10; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__12() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; @@ -1060,19 +1060,19 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__13() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__11; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__12; +x_1 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__11; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__12; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__14() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__14() { _start: { lean_object* x_1; @@ -1080,17 +1080,17 @@ x_1 = lean_mk_string("group"); return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__15() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__14; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__14; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__16() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__16() { _start: { lean_object* x_1; @@ -1098,17 +1098,17 @@ x_1 = lean_mk_string("structInstField"); return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__17() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__6; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__16; +x_1 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__6; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__16; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__18() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__18() { _start: { lean_object* x_1; @@ -1116,17 +1116,17 @@ x_1 = lean_mk_string("structInstLVal"); return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__19() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__6; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__18; +x_1 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__6; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__18; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__20() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__20() { _start: { lean_object* x_1; @@ -1134,22 +1134,22 @@ x_1 = lean_mk_string("stop"); return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__21() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__21() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__20; +x_1 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__20; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__22() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__20; +x_1 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__20; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__21; +x_3 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__21; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1157,51 +1157,51 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__23() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__20; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__20; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__24() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Std_Range_term_x5b_x3a___x5d___closed__4; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__20; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__20; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__25() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__25() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__24; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__24; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__26() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__25; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__25; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__27() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__27() { _start: { lean_object* x_1; lean_object* x_2; @@ -1210,7 +1210,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__28() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__28() { _start: { lean_object* x_1; @@ -1218,7 +1218,7 @@ x_1 = lean_mk_string(":="); return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__29() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__29() { _start: { lean_object* x_1; lean_object* x_2; @@ -1227,7 +1227,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__30() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__30() { _start: { lean_object* x_1; lean_object* x_2; @@ -1236,7 +1236,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__31() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__31() { _start: { lean_object* x_1; @@ -1244,39 +1244,39 @@ x_1 = lean_mk_string("optEllipsis"); return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__32() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__32() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__6; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__31; +x_1 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__6; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__31; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__33() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__30; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__13; +x_1 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__30; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__13; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__34() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__34() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__32; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__33; +x_1 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__32; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__33; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__35() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__35() { _start: { lean_object* x_1; lean_object* x_2; @@ -1285,13 +1285,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__36() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__36() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Std_Range_term_x5b_x3a___x5d___closed__3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__35; +x_3 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__35; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1299,7 +1299,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__37() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__37() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -1309,7 +1309,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__38() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__38() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -1321,19 +1321,19 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__39() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__39() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__38; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__38; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__40() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__40() { _start: { lean_object* x_1; @@ -1341,7 +1341,7 @@ x_1 = lean_mk_string("}"); return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__41() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__41() { _start: { lean_object* x_1; lean_object* x_2; @@ -1350,7 +1350,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -1375,7 +1375,7 @@ x_8 = lean_unsigned_to_nat(2u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); lean_inc(x_2); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { @@ -1386,53 +1386,53 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_2, 1); lean_inc(x_14); lean_dec(x_2); -x_15 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__9; +x_15 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__9; lean_inc(x_12); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_12); lean_ctor_set(x_16, 1, x_15); -x_17 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__23; +x_17 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__23; lean_inc(x_13); lean_inc(x_14); x_18 = l_Lean_addMacroScope(x_14, x_17, x_13); -x_19 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__22; -x_20 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__26; +x_19 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__22; +x_20 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__26; lean_inc(x_12); x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_12); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__27; +x_22 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__27; x_23 = lean_array_push(x_22, x_21); -x_24 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__13; +x_24 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__13; x_25 = lean_array_push(x_23, x_24); -x_26 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__19; +x_26 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__19; x_27 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_27, 0, x_26); lean_ctor_set(x_27, 1, x_25); -x_28 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__28; +x_28 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__28; lean_inc(x_12); x_29 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_29, 0, x_12); lean_ctor_set(x_29, 1, x_28); -x_30 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__29; +x_30 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__29; x_31 = lean_array_push(x_30, x_27); x_32 = lean_array_push(x_31, x_29); x_33 = lean_array_push(x_32, x_9); -x_34 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__17; +x_34 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__17; x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); x_36 = lean_array_push(x_22, x_35); x_37 = lean_array_push(x_36, x_24); -x_38 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__15; +x_38 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__15; x_39 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_39, 0, x_38); lean_ctor_set(x_39, 1, x_37); -x_40 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__30; +x_40 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__30; x_41 = lean_array_push(x_40, x_39); -x_42 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__11; +x_42 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__11; x_43 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_43, 0, x_42); lean_ctor_set(x_43, 1, x_41); @@ -1441,10 +1441,10 @@ lean_inc(x_12); x_45 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_45, 0, x_12); lean_ctor_set(x_45, 1, x_44); -x_46 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__37; +x_46 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__37; x_47 = l_Lean_addMacroScope(x_14, x_46, x_13); -x_48 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__36; -x_49 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__39; +x_48 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__36; +x_49 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__39; lean_inc(x_12); x_50 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_50, 0, x_12); @@ -1456,19 +1456,19 @@ x_52 = lean_array_push(x_51, x_50); x_53 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_53, 0, x_42); lean_ctor_set(x_53, 1, x_52); -x_54 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__40; +x_54 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__40; x_55 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_55, 0, x_12); lean_ctor_set(x_55, 1, x_54); -x_56 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__41; +x_56 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__41; x_57 = lean_array_push(x_56, x_16); x_58 = lean_array_push(x_57, x_24); x_59 = lean_array_push(x_58, x_43); -x_60 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__34; +x_60 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__34; x_61 = lean_array_push(x_59, x_60); x_62 = lean_array_push(x_61, x_53); x_63 = lean_array_push(x_62, x_55); -x_64 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__8; +x_64 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__8; x_65 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_65, 0, x_64); lean_ctor_set(x_65, 1, x_63); @@ -1488,53 +1488,53 @@ lean_inc(x_68); x_69 = lean_ctor_get(x_2, 1); lean_inc(x_69); lean_dec(x_2); -x_70 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__9; +x_70 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__9; lean_inc(x_66); x_71 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_71, 0, x_66); lean_ctor_set(x_71, 1, x_70); -x_72 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__23; +x_72 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__23; lean_inc(x_68); lean_inc(x_69); x_73 = l_Lean_addMacroScope(x_69, x_72, x_68); -x_74 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__22; -x_75 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__26; +x_74 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__22; +x_75 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__26; lean_inc(x_66); x_76 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_76, 0, x_66); lean_ctor_set(x_76, 1, x_74); lean_ctor_set(x_76, 2, x_73); lean_ctor_set(x_76, 3, x_75); -x_77 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__27; +x_77 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__27; x_78 = lean_array_push(x_77, x_76); -x_79 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__13; +x_79 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__13; x_80 = lean_array_push(x_78, x_79); -x_81 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__19; +x_81 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__19; x_82 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_82, 0, x_81); lean_ctor_set(x_82, 1, x_80); -x_83 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__28; +x_83 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__28; lean_inc(x_66); x_84 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_84, 0, x_66); lean_ctor_set(x_84, 1, x_83); -x_85 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__29; +x_85 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__29; x_86 = lean_array_push(x_85, x_82); x_87 = lean_array_push(x_86, x_84); x_88 = lean_array_push(x_87, x_9); -x_89 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__17; +x_89 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__17; x_90 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_90, 0, x_89); lean_ctor_set(x_90, 1, x_88); x_91 = lean_array_push(x_77, x_90); x_92 = lean_array_push(x_91, x_79); -x_93 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__15; +x_93 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__15; x_94 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_94, 0, x_93); lean_ctor_set(x_94, 1, x_92); -x_95 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__30; +x_95 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__30; x_96 = lean_array_push(x_95, x_94); -x_97 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__11; +x_97 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__11; x_98 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_98, 0, x_97); lean_ctor_set(x_98, 1, x_96); @@ -1543,10 +1543,10 @@ lean_inc(x_66); x_100 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_100, 0, x_66); lean_ctor_set(x_100, 1, x_99); -x_101 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__37; +x_101 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__37; x_102 = l_Lean_addMacroScope(x_69, x_101, x_68); -x_103 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__36; -x_104 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__39; +x_103 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__36; +x_104 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__39; lean_inc(x_66); x_105 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_105, 0, x_66); @@ -1558,19 +1558,19 @@ x_107 = lean_array_push(x_106, x_105); x_108 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_108, 0, x_97); lean_ctor_set(x_108, 1, x_107); -x_109 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__40; +x_109 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__40; x_110 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_110, 0, x_66); lean_ctor_set(x_110, 1, x_109); -x_111 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__41; +x_111 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__41; x_112 = lean_array_push(x_111, x_71); x_113 = lean_array_push(x_112, x_79); x_114 = lean_array_push(x_113, x_98); -x_115 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__34; +x_115 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__34; x_116 = lean_array_push(x_114, x_115); x_117 = lean_array_push(x_116, x_108); x_118 = lean_array_push(x_117, x_110); -x_119 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__8; +x_119 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__8; x_120 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_120, 0, x_119); lean_ctor_set(x_120, 1, x_118); @@ -1582,7 +1582,7 @@ return x_121; } } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__1() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__1() { _start: { lean_object* x_1; @@ -1590,22 +1590,22 @@ x_1 = lean_mk_string("start"); return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__2() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__1; +x_1 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__3() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__1; +x_1 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__2; +x_3 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1613,51 +1613,51 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__4() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__1; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__5() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Std_Range_term_x5b_x3a___x5d___closed__4; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__1; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__6() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__5; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__5; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__7() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__6; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__6; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__8() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__8() { _start: { lean_object* x_1; @@ -1665,31 +1665,31 @@ x_1 = lean_mk_string(","); return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__9() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__24; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__24; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__10() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__9; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__9; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -1716,7 +1716,7 @@ x_10 = lean_unsigned_to_nat(3u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -1727,68 +1727,68 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__9; +x_17 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__9; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); -x_19 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__4; +x_19 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__4; lean_inc(x_15); lean_inc(x_16); x_20 = l_Lean_addMacroScope(x_16, x_19, x_15); -x_21 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__3; -x_22 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__7; +x_21 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__3; +x_22 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__7; lean_inc(x_14); x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_21); lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_22); -x_24 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__27; +x_24 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__27; x_25 = lean_array_push(x_24, x_23); -x_26 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__13; +x_26 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__13; x_27 = lean_array_push(x_25, x_26); -x_28 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__19; +x_28 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__19; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); -x_30 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__28; +x_30 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__28; lean_inc(x_14); x_31 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_31, 0, x_14); lean_ctor_set(x_31, 1, x_30); -x_32 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__29; +x_32 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__29; x_33 = lean_array_push(x_32, x_29); lean_inc(x_31); x_34 = lean_array_push(x_33, x_31); x_35 = lean_array_push(x_34, x_9); -x_36 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__17; +x_36 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__17; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); -x_38 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__8; +x_38 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__8; lean_inc(x_14); x_39 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_39, 0, x_14); lean_ctor_set(x_39, 1, x_38); -x_40 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__30; +x_40 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__30; x_41 = lean_array_push(x_40, x_39); -x_42 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__11; +x_42 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__11; x_43 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_43, 0, x_42); lean_ctor_set(x_43, 1, x_41); x_44 = lean_array_push(x_24, x_37); x_45 = lean_array_push(x_44, x_43); -x_46 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__15; +x_46 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__15; x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_46); lean_ctor_set(x_47, 1, x_45); -x_48 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__23; +x_48 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__23; lean_inc(x_15); lean_inc(x_16); x_49 = l_Lean_addMacroScope(x_16, x_48, x_15); -x_50 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__22; -x_51 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__10; +x_50 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__22; +x_51 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__10; lean_inc(x_14); x_52 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_52, 0, x_14); @@ -1821,10 +1821,10 @@ lean_inc(x_14); x_67 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_67, 0, x_14); lean_ctor_set(x_67, 1, x_66); -x_68 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__37; +x_68 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__37; x_69 = l_Lean_addMacroScope(x_16, x_68, x_15); -x_70 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__36; -x_71 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__39; +x_70 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__36; +x_71 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__39; lean_inc(x_14); x_72 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_72, 0, x_14); @@ -1836,19 +1836,19 @@ x_74 = lean_array_push(x_73, x_72); x_75 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_75, 0, x_42); lean_ctor_set(x_75, 1, x_74); -x_76 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__40; +x_76 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__40; x_77 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_77, 0, x_14); lean_ctor_set(x_77, 1, x_76); -x_78 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__41; +x_78 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__41; x_79 = lean_array_push(x_78, x_18); x_80 = lean_array_push(x_79, x_26); x_81 = lean_array_push(x_80, x_65); -x_82 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__34; +x_82 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__34; x_83 = lean_array_push(x_81, x_82); x_84 = lean_array_push(x_83, x_75); x_85 = lean_array_push(x_84, x_77); -x_86 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__8; +x_86 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__8; x_87 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_87, 0, x_86); lean_ctor_set(x_87, 1, x_85); @@ -1868,68 +1868,68 @@ lean_inc(x_90); x_91 = lean_ctor_get(x_2, 1); lean_inc(x_91); lean_dec(x_2); -x_92 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__9; +x_92 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__9; lean_inc(x_88); x_93 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_93, 0, x_88); lean_ctor_set(x_93, 1, x_92); -x_94 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__4; +x_94 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__4; lean_inc(x_90); lean_inc(x_91); x_95 = l_Lean_addMacroScope(x_91, x_94, x_90); -x_96 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__3; -x_97 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__7; +x_96 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__3; +x_97 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__7; lean_inc(x_88); x_98 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_98, 0, x_88); lean_ctor_set(x_98, 1, x_96); lean_ctor_set(x_98, 2, x_95); lean_ctor_set(x_98, 3, x_97); -x_99 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__27; +x_99 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__27; x_100 = lean_array_push(x_99, x_98); -x_101 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__13; +x_101 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__13; x_102 = lean_array_push(x_100, x_101); -x_103 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__19; +x_103 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__19; x_104 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_104, 0, x_103); lean_ctor_set(x_104, 1, x_102); -x_105 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__28; +x_105 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__28; lean_inc(x_88); x_106 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_106, 0, x_88); lean_ctor_set(x_106, 1, x_105); -x_107 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__29; +x_107 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__29; x_108 = lean_array_push(x_107, x_104); lean_inc(x_106); x_109 = lean_array_push(x_108, x_106); x_110 = lean_array_push(x_109, x_9); -x_111 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__17; +x_111 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__17; x_112 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_112, 0, x_111); lean_ctor_set(x_112, 1, x_110); -x_113 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__8; +x_113 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__8; lean_inc(x_88); x_114 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_114, 0, x_88); lean_ctor_set(x_114, 1, x_113); -x_115 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__30; +x_115 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__30; x_116 = lean_array_push(x_115, x_114); -x_117 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__11; +x_117 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__11; x_118 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_118, 0, x_117); lean_ctor_set(x_118, 1, x_116); x_119 = lean_array_push(x_99, x_112); x_120 = lean_array_push(x_119, x_118); -x_121 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__15; +x_121 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__15; x_122 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_122, 0, x_121); lean_ctor_set(x_122, 1, x_120); -x_123 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__23; +x_123 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__23; lean_inc(x_90); lean_inc(x_91); x_124 = l_Lean_addMacroScope(x_91, x_123, x_90); -x_125 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__22; -x_126 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__10; +x_125 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__22; +x_126 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__10; lean_inc(x_88); x_127 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_127, 0, x_88); @@ -1962,10 +1962,10 @@ lean_inc(x_88); x_142 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_142, 0, x_88); lean_ctor_set(x_142, 1, x_141); -x_143 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__37; +x_143 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__37; x_144 = l_Lean_addMacroScope(x_91, x_143, x_90); -x_145 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__36; -x_146 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__39; +x_145 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__36; +x_146 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__39; lean_inc(x_88); x_147 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_147, 0, x_88); @@ -1977,19 +1977,19 @@ x_149 = lean_array_push(x_148, x_147); x_150 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_150, 0, x_117); lean_ctor_set(x_150, 1, x_149); -x_151 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__40; +x_151 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__40; x_152 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_152, 0, x_88); lean_ctor_set(x_152, 1, x_151); -x_153 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__41; +x_153 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__41; x_154 = lean_array_push(x_153, x_93); x_155 = lean_array_push(x_154, x_101); x_156 = lean_array_push(x_155, x_140); -x_157 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__34; +x_157 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__34; x_158 = lean_array_push(x_156, x_157); x_159 = lean_array_push(x_158, x_150); x_160 = lean_array_push(x_159, x_152); -x_161 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__8; +x_161 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__8; x_162 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_162, 0, x_161); lean_ctor_set(x_162, 1, x_160); @@ -2001,7 +2001,7 @@ return x_163; } } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__1() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__1() { _start: { lean_object* x_1; @@ -2009,22 +2009,22 @@ x_1 = lean_mk_string("step"); return x_1; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__2() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__1; +x_1 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__3() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__1; +x_1 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__2; +x_3 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2032,51 +2032,51 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__4() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__1; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__5() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Std_Range_term_x5b_x3a___x5d___closed__4; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__1; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__6() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__5; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__5; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__7() { +static lean_object* _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__6; +x_2 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__6; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2105,7 +2105,7 @@ x_12 = lean_unsigned_to_nat(5u); x_13 = l_Lean_Syntax_getArg(x_1, x_12); lean_dec(x_1); lean_inc(x_2); -x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_15 = !lean_is_exclusive(x_14); if (x_15 == 0) { @@ -2116,69 +2116,69 @@ lean_inc(x_17); x_18 = lean_ctor_get(x_2, 1); lean_inc(x_18); lean_dec(x_2); -x_19 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__9; +x_19 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__9; lean_inc(x_16); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_16); lean_ctor_set(x_20, 1, x_19); -x_21 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__4; +x_21 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__4; lean_inc(x_17); lean_inc(x_18); x_22 = l_Lean_addMacroScope(x_18, x_21, x_17); -x_23 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__3; -x_24 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__7; +x_23 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__3; +x_24 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__7; lean_inc(x_16); x_25 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_25, 0, x_16); lean_ctor_set(x_25, 1, x_23); lean_ctor_set(x_25, 2, x_22); lean_ctor_set(x_25, 3, x_24); -x_26 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__27; +x_26 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__27; x_27 = lean_array_push(x_26, x_25); -x_28 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__13; +x_28 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__13; x_29 = lean_array_push(x_27, x_28); -x_30 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__19; +x_30 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__19; x_31 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); -x_32 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__28; +x_32 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__28; lean_inc(x_16); x_33 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_33, 0, x_16); lean_ctor_set(x_33, 1, x_32); -x_34 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__29; +x_34 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__29; x_35 = lean_array_push(x_34, x_31); lean_inc(x_33); x_36 = lean_array_push(x_35, x_33); x_37 = lean_array_push(x_36, x_9); -x_38 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__17; +x_38 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__17; x_39 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_39, 0, x_38); lean_ctor_set(x_39, 1, x_37); -x_40 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__8; +x_40 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__8; lean_inc(x_16); x_41 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_41, 0, x_16); lean_ctor_set(x_41, 1, x_40); -x_42 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__30; +x_42 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__30; x_43 = lean_array_push(x_42, x_41); -x_44 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__11; +x_44 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__11; x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_44); lean_ctor_set(x_45, 1, x_43); x_46 = lean_array_push(x_26, x_39); lean_inc(x_45); x_47 = lean_array_push(x_46, x_45); -x_48 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__15; +x_48 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__15; x_49 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); -x_50 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__23; +x_50 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__23; lean_inc(x_17); lean_inc(x_18); x_51 = l_Lean_addMacroScope(x_18, x_50, x_17); -x_52 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__22; -x_53 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__10; +x_52 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__22; +x_53 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__10; lean_inc(x_16); x_54 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_54, 0, x_16); @@ -2202,12 +2202,12 @@ x_63 = lean_array_push(x_62, x_45); x_64 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_64, 0, x_48); lean_ctor_set(x_64, 1, x_63); -x_65 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__4; +x_65 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__4; lean_inc(x_17); lean_inc(x_18); x_66 = l_Lean_addMacroScope(x_18, x_65, x_17); -x_67 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__3; -x_68 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__7; +x_67 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__3; +x_68 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__7; lean_inc(x_16); x_69 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_69, 0, x_16); @@ -2241,10 +2241,10 @@ lean_inc(x_16); x_85 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_85, 0, x_16); lean_ctor_set(x_85, 1, x_84); -x_86 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__37; +x_86 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__37; x_87 = l_Lean_addMacroScope(x_18, x_86, x_17); -x_88 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__36; -x_89 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__39; +x_88 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__36; +x_89 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__39; lean_inc(x_16); x_90 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_90, 0, x_16); @@ -2256,19 +2256,19 @@ x_92 = lean_array_push(x_91, x_90); x_93 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_93, 0, x_44); lean_ctor_set(x_93, 1, x_92); -x_94 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__40; +x_94 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__40; x_95 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_95, 0, x_16); lean_ctor_set(x_95, 1, x_94); -x_96 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__41; +x_96 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__41; x_97 = lean_array_push(x_96, x_20); x_98 = lean_array_push(x_97, x_28); x_99 = lean_array_push(x_98, x_83); -x_100 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__34; +x_100 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__34; x_101 = lean_array_push(x_99, x_100); x_102 = lean_array_push(x_101, x_93); x_103 = lean_array_push(x_102, x_95); -x_104 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__8; +x_104 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__8; x_105 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_105, 0, x_104); lean_ctor_set(x_105, 1, x_103); @@ -2288,69 +2288,69 @@ lean_inc(x_108); x_109 = lean_ctor_get(x_2, 1); lean_inc(x_109); lean_dec(x_2); -x_110 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__9; +x_110 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__9; lean_inc(x_106); x_111 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_111, 0, x_106); lean_ctor_set(x_111, 1, x_110); -x_112 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__4; +x_112 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__4; lean_inc(x_108); lean_inc(x_109); x_113 = l_Lean_addMacroScope(x_109, x_112, x_108); -x_114 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__3; -x_115 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__7; +x_114 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__3; +x_115 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__7; lean_inc(x_106); x_116 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_116, 0, x_106); lean_ctor_set(x_116, 1, x_114); lean_ctor_set(x_116, 2, x_113); lean_ctor_set(x_116, 3, x_115); -x_117 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__27; +x_117 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__27; x_118 = lean_array_push(x_117, x_116); -x_119 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__13; +x_119 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__13; x_120 = lean_array_push(x_118, x_119); -x_121 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__19; +x_121 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__19; x_122 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_122, 0, x_121); lean_ctor_set(x_122, 1, x_120); -x_123 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__28; +x_123 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__28; lean_inc(x_106); x_124 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_124, 0, x_106); lean_ctor_set(x_124, 1, x_123); -x_125 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__29; +x_125 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__29; x_126 = lean_array_push(x_125, x_122); lean_inc(x_124); x_127 = lean_array_push(x_126, x_124); x_128 = lean_array_push(x_127, x_9); -x_129 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__17; +x_129 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__17; 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_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__8; +x_131 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__8; lean_inc(x_106); x_132 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_132, 0, x_106); lean_ctor_set(x_132, 1, x_131); -x_133 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__30; +x_133 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__30; x_134 = lean_array_push(x_133, x_132); -x_135 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__11; +x_135 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__11; x_136 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_136, 0, x_135); lean_ctor_set(x_136, 1, x_134); x_137 = lean_array_push(x_117, x_130); lean_inc(x_136); x_138 = lean_array_push(x_137, x_136); -x_139 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__15; +x_139 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__15; 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_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__23; +x_141 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__23; lean_inc(x_108); lean_inc(x_109); x_142 = l_Lean_addMacroScope(x_109, x_141, x_108); -x_143 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__22; -x_144 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__10; +x_143 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__22; +x_144 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__10; lean_inc(x_106); x_145 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_145, 0, x_106); @@ -2374,12 +2374,12 @@ x_154 = lean_array_push(x_153, x_136); x_155 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_155, 0, x_139); lean_ctor_set(x_155, 1, x_154); -x_156 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__4; +x_156 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__4; lean_inc(x_108); lean_inc(x_109); x_157 = l_Lean_addMacroScope(x_109, x_156, x_108); -x_158 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__3; -x_159 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__7; +x_158 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__3; +x_159 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__7; lean_inc(x_106); x_160 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_160, 0, x_106); @@ -2413,10 +2413,10 @@ lean_inc(x_106); x_176 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_176, 0, x_106); lean_ctor_set(x_176, 1, x_175); -x_177 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__37; +x_177 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__37; x_178 = l_Lean_addMacroScope(x_109, x_177, x_108); -x_179 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__36; -x_180 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__39; +x_179 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__36; +x_180 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__39; lean_inc(x_106); x_181 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_181, 0, x_106); @@ -2428,19 +2428,19 @@ x_183 = lean_array_push(x_182, x_181); x_184 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_184, 0, x_135); lean_ctor_set(x_184, 1, x_183); -x_185 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__40; +x_185 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__40; x_186 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_186, 0, x_106); lean_ctor_set(x_186, 1, x_185); -x_187 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__41; +x_187 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__41; x_188 = lean_array_push(x_187, x_111); x_189 = lean_array_push(x_188, x_119); x_190 = lean_array_push(x_189, x_174); -x_191 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__34; +x_191 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__34; x_192 = lean_array_push(x_190, x_191); x_193 = lean_array_push(x_192, x_184); x_194 = lean_array_push(x_193, x_186); -x_195 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__8; +x_195 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__8; x_196 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_196, 0, x_195); lean_ctor_set(x_196, 1, x_194); @@ -2452,7 +2452,7 @@ return x_197; } } } -LEAN_EXPORT lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_1132_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x3a___x5d_xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2479,7 +2479,7 @@ x_10 = lean_unsigned_to_nat(4u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -2490,68 +2490,68 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__9; +x_17 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__9; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); -x_19 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__23; +x_19 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__23; lean_inc(x_15); lean_inc(x_16); x_20 = l_Lean_addMacroScope(x_16, x_19, x_15); -x_21 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__22; -x_22 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__26; +x_21 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__22; +x_22 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__26; lean_inc(x_14); x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_21); lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_22); -x_24 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__27; +x_24 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__27; x_25 = lean_array_push(x_24, x_23); -x_26 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__13; +x_26 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__13; x_27 = lean_array_push(x_25, x_26); -x_28 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__19; +x_28 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__19; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); -x_30 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__28; +x_30 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__28; lean_inc(x_14); x_31 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_31, 0, x_14); lean_ctor_set(x_31, 1, x_30); -x_32 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__29; +x_32 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__29; x_33 = lean_array_push(x_32, x_29); lean_inc(x_31); x_34 = lean_array_push(x_33, x_31); x_35 = lean_array_push(x_34, x_9); -x_36 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__17; +x_36 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__17; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); -x_38 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__8; +x_38 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__8; lean_inc(x_14); x_39 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_39, 0, x_14); lean_ctor_set(x_39, 1, x_38); -x_40 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__30; +x_40 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__30; x_41 = lean_array_push(x_40, x_39); -x_42 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__11; +x_42 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__11; x_43 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_43, 0, x_42); lean_ctor_set(x_43, 1, x_41); x_44 = lean_array_push(x_24, x_37); x_45 = lean_array_push(x_44, x_43); -x_46 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__15; +x_46 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__15; x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_46); lean_ctor_set(x_47, 1, x_45); -x_48 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__4; +x_48 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__4; lean_inc(x_15); lean_inc(x_16); x_49 = l_Lean_addMacroScope(x_16, x_48, x_15); -x_50 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__3; -x_51 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__7; +x_50 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__3; +x_51 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__7; lean_inc(x_14); x_52 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_52, 0, x_14); @@ -2584,10 +2584,10 @@ lean_inc(x_14); x_67 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_67, 0, x_14); lean_ctor_set(x_67, 1, x_66); -x_68 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__37; +x_68 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__37; x_69 = l_Lean_addMacroScope(x_16, x_68, x_15); -x_70 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__36; -x_71 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__39; +x_70 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__36; +x_71 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__39; lean_inc(x_14); x_72 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_72, 0, x_14); @@ -2599,19 +2599,19 @@ x_74 = lean_array_push(x_73, x_72); x_75 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_75, 0, x_42); lean_ctor_set(x_75, 1, x_74); -x_76 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__40; +x_76 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__40; x_77 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_77, 0, x_14); lean_ctor_set(x_77, 1, x_76); -x_78 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__41; +x_78 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__41; x_79 = lean_array_push(x_78, x_18); x_80 = lean_array_push(x_79, x_26); x_81 = lean_array_push(x_80, x_65); -x_82 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__34; +x_82 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__34; x_83 = lean_array_push(x_81, x_82); x_84 = lean_array_push(x_83, x_75); x_85 = lean_array_push(x_84, x_77); -x_86 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__8; +x_86 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__8; x_87 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_87, 0, x_86); lean_ctor_set(x_87, 1, x_85); @@ -2631,68 +2631,68 @@ lean_inc(x_90); x_91 = lean_ctor_get(x_2, 1); lean_inc(x_91); lean_dec(x_2); -x_92 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__9; +x_92 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__9; lean_inc(x_88); x_93 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_93, 0, x_88); lean_ctor_set(x_93, 1, x_92); -x_94 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__23; +x_94 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__23; lean_inc(x_90); lean_inc(x_91); x_95 = l_Lean_addMacroScope(x_91, x_94, x_90); -x_96 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__22; -x_97 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__26; +x_96 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__22; +x_97 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__26; lean_inc(x_88); x_98 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_98, 0, x_88); lean_ctor_set(x_98, 1, x_96); lean_ctor_set(x_98, 2, x_95); lean_ctor_set(x_98, 3, x_97); -x_99 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__27; +x_99 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__27; x_100 = lean_array_push(x_99, x_98); -x_101 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__13; +x_101 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__13; x_102 = lean_array_push(x_100, x_101); -x_103 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__19; +x_103 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__19; x_104 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_104, 0, x_103); lean_ctor_set(x_104, 1, x_102); -x_105 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__28; +x_105 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__28; lean_inc(x_88); x_106 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_106, 0, x_88); lean_ctor_set(x_106, 1, x_105); -x_107 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__29; +x_107 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__29; x_108 = lean_array_push(x_107, x_104); lean_inc(x_106); x_109 = lean_array_push(x_108, x_106); x_110 = lean_array_push(x_109, x_9); -x_111 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__17; +x_111 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__17; x_112 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_112, 0, x_111); lean_ctor_set(x_112, 1, x_110); -x_113 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__8; +x_113 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__8; lean_inc(x_88); x_114 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_114, 0, x_88); lean_ctor_set(x_114, 1, x_113); -x_115 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__30; +x_115 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__30; x_116 = lean_array_push(x_115, x_114); -x_117 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__11; +x_117 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__11; x_118 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_118, 0, x_117); lean_ctor_set(x_118, 1, x_116); x_119 = lean_array_push(x_99, x_112); x_120 = lean_array_push(x_119, x_118); -x_121 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__15; +x_121 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__15; x_122 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_122, 0, x_121); lean_ctor_set(x_122, 1, x_120); -x_123 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__4; +x_123 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__4; lean_inc(x_90); lean_inc(x_91); x_124 = l_Lean_addMacroScope(x_91, x_123, x_90); -x_125 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__3; -x_126 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__7; +x_125 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__3; +x_126 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__7; lean_inc(x_88); x_127 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_127, 0, x_88); @@ -2725,10 +2725,10 @@ lean_inc(x_88); x_142 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_142, 0, x_88); lean_ctor_set(x_142, 1, x_141); -x_143 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__37; +x_143 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__37; x_144 = l_Lean_addMacroScope(x_91, x_143, x_90); -x_145 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__36; -x_146 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__39; +x_145 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__36; +x_146 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__39; lean_inc(x_88); x_147 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_147, 0, x_88); @@ -2740,19 +2740,19 @@ x_149 = lean_array_push(x_148, x_147); x_150 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_150, 0, x_117); lean_ctor_set(x_150, 1, x_149); -x_151 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__40; +x_151 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__40; x_152 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_152, 0, x_88); lean_ctor_set(x_152, 1, x_151); -x_153 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__41; +x_153 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__41; x_154 = lean_array_push(x_153, x_93); x_155 = lean_array_push(x_154, x_101); x_156 = lean_array_push(x_155, x_140); -x_157 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__34; +x_157 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__34; x_158 = lean_array_push(x_156, x_157); x_159 = lean_array_push(x_158, x_150); x_160 = lean_array_push(x_159, x_152); -x_161 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__8; +x_161 = l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__8; x_162 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_162, 0, x_161); lean_ctor_set(x_162, 1, x_160); @@ -2867,122 +2867,122 @@ l_Std_Range_term_x5b___x3a___x3a___x5d___closed__6 = _init_l_Std_Range_term_x5b_ lean_mark_persistent(l_Std_Range_term_x5b___x3a___x3a___x5d___closed__6); l_Std_Range_term_x5b___x3a___x3a___x5d = _init_l_Std_Range_term_x5b___x3a___x3a___x5d(); lean_mark_persistent(l_Std_Range_term_x5b___x3a___x3a___x5d); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__1 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__1(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__1); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__2 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__2(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__2); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__3 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__3(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__3); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__4 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__4(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__4); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__5 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__5(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__5); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__6 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__6(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__6); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__7 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__7(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__7); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__8 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__8(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__8); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__9 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__9(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__9); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__10 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__10(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__10); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__11 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__11(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__11); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__12 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__12(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__12); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__13 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__13(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__13); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__14 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__14(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__14); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__15 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__15(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__15); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__16 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__16(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__16); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__17 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__17(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__17); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__18 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__18(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__18); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__19 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__19(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__19); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__20 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__20(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__20); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__21 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__21(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__21); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__22 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__22(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__22); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__23 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__23(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__23); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__24 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__24(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__24); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__25 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__25(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__25); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__26 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__26(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__26); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__27 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__27(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__27); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__28 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__28(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__28); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__29 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__29(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__29); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__30 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__30(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__30); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__31 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__31(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__31); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__32 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__32(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__32); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__33 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__33(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__33); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__34 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__34(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__34); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__35 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__35(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__35); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__36 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__36(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__36); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__37 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__37(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__37); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__38 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__38(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__38); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__39 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__39(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__39); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__40 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__40(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__40); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__41 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__41(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_389____closed__41); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__1 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__1(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__1); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__2 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__2(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__2); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__3 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__3(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__3); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__4 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__4(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__4); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__5 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__5(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__5); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__6 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__6(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__6); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__7 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__7(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__7); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__8 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__8(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__8); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__9 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__9(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__9); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__10 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__10(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_575____closed__10); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__1 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__1(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__1); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__2 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__2(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__2); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__3 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__3(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__3); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__4 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__4(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__4); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__5 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__5(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__5); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__6 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__6(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__6); -l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__7 = _init_l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__7(); -lean_mark_persistent(l_Std_Range_myMacro____x40_Init_Data_Range___hyg_821____closed__7); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__1 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__1(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__1); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__2 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__2(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__2); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__3 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__3(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__3); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__4 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__4(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__4); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__5 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__5(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__5); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__6 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__6(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__6); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__7 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__7(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__7); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__8 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__8(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__8); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__9 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__9(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__9); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__10 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__10(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__10); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__11 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__11(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__11); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__12 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__12(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__12); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__13 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__13(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__13); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__14 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__14(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__14); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__15 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__15(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__15); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__16 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__16(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__16); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__17 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__17(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__17); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__18 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__18(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__18); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__19 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__19(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__19); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__20 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__20(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__20); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__21 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__21(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__21); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__22 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__22(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__22); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__23 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__23(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__23); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__24 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__24(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__24); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__25 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__25(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__25); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__26 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__26(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__26); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__27 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__27(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__27); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__28 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__28(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__28); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__29 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__29(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__29); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__30 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__30(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__30); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__31 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__31(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__31); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__32 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__32(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__32); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__33 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__33(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__33); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__34 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__34(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__34); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__35 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__35(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__35); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__36 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__36(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__36); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__37 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__37(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__37); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__38 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__38(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__38); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__39 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__39(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__39); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__40 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__40(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__40); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__41 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__41(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b_x3a___x5d_xbb__1___closed__41); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__1 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__1(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__1); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__2 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__2(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__2); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__3 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__3(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__3); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__4 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__4(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__4); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__5 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__5(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__5); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__6 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__6(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__6); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__7 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__7(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__7); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__8 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__8(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__8); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__9 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__9(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__9); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__10 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__10(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x5d_xbb__1___closed__10); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__1 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__1(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__1); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__2 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__2(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__2); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__3 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__3(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__3); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__4 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__4(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__4); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__5 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__5(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__5); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__6 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__6(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__6); +l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__7 = _init_l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__7(); +lean_mark_persistent(l_Std_Range___aux__Init__Data__Range______macroRules__Std__Range___xabterm_x5b___x3a___x3a___x5d_xbb__1___closed__7); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Data/ToString/Macro.c b/stage0/stdlib/Init/Data/ToString/Macro.c index 231768e105..2491836749 100644 --- a/stage0/stdlib/Init/Data/ToString/Macro.c +++ b/stage0/stdlib/Init/Data/ToString/Macro.c @@ -13,44 +13,44 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_19_(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__7; -static lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__5; static lean_object* l_termS_x21_____closed__7; +static lean_object* l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__9; static lean_object* l_termS_x21_____closed__3; -static lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__10; +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); lean_object* lean_string_utf8_byte_size(lean_object*); +static lean_object* l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__13; +static lean_object* l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__10; static lean_object* l_termS_x21_____closed__2; +static lean_object* l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__15; static lean_object* l_termS_x21_____closed__13; -static lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__6; +static lean_object* l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__6; lean_object* l_Lean_Syntax_expandInterpolatedStr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_termS_x21_____closed__6; -static lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__15; -static lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__3; -static lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__14; +static lean_object* l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__3; +static lean_object* l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__5; +static lean_object* l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__14; static lean_object* l_termS_x21_____closed__14; static lean_object* l_termS_x21_____closed__5; -static lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__4; -static lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__8; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__7; static lean_object* l_termS_x21_____closed__9; -static lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__13; +LEAN_EXPORT lean_object* l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1(lean_object*, lean_object*, lean_object*); static lean_object* l_termS_x21_____closed__1; -static lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__1; static lean_object* l_termS_x21_____closed__4; -static lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__2; static lean_object* l_termS_x21_____closed__8; -static lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__9; static lean_object* l_termS_x21_____closed__10; +static lean_object* l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__1; +static lean_object* l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__2; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__12; static lean_object* l_termS_x21_____closed__12; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_termS_x21__; -static lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__11; +static lean_object* l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__8; +static lean_object* l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__4; +static lean_object* l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__11; static lean_object* l_termS_x21_____closed__11; -static lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__12; static lean_object* _init_l_termS_x21_____closed__1() { _start: { @@ -201,7 +201,7 @@ x_1 = l_termS_x21_____closed__14; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__1() { +static lean_object* _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__1() { _start: { lean_object* x_1; @@ -209,22 +209,22 @@ x_1 = lean_mk_string("String"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__2() { +static lean_object* _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__1; +x_1 = l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__3() { +static lean_object* _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__1; +x_1 = l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__2; +x_3 = l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -232,41 +232,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__4() { +static lean_object* _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__1; +x_2 = l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__5() { +static lean_object* _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__4; +x_2 = l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__4; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__6() { +static lean_object* _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__5; +x_2 = l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__7() { +static lean_object* _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__7() { _start: { lean_object* x_1; @@ -274,22 +274,22 @@ x_1 = lean_mk_string("toString"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__8() { +static lean_object* _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__7; +x_1 = l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__7; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__9() { +static lean_object* _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__7; +x_1 = l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__7; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__8; +x_3 = l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__8; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -297,17 +297,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__10() { +static lean_object* _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__7; +x_2 = l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__11() { +static lean_object* _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__11() { _start: { lean_object* x_1; @@ -315,51 +315,51 @@ x_1 = lean_mk_string("ToString"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__12() { +static lean_object* _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__11; +x_2 = l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__11; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__13() { +static lean_object* _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__12; -x_2 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__7; +x_1 = l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__12; +x_2 = l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__14() { +static lean_object* _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__13; +x_2 = l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__13; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__15() { +static lean_object* _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__14; +x_2 = l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__14; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_19_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -384,7 +384,7 @@ x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); lean_inc(x_2); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = lean_ctor_get(x_10, 0); lean_inc(x_11); x_12 = lean_ctor_get(x_10, 1); @@ -394,28 +394,28 @@ x_13 = lean_ctor_get(x_2, 2); lean_inc(x_13); x_14 = lean_ctor_get(x_2, 1); lean_inc(x_14); -x_15 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__4; +x_15 = l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__4; lean_inc(x_13); lean_inc(x_14); x_16 = l_Lean_addMacroScope(x_14, x_15, x_13); -x_17 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__3; -x_18 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__6; +x_17 = l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__3; +x_18 = l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__6; x_19 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_19, 0, x_11); lean_ctor_set(x_19, 1, x_17); lean_ctor_set(x_19, 2, x_16); lean_ctor_set(x_19, 3, x_18); lean_inc(x_2); -x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_12); +x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_12); 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 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__10; +x_23 = l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__10; x_24 = l_Lean_addMacroScope(x_14, x_23, x_13); -x_25 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__9; -x_26 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__15; +x_25 = l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__9; +x_26 = l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__15; x_27 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_27, 0, x_21); lean_ctor_set(x_27, 1, x_25); @@ -470,36 +470,36 @@ l_termS_x21_____closed__14 = _init_l_termS_x21_____closed__14(); lean_mark_persistent(l_termS_x21_____closed__14); l_termS_x21__ = _init_l_termS_x21__(); lean_mark_persistent(l_termS_x21__); -l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__1 = _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__1); -l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__2 = _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__2); -l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__3 = _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__3); -l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__4 = _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__4); -l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__5 = _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__5); -l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__6 = _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__6); -l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__7 = _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__7); -l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__8 = _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__8); -l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__9 = _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__9); -l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__10 = _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__10(); -lean_mark_persistent(l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__10); -l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__11 = _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__11(); -lean_mark_persistent(l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__11); -l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__12 = _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__12(); -lean_mark_persistent(l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__12); -l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__13 = _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__13(); -lean_mark_persistent(l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__13); -l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__14 = _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__14(); -lean_mark_persistent(l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__14); -l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__15 = _init_l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__15(); -lean_mark_persistent(l_myMacro____x40_Init_Data_ToString_Macro___hyg_19____closed__15); +l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__1 = _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__1(); +lean_mark_persistent(l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__1); +l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__2 = _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__2(); +lean_mark_persistent(l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__2); +l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__3 = _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__3(); +lean_mark_persistent(l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__3); +l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__4 = _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__4(); +lean_mark_persistent(l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__4); +l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__5 = _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__5(); +lean_mark_persistent(l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__5); +l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__6 = _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__6(); +lean_mark_persistent(l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__6); +l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__7 = _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__7(); +lean_mark_persistent(l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__7); +l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__8 = _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__8(); +lean_mark_persistent(l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__8); +l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__9 = _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__9(); +lean_mark_persistent(l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__9); +l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__10 = _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__10(); +lean_mark_persistent(l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__10); +l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__11 = _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__11(); +lean_mark_persistent(l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__11); +l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__12 = _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__12(); +lean_mark_persistent(l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__12); +l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__13 = _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__13(); +lean_mark_persistent(l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__13); +l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__14 = _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__14(); +lean_mark_persistent(l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__14); +l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__15 = _init_l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__15(); +lean_mark_persistent(l___aux__Init__Data__ToString__Macro______macroRules__termS_x21____1___closed__15); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Meta.c b/stage0/stdlib/Init/Meta.c index 5d8a971c38..c108764b08 100644 --- a/stage0/stdlib/Init/Meta.c +++ b/stage0/stdlib/Init/Meta.c @@ -13,6 +13,7 @@ #ifdef __cplusplus extern "C" { #endif +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__10; lean_object* l_List_reverse___rarg(lean_object*); LEAN_EXPORT lean_object* l_Array_getSepElems___rarg___boxed(lean_object*); static lean_object* l_Lean_mkHole___closed__3; @@ -21,13 +22,10 @@ LEAN_EXPORT lean_object* l_Lean_mkCIdentFrom(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_version_getMajor___boxed(lean_object*); lean_object* lean_string_push(lean_object*, uint32_t); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeOctalLitAux___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Name_toString___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_isIdOrAtom_x3f___boxed(lean_object*); lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__12; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__24; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__5; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__20; lean_object* l_Lean_extractMacroScopes(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkIdentFromRef(lean_object*); size_t lean_usize_add(size_t, size_t); @@ -35,9 +33,6 @@ extern lean_object* l_Lean_fieldIdxKind; LEAN_EXPORT lean_object* l_Lean_Syntax_isNatLit_x3f___boxed(lean_object*); static lean_object* l_Lean_Syntax_unsetTrailing___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_setTailInfoAux(lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__28; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__26; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__14; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_updateFirst___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeDecimalLitAux___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instQuoteBool(uint8_t); @@ -45,87 +40,99 @@ LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f_decodeAfterExp LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_mkSepArray___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT uint8_t lean_is_inaccessible_user_name(lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__3; static lean_object* l_Lean_Meta_instReprTransparencyMode___closed__1; static lean_object* l_Lean_Name_toString_maybePseudoSyntax___closed__2; -static lean_object* l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__3; LEAN_EXPORT lean_object* l_Lean_Syntax_getTrailingSize(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_expandInterpolatedStr___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Name_reprPrec___closed__7; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__7; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_updateFirst___at_Lean_Syntax_setHeadInfoAux___spec__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__21; extern lean_object* l_Lean_nullKind; LEAN_EXPORT lean_object* l_Lean_Syntax_getSepArgs___boxed(lean_object*); +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__38; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_filterSepElemsMAux___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__18; static lean_object* l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__7; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__15; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__16; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeHexDigit(lean_object*, lean_object*); static lean_object* l_Lean_Name_escapePart___closed__1; static lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____spec__3___closed__6; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__41; lean_object* lean_name_mk_string(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_getOptional_x3f(lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); -static lean_object* l_Lean_myMacro____x40_Init_Meta___hyg_6362____closed__1; +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_beqConfig____x40_Init_Meta___hyg_8365____boxed(lean_object*, lean_object*); static lean_object* l_Lean_termEval__prio_____closed__9; LEAN_EXPORT uint32_t l_Lean_idBeginEscape; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_append___rarg(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__3; LEAN_EXPORT lean_object* l_Lean_termEval__prio__; LEAN_EXPORT lean_object* l_Lean_Syntax_expandInterpolatedStrChunks(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeQuotedChar(lean_object*, lean_object*); static lean_object* l_Lean_mkSepArray___closed__2; -static lean_object* l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__2; LEAN_EXPORT lean_object* l_Lean_Syntax_mkSep(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__34; static lean_object* l_Lean_mkHole___closed__7; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__18; LEAN_EXPORT lean_object* l_Array_filterSepElemsM___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_instQuoteSubstring___closed__3; lean_object* l_Lean_SourceInfo_fromRef(lean_object*); uint8_t l_String_anyAux_loop(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_capitalize(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_isAtom___boxed(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__5; static lean_object* l_Lean_termEval__prec_____closed__6; static lean_object* l_Lean_version_specialDesc___closed__1; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__18; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_updateFirst(lean_object*); -static lean_object* l_Lean_myMacro____x40_Init_Meta___hyg_6362____closed__2; LEAN_EXPORT lean_object* l_Lean_monadNameGeneratorLift(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapSepElemsM___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_maxRecDepthErrorMessage; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__13; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f_decodeAfterDot(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_toNat___boxed(lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_Simp_Config_memoize___default; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__5; LEAN_EXPORT lean_object* l_Lean_Syntax_getHead_x3f(lean_object*); +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__25; LEAN_EXPORT uint8_t l_Lean_Syntax_structEq(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__28; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__14; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrQuotedChar(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_termEval__prec__; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__33; +LEAN_EXPORT lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__termEval__prio____1(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at_Lean_Syntax_expandInterpolatedStrChunks___spec__1___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Syntax_expandInterpolatedStrChunks___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_utf8_prev(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__30; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_isNatLitAux(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_ofElemsUsingRef___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__3; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__40; static lean_object* l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__5; lean_object* l_id___rarg___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeOctalLitAux(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____closed__6; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__17; static lean_object* l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__3; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Syntax_findAux___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__8; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Syntax_getHead_x3f___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*); uint8_t l_Char_isDigit(uint32_t); LEAN_EXPORT lean_object* l_Lean_Name_reprPrec(lean_object*, lean_object*); static lean_object* l_Lean_instQuoteBool___closed__7; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__15; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__22; LEAN_EXPORT lean_object* l_Lean_Name_escapePart(lean_object*); -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__3; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__15; LEAN_EXPORT lean_object* l_Lean_withHeadRefOnly___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f_decodeExp(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isGreek___boxed(lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Syntax_expandInterpolatedStrChunks___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeBinLitAux(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__6; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__33; LEAN_EXPORT uint32_t l_Lean_idEndEscape; LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_instCoeTailSepArrayArraySyntax(lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_escapePart___lambda__1___boxed(lean_object*); @@ -135,24 +142,27 @@ LEAN_EXPORT lean_object* l___private_Init_Data_String_Basic_0__Substring_takeWhi LEAN_EXPORT lean_object* l_Lean_isIdRest___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_instQuoteProd(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__21; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__1; LEAN_EXPORT uint8_t l_Lean_isIdBeginEscape(uint32_t); static lean_object* l_List_foldr___at_Lean_Syntax_decodeNameLit___spec__1___closed__3; LEAN_EXPORT uint8_t l_Lean_Name_escapePart___lambda__1(uint32_t); static lean_object* l_Lean_instQuoteProd___rarg___closed__3; LEAN_EXPORT lean_object* l_Lean_Syntax_mkScientificLit(lean_object*, lean_object*); +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); static lean_object* l_Lean_termEval__prec_____closed__3; -static lean_object* l_Lean_myMacro____x40_Init_Meta___hyg_6623____closed__1; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__37; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__9; static lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____spec__3___closed__5; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__25; LEAN_EXPORT lean_object* l___private_Init_Data_String_Basic_0__Substring_takeWhileAux___at___private_Init_Meta_0__Lean_Syntax_splitNameLitAux___spec__2___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isIdFirst___boxed(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__14; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_filterSepElemsMAux___at_Array_filterSepElems___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_toString___boxed(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__42; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__27; lean_object* lean_string_append(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__29; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Syntax_expandInterpolatedStrChunks___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_version_getSpecialDesc___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeHexDigit___boxed(lean_object*, lean_object*); @@ -161,44 +171,38 @@ LEAN_EXPORT lean_object* l_Lean_instQuoteArray(lean_object*); lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); static lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____spec__3___closed__14; LEAN_EXPORT uint8_t l_Lean_Meta_Simp_Config_decide___default; -static lean_object* l_Lean_myMacro____x40_Init_Meta___hyg_6623____closed__2; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__2; static lean_object* l_Lean_instQuoteBool___closed__8; static lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__3; lean_object* l_Std_Format_joinSep___at_instReprProd___spec__1(lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__29; static lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____spec__3___closed__3; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__25; lean_object* l___private_Init_Data_Repr_0__reprSourceInfo____x40_Init_Data_Repr___hyg_1765_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_filterSepElemsM___at_Array_filterSepElems___spec__1(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__31; LEAN_EXPORT uint8_t l_Lean_Meta_Simp_Config_contextual___default; LEAN_EXPORT lean_object* l_Lean_Meta_TransparencyMode_toCtorIdx(uint8_t); static lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____spec__3___closed__15; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__23; LEAN_EXPORT lean_object* l_Lean_instQuoteList___rarg(lean_object*); lean_object* lean_string_utf8_byte_size(lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_instInhabitedTransparencyMode; LEAN_EXPORT lean_object* l_Lean_NameGenerator_namePrefix___default; LEAN_EXPORT lean_object* l_Lean_Syntax_expandInterpolatedStr___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_filterSepElems___boxed(lean_object*, lean_object*); -LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8076_(uint8_t, uint8_t); +LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8082_(uint8_t, uint8_t); LEAN_EXPORT lean_object* l_Lean_Syntax_setHeadInfo(lean_object*, lean_object*); static lean_object* l_Lean_instQuoteBool___closed__1; uint8_t lean_usize_dec_lt(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_version_patch; extern lean_object* l_Lean_nameLitKind; static lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__5; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__22; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__5; LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Syntax_decodeNameLit___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_isNatLitAux___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withHeadRefOnly___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instQuoteBool___boxed(lean_object*); -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__14; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__28; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__12; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__33; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__6; LEAN_EXPORT lean_object* l_Lean_version_specialDesc; lean_object* lean_nat_add(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__36; LEAN_EXPORT lean_object* l_Lean_Syntax_mkSep___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Syntax_expandInterpolatedStr___closed__6; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeQuotedChar___boxed__const__6; @@ -210,8 +214,9 @@ LEAN_EXPORT lean_object* l_Lean_Name_toStringWithSep(lean_object*, uint8_t, lean static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__7; LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_ofElems(lean_object*, lean_object*); static lean_object* l_Lean_Name_escapePart___closed__4; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__19; static lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____spec__3___closed__2; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__4; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__12; static lean_object* l_Lean_termEval__prio_____closed__4; static lean_object* l_Lean_version_major___closed__1; static lean_object* l_Lean_instQuoteSubstring___closed__1; @@ -224,12 +229,12 @@ static lean_object* l_Lean_instQuoteSubstring___closed__2; static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____closed__18; LEAN_EXPORT lean_object* l_Lean_Syntax_isLit_x3f___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__3; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__17; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__3; +LEAN_EXPORT lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrio__1(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____closed__15; LEAN_EXPORT lean_object* l_Lean_Syntax_hasArgs___boxed(lean_object*); static lean_object* l_Lean_Name_reprPrec___closed__6; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrLit_loop___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__11; LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_getElems___rarg(lean_object*); LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___at_Lean_Syntax_getTailInfo_x3f___spec__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_Simp_Config_singlePass___default; @@ -241,10 +246,10 @@ LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Syntax_expandInterpo LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_version_getMinor___boxed(lean_object*); static lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____spec__3___closed__9; static lean_object* l_Lean_evalPrio___closed__1; -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_beqConfig____x40_Init_Meta___hyg_8359____boxed(lean_object*, lean_object*); uint8_t l_Lean_Name_hasMacroScopes(lean_object*); static uint8_t l_Lean_version_isRelease___closed__1; static lean_object* l_Lean_instQuoteBool___closed__5; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__39; static lean_object* l_Lean_termEval__prec_____closed__10; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f_decodeExp___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_isLit_x3f(lean_object*, lean_object*); @@ -274,7 +279,8 @@ static lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____spec__4(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_mkStrLit___boxed(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__39; +static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrec__1___closed__1; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__4; LEAN_EXPORT lean_object* l_Lean_Syntax_expandInterpolatedStr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_termEval__prec_____closed__7; extern lean_object* l_Lean_numLitKind; @@ -288,14 +294,12 @@ lean_object* lean_nat_sub(lean_object*, lean_object*); static lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____spec__3___closed__4; static lean_object* l_Lean_termEval__prio_____closed__1; static lean_object* l_Lean_instQuoteProd___rarg___closed__2; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__18; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__9; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__35; LEAN_EXPORT uint8_t l_List_beq___at_Lean_Syntax_structEq___spec__3(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkFreshId___rarg___lambda__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__36; LEAN_EXPORT lean_object* l_Lean_Name_reprPrec___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f_decode(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__40; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__15; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_mapSepElemsMAux(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_mkCApp(lean_object*, lean_object*); extern lean_object* l_Lean_strLitKind; @@ -307,21 +311,18 @@ LEAN_EXPORT lean_object* l___private_Init_Data_String_Basic_0__Substring_takeWhi LEAN_EXPORT lean_object* l_Lean_monadNameGeneratorLift___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_getElems(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_structEq___boxed(lean_object*, lean_object*); -LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Meta_Simp_beqConfig____x40_Init_Meta___hyg_8359_(lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__5; +LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Meta_Simp_beqConfig____x40_Init_Meta___hyg_8365_(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_Simp_ConfigCtx_contextual___default; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_isFieldIdx_x3f(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__30; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__14; static lean_object* l_Lean_instQuoteProd___rarg___closed__1; lean_object* l_Lean_Syntax_getHeadInfo(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_ofElems___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeHexLitAux(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_isNumericSubscript(uint32_t); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_mkSepArray___spec__1___lambda__1(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__24; LEAN_EXPORT lean_object* l_Lean_Syntax_isScientificLit_x3f(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__20; LEAN_EXPORT lean_object* l_Lean_Name_toString(lean_object*, uint8_t); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteOption___rarg(lean_object*, lean_object*); lean_object* l_Lean_replaceRef(lean_object*, lean_object*); @@ -331,16 +332,18 @@ static lean_object* l_Lean_instQuoteBool___closed__6; LEAN_EXPORT lean_object* l_Lean_mkIdentFromRef___rarg___lambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkFreshId___rarg(lean_object*, lean_object*); lean_object* l_String_capitalize(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__32; LEAN_EXPORT lean_object* l_Lean_NameGenerator_next(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeCharLit___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeNatLitVal_x3f(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__7; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__10; static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____closed__20; LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_getElems___boxed(lean_object*); LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___at_Lean_Syntax_getTailInfo_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__15; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____closed__10; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__16; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__31; static lean_object* l_Lean_mkHole___closed__5; static lean_object* l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__2; LEAN_EXPORT lean_object* l_Lean_withHeadRefOnly___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -353,7 +356,7 @@ extern lean_object* l_Lean_reservedMacroScope; static lean_object* l_Lean_Syntax_unsetTrailing___closed__2; static lean_object* l_Lean_NameGenerator_namePrefix___default___closed__1; LEAN_EXPORT lean_object* l_Lean_mkNullNode(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__16; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__12; LEAN_EXPORT lean_object* l_Lean_Name_instToStringName(lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_toStringWithSep_maybeEscape___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_modifyBase(lean_object*, lean_object*); @@ -365,10 +368,8 @@ LEAN_EXPORT uint8_t l_Lean_Meta_Rewrite_Config_transparency___default; lean_object* l_Nat_repr(lean_object*); LEAN_EXPORT lean_object* l_Array_mapSepElemsM___at_Array_mapSepElems___spec__1___boxed(lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Syntax_splitNameLitAux___closed__1; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__27; LEAN_EXPORT lean_object* l_Lean_instQuoteSubstring___boxed(lean_object*); -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__1; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__7; +LEAN_EXPORT lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__termEval__prec____1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instQuoteSubstring(lean_object*); static lean_object* l_Lean_Syntax_expandInterpolatedStr___closed__3; static lean_object* l_Lean_Name_instReprSyntax___closed__1; @@ -378,15 +379,15 @@ LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteNameMk(lean_object*) LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_splitNameLitAux(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_mkSepArray___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrQuotedChar___boxed(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__16; extern lean_object* l_Lean_Parser_Tactic_rwRuleSeq; extern lean_object* l_Lean_charLitKind; static lean_object* l_Lean_Syntax_instBEqSyntax___closed__1; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__20; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__8; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__24; LEAN_EXPORT lean_object* l_Lean_NameGenerator_idx___default; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__10; static lean_object* l_Lean_Meta_instBEqTransparencyMode___closed__1; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__2; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__30; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__24; lean_object* lean_array_to_list(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkFreshId(lean_object*); lean_object* l_Lean_Macro_throwErrorAt___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -394,26 +395,25 @@ static lean_object* l_Lean_Syntax_expandInterpolatedStr___closed__5; extern lean_object* l_Lean_Parser_Tactic_location; LEAN_EXPORT lean_object* l_Lean_Meta_TransparencyMode_toCtorIdx___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkCIdent(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__20; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__10; static lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____spec__3___closed__1; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__32; LEAN_EXPORT lean_object* l_Lean_version_getIsRelease___boxed(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__7; uint32_t lean_string_utf8_get(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Name_hasNum___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_mkStrLit(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__2; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_filterSepElemsMAux___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); +static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrio__1___closed__2; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f_decodeAfterExp(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__9; LEAN_EXPORT lean_object* l_Lean_mkOptionalNode(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_version_getPatch___boxed(lean_object*); LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____spec__5(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924_(lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteNameMk___closed__3; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__12; LEAN_EXPORT lean_object* l_Lean_Syntax_copyHeadTailInfoFrom(lean_object*, lean_object*); lean_object* l_Nat_pred(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeHexLitAux___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__4; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_filterSepElemsMAux(lean_object*); static lean_object* l_Lean_Name_reprPrec___closed__4; static lean_object* l___private_Init_Meta_0__Lean_quoteNameMk___closed__5; @@ -421,20 +421,18 @@ lean_object* l_panic___at___private_Init_Prelude_0__Lean_assembleParts___spec__1 lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__4; static lean_object* l_Lean_version_patch___closed__1; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__11; uint8_t l_Array_isEmpty___rarg(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__8; uint8_t l_Substring_beq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_toStringWithSep___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_filterSepElemsM(lean_object*); static lean_object* l_Lean_Name_reprPrec___closed__8; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__23; +LEAN_EXPORT lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrio__1(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_instInhabitedSyntax; LEAN_EXPORT lean_object* l_Lean_version_getSpecialDesc(lean_object*); +static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrio__1___closed__2; static lean_object* l_Lean_version_minor___closed__1; static lean_object* l_Lean_Name_reprPrec___closed__9; LEAN_EXPORT lean_object* l_Lean_mkCIdentFromRef___rarg___lambda__1(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__19; LEAN_EXPORT lean_object* l_Lean_mkSepArray(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_ofElemsUsingRef___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Simp_Config_maxDischargeDepth___default; @@ -444,9 +442,7 @@ LEAN_EXPORT lean_object* l_Lean_evalOptPrio(lean_object*, lean_object*, lean_obj static lean_object* l___private_Init_Meta_0__Lean_quoteNameMk___closed__2; static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____closed__21; static lean_object* l_Lean_Syntax_mkApp___closed__2; -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_NameGenerator_mkChild(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__1; static lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____spec__3___closed__12; lean_object* l_String_dropRight(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_isCharLit_x3f___boxed(lean_object*); @@ -456,11 +452,11 @@ static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Me static lean_object* l_Lean_Syntax_expandInterpolatedStr___lambda__2___closed__1; static lean_object* l___private_Init_Meta_0__Lean_quoteNameMk___closed__7; static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____closed__24; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__17; static lean_object* l_Lean_Syntax_expandInterpolatedStr___lambda__1___closed__4; size_t lean_usize_of_nat(lean_object*); -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__21; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrLit(lean_object*); -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__38; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__19; LEAN_EXPORT lean_object* l_Lean_version_minor; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeStrLit___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_mapSepElemsMAux___at_Array_mapSepElems___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -479,41 +475,42 @@ static lean_object* l_Lean_Syntax_decodeNatLitVal_x3f___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_TransparencyMode_noConfusion___rarg(uint8_t, uint8_t, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__1; static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____closed__13; +static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrio__1___closed__1; uint8_t l_Char_isAlpha(uint32_t); LEAN_EXPORT lean_object* l_Lean_Option_hasQuote(lean_object*); LEAN_EXPORT uint8_t l_Lean_Syntax_isAtom(lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_getSepElems___spec__1(lean_object*); -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__34; LEAN_EXPORT uint8_t l_Lean_isLetterLike(uint32_t); static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____closed__23; static lean_object* l_Lean_instQuoteName___closed__2; LEAN_EXPORT lean_object* l_Lean_evalPrec(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_isStrLit_x3f___boxed(lean_object*); lean_object* l_Lean_Macro_expandMacro_x3f(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781_(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____boxed(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__12; lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*); static lean_object* l_Lean_termEval__prio_____closed__8; LEAN_EXPORT lean_object* l_Lean_Syntax_mkNumLit(lean_object*, lean_object*); static lean_object* l_Lean_instInhabitedNameGenerator___closed__1; static lean_object* l_Lean_Meta_TransparencyMode_noConfusion___rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_ofElemsUsingRef(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__11; extern lean_object* l_Lean_groupKind; LEAN_EXPORT lean_object* l_Lean_Syntax_unsetTrailing(lean_object*); static lean_object* l_Lean_termEval__prio_____closed__7; LEAN_EXPORT lean_object* l_Lean_isLetterLike___boxed(lean_object*); +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__26; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_isIdOrAtom_x3f(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkIdentFromRef___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_mapSepElemsMAux___at_Array_mapSepElems___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__6; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeQuotedChar___boxed__const__2; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__21; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__7; static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__4; -static lean_object* l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__4; static lean_object* l_Lean_Syntax_mkApp___closed__1; uint8_t lean_uint32_dec_eq(uint32_t, uint32_t); +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__24; static lean_object* l_Lean_Name_instReprName___closed__1; lean_object* l_String_intercalate(lean_object*, lean_object*); static lean_object* l_Lean_mkHole___closed__8; @@ -522,27 +519,26 @@ LEAN_EXPORT lean_object* lean_name_append_after(lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteNameMk___closed__9; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_version_getMinor(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_getSepArgs(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__13; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__31; LEAN_EXPORT lean_object* l_Lean_Meta_TransparencyMode_noConfusion(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteNameMk___closed__4; static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__9; LEAN_EXPORT lean_object* l_Lean_mkHole(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__26; extern lean_object* l_Lean_scientificLitKind; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_getSepElems___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____closed__22; LEAN_EXPORT uint8_t l_Array_isEqvAux___at_Lean_Syntax_structEq___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__20; LEAN_EXPORT lean_object* l_Lean_instQuoteString___boxed(lean_object*); static lean_object* l_Lean_Syntax_expandInterpolatedStrChunks___closed__1; static lean_object* l_Lean_instQuoteBool___closed__2; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__19; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Syntax_getHead_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_Simp_Config_eta___default; static lean_object* l_Lean_Syntax_expandInterpolatedStr___lambda__2___closed__2; LEAN_EXPORT lean_object* l_Lean_Syntax_expandInterpolatedStrChunks___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__8; LEAN_EXPORT uint8_t l_Lean_Syntax_hasArgs(lean_object*); -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__35; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__11; uint8_t l_String_isPrefixOf(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteList(lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); @@ -551,90 +547,91 @@ static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Me lean_object* l_String_quote(lean_object*); uint8_t l_Char_isAlphanum(uint32_t); LEAN_EXPORT lean_object* l_Lean_Syntax_copyHeadTailInfoFrom___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__32; LEAN_EXPORT lean_object* l_Lean_Meta_Simp_instReprConfig; LEAN_EXPORT lean_object* l_Lean_instInhabitedNameGenerator; static lean_object* l_Lean_mkHole___closed__4; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__25; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__10; static lean_object* l_Lean_evalPrec___closed__2; lean_object* l_Lean_Syntax_getArgs(lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f(lean_object*); LEAN_EXPORT uint8_t l_Lean_isGreek(uint32_t); LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticErw____; +LEAN_EXPORT lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrec__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__26; lean_object* l_Lean_MacroScopesView_review(lean_object*); static lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____spec__3___closed__11; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__19; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrQuotedChar___boxed__const__1; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__6; static lean_object* l___private_Init_Meta_0__Lean_quoteNameMk___closed__8; static lean_object* l___private_Init_Meta_0__Lean_quoteNameMk___closed__1; LEAN_EXPORT lean_object* l_Array_filterSepElems(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapSepElemsM___at_Array_mapSepElems___spec__1(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572_(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578_(lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Name_hasNum(lean_object*); -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__22; -static lean_object* l_Lean_myMacro____x40_Init_Meta___hyg_6744____closed__1; static lean_object* l_Lean_instQuoteSubstring___closed__4; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_isInaccessibleUserName___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_replacePrefix___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_termEval__prec_____closed__11; LEAN_EXPORT lean_object* l_Lean_expandMacros___boxed__const__1; LEAN_EXPORT lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____spec__3(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__31; LEAN_EXPORT lean_object* l_Lean_Syntax_getOptionalIdent_x3f(lean_object*); static lean_object* l_Lean_evalPrec___closed__1; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__22; static lean_object* l_Lean_Name_toStringWithSep___closed__1; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__29; LEAN_EXPORT lean_object* l_Lean_NameGenerator_curr(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_getElems___rarg___boxed(lean_object*); LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____spec__2(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092_(uint8_t, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098_(uint8_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_isNameLit_x3f___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_mapSepElemsMAux___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkHole___closed__1; static lean_object* l_Lean_Syntax_mkApp___closed__3; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__11; LEAN_EXPORT lean_object* l_Lean_isIdBeginEscape___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__6; LEAN_EXPORT lean_object* l_Lean_mkFreshId___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_Rewrite_Config_offsetCnstrs___default; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_filterSepElemsMAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrio__1___closed__1; LEAN_EXPORT lean_object* l_List_beq___at_Lean_Syntax_structEq___spec__2___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Syntax_expandInterpolatedStr___lambda__1___closed__1; lean_object* lean_nat_mul(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_mkNameLit(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkCIdentFromRef___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeQuotedChar___boxed__const__4; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__9; static lean_object* l_List_foldr___at_Lean_Syntax_decodeNameLit___spec__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeQuotedChar___boxed__const__1; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__22; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__5; LEAN_EXPORT lean_object* l_Lean_Syntax_getTailInfo_x3f(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Simp_instBEqConfig; static lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____spec__3___closed__10; static lean_object* l_Lean_termEval__prec_____closed__2; LEAN_EXPORT uint8_t l_Lean_Meta_Simp_Config_iota___default; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__16; LEAN_EXPORT lean_object* l_Lean_Syntax_setInfo(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteOption(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__13; +LEAN_EXPORT lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instQuoteNat(lean_object*); -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__16; LEAN_EXPORT uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* lean_name_mk_numeral(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__28; LEAN_EXPORT lean_object* l_List_beq___at_Lean_Syntax_structEq___spec__3___boxed(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__27; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f_decodeAfterDot___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____closed__11; LEAN_EXPORT lean_object* l_Lean_Name_toString_maybePseudoSyntax___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_expandMacros(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_updateLast(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__19; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeNameLit(lean_object*); static lean_object* l_Lean_instQuoteArray___rarg___closed__1; static lean_object* l_Lean_Name_toString_maybePseudoSyntax___closed__1; static lean_object* l_Lean_mkOptionalNode___closed__1; LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____spec__6(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_isNameLit_x3f(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_isInterpolatedStrLit_x3f(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__23; LEAN_EXPORT lean_object* l_Lean_Syntax_getHead_x3f___lambda__1___boxed(lean_object*, lean_object*); lean_object* l_String_trim(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeQuotedChar___boxed(lean_object*, lean_object*); @@ -643,30 +640,32 @@ LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_mkSepArray___spec__1 LEAN_EXPORT lean_object* l_Lean_Syntax_getTailInfo_x3f___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_getTailInfo(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_getOptionalIdent_x3f___boxed(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__34; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__18; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__14; static lean_object* l_Lean_Syntax_expandInterpolatedStr___lambda__1___closed__3; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__6; LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Syntax_decodeNameLit___spec__1___boxed(lean_object*, lean_object*); static lean_object* l_Lean_termEval__prec_____closed__5; static lean_object* l_Lean_instQuoteBool___closed__4; static lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__7; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__21; LEAN_EXPORT lean_object* l_Lean_mkCIdentFromRef(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeStrLit(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__27; LEAN_EXPORT uint8_t l_Lean_isIdFirst(uint32_t); +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__13; LEAN_EXPORT lean_object* l_Lean_instQuoteName(lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_isNone___boxed(lean_object*); static lean_object* l_Lean_Syntax_expandInterpolatedStr___lambda__1___closed__2; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__18; LEAN_EXPORT lean_object* l_Lean_Syntax_isToken___boxed(lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__34; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__1; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__23; static lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____spec__3___closed__7; static lean_object* l_Lean_mkHole___closed__2; static lean_object* l_Lean_mkCIdentFrom___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_getTailInfo___boxed(lean_object*); static lean_object* l_Lean_termEval__prec_____closed__8; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeQuotedChar___boxed__const__3; +static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__3; LEAN_EXPORT lean_object* l_Lean_Syntax_isInterpolatedStrLit_x3f___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_instCoeTailSepArrayArraySyntax___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_instReprSyntax; @@ -691,70 +690,64 @@ LEAN_EXPORT lean_object* lean_mk_syntax_ident(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_TransparencyMode_noConfusion___rarg___lambda__1(lean_object*); static lean_object* l_Lean_Syntax_getHead_x3f___closed__1; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_updateFirst___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__9; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); static lean_object* l_Lean_termEval__prec_____closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_toNat(lean_object*); +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__37; LEAN_EXPORT lean_object* lean_name_append_before(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_version_getPatch(lean_object*); static lean_object* l_Lean_mkOptionalNode___closed__2; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__42; LEAN_EXPORT lean_object* l_Lean_Syntax_getOptional_x3f___boxed(lean_object*); static lean_object* l_Lean_mkCIdentFrom___closed__2; LEAN_EXPORT lean_object* l_Lean_instQuoteArray___rarg(lean_object*, lean_object*); lean_object* lean_nat_mod(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__24; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__7; LEAN_EXPORT lean_object* l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____spec__1(lean_object*); +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__6; lean_object* l_Lean_SourceInfo_getPos_x3f(lean_object*, uint8_t); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_filterSepElemsMAux___at_Array_filterSepElems___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Simp_instBEqConfig___closed__1; LEAN_EXPORT lean_object* l_Lean_instQuoteProd___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkFreshId___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____boxed(lean_object*, lean_object*); static lean_object* l_Lean_termEval__prec_____closed__4; LEAN_EXPORT uint8_t l_Lean_Meta_Simp_Config_proj___default; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__11; LEAN_EXPORT lean_object* l_Lean_Meta_instBEqTransparencyMode; LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeArraySyntaxSepArray(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__23; static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__11; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__2; static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____closed__7; LEAN_EXPORT lean_object* l_Lean_Syntax_find_x3f(lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__12; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__41; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeStrLitAux___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_String_drop(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__13; static lean_object* l_Lean_Syntax_expandInterpolatedStr___closed__2; LEAN_EXPORT lean_object* l_Array_filterSepElemsM___at_Array_filterSepElems___spec__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_monadNameGeneratorLift___rarg___lambda__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____boxed(lean_object*, lean_object*); static lean_object* l_Lean_Name_escapePart___closed__5; -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Init_Meta___hyg_6362_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Init_Meta___hyg_6500_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Init_Meta___hyg_6623_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Init_Meta___hyg_6744_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Init_Meta___hyg_6882_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Init_Meta___hyg_6241_(lean_object*, lean_object*, lean_object*); lean_object* l_Nat_min(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__23; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__21; static lean_object* l_Lean_Syntax_expandInterpolatedStr___closed__1; static lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__4; LEAN_EXPORT lean_object* l_Lean_Syntax_expandInterpolatedStr___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__33; static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____closed__2; static lean_object* l_Lean_mkSepArray___closed__1; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__17; +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_getRoot___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeBinLitAux___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_getRoot(lean_object*); uint8_t lean_uint32_dec_le(uint32_t, uint32_t); static lean_object* l_Lean_Name_reprPrec___closed__5; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__17; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__22; static lean_object* l_Lean_evalPrec___closed__3; LEAN_EXPORT lean_object* l_Lean_mkSepArray___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Name_reprPrec___closed__3; static lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__2; LEAN_EXPORT uint8_t l_Lean_Name_toString_maybePseudoSyntax(lean_object*); -static lean_object* l_Lean_myMacro____x40_Init_Meta___hyg_6744____closed__2; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__4; static lean_object* l_Lean_instQuoteName___closed__1; static lean_object* l_Lean_termEval__prec_____closed__9; LEAN_EXPORT lean_object* l_Lean_Meta_TransparencyMode_noConfusion___rarg___lambda__1___boxed(lean_object*); @@ -765,47 +758,54 @@ static lean_object* l_Lean_Name_escapePart___closed__3; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeStrLitAux(lean_object*, lean_object*, lean_object*); uint8_t lean_string_utf8_at_end(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instQuoteSyntax; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__13; LEAN_EXPORT lean_object* l_Lean_mkNode(lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__1; lean_object* lean_uint32_to_nat(uint32_t); static lean_object* l_Array_forInUnsafe_loop___at_Lean_mkSepArray___spec__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Name_replacePrefix(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_termEval__prio_____closed__5; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__17; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrLit_loop(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrec__1___closed__2; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__8; static lean_object* l_List_foldr___at_Lean_Syntax_decodeNameLit___spec__1___closed__4; lean_object* lean_nat_to_int(lean_object*); LEAN_EXPORT uint8_t l_Lean_Syntax_isToken(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8082____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_isFieldIdx_x3f___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrLit___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_evalPrio(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__20; LEAN_EXPORT lean_object* l_Lean_Meta_Simp_defaultMaxSteps; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__1; +static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__4; LEAN_EXPORT lean_object* l___private_Init_Data_String_Basic_0__Substring_takeWhileAux___at___private_Init_Meta_0__Lean_Syntax_splitNameLitAux___spec__1___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__1; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(lean_object*, size_t, size_t, lean_object*); -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__32; LEAN_EXPORT lean_object* l_Lean_Syntax_setHeadInfoAux(lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____closed__17; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__10; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__2; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__8; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__4; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__9; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__30; LEAN_EXPORT lean_object* l_Lean_Option_hasQuote___rarg(lean_object*); extern lean_object* l_Lean_interpolatedStrLitKind; static lean_object* l_Lean_termEval__prio_____closed__3; static lean_object* l_Lean_Meta_Simp_instInhabitedConfig___closed__1; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__2; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__3; +static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__1; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__29; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_updateLast___at_Lean_Syntax_setTailInfoAux___spec__1(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8076____boxed(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_isIdRest(uint32_t); uint8_t lean_string_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_mkLit(lean_object*, lean_object*, lean_object*); lean_object* l_Char_ofNat(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__4; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_mapSepElemsMAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____spec__5___boxed(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__8; lean_object* l_Repr_addAppParen(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_String_Basic_0__Substring_takeWhileAux___at___private_Init_Meta_0__Lean_Syntax_splitNameLitAux___spec__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__15; +static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__2; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_version_getMajor___boxed(lean_object* x_1) { _start: { @@ -11970,7 +11970,7 @@ return x_75; } } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__1() { +static lean_object* _init_l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__1() { _start: { lean_object* x_1; @@ -11978,17 +11978,17 @@ x_1 = lean_mk_string("Syntax"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__2() { +static lean_object* _init_l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_mkHole___closed__4; -x_2 = l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__1; +x_2 = l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__3() { +static lean_object* _init_l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__3() { _start: { lean_object* x_1; @@ -11996,21 +11996,21 @@ x_1 = lean_mk_string("addPrec"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__4() { +static lean_object* _init_l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__2; -x_2 = l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__3; +x_1 = l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__2; +x_2 = l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Init_Meta___hyg_6241_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; -x_4 = l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__4; +x_4 = l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__4; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -12052,7 +12052,7 @@ lean_inc(x_16); x_17 = lean_ctor_get(x_15, 1); lean_inc(x_17); lean_dec(x_15); -x_18 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_17); +x_18 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_17); x_19 = !lean_is_exclusive(x_18); if (x_19 == 0) { @@ -12140,7 +12140,7 @@ return x_40; } } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Meta___hyg_6362____closed__1() { +static lean_object* _init_l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrec__1___closed__1() { _start: { lean_object* x_1; @@ -12148,21 +12148,21 @@ x_1 = lean_mk_string("subPrec"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Meta___hyg_6362____closed__2() { +static lean_object* _init_l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrec__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__2; -x_2 = l_Lean_myMacro____x40_Init_Meta___hyg_6362____closed__1; +x_1 = l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__2; +x_2 = l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrec__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Init_Meta___hyg_6362_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; -x_4 = l_Lean_myMacro____x40_Init_Meta___hyg_6362____closed__2; +x_4 = l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrec__1___closed__2; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -12204,7 +12204,7 @@ lean_inc(x_16); x_17 = lean_ctor_get(x_15, 1); lean_inc(x_17); lean_dec(x_15); -x_18 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_17); +x_18 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_17); x_19 = !lean_is_exclusive(x_18); if (x_19 == 0) { @@ -12412,7 +12412,7 @@ x_1 = l_Lean_termEval__prec_____closed__11; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Init_Meta___hyg_6500_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__termEval__prec____1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -12809,7 +12809,7 @@ return x_75; } } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Meta___hyg_6623____closed__1() { +static lean_object* _init_l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrio__1___closed__1() { _start: { lean_object* x_1; @@ -12817,21 +12817,21 @@ x_1 = lean_mk_string("addPrio"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Meta___hyg_6623____closed__2() { +static lean_object* _init_l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrio__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__2; -x_2 = l_Lean_myMacro____x40_Init_Meta___hyg_6623____closed__1; +x_1 = l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__2; +x_2 = l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrio__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Init_Meta___hyg_6623_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrio__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; -x_4 = l_Lean_myMacro____x40_Init_Meta___hyg_6623____closed__2; +x_4 = l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrio__1___closed__2; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -12873,7 +12873,7 @@ lean_inc(x_16); x_17 = lean_ctor_get(x_15, 1); lean_inc(x_17); lean_dec(x_15); -x_18 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_17); +x_18 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_17); x_19 = !lean_is_exclusive(x_18); if (x_19 == 0) { @@ -12961,7 +12961,7 @@ return x_40; } } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Meta___hyg_6744____closed__1() { +static lean_object* _init_l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrio__1___closed__1() { _start: { lean_object* x_1; @@ -12969,21 +12969,21 @@ x_1 = lean_mk_string("subPrio"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Meta___hyg_6744____closed__2() { +static lean_object* _init_l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrio__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__2; -x_2 = l_Lean_myMacro____x40_Init_Meta___hyg_6744____closed__1; +x_1 = l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__2; +x_2 = l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrio__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Init_Meta___hyg_6744_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrio__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; -x_4 = l_Lean_myMacro____x40_Init_Meta___hyg_6744____closed__2; +x_4 = l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrio__1___closed__2; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -13025,7 +13025,7 @@ lean_inc(x_16); x_17 = lean_ctor_get(x_15, 1); lean_inc(x_17); lean_dec(x_15); -x_18 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_17); +x_18 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_17); x_19 = !lean_is_exclusive(x_18); if (x_19 == 0) { @@ -13215,7 +13215,7 @@ x_1 = l_Lean_termEval__prio_____closed__9; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Init_Meta___hyg_6882_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__termEval__prio____1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -14906,7 +14906,7 @@ LEAN_EXPORT lean_object* l_Lean_Syntax_expandInterpolatedStr___lambda__1(lean_ob _start: { lean_object* x_5; uint8_t x_6; -x_5 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_3, x_4); +x_5 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_3, x_4); x_6 = !lean_is_exclusive(x_5); if (x_6 == 0) { @@ -14976,7 +14976,7 @@ LEAN_EXPORT lean_object* l_Lean_Syntax_expandInterpolatedStr___lambda__2(lean_ob _start: { lean_object* x_5; uint8_t x_6; -x_5 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_3, x_4); +x_5 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_3, x_4); x_6 = !lean_is_exclusive(x_5); if (x_6 == 0) { @@ -15096,7 +15096,7 @@ lean_inc(x_10); x_11 = lean_ctor_get(x_9, 1); lean_inc(x_11); lean_dec(x_9); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_4, x_11); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_4, x_11); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -15389,7 +15389,7 @@ x_1 = 0; return x_1; } } -LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8076_(uint8_t x_1, uint8_t x_2) { +LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8082_(uint8_t x_1, uint8_t x_2) { _start: { lean_object* x_3; lean_object* x_4; uint8_t x_5; @@ -15401,7 +15401,7 @@ lean_dec(x_3); return x_5; } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8076____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8082____boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; uint8_t x_4; uint8_t x_5; lean_object* x_6; @@ -15409,7 +15409,7 @@ x_3 = lean_unbox(x_1); lean_dec(x_1); x_4 = lean_unbox(x_2); lean_dec(x_2); -x_5 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8076_(x_3, x_4); +x_5 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8082_(x_3, x_4); x_6 = lean_box(x_5); return x_6; } @@ -15418,7 +15418,7 @@ static lean_object* _init_l_Lean_Meta_instBEqTransparencyMode___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8076____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8082____boxed), 2, 0); return x_1; } } @@ -15430,7 +15430,7 @@ x_1 = l_Lean_Meta_instBEqTransparencyMode___closed__1; return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__1() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__1() { _start: { lean_object* x_1; @@ -15438,33 +15438,33 @@ x_1 = lean_mk_string("Lean.Meta.TransparencyMode.all"); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__2() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__1; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__3() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____closed__3; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__2; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__2; x_3 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__4() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__4() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__3; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__3; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -15472,23 +15472,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__5() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____closed__6; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__2; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__2; x_3 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__6() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__6() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__5; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__5; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -15496,7 +15496,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__7() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__7() { _start: { lean_object* x_1; @@ -15504,33 +15504,33 @@ x_1 = lean_mk_string("Lean.Meta.TransparencyMode.default"); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__8() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__7; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__7; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__9() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____closed__3; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__8; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__8; x_3 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__10() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__10() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__9; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__9; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -15538,23 +15538,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__11() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____closed__6; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__8; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__8; x_3 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__12() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__12() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__11; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__11; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -15562,7 +15562,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__13() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__13() { _start: { lean_object* x_1; @@ -15570,33 +15570,33 @@ x_1 = lean_mk_string("Lean.Meta.TransparencyMode.reducible"); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__14() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__14() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__13; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__13; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__15() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____closed__3; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__14; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__14; x_3 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__16() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__16() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__15; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__15; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -15604,23 +15604,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__17() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____closed__6; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__14; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__14; x_3 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__18() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__18() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__17; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__17; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -15628,7 +15628,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__19() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__19() { _start: { lean_object* x_1; @@ -15636,33 +15636,33 @@ x_1 = lean_mk_string("Lean.Meta.TransparencyMode.instances"); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__20() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__20() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__19; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__19; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__21() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____closed__3; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__20; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__20; x_3 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__22() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__22() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__21; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__21; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -15670,23 +15670,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__23() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta___hyg_924____closed__6; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__20; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__20; x_3 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__24() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__24() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__23; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__23; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -15694,7 +15694,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092_(uint8_t x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098_(uint8_t x_1, lean_object* x_2) { _start: { switch (x_1) { @@ -15706,14 +15706,14 @@ x_4 = lean_nat_dec_le(x_3, x_2); if (x_4 == 0) { lean_object* x_5; lean_object* x_6; -x_5 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__4; +x_5 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__4; x_6 = l_Repr_addAppParen(x_5, x_2); return x_6; } else { lean_object* x_7; lean_object* x_8; -x_7 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__6; +x_7 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__6; x_8 = l_Repr_addAppParen(x_7, x_2); return x_8; } @@ -15726,14 +15726,14 @@ x_10 = lean_nat_dec_le(x_9, x_2); if (x_10 == 0) { lean_object* x_11; lean_object* x_12; -x_11 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__10; +x_11 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__10; x_12 = l_Repr_addAppParen(x_11, x_2); return x_12; } else { lean_object* x_13; lean_object* x_14; -x_13 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__12; +x_13 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__12; x_14 = l_Repr_addAppParen(x_13, x_2); return x_14; } @@ -15746,14 +15746,14 @@ x_16 = lean_nat_dec_le(x_15, x_2); if (x_16 == 0) { lean_object* x_17; lean_object* x_18; -x_17 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__16; +x_17 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__16; x_18 = l_Repr_addAppParen(x_17, x_2); return x_18; } else { lean_object* x_19; lean_object* x_20; -x_19 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__18; +x_19 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__18; x_20 = l_Repr_addAppParen(x_19, x_2); return x_20; } @@ -15766,14 +15766,14 @@ x_22 = lean_nat_dec_le(x_21, x_2); if (x_22 == 0) { lean_object* x_23; lean_object* x_24; -x_23 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__22; +x_23 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__22; x_24 = l_Repr_addAppParen(x_23, x_2); return x_24; } else { lean_object* x_25; lean_object* x_26; -x_25 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__24; +x_25 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__24; x_26 = l_Repr_addAppParen(x_25, x_2); return x_26; } @@ -15781,13 +15781,13 @@ return x_26; } } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; x_3 = lean_unbox(x_1); lean_dec(x_1); -x_4 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092_(x_3, x_2); +x_4 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098_(x_3, x_2); lean_dec(x_2); return x_4; } @@ -15796,7 +15796,7 @@ static lean_object* _init_l_Lean_Meta_instReprTransparencyMode___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____boxed), 2, 0); return x_1; } } @@ -15933,7 +15933,7 @@ x_1 = l_Lean_Meta_Simp_instInhabitedConfig___closed__1; return x_1; } } -LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Meta_Simp_beqConfig____x40_Init_Meta___hyg_8359_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Meta_Simp_beqConfig____x40_Init_Meta___hyg_8365_(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; uint8_t x_5; uint8_t x_6; uint8_t x_7; uint8_t x_8; uint8_t x_9; uint8_t x_10; uint8_t x_11; uint8_t x_12; uint8_t x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; uint8_t x_17; uint8_t x_18; uint8_t x_19; uint8_t x_20; uint8_t x_21; uint8_t x_22; uint8_t x_23; uint8_t x_24; lean_object* x_25; lean_object* x_29; lean_object* x_35; lean_object* x_41; lean_object* x_47; lean_object* x_53; lean_object* x_59; lean_object* x_65; uint8_t x_71; @@ -16289,11 +16289,11 @@ goto block_64; } } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_beqConfig____x40_Init_Meta___hyg_8359____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_beqConfig____x40_Init_Meta___hyg_8365____boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Meta_0__Lean_Meta_Simp_beqConfig____x40_Init_Meta___hyg_8359_(x_1, x_2); +x_3 = l___private_Init_Meta_0__Lean_Meta_Simp_beqConfig____x40_Init_Meta___hyg_8365_(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); @@ -16304,7 +16304,7 @@ static lean_object* _init_l_Lean_Meta_Simp_instBEqConfig___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_Simp_beqConfig____x40_Init_Meta___hyg_8359____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_Simp_beqConfig____x40_Init_Meta___hyg_8365____boxed), 2, 0); return x_1; } } @@ -16316,7 +16316,7 @@ x_1 = l_Lean_Meta_Simp_instBEqConfig___closed__1; return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__1() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__1() { _start: { lean_object* x_1; @@ -16324,29 +16324,29 @@ x_1 = lean_mk_string("maxSteps"); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__2() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__1; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__3() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__2; +x_2 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__2; x_3 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__4() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__4() { _start: { lean_object* x_1; @@ -16354,29 +16354,29 @@ x_1 = lean_mk_string(" := "); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__5() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__4; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__4; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__6() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__3; -x_2 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__5; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__3; +x_2 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__5; x_3 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__7() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__7() { _start: { lean_object* x_1; @@ -16384,17 +16384,17 @@ x_1 = lean_mk_string("maxDischargeDepth"); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__8() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__7; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__7; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__9() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__9() { _start: { lean_object* x_1; @@ -16402,17 +16402,17 @@ x_1 = lean_mk_string("contextual"); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__10() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__9; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__9; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__11() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__11() { _start: { lean_object* x_1; @@ -16420,17 +16420,17 @@ x_1 = lean_mk_string("memoize"); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__12() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__12() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__11; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__11; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__13() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__13() { _start: { lean_object* x_1; @@ -16438,17 +16438,17 @@ x_1 = lean_mk_string("singlePass"); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__14() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__14() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__13; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__13; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__15() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__15() { _start: { lean_object* x_1; @@ -16456,17 +16456,17 @@ x_1 = lean_mk_string("zeta"); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__16() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__16() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__15; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__15; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__17() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__17() { _start: { lean_object* x_1; @@ -16474,17 +16474,17 @@ x_1 = lean_mk_string("beta"); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__18() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__18() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__17; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__17; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__19() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__19() { _start: { lean_object* x_1; @@ -16492,17 +16492,17 @@ x_1 = lean_mk_string("eta"); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__20() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__20() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__19; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__19; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__21() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__21() { _start: { lean_object* x_1; @@ -16510,17 +16510,17 @@ x_1 = lean_mk_string("iota"); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__22() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__22() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__21; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__21; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__23() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__23() { _start: { lean_object* x_1; @@ -16528,17 +16528,17 @@ x_1 = lean_mk_string("proj"); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__24() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__24() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__23; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__23; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__25() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__25() { _start: { lean_object* x_1; @@ -16546,17 +16546,17 @@ x_1 = lean_mk_string("decide"); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__26() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__26() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__25; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__25; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__27() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__27() { _start: { lean_object* x_1; @@ -16564,35 +16564,35 @@ x_1 = lean_mk_string("{ "); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__28() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__28() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__27; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__27; x_2 = lean_string_length(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__29() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__29() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__28; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__28; x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__30() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__30() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__27; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__27; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__31() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__31() { _start: { lean_object* x_1; @@ -16600,17 +16600,17 @@ x_1 = lean_mk_string(" }"); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__32() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__32() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__31; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__31; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__33() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__33() { _start: { lean_object* x_1; lean_object* x_2; @@ -16620,7 +16620,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__34() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__34() { _start: { lean_object* x_1; lean_object* x_2; @@ -16630,7 +16630,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578_(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; uint8_t x_26; uint8_t x_27; uint8_t x_28; uint8_t x_29; uint8_t x_30; uint8_t x_31; uint8_t x_32; uint8_t x_33; lean_object* x_34; @@ -16639,7 +16639,7 @@ lean_inc(x_3); x_4 = l_Nat_repr(x_3); x_5 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_5, 0, x_4); -x_6 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__6; +x_6 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__6; x_7 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_7, 0, x_6); lean_ctor_set(x_7, 1, x_5); @@ -16651,11 +16651,11 @@ x_10 = lean_box(1); x_11 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_11, 0, x_9); lean_ctor_set(x_11, 1, x_10); -x_12 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__8; +x_12 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__8; x_13 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_13, 0, x_11); lean_ctor_set(x_13, 1, x_12); -x_14 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__5; +x_14 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__5; x_15 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_15, 0, x_13); lean_ctor_set(x_15, 1, x_14); @@ -16673,7 +16673,7 @@ lean_ctor_set(x_20, 1, x_8); x_21 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_10); -x_22 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__10; +x_22 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__10; x_23 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_23, 0, x_21); lean_ctor_set(x_23, 1, x_22); @@ -16693,14 +16693,14 @@ lean_dec(x_1); if (x_25 == 0) { lean_object* x_154; -x_154 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__33; +x_154 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__33; x_34 = x_154; goto block_153; } else { lean_object* x_155; -x_155 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__34; +x_155 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__34; x_34 = x_155; goto block_153; } @@ -16716,7 +16716,7 @@ lean_ctor_set(x_36, 1, x_8); x_37 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_10); -x_38 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__12; +x_38 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__12; x_39 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_39, 0, x_37); lean_ctor_set(x_39, 1, x_38); @@ -16726,14 +16726,14 @@ lean_ctor_set(x_40, 1, x_14); if (x_26 == 0) { lean_object* x_151; -x_151 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__33; +x_151 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__33; x_41 = x_151; goto block_150; } else { lean_object* x_152; -x_152 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__34; +x_152 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__34; x_41 = x_152; goto block_150; } @@ -16749,7 +16749,7 @@ lean_ctor_set(x_43, 1, x_8); x_44 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_10); -x_45 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__14; +x_45 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__14; x_46 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_46, 0, x_44); lean_ctor_set(x_46, 1, x_45); @@ -16759,14 +16759,14 @@ lean_ctor_set(x_47, 1, x_14); if (x_27 == 0) { lean_object* x_148; -x_148 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__33; +x_148 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__33; x_48 = x_148; goto block_147; } else { lean_object* x_149; -x_149 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__34; +x_149 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__34; x_48 = x_149; goto block_147; } @@ -16782,7 +16782,7 @@ lean_ctor_set(x_50, 1, x_8); x_51 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_51, 0, x_50); lean_ctor_set(x_51, 1, x_10); -x_52 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__16; +x_52 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__16; x_53 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_53, 0, x_51); lean_ctor_set(x_53, 1, x_52); @@ -16792,14 +16792,14 @@ lean_ctor_set(x_54, 1, x_14); if (x_28 == 0) { lean_object* x_145; -x_145 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__33; +x_145 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__33; x_55 = x_145; goto block_144; } else { lean_object* x_146; -x_146 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__34; +x_146 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__34; x_55 = x_146; goto block_144; } @@ -16815,7 +16815,7 @@ lean_ctor_set(x_57, 1, x_8); x_58 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_10); -x_59 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__18; +x_59 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__18; x_60 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_60, 0, x_58); lean_ctor_set(x_60, 1, x_59); @@ -16825,14 +16825,14 @@ lean_ctor_set(x_61, 1, x_14); if (x_29 == 0) { lean_object* x_142; -x_142 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__33; +x_142 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__33; x_62 = x_142; goto block_141; } else { lean_object* x_143; -x_143 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__34; +x_143 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__34; x_62 = x_143; goto block_141; } @@ -16848,7 +16848,7 @@ lean_ctor_set(x_64, 1, x_8); x_65 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_65, 0, x_64); lean_ctor_set(x_65, 1, x_10); -x_66 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__20; +x_66 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__20; x_67 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_67, 0, x_65); lean_ctor_set(x_67, 1, x_66); @@ -16858,14 +16858,14 @@ lean_ctor_set(x_68, 1, x_14); if (x_30 == 0) { lean_object* x_139; -x_139 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__33; +x_139 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__33; x_69 = x_139; goto block_138; } else { lean_object* x_140; -x_140 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__34; +x_140 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__34; x_69 = x_140; goto block_138; } @@ -16881,7 +16881,7 @@ lean_ctor_set(x_71, 1, x_8); x_72 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_72, 0, x_71); lean_ctor_set(x_72, 1, x_10); -x_73 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__22; +x_73 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__22; x_74 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_74, 0, x_72); lean_ctor_set(x_74, 1, x_73); @@ -16891,14 +16891,14 @@ lean_ctor_set(x_75, 1, x_14); if (x_31 == 0) { lean_object* x_136; -x_136 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__33; +x_136 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__33; x_76 = x_136; goto block_135; } else { lean_object* x_137; -x_137 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__34; +x_137 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__34; x_76 = x_137; goto block_135; } @@ -16914,7 +16914,7 @@ lean_ctor_set(x_78, 1, x_8); x_79 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_79, 0, x_78); lean_ctor_set(x_79, 1, x_10); -x_80 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__24; +x_80 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__24; x_81 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_81, 0, x_79); lean_ctor_set(x_81, 1, x_80); @@ -16924,7 +16924,7 @@ lean_ctor_set(x_82, 1, x_14); if (x_32 == 0) { lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; -x_83 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__33; +x_83 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__33; x_84 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_84, 0, x_82); lean_ctor_set(x_84, 1, x_83); @@ -16934,7 +16934,7 @@ lean_ctor_set(x_85, 1, x_8); x_86 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_86, 0, x_85); lean_ctor_set(x_86, 1, x_10); -x_87 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__26; +x_87 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__26; x_88 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_88, 0, x_86); lean_ctor_set(x_88, 1, x_87); @@ -16947,15 +16947,15 @@ lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean x_90 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_90, 0, x_89); lean_ctor_set(x_90, 1, x_83); -x_91 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__30; +x_91 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__30; x_92 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_92, 0, x_91); lean_ctor_set(x_92, 1, x_90); -x_93 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__32; +x_93 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__32; x_94 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_94, 0, x_92); lean_ctor_set(x_94, 1, x_93); -x_95 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__29; +x_95 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__29; x_96 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_96, 0, x_95); lean_ctor_set(x_96, 1, x_94); @@ -16968,19 +16968,19 @@ return x_98; else { lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; uint8_t x_107; lean_object* x_108; -x_99 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__34; +x_99 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__34; x_100 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_100, 0, x_89); lean_ctor_set(x_100, 1, x_99); -x_101 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__30; +x_101 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__30; x_102 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_102, 0, x_101); lean_ctor_set(x_102, 1, x_100); -x_103 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__32; +x_103 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__32; x_104 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_104, 0, x_102); lean_ctor_set(x_104, 1, x_103); -x_105 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__29; +x_105 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__29; x_106 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_106, 0, x_105); lean_ctor_set(x_106, 1, x_104); @@ -16994,7 +16994,7 @@ 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_object* x_114; lean_object* x_115; -x_109 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__34; +x_109 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__34; x_110 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_110, 0, x_82); lean_ctor_set(x_110, 1, x_109); @@ -17004,7 +17004,7 @@ lean_ctor_set(x_111, 1, x_8); x_112 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_112, 0, x_111); lean_ctor_set(x_112, 1, x_10); -x_113 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__26; +x_113 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__26; x_114 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_114, 0, x_112); lean_ctor_set(x_114, 1, x_113); @@ -17014,19 +17014,19 @@ lean_ctor_set(x_115, 1, x_14); if (x_33 == 0) { lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; uint8_t x_124; lean_object* x_125; -x_116 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__33; +x_116 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__33; x_117 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_117, 0, x_115); lean_ctor_set(x_117, 1, x_116); -x_118 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__30; +x_118 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__30; x_119 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_119, 0, x_118); lean_ctor_set(x_119, 1, x_117); -x_120 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__32; +x_120 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__32; x_121 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_121, 0, x_119); lean_ctor_set(x_121, 1, x_120); -x_122 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__29; +x_122 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__29; x_123 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_123, 0, x_122); lean_ctor_set(x_123, 1, x_121); @@ -17042,15 +17042,15 @@ lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; x_126 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_126, 0, x_115); lean_ctor_set(x_126, 1, x_109); -x_127 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__30; +x_127 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__30; x_128 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_128, 0, x_127); lean_ctor_set(x_128, 1, x_126); -x_129 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__32; +x_129 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__32; x_130 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_130, 0, x_128); lean_ctor_set(x_130, 1, x_129); -x_131 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__29; +x_131 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__29; x_132 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_132, 0, x_131); lean_ctor_set(x_132, 1, x_130); @@ -17070,11 +17070,11 @@ return x_134; } } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572_(x_1, x_2); +x_3 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578_(x_1, x_2); lean_dec(x_2); return x_3; } @@ -17083,7 +17083,7 @@ static lean_object* _init_l_Lean_Meta_Simp_instReprConfig___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____boxed), 2, 0); return x_1; } } @@ -17255,7 +17255,7 @@ x_1 = l_Lean_Parser_Tactic_tacticErw_______closed__12; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__1() { _start: { lean_object* x_1; @@ -17263,17 +17263,17 @@ x_1 = lean_mk_string("seq1"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_tacticErw_______closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__1; +x_2 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__3() { _start: { lean_object* x_1; @@ -17281,17 +17281,17 @@ x_1 = lean_mk_string("rwSeq"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_tacticErw_______closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__3; +x_2 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__5() { _start: { lean_object* x_1; @@ -17299,7 +17299,7 @@ x_1 = lean_mk_string("rw"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__6() { _start: { lean_object* x_1; @@ -17307,17 +17307,17 @@ x_1 = lean_mk_string("config"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_tacticErw_______closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__6; +x_2 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__8() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__8() { _start: { lean_object* x_1; @@ -17325,7 +17325,7 @@ x_1 = lean_mk_string(":="); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__9() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__9() { _start: { lean_object* x_1; @@ -17333,17 +17333,17 @@ x_1 = lean_mk_string("structInst"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__10() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_mkHole___closed__6; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__9; +x_2 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__9; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__11() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__11() { _start: { lean_object* x_1; @@ -17351,7 +17351,7 @@ x_1 = lean_mk_string("{"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__12() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -17363,7 +17363,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__13() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__13() { _start: { lean_object* x_1; @@ -17371,17 +17371,17 @@ x_1 = lean_mk_string("group"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__14() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__13; +x_2 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__13; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__15() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__15() { _start: { lean_object* x_1; @@ -17389,17 +17389,17 @@ x_1 = lean_mk_string("structInstField"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__16() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_mkHole___closed__6; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__15; +x_2 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__15; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__17() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__17() { _start: { lean_object* x_1; @@ -17407,17 +17407,17 @@ x_1 = lean_mk_string("structInstLVal"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__18() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_mkHole___closed__6; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__17; +x_2 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__17; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__19() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__19() { _start: { lean_object* x_1; @@ -17425,22 +17425,22 @@ x_1 = lean_mk_string("transparency"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__20() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__20() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__19; +x_1 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__19; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__21() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__19; +x_1 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__19; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__20; +x_3 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__20; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -17448,32 +17448,32 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__22() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__19; +x_2 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__19; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__23() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__23() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__7; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__7; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__24() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__7; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__7; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__23; +x_3 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__23; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -17481,7 +17481,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__25() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__25() { _start: { lean_object* x_1; @@ -17489,17 +17489,17 @@ x_1 = lean_mk_string("Meta"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__26() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_mkHole___closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__25; +x_2 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__25; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__27() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__27() { _start: { lean_object* x_1; @@ -17507,17 +17507,17 @@ x_1 = lean_mk_string("TransparencyMode"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__28() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__26; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__27; +x_1 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__26; +x_2 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__27; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__29() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__29() { _start: { lean_object* x_1; @@ -17525,41 +17525,41 @@ x_1 = lean_mk_string("default"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__30() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__30() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__28; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__29; +x_1 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__28; +x_2 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__29; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__31() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__31() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__30; +x_2 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__30; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__32() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__32() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__31; +x_2 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__31; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__33() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__33() { _start: { lean_object* x_1; @@ -17567,39 +17567,39 @@ x_1 = lean_mk_string("optEllipsis"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__34() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__34() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_mkHole___closed__6; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__33; +x_2 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__33; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__35() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__35() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_mkOptionalNode___closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__12; +x_2 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__12; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__36() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__36() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__34; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__35; +x_1 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__34; +x_2 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__35; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__37() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__37() { _start: { lean_object* x_1; @@ -17607,7 +17607,7 @@ x_1 = lean_mk_string("}"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__38() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__38() { _start: { lean_object* x_1; lean_object* x_2; @@ -17616,7 +17616,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__39() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__39() { _start: { lean_object* x_1; lean_object* x_2; @@ -17625,7 +17625,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__40() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__40() { _start: { lean_object* x_1; lean_object* x_2; @@ -17634,7 +17634,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__41() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__41() { _start: { lean_object* x_1; lean_object* x_2; @@ -17643,19 +17643,19 @@ x_2 = l_Array_append___rarg(x_1, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__42() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__42() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Syntax_expandInterpolatedStr___lambda__2___closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__41; +x_2 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__41; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -17682,7 +17682,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -17693,7 +17693,7 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__5; +x_17 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__5; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); @@ -17703,27 +17703,27 @@ lean_inc(x_14); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_14); lean_ctor_set(x_20, 1, x_19); -x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__6; +x_21 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__6; lean_inc(x_14); x_22 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_22, 0, x_14); lean_ctor_set(x_22, 1, x_21); -x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__8; +x_23 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__8; lean_inc(x_14); x_24 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_24, 0, x_14); lean_ctor_set(x_24, 1, x_23); -x_25 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__11; +x_25 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__11; lean_inc(x_14); x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_14); lean_ctor_set(x_26, 1, x_25); -x_27 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__22; +x_27 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__22; lean_inc(x_15); lean_inc(x_16); x_28 = l_Lean_addMacroScope(x_16, x_27, x_15); x_29 = lean_box(0); -x_30 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__21; +x_30 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__21; lean_inc(x_14); x_31 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_31, 0, x_14); @@ -17732,16 +17732,16 @@ lean_ctor_set(x_31, 2, x_28); lean_ctor_set(x_31, 3, x_29); x_32 = l_Lean_Syntax_mkApp___closed__3; x_33 = lean_array_push(x_32, x_31); -x_34 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__12; +x_34 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__12; x_35 = lean_array_push(x_33, x_34); -x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__18; +x_36 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__18; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); -x_38 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__30; +x_38 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__30; x_39 = l_Lean_addMacroScope(x_16, x_38, x_15); -x_40 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__24; -x_41 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__32; +x_40 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__24; +x_41 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__32; lean_inc(x_14); x_42 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_42, 0, x_14); @@ -17753,13 +17753,13 @@ x_44 = lean_array_push(x_43, x_37); lean_inc(x_24); x_45 = lean_array_push(x_44, x_24); x_46 = lean_array_push(x_45, x_42); -x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__16; +x_47 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__16; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); x_49 = lean_array_push(x_32, x_48); x_50 = lean_array_push(x_49, x_34); -x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__14; +x_51 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__14; x_52 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_52, 0, x_51); lean_ctor_set(x_52, 1, x_50); @@ -17769,20 +17769,20 @@ x_55 = l_Lean_Syntax_expandInterpolatedStr___lambda__2___closed__2; x_56 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_56, 0, x_55); lean_ctor_set(x_56, 1, x_54); -x_57 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__37; +x_57 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__37; lean_inc(x_14); x_58 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_58, 0, x_14); lean_ctor_set(x_58, 1, x_57); -x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__38; +x_59 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__38; x_60 = lean_array_push(x_59, x_26); x_61 = lean_array_push(x_60, x_34); x_62 = lean_array_push(x_61, x_56); -x_63 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__36; +x_63 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__36; x_64 = lean_array_push(x_62, x_63); x_65 = lean_array_push(x_64, x_34); x_66 = lean_array_push(x_65, x_58); -x_67 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__10; +x_67 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__10; x_68 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_68, 0, x_67); lean_ctor_set(x_68, 1, x_66); @@ -17790,13 +17790,13 @@ x_69 = l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta_ x_70 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_70, 0, x_14); lean_ctor_set(x_70, 1, x_69); -x_71 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__39; +x_71 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__39; x_72 = lean_array_push(x_71, x_20); x_73 = lean_array_push(x_72, x_22); x_74 = lean_array_push(x_73, x_24); x_75 = lean_array_push(x_74, x_68); x_76 = lean_array_push(x_75, x_70); -x_77 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__7; +x_77 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___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); @@ -17806,16 +17806,16 @@ lean_ctor_set(x_80, 0, x_55); lean_ctor_set(x_80, 1, x_79); x_81 = l_Lean_Syntax_getOptional_x3f(x_11); lean_dec(x_11); -x_82 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__40; +x_82 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__40; x_83 = lean_array_push(x_82, x_18); x_84 = lean_array_push(x_83, x_80); x_85 = lean_array_push(x_84, x_9); if (lean_obj_tag(x_81) == 0) { lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; -x_86 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__42; +x_86 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__42; x_87 = lean_array_push(x_85, x_86); -x_88 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__4; +x_88 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__4; x_89 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_89, 0, x_88); lean_ctor_set(x_89, 1, x_87); @@ -17824,7 +17824,7 @@ x_91 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_91, 0, x_55); lean_ctor_set(x_91, 1, x_90); x_92 = lean_array_push(x_53, x_91); -x_93 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__2; +x_93 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__2; x_94 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_94, 0, x_93); lean_ctor_set(x_94, 1, x_92); @@ -17844,7 +17844,7 @@ x_99 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_99, 0, x_55); lean_ctor_set(x_99, 1, x_98); x_100 = lean_array_push(x_85, x_99); -x_101 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__4; +x_101 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__4; x_102 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_102, 0, x_101); lean_ctor_set(x_102, 1, x_100); @@ -17853,7 +17853,7 @@ x_104 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_104, 0, x_55); lean_ctor_set(x_104, 1, x_103); x_105 = lean_array_push(x_53, x_104); -x_106 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__2; +x_106 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__2; x_107 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_107, 0, x_106); lean_ctor_set(x_107, 1, x_105); @@ -17874,7 +17874,7 @@ lean_inc(x_110); x_111 = lean_ctor_get(x_2, 1); lean_inc(x_111); lean_dec(x_2); -x_112 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__5; +x_112 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__5; lean_inc(x_108); x_113 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_113, 0, x_108); @@ -17884,27 +17884,27 @@ lean_inc(x_108); x_115 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_115, 0, x_108); lean_ctor_set(x_115, 1, x_114); -x_116 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__6; +x_116 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__6; lean_inc(x_108); x_117 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_117, 0, x_108); lean_ctor_set(x_117, 1, x_116); -x_118 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__8; +x_118 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__8; lean_inc(x_108); x_119 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_119, 0, x_108); lean_ctor_set(x_119, 1, x_118); -x_120 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__11; +x_120 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__11; lean_inc(x_108); x_121 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_121, 0, x_108); lean_ctor_set(x_121, 1, x_120); -x_122 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__22; +x_122 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__22; lean_inc(x_110); lean_inc(x_111); x_123 = l_Lean_addMacroScope(x_111, x_122, x_110); x_124 = lean_box(0); -x_125 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__21; +x_125 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__21; lean_inc(x_108); x_126 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_126, 0, x_108); @@ -17913,16 +17913,16 @@ lean_ctor_set(x_126, 2, x_123); lean_ctor_set(x_126, 3, x_124); x_127 = l_Lean_Syntax_mkApp___closed__3; x_128 = lean_array_push(x_127, x_126); -x_129 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__12; +x_129 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__12; x_130 = lean_array_push(x_128, x_129); -x_131 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__18; +x_131 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__18; x_132 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_132, 0, x_131); lean_ctor_set(x_132, 1, x_130); -x_133 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__30; +x_133 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__30; x_134 = l_Lean_addMacroScope(x_111, x_133, x_110); -x_135 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__24; -x_136 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__32; +x_135 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__24; +x_136 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__32; lean_inc(x_108); x_137 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_137, 0, x_108); @@ -17934,13 +17934,13 @@ x_139 = lean_array_push(x_138, x_132); lean_inc(x_119); x_140 = lean_array_push(x_139, x_119); x_141 = lean_array_push(x_140, x_137); -x_142 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__16; +x_142 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__16; x_143 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_143, 0, x_142); lean_ctor_set(x_143, 1, x_141); x_144 = lean_array_push(x_127, x_143); x_145 = lean_array_push(x_144, x_129); -x_146 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__14; +x_146 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__14; x_147 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_147, 0, x_146); lean_ctor_set(x_147, 1, x_145); @@ -17950,20 +17950,20 @@ x_150 = l_Lean_Syntax_expandInterpolatedStr___lambda__2___closed__2; x_151 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_151, 0, x_150); lean_ctor_set(x_151, 1, x_149); -x_152 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__37; +x_152 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__37; lean_inc(x_108); x_153 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_153, 0, x_108); lean_ctor_set(x_153, 1, x_152); -x_154 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__38; +x_154 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__38; x_155 = lean_array_push(x_154, x_121); x_156 = lean_array_push(x_155, x_129); x_157 = lean_array_push(x_156, x_151); -x_158 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__36; +x_158 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__36; x_159 = lean_array_push(x_157, x_158); x_160 = lean_array_push(x_159, x_129); x_161 = lean_array_push(x_160, x_153); -x_162 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__10; +x_162 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__10; x_163 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_163, 0, x_162); lean_ctor_set(x_163, 1, x_161); @@ -17971,13 +17971,13 @@ x_164 = l_repr___at___private_Init_Meta_0__Lean_Name_reprSyntax____x40_Init_Meta x_165 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_165, 0, x_108); lean_ctor_set(x_165, 1, x_164); -x_166 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__39; +x_166 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__39; x_167 = lean_array_push(x_166, x_115); x_168 = lean_array_push(x_167, x_117); x_169 = lean_array_push(x_168, x_119); x_170 = lean_array_push(x_169, x_163); x_171 = lean_array_push(x_170, x_165); -x_172 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__7; +x_172 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__7; x_173 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_173, 0, x_172); lean_ctor_set(x_173, 1, x_171); @@ -17987,16 +17987,16 @@ lean_ctor_set(x_175, 0, x_150); lean_ctor_set(x_175, 1, x_174); x_176 = l_Lean_Syntax_getOptional_x3f(x_11); lean_dec(x_11); -x_177 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__40; +x_177 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__40; x_178 = lean_array_push(x_177, x_113); x_179 = lean_array_push(x_178, x_175); x_180 = lean_array_push(x_179, x_9); if (lean_obj_tag(x_176) == 0) { 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; -x_181 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__42; +x_181 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__42; x_182 = lean_array_push(x_180, x_181); -x_183 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__4; +x_183 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__4; x_184 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_184, 0, x_183); lean_ctor_set(x_184, 1, x_182); @@ -18005,7 +18005,7 @@ x_186 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_186, 0, x_150); lean_ctor_set(x_186, 1, x_185); x_187 = lean_array_push(x_148, x_186); -x_188 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__2; +x_188 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__2; x_189 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_189, 0, x_188); lean_ctor_set(x_189, 1, x_187); @@ -18027,7 +18027,7 @@ x_195 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_195, 0, x_150); lean_ctor_set(x_195, 1, x_194); x_196 = lean_array_push(x_180, x_195); -x_197 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__4; +x_197 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__4; x_198 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_198, 0, x_197); lean_ctor_set(x_198, 1, x_196); @@ -18036,7 +18036,7 @@ x_200 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_200, 0, x_150); lean_ctor_set(x_200, 1, x_199); x_201 = lean_array_push(x_148, x_200); -x_202 = l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__2; +x_202 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__2; x_203 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_203, 0, x_202); lean_ctor_set(x_203, 1, x_201); @@ -18390,18 +18390,18 @@ l_Lean_evalPrec___closed__2 = _init_l_Lean_evalPrec___closed__2(); lean_mark_persistent(l_Lean_evalPrec___closed__2); l_Lean_evalPrec___closed__3 = _init_l_Lean_evalPrec___closed__3(); lean_mark_persistent(l_Lean_evalPrec___closed__3); -l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__1 = _init_l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__1(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__1); -l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__2 = _init_l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__2(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__2); -l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__3 = _init_l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__3(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__3); -l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__4 = _init_l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__4(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Meta___hyg_6241____closed__4); -l_Lean_myMacro____x40_Init_Meta___hyg_6362____closed__1 = _init_l_Lean_myMacro____x40_Init_Meta___hyg_6362____closed__1(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Meta___hyg_6362____closed__1); -l_Lean_myMacro____x40_Init_Meta___hyg_6362____closed__2 = _init_l_Lean_myMacro____x40_Init_Meta___hyg_6362____closed__2(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Meta___hyg_6362____closed__2); +l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__1 = _init_l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__1(); +lean_mark_persistent(l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__1); +l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__2 = _init_l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__2(); +lean_mark_persistent(l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__2); +l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__3 = _init_l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__3(); +lean_mark_persistent(l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__3); +l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__4 = _init_l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__4(); +lean_mark_persistent(l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__4); +l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrec__1___closed__1 = _init_l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrec__1___closed__1(); +lean_mark_persistent(l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrec__1___closed__1); +l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrec__1___closed__2 = _init_l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrec__1___closed__2(); +lean_mark_persistent(l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrec__1___closed__2); l_Lean_termEval__prec_____closed__1 = _init_l_Lean_termEval__prec_____closed__1(); lean_mark_persistent(l_Lean_termEval__prec_____closed__1); l_Lean_termEval__prec_____closed__2 = _init_l_Lean_termEval__prec_____closed__2(); @@ -18428,14 +18428,14 @@ l_Lean_termEval__prec__ = _init_l_Lean_termEval__prec__(); lean_mark_persistent(l_Lean_termEval__prec__); l_Lean_evalPrio___closed__1 = _init_l_Lean_evalPrio___closed__1(); lean_mark_persistent(l_Lean_evalPrio___closed__1); -l_Lean_myMacro____x40_Init_Meta___hyg_6623____closed__1 = _init_l_Lean_myMacro____x40_Init_Meta___hyg_6623____closed__1(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Meta___hyg_6623____closed__1); -l_Lean_myMacro____x40_Init_Meta___hyg_6623____closed__2 = _init_l_Lean_myMacro____x40_Init_Meta___hyg_6623____closed__2(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Meta___hyg_6623____closed__2); -l_Lean_myMacro____x40_Init_Meta___hyg_6744____closed__1 = _init_l_Lean_myMacro____x40_Init_Meta___hyg_6744____closed__1(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Meta___hyg_6744____closed__1); -l_Lean_myMacro____x40_Init_Meta___hyg_6744____closed__2 = _init_l_Lean_myMacro____x40_Init_Meta___hyg_6744____closed__2(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Meta___hyg_6744____closed__2); +l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrio__1___closed__1 = _init_l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrio__1___closed__1(); +lean_mark_persistent(l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrio__1___closed__1); +l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrio__1___closed__2 = _init_l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrio__1___closed__2(); +lean_mark_persistent(l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrio__1___closed__2); +l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrio__1___closed__1 = _init_l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrio__1___closed__1(); +lean_mark_persistent(l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrio__1___closed__1); +l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrio__1___closed__2 = _init_l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrio__1___closed__2(); +lean_mark_persistent(l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrio__1___closed__2); l_Lean_termEval__prio_____closed__1 = _init_l_Lean_termEval__prio_____closed__1(); lean_mark_persistent(l_Lean_termEval__prio_____closed__1); l_Lean_termEval__prio_____closed__2 = _init_l_Lean_termEval__prio_____closed__2(); @@ -18497,54 +18497,54 @@ l_Lean_Meta_instBEqTransparencyMode___closed__1 = _init_l_Lean_Meta_instBEqTrans lean_mark_persistent(l_Lean_Meta_instBEqTransparencyMode___closed__1); l_Lean_Meta_instBEqTransparencyMode = _init_l_Lean_Meta_instBEqTransparencyMode(); lean_mark_persistent(l_Lean_Meta_instBEqTransparencyMode); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__1 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__1(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__1); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__2 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__2(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__2); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__3 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__3(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__3); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__4 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__4(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__4); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__5 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__5(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__5); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__6 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__6(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__6); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__7 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__7(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__7); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__8 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__8(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__8); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__9 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__9(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__9); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__10 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__10(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__10); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__11 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__11(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__11); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__12 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__12(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__12); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__13 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__13(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__13); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__14 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__14(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__14); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__15 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__15(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__15); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__16 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__16(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__16); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__17 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__17(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__17); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__18 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__18(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__18); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__19 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__19(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__19); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__20 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__20(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__20); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__21 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__21(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__21); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__22 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__22(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__22); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__23 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__23(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__23); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__24 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__24(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8092____closed__24); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__1 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__1(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__1); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__2 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__2(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__2); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__3 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__3(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__3); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__4 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__4(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__4); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__5 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__5(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__5); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__6 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__6(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__6); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__7 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__7(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__7); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__8 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__8(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__8); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__9 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__9(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__9); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__10 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__10(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__10); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__11 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__11(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__11); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__12 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__12(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__12); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__13 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__13(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__13); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__14 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__14(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__14); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__15 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__15(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__15); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__16 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__16(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__16); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__17 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__17(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__17); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__18 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__18(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__18); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__19 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__19(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__19); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__20 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__20(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__20); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__21 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__21(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__21); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__22 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__22(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__22); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__23 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__23(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__23); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__24 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__24(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_8098____closed__24); l_Lean_Meta_instReprTransparencyMode___closed__1 = _init_l_Lean_Meta_instReprTransparencyMode___closed__1(); lean_mark_persistent(l_Lean_Meta_instReprTransparencyMode___closed__1); l_Lean_Meta_instReprTransparencyMode = _init_l_Lean_Meta_instReprTransparencyMode(); @@ -18572,74 +18572,74 @@ l_Lean_Meta_Simp_instBEqConfig___closed__1 = _init_l_Lean_Meta_Simp_instBEqConfi lean_mark_persistent(l_Lean_Meta_Simp_instBEqConfig___closed__1); l_Lean_Meta_Simp_instBEqConfig = _init_l_Lean_Meta_Simp_instBEqConfig(); lean_mark_persistent(l_Lean_Meta_Simp_instBEqConfig); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__1 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__1(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__1); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__2 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__2(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__2); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__3 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__3(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__3); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__4 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__4(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__4); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__5 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__5(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__5); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__6 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__6(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__6); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__7 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__7(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__7); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__8 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__8(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__8); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__9 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__9(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__9); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__10 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__10(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__10); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__11 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__11(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__11); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__12 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__12(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__12); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__13 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__13(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__13); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__14 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__14(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__14); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__15 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__15(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__15); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__16 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__16(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__16); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__17 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__17(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__17); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__18 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__18(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__18); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__19 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__19(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__19); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__20 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__20(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__20); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__21 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__21(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__21); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__22 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__22(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__22); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__23 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__23(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__23); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__24 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__24(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__24); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__25 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__25(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__25); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__26 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__26(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__26); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__27 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__27(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__27); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__28 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__28(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__28); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__29 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__29(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__29); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__30 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__30(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__30); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__31 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__31(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__31); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__32 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__32(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__32); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__33 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__33(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__33); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__34 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__34(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8572____closed__34); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__1 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__1(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__1); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__2 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__2(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__2); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__3 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__3(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__3); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__4 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__4(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__4); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__5 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__5(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__5); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__6 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__6(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__6); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__7 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__7(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__7); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__8 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__8(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__8); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__9 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__9(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__9); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__10 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__10(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__10); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__11 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__11(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__11); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__12 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__12(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__12); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__13 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__13(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__13); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__14 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__14(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__14); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__15 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__15(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__15); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__16 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__16(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__16); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__17 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__17(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__17); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__18 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__18(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__18); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__19 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__19(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__19); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__20 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__20(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__20); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__21 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__21(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__21); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__22 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__22(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__22); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__23 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__23(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__23); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__24 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__24(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__24); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__25 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__25(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__25); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__26 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__26(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__26); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__27 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__27(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__27); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__28 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__28(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__28); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__29 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__29(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__29); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__30 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__30(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__30); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__31 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__31(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__31); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__32 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__32(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__32); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__33 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__33(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__33); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__34 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__34(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_8578____closed__34); l_Lean_Meta_Simp_instReprConfig___closed__1 = _init_l_Lean_Meta_Simp_instReprConfig___closed__1(); lean_mark_persistent(l_Lean_Meta_Simp_instReprConfig___closed__1); l_Lean_Meta_Simp_instReprConfig = _init_l_Lean_Meta_Simp_instReprConfig(); @@ -18673,90 +18673,90 @@ l_Lean_Parser_Tactic_tacticErw_______closed__12 = _init_l_Lean_Parser_Tactic_tac lean_mark_persistent(l_Lean_Parser_Tactic_tacticErw_______closed__12); l_Lean_Parser_Tactic_tacticErw____ = _init_l_Lean_Parser_Tactic_tacticErw____(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticErw____); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__5); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__6); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__7); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__8 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__8); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__9 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__9); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__10 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__10); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__11 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__11(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__11); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__12 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__12(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__12); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__13 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__13(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__13); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__14 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__14(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__14); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__15 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__15(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__15); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__16 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__16(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__16); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__17 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__17(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__17); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__18 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__18(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__18); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__19 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__19(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__19); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__20 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__20(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__20); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__21 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__21(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__21); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__22 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__22(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__22); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__23 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__23(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__23); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__24 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__24(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__24); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__25 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__25(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__25); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__26 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__26(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__26); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__27 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__27(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__27); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__28 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__28(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__28); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__29 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__29(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__29); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__30 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__30(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__30); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__31 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__31(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__31); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__32 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__32(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__32); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__33 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__33(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__33); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__34 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__34(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__34); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__35 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__35(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__35); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__36 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__36(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__36); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__37 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__37(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__37); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__38 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__38(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__38); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__39 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__39(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__39); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__40 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__40(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__40); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__41 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__41(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__41); -l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__42 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__42(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Meta___hyg_8781____closed__42); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__1 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__1); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__2 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__2); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__3 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__3); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__4 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__4); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__5 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__5); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__6 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__6); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__7 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__7); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__8 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__8); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__9 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__9(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__9); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__10 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__10(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__10); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__11 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__11(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__11); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__12 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__12(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__12); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__13 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__13(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__13); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__14 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__14(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__14); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__15 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__15(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__15); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__16 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__16(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__16); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__17 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__17(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__17); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__18 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__18(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__18); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__19 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__19(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__19); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__20 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__20(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__20); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__21 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__21(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__21); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__22 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__22(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__22); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__23 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__23(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__23); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__24 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__24(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__24); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__25 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__25(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__25); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__26 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__26(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__26); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__27 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__27(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__27); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__28 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__28(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__28); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__29 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__29(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__29); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__30 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__30(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__30); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__31 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__31(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__31); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__32 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__32(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__32); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__33 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__33(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__33); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__34 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__34(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__34); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__35 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__35(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__35); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__36 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__36(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__36); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__37 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__37(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__37); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__38 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__38(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__38); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__39 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__39(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__39); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__40 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__40(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__40); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__41 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__41(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__41); +l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__42 = _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__42(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__42); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Notation.c b/stage0/stdlib/Init/Notation.c index 37c8e94876..b18b4116d9 100644 --- a/stage0/stdlib/Init/Notation.c +++ b/stage0/stdlib/Init/Notation.c @@ -13,52 +13,50 @@ #ifdef __cplusplus extern "C" { #endif +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Bind__bind__1(lean_object*, lean_object*); static lean_object* l_precMax___closed__5; static lean_object* l_stx___x3c_x7c_x3e_____closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__8; static lean_object* l_term___u2218_____closed__3; -static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__1; static lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_8660____closed__4; static lean_object* l_Lean_Parser_Tactic_discharger___closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_16039____closed__8; static lean_object* l_Lean_Parser_Tactic_simpAll___closed__13; static lean_object* l_precMin1___closed__1; static lean_object* l_Lean_Parser_Tactic_contradiction___closed__3; static lean_object* l_term___x3c_x3c_x3c_____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_73____closed__3; static lean_object* l_term___x3c_x3d_____closed__6; static lean_object* l_Lean_Parser_Tactic_injections___closed__1; static lean_object* l_Lean_Parser_Syntax_addPrec___closed__17; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2558____closed__4; static lean_object* l_term_x25_x5b___x7c___x5d___closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__6; static lean_object* l_Lean_Parser_Tactic_exact___closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_6244____closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticTrivial; -LEAN_EXPORT lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__5; static lean_object* l_Lean_Parser_Tactic_intros___closed__7; -static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__5; static lean_object* l_termDepIfThenElse___closed__26; static lean_object* l_term___x2f_x5c_____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; LEAN_EXPORT lean_object* l_term___x3c_x3d__; static lean_object* l_Lean_Parser_Tactic_induction___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__8; static lean_object* l_term___x3c_x7c_x3e_____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1199____closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4943____closed__7; static lean_object* l_Lean_Parser_Tactic_cases___closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13527____closed__6; static lean_object* l_Lean_Parser_Tactic_first___closed__17; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__precMin1__1(lean_object*, lean_object*, lean_object*); static lean_object* l_rawNatLit___closed__9; static lean_object* l_Lean_Parser_Tactic_tacticRepeat_____closed__3; static lean_object* l_term___x25_____closed__1; LEAN_EXPORT lean_object* l_term___x3d__; static lean_object* l_stx___x3c_x7c_x3e_____closed__9; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__4; +static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__14; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Complement__complement__1(lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__11; static lean_object* l_term___x3c_x24_x3e_____closed__2; static lean_object* l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_9190____closed__8; static lean_object* l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__7; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4678____closed__6; static lean_object* l_term___x2b_x2b_____closed__4; static lean_object* l_term___u2264_____closed__3; LEAN_EXPORT lean_object* l_term___x5e_x5e_x5e__; @@ -66,86 +64,94 @@ static lean_object* l_Lean_Parser_Syntax_addPrec___closed__4; static lean_object* l_Lean_Parser_Tactic_first___closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_first; static lean_object* l_Lean_Parser_Tactic_letrec___closed__12; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__8; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__1; static lean_object* l_Lean_term__Matches_____closed__6; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_revert___closed__2; static lean_object* l_term___x25_____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_16039____closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_6244____closed__8; static lean_object* l_Lean_Parser_Tactic_induction___closed__13; static lean_object* l_precMin1___closed__4; static lean_object* l_term_x2d_____closed__1; static lean_object* l_term___x5c_x2f_____closed__3; static lean_object* l_Lean_Parser_Tactic_simp___closed__12; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__7; static lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__6; static lean_object* l_Lean_Parser_Tactic_generalize___closed__1; static lean_object* l_Lean_Parser_Tactic_intro___closed__8; static lean_object* l_Lean_Parser_Tactic_first___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3883____closed__9; static lean_object* l_Lean_Parser_Tactic_tacticHave_____closed__6; +static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__5; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__11; static lean_object* l_termDepIfThenElse___closed__12; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__3; static lean_object* l_term___x3e_x3e_x3e_____closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__2; +static lean_object* l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__8; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__13; static lean_object* l_term___u2218_____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1534____closed__11; static lean_object* l_prec_x28___x29___closed__5; static lean_object* l_Lean_Parser_Tactic_case___closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__4; static lean_object* l_term___x5e_x5e_x5e_____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12132____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__21; LEAN_EXPORT lean_object* l_term___x26_x26_x26__; static lean_object* l_termMax__prec___closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_9190____closed__3; static lean_object* l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__8; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__2; static lean_object* l_Lean_Parser_Tactic_apply___closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4413____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5473____closed__8; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__5; static lean_object* l_Lean_Parser_Syntax_addPrec___closed__9; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___u2227___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_term___x2d_____closed__1; static lean_object* l_termMax__prec___closed__1; static lean_object* l_precLead___closed__4; LEAN_EXPORT lean_object* l_term_x2d__; lean_object* lean_mk_empty_array_with_capacity(lean_object*); static lean_object* l_term___u2264_____closed__5; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__4; static lean_object* l_term___x3e_x3d_____closed__1; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__13; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__1; static lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__9; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_renameI; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__1; static lean_object* l_precMax___closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_refine_x27; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__3; static lean_object* l_Lean_Parser_Tactic_first___closed__9; -static lean_object* l_myMacro____x40_Init_Notation___hyg_10303____closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__6; lean_object* l_Lean_Syntax_getHeadInfo_x3f(lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__9; static lean_object* l_stx___x3c_x7c_x3e_____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4678____closed__1; static lean_object* l_Lean_Parser_Tactic_induction___closed__12; -static lean_object* l_myMacro____x40_Init_Notation___hyg_22078____closed__1; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x24_____xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_term___xd7_____closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticRfl; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__27; static lean_object* l_Lean_Parser_Tactic_generalize___closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14726____closed__10; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5208____closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_8925____closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_rwSeq; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__4; static lean_object* l_Lean_Parser_Tactic_config___closed__8; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic___x3c_x3b_x3e___xbb__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__7; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__2(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_intro___closed__9; extern lean_object* l_Lean_nullKind; -static lean_object* l_myMacro____x40_Init_Notation___hyg_8660____closed__8; LEAN_EXPORT lean_object* l_term___x3c_x3c_x3c__; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1400____closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; static lean_object* l_term___x3d_x3d_____closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__7; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__19; -static lean_object* l_myMacro____x40_Init_Notation___hyg_15580____closed__7; static lean_object* l_term_x5b___x5d___closed__9; -static lean_object* l_myMacro____x40_Init_Notation___hyg_6244____closed__9; static lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__6; static lean_object* l_Lean_Parser_Tactic_delta___closed__1; static lean_object* l_term___x2b_____closed__2; static lean_object* l_Lean_Parser_Tactic_simpAll___closed__10; static lean_object* l_term___x3c_____closed__1; static lean_object* l_Lean_Parser_Tactic_location___closed__7; -static lean_object* l_myMacro____x40_Init_Notation___hyg_9190____closed__4; static lean_object* l_Lean_Parser_Syntax_addPrec___closed__2; static lean_object* l_stx___x2c_x2a_x2c_x3f___closed__5; static lean_object* l_Lean_Parser_Syntax_subPrec___closed__5; @@ -153,216 +159,145 @@ static lean_object* l_prioLow___closed__5; static lean_object* l_Lean_Parser_Tactic_generalize___closed__6; lean_object* lean_name_mk_string(lean_object*, lean_object*); static lean_object* l_termDepIfThenElse___closed__11; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14726____closed__4; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20069____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13773____closed__3; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticNext_______x3d_x3e___xbb__1___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__9; static lean_object* l_Lean_Parser_Attr_simp___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Attr_simp; -static lean_object* l_myMacro____x40_Init_Notation___hyg_7865____closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__2; +static lean_object* l___aux__Init__Notation______macroRules__term_x21____1___closed__6; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__prioHigh__1(lean_object*, lean_object*, lean_object*); static lean_object* l_term___x26_x26_x26_____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3618____closed__9; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12375____closed__6; static lean_object* l_Lean_Parser_Syntax_addPrec___closed__1; static lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__6; static lean_object* l_Lean_Parser_Tactic_tacticRefine__lift_____closed__6; -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_4678_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_3883_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_4148_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_4413_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_6892_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_6786_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_7104_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_6998_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_7335_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_7210_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_7600_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_22078_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_8925_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_6680_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_9190_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_9436_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_9648_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_9542_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_5738_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_6002_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_6244_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_6574_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_6468_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_11098_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_11361_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_11604_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_7865_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_9754_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_8130_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_8395_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_8660_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_12931_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_10833_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_13129_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_13527_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_13327_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_13773_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_9966_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_9860_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_11869_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_10178_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_10072_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_10303_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_10568_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_13879_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_12132_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_12375_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_12668_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_733_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_650_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_991_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_899_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_816_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_1199_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_1098_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_1534_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_1400_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_1300_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_2823_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_567_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_3088_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_3353_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_239_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_156_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_73_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_485_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_402_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_331_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_4943_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_5208_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_5473_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_1685_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_3618_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_1995_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_1836_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_2293_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_2159_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_2558_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_14977_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_15173_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_15580_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_15363_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_14042_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_14466_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_14726_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_16039_(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__9; static lean_object* l_Lean_Parser_Tactic_injection___closed__2; static lean_object* l_term___x7c_x7c_____closed__3; static lean_object* l_Lean_Parser_Syntax_addPrio___closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__6; static lean_object* l_term___x2d_____closed__2; static lean_object* l_term___x5e_x5e_x5e_____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_9190____closed__9; static lean_object* l_term___x26_x26_____closed__5; +static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__3; static lean_object* l_Lean_Parser_Tactic_first___closed__2; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454____closed__1; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__5; static lean_object* l_Lean_Parser_Tactic_rwRule___closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__2; static lean_object* l_Lean_Parser_Tactic_rwSeq___closed__4; static lean_object* l_Lean_Parser_Tactic_locationWildcard___closed__1; static lean_object* l_Lean_Parser_Tactic_rwRule___closed__9; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13527____closed__5; static lean_object* l_term___x3e_x3e_x3e_____closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__4; static lean_object* l_term___x3e_x3d_____closed__2; static lean_object* l_Lean_Parser_Tactic_tacticRepeat_____closed__5; static lean_object* l_Lean_Parser_Tactic_delta___closed__7; -static lean_object* l_myMacro____x40_Init_Notation___hyg_8130____closed__3; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_term___x3e_x3e_x3d__; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13879____closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_changeWith; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2558____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__4; static lean_object* l_term___x7c_x7c_x7c_____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14726____closed__9; static lean_object* l_prio_x28___x29___closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__20; static lean_object* l_termIfThenElse___closed__9; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2558____closed__2; static lean_object* l_Lean_Parser_Attr_simp___closed__2; static lean_object* l_Lean_Parser_Tactic_skip___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3353____closed__5; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticNext_______x3d_x3e___xbb__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__8; static lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__1; static lean_object* l_term___u2228_____closed__2; static lean_object* l_Lean_Parser_Tactic_induction___closed__2; static lean_object* l_term___x3c_x3c_x3c_____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4413____closed__3; static lean_object* l_Lean_Parser_Tactic_simpLemma___closed__3; -static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__16; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__9; +LEAN_EXPORT lean_object* l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1_expandListLit___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_termDepIfThenElse___closed__31; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__6; static lean_object* l_stx___x3c_x7c_x3e_____closed__1; +static lean_object* l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__5; static lean_object* l_Lean_Parser_Tactic_rwWithRfl___closed__2; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__GE__ge__2(lean_object*, lean_object*); lean_object* l_Lean_SourceInfo_fromRef(lean_object*); -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__1; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__7; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__10; static lean_object* l_Lean_Parser_Tactic_simpAll___closed__8; static lean_object* l_Lean_Parser_Tactic_discharger___closed__3; static lean_object* l_term___x3c_____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14726____closed__8; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_simpAll; static lean_object* l_Lean_Parser_Tactic_generalize___closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__1; static lean_object* l_Lean_Parser_Tactic_first___closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3088____closed__5; static lean_object* l_Lean_Parser_Tactic_config___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14466____closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__9; static lean_object* l_Lean_Parser_Tactic_delta___closed__2; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__10; static lean_object* l_Lean_Parser_Tactic_revert___closed__8; static lean_object* l_term___x24_______closed__6; static lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1400____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_7865____closed__1; static lean_object* l_Lean_Parser_Tactic_split___closed__5; +static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__18; static lean_object* l_term___u2228_____closed__1; static lean_object* l_Lean_Parser_Tactic_locationWildcard___closed__2; static lean_object* l_term_xac_____closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__9; static lean_object* l_term___x2f_x5c_____closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2293____closed__1; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_intro___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_7865____closed__9; static lean_object* l_Lean_Parser_Tactic_simp___closed__10; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20069____closed__2; static lean_object* l_term_u2039___u203a___closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__8; +static lean_object* l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_u2039___u203a_xbb__1___closed__3; static lean_object* l_term___x3e_x3e_x3d_____closed__3; static lean_object* l_term___x3c_x3c_x3c_____closed__7; static lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3883____closed__4; static lean_object* l_term___x7c_x3e_____closed__1; static lean_object* l_term_u2039___u203a___closed__5; -static lean_object* l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1___closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__9; static lean_object* l_prec_x28___x29___closed__6; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Eq__1(lean_object*, lean_object*); static lean_object* l_term___x2f_____closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__10; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__4; static lean_object* l_term___x5e_x5e_x5e_____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_8660____closed__9; static lean_object* l_Lean_Parser_Tactic_simpPost___closed__2; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__8; static lean_object* l_Lean_Parser_Tactic_config___closed__9; static lean_object* l_Lean_Parser_Tactic_simpPre___closed__4; static lean_object* l_stx___x2c_x2b___closed__3; static lean_object* l_term___x2a_x3e_____closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13129____closed__6; static lean_object* l_Lean_Parser_Tactic_rwSeq___closed__8; static lean_object* l_Lean_Parser_Tactic_simpStar___closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2558____closed__5; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__8; static lean_object* l_term___x7c_x3e_____closed__2; +static lean_object* l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__4; static lean_object* l_precMax___closed__2; static lean_object* l_Lean_Parser_Syntax_subPrec___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3883____closed__8; +static lean_object* l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__3; +static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__15; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_term___x7c_x7c_____closed__5; static lean_object* l_Lean_Parser_Tactic_location___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_8925____closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__8; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__2; static lean_object* l_Lean_Parser_Tactic_refine_x27___closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__4; static lean_object* l_prioLow___closed__3; static lean_object* l_Lean_Parser_Tactic_clear___closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4148____closed__1; static lean_object* l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13879____closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__6; static lean_object* l_Lean_Parser_Tactic_tacticRefine__lift_____closed__3; static lean_object* l_term_x2d_____closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__7; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__16; -static lean_object* l_myMacro____x40_Init_Notation___hyg_8660____closed__5; +static lean_object* l___aux__Init__Notation______macroRules__prioHigh__1___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__2; static lean_object* l_Lean_Parser_Tactic_tacticHave_____closed__5; static lean_object* l_rawNatLit___closed__1; static lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__6; @@ -370,54 +305,64 @@ static lean_object* l_Lean_Parser_Tactic_rotateRight___closed__4; static lean_object* l_term___x3c_x24_x3e_____closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_inductionAlts; static lean_object* l_stx_x21_____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14042____closed__5; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_rename___closed__3; static lean_object* l_term___x3c_x2a_____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_6244____closed__3; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__4; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__BEq__beq__1(lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__1; static lean_object* l_Lean_Parser_Syntax_addPrec___closed__13; LEAN_EXPORT lean_object* l_term___xd7__; static lean_object* l_Lean_Parser_Tactic_specialize___closed__6; static lean_object* l_Lean_Parser_Tactic_specialize___closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1400____closed__8; -static lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1___closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_16039____closed__2; static lean_object* l_Lean_Parser_Tactic_simpAll___closed__4; LEAN_EXPORT lean_object* l_rawNatLit; static lean_object* l_Lean_Parser_Tactic_simp___closed__11; static lean_object* l_Lean_Parser_Tactic_change___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3088____closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__19; static lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__2; +static lean_object* l___aux__Init__Notation______macroRules__stx_x21____1___closed__4; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__3; +static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__22; static lean_object* l_term___x5e_____closed__7; static lean_object* l_Lean_Parser_Tactic_tacticUnhygienic_____closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_10833____closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__2; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__2(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__12; static lean_object* l_Lean_Parser_Tactic_simp___closed__19; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__3; static lean_object* l_Lean_Parser_Tactic_skip___closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__8; static lean_object* l_Lean_Parser_Tactic_discharger___closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__10; static lean_object* l_term___x7c_x7c_x7c_____closed__2; static lean_object* l_Lean_Parser_Tactic_injection___closed__8; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__8; static lean_object* l_Lean_Parser_Tactic_changeWith___closed__5; LEAN_EXPORT lean_object* l_prioMid; static lean_object* l_Lean_Parser_Tactic_rwSeq___closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__3; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticInfer__instance___closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__7; +static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__6; static lean_object* l_termMax__prec___closed__4; static lean_object* l_Lean_Parser_Tactic_apply___closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__6; static lean_object* l_Lean_Parser_Tactic_casesTarget___closed__4; static lean_object* l_Lean_Parser_Tactic_tacticHave_____closed__3; static lean_object* l_Lean_Parser_Tactic_change___closed__1; static lean_object* l_Lean_Parser_Tactic_tacticRefine__lift_____closed__5; static lean_object* l_Lean_Parser_Tactic_intro___closed__13; -static lean_object* l_myMacro____x40_Init_Notation___hyg_7335____closed__7; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13773____closed__4; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__2; +static lean_object* l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__10; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_term___u2264_____closed__6; static lean_object* l_termDepIfThenElse___closed__3; static lean_object* l_term___x3e_x3e_x3e_____closed__1; static lean_object* l_termDepIfThenElse___closed__18; static lean_object* l_term___x2d_____closed__4; static lean_object* l_term___x3c_x2a_____closed__1; -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16234_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16578_(lean_object*, lean_object*, lean_object*); static lean_object* l_prioMid___closed__2; static lean_object* l_Lean_Parser_Tactic_rename___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticUnhygienic__; @@ -429,111 +374,102 @@ static lean_object* l_term___x3e_x3d_____closed__6; static lean_object* l_Lean_Parser_Tactic_tacticTrivial___closed__4; static lean_object* l_Lean_Parser_Tactic_case___closed__11; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__12; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__3; static lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_6244____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5473____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5738____closed__7; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__8; static lean_object* l_Lean_Parser_Tactic_rwRule___closed__8; static lean_object* l_rawNatLit___closed__8; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14466____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_16039____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14042____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12132____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_8130____closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__3; static lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__16; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticRepeat__; -static lean_object* l_myMacro____x40_Init_Notation___hyg_16039____closed__9; static lean_object* l_Lean_Parser_Tactic_injection___closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__5; +LEAN_EXPORT lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__7; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_config; static lean_object* l_Lean_Parser_Tactic_simpStar___closed__3; static lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__1; static lean_object* l_term___x3e_x3e_____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14466____closed__1; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1___closed__3; static lean_object* l_rawNatLit___closed__2; static lean_object* l_Lean_Parser_Tactic_locationTargets___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__24; static lean_object* l_Lean_Parser_Tactic_cases___closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__8; static lean_object* l_Lean_Parser_Syntax_addPrec___closed__6; static lean_object* l_Lean_Parser_Tactic_first___closed__11; static lean_object* l_Lean_Parser_Tactic_refine___closed__5; static lean_object* l_term___xd7_____closed__7; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2293____closed__7; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3088____closed__7; +static lean_object* l___aux__Init__Notation______macroRules__term_x21____1___closed__1; static lean_object* l_Lean_Parser_Tactic_tacticTrivial___closed__1; static lean_object* l_term_x25_x5b___x7c___x5d___closed__6; static lean_object* l_term___x3e_x3e_____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4148____closed__7; static lean_object* l_termDepIfThenElse___closed__15; static lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__10; static lean_object* l_Lean_Parser_Tactic_exact___closed__1; static lean_object* l_term_x5b___x5d___closed__11; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12375____closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__6; static lean_object* l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__6; lean_object* lean_array_push(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_injection___closed__9; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14042____closed__18; lean_object* lean_array_get_size(lean_object*); -static lean_object* l_myMacro____x40_Init_Notation___hyg_14042____closed__15; LEAN_EXPORT lean_object* l_termDepIfThenElse; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12668____closed__4; static lean_object* l_precLead___closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__3; static lean_object* l_termDepIfThenElse___closed__24; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__6; static lean_object* l_Lean_Parser_Tactic_contradiction___closed__1; static lean_object* l_rawNatLit___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_7865____closed__8; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2293____closed__13; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12375____closed__5; static lean_object* l_Lean_Parser_Tactic_simp___closed__20; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__2; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__5; static lean_object* l_term___x24_______closed__3; static lean_object* l_term___x5e_x5e_x5e_____closed__6; static lean_object* l_term___x3c_x24_x3e_____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13129____closed__2; static lean_object* l_Lean_Parser_Tactic_rotateLeft___closed__7; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083____closed__3; static lean_object* l_term___x5c_x2f_____closed__7; -static lean_object* l_myMacro____x40_Init_Notation___hyg_10833____closed__6; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__5; static lean_object* l_Lean_Parser_Tactic_subst___closed__4; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__3; static lean_object* l_term___u2228_____closed__6; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__4; static lean_object* l_term___x5e_____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1400____closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__5; LEAN_EXPORT lean_object* l_term_x7e_x7e_x7e__; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18030____closed__2; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454____closed__3; LEAN_EXPORT lean_object* l_term___x3c__; -static lean_object* l_myMacro____x40_Init_Notation___hyg_11869____closed__5; +static lean_object* l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; static lean_object* l_Lean_Parser_Tactic_rotateRight___closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1534____closed__10; LEAN_EXPORT lean_object* l_term___x3c_x7c__; static lean_object* l_Lean_Parser_Tactic_intros___closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__6; static lean_object* l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_9190____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_22078____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14726____closed__11; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__1; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__2(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_term___x2b_x2b__; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3883____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__6; static lean_object* l_Lean_Parser_Tactic_renameI___closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__22; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__1; static lean_object* l_termDepIfThenElse___closed__7; static lean_object* l_Lean_Parser_Tactic_cases___closed__3; static lean_object* l_Lean_Parser_Tactic_generalizeArg___closed__5; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__1; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__prioLow__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__9; -static lean_object* l_myMacro____x40_Init_Notation___hyg_7865____closed__4; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__7; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__2; static lean_object* l_Lean_Parser_Tactic_clear___closed__4; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_x2c_x3f_xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_existsIntro___closed__4; static lean_object* l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__5; static lean_object* l_term___x3c_x2a_____closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_11604____closed__1; LEAN_EXPORT lean_object* l_stx___x3c_x7c_x3e__; static lean_object* l_Lean_Parser_Tactic_tacticTrivial___closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_9190____closed__7; -static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__3; static lean_object* l_Lean_Parser_Tactic_split___closed__3; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13773____closed__1; static lean_object* l_Lean_Parser_Tactic_revert___closed__1; static lean_object* l_term___x26_x26_____closed__4; static lean_object* l_Lean_Parser_Tactic_skip___closed__1; @@ -546,169 +482,169 @@ static lean_object* l_precArg___closed__1; static lean_object* l_term___x3c_x3d_____closed__4; static lean_object* l_Lean_Parser_Tactic_anyGoals___closed__2; static lean_object* l_Lean_Parser_Tactic_generalize___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2558____closed__6; static lean_object* l_Lean_Parser_Tactic_split___closed__7; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4678____closed__9; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14042____closed__22; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13879____closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__6; static lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____closed__6; static lean_object* l_Lean_Parser_Tactic_revert___closed__4; static lean_object* l_termMax__prec___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_11361____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14042____closed__14; static lean_object* l_Lean_Parser_Tactic_rwRule___closed__6; static lean_object* l_term_x2d_____closed__2; static lean_object* l_term_x21_____closed__3; static lean_object* l_term___u2265_____closed__1; +static lean_object* l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__6; static lean_object* l_Lean_Parser_Tactic_location___closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13773____closed__8; LEAN_EXPORT lean_object* l_term___x26_x26__; -static lean_object* l_myMacro____x40_Init_Notation___hyg_899____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__7; static lean_object* l_term___x24_______closed__5; static lean_object* l_Lean_Parser_Tactic_injection___closed__1; static lean_object* l_Lean_Parser_Tactic_case___closed__10; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__3; static lean_object* l_Lean_Parser_Tactic_locationHyp___closed__7; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__1; static lean_object* l_Lean_Parser_Tactic_done___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_11604____closed__4; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__precMax__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__9; static lean_object* l_Lean_Parser_Tactic_generalizeArg___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d__; -static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__7; static lean_object* l_Lean_Parser_Tactic_tacticInfer__instance___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_rename; static lean_object* l_Lean_Parser_Tactic_cases___closed__1; static lean_object* l_stx___x3c_x7c_x3e_____closed__8; -static lean_object* l_myMacro____x40_Init_Notation___hyg_6244____closed__1; static lean_object* l_stx_x21_____closed__2; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__2(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__1; static lean_object* l_Lean_Parser_Tactic_tacticUnhygienic_____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5473____closed__6; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__1; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HOr__hOr__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticTrivial___closed__2; static lean_object* l_Lean_Parser_Tactic_intros___closed__3; static lean_object* l_Lean_Parser_Tactic_rwRule___closed__2; static lean_object* l_termIfThenElse___closed__11; static lean_object* l_Lean_Parser_Tactic_apply___closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4943____closed__6; LEAN_EXPORT lean_object* l_Lean_term__Matches__; static lean_object* l_term_u2039___u203a___closed__7; static lean_object* l_Lean_Parser_Tactic_focus___closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13773____closed__10; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__5; static lean_object* l_Lean_Parser_Tactic_assumption___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_existsIntro; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__14; static lean_object* l_Lean_Parser_Tactic_intros___closed__6; static lean_object* l_prec_x28___x29___closed__2; static lean_object* l_Lean_Parser_Tactic_first___closed__12; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_contradiction; +static lean_object* l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__5; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Or__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_clear___closed__1; static lean_object* l_termWithout__expected__type_____closed__2; static lean_object* l_Lean_Parser_Tactic_clear___closed__2; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_clear; static lean_object* l_Lean_Parser_Tactic_withReducibleAndInstances___closed__6; static lean_object* l_Lean_Parser_Tactic_letrec___closed__9; static lean_object* l_precMin___closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_11361____closed__1; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__List__cons__1(lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__3; static lean_object* l_Lean_Parser_Tactic_case___closed__4; static lean_object* l_Lean_Parser_Tactic_rotateLeft___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12132____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14042____closed__16; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__28; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift_x27____1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_simp___closed__17; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_rwWithRfl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Notation___hyg_13527____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__7; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__9; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__6; static lean_object* l_term___x3c_x7c_x3e_____closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__5; static lean_object* l_stx___x2c_x2a_x2c_x3f___closed__3; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__precLead__1(lean_object*, lean_object*, lean_object*); static lean_object* l_term___x2f_____closed__1; static lean_object* l_stx___x2c_x2a___closed__1; static lean_object* l_term___x24_______closed__2; static lean_object* l_term___x2f_x5c_____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4678____closed__7; static lean_object* l_Lean_Parser_Tactic_subst___closed__1; static lean_object* l_term___x7c_x7c_____closed__2; -static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__9; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__3; static lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__8; +static lean_object* l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__6; static lean_object* l_Lean_Parser_Tactic_simpErase___closed__4; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1___closed__3; static lean_object* l_term_x21_____closed__4; -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16234__expandListLit(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticRefine__lift_x27_____closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_induction; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__3; static lean_object* l_Lean_Parser_Tactic_induction___closed__19; -static lean_object* l_myMacro____x40_Init_Notation___hyg_6002____closed__6; static lean_object* l_Lean_Parser_Tactic_rwWithRfl___closed__3; static lean_object* l_Lean_Parser_Tactic_letrec___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_8130____closed__7; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_x2c_x3f_xbb__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_simp; static lean_object* l_Lean_Parser_Tactic_simp___closed__9; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2159____closed__2; static lean_object* l_Lean_Parser_Tactic_tacticNext_______x3d_x3e_____closed__5; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__2(lean_object*, lean_object*, lean_object*); static lean_object* l_term___x3c_x7c_____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12668____closed__7; static lean_object* l_prioDefault___closed__4; static lean_object* l_termDepIfThenElse___closed__16; +static lean_object* l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__6; static lean_object* l_Lean_Parser_Tactic_discharger___closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2159____closed__1; static lean_object* l_Lean_Parser_Tactic_tacticHave_____closed__7; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__15; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21226____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__6; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__2(lean_object*, lean_object*, lean_object*); static lean_object* l_term___u2218_____closed__8; -static lean_object* l_myMacro____x40_Init_Notation___hyg_11604____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2823____closed__7; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__18; static lean_object* l_term_x21_____closed__5; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__2; static lean_object* l_Lean_Parser_Tactic_generalizeArg___closed__2; static lean_object* l_Lean_Parser_Tactic_withReducible___closed__4; static lean_object* l_precMin___closed__2; static lean_object* l_term___x3c_x3d_____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12375____closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_11869____closed__2; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1___closed__1; static lean_object* l_stx___x3f___closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_6244____closed__6; static lean_object* l_term___x24_______closed__8; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13527____closed__4; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__3; static lean_object* l_Lean_Parser_Tactic_tacticAdmit___closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__7; static lean_object* l_Lean_Parser_Syntax_addPrio___closed__7; static lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__15; static lean_object* l_Lean_Parser_Tactic_tacticInfer__instance___closed__1; static lean_object* l_term___x3a_x3a_____closed__4; static lean_object* l_Lean_Parser_Tactic_cases___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3353____closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_assumption; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__14; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5208____closed__7; LEAN_EXPORT lean_object* l_term___x3e__; LEAN_EXPORT lean_object* l_termMax__prec; static lean_object* l_Lean_Parser_Tactic_subst___closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__5; static lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__7; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__6; static lean_object* l_Lean_Parser_Tactic_focus___closed__4; static lean_object* l_term___x7c_x7c_____closed__1; static lean_object* l_Lean_Parser_Tactic_rotateLeft___closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12375____closed__8; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14466____closed__6; static lean_object* l_Lean_Parser_Tactic_change___closed__2; static lean_object* l_Lean_Parser_Tactic_tacticUnhygienic_____closed__1; static lean_object* l_Lean_Parser_Tactic_anyGoals___closed__1; static lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_15580____closed__6; static lean_object* l_term_xac_____closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__25; static lean_object* l_Lean_Parser_Tactic_cases___closed__9; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1534____closed__8; static lean_object* l_Lean_Parser_Tactic_induction___closed__11; static lean_object* l_Lean_Parser_Tactic_traceState___closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2293____closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__7; static lean_object* l_Lean_Parser_Tactic_intro___closed__12; static lean_object* l_term___x24_______closed__1; static lean_object* l_Lean_Parser_Tactic_simp___closed__8; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3883____closed__2; static lean_object* l_term___x3c_x24_x3e_____closed__3; static lean_object* l_term_x21_____closed__2; +static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__20; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticAdmit__1___closed__1; static lean_object* l_term___x7c_x7c_x7c_____closed__6; static lean_object* l_term___x5c_x2f_____closed__5; static lean_object* l_term___u2264_____closed__1; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__10; static lean_object* l_Lean_Parser_Tactic_config___closed__7; +static lean_object* l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__9; static lean_object* l_stx___x2a___closed__1; static lean_object* l_Lean_Parser_Tactic_location___closed__6; static lean_object* l_Lean_Parser_Tactic_clear___closed__3; @@ -716,6 +652,7 @@ static lean_object* l_term___x24_______closed__4; static lean_object* l_Lean_Parser_Tactic_intros___closed__8; static lean_object* l_Lean_Parser_Tactic_split___closed__1; static lean_object* l_term___x3d_____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__5; LEAN_EXPORT lean_object* l_stx___x2c_x2a_x2c_x3f; static lean_object* l_Lean_Parser_Attr_simp___closed__7; static lean_object* l_term___x3e_x3e_____closed__4; @@ -723,52 +660,64 @@ static lean_object* l_term___x3d_____closed__4; static lean_object* l_termDepIfThenElse___closed__20; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticHave__; static lean_object* l_term___u2227_____closed__1; -static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__15; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__3; static lean_object* l_Lean_Parser_Attr_simp___closed__3; static lean_object* l_Lean_Parser_Tactic_rename___closed__10; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5738____closed__3; static lean_object* l_Lean_Parser_Tactic_locationHyp___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_8130____closed__8; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__3; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__2(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_case; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__7; static lean_object* l_term___x2f_____closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_8660____closed__2; static lean_object* l_term_x5b___x5d___closed__10; static lean_object* l_Lean_Parser_Tactic_traceState___closed__1; static lean_object* l_term___x3c_x2a_____closed__3; +static lean_object* l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__4; static lean_object* l_term___x3e_x3d_____closed__5; static lean_object* l_Lean_Parser_Tactic_location___closed__2; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave_x27____1___closed__1; static lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__5; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_generalizeArg___closed__9; static lean_object* l_Lean_Parser_Tactic_delta___closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_8925____closed__2; static lean_object* l_Lean_Parser_Tactic_traceState___closed__3; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_allGoals; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__3; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___u2264___xbb__2(lean_object*, lean_object*, lean_object*); static lean_object* l_term___x3c_x7c_____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_6468____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__7; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1___closed__2; static lean_object* l_Lean_Parser_Tactic_refine___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12375____closed__9; static lean_object* l_Lean_Parser_Tactic_induction___closed__16; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__5; static lean_object* l_termWithout__expected__type_____closed__4; static lean_object* l_Lean_Parser_Tactic_withReducibleAndInstances___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_cases; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__7; static lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__9; static lean_object* l_term___x3c_x7c_x3e_____closed__4; static lean_object* l_term_x21_____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1300____closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__11; static lean_object* l_term___u2218_____closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__1; static lean_object* l_termDepIfThenElse___closed__32; static lean_object* l_stx___x2c_x2a_x2c_x3f___closed__2; static lean_object* l_termDepIfThenElse___closed__10; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_allGoals___closed__3; static lean_object* l_Lean_Parser_Tactic_subst___closed__6; +static lean_object* l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticRefine__lift__; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__9; static lean_object* l_term___x3e_x3e_____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1098____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_8660____closed__6; static lean_object* l_Lean_Parser_Tactic_tacticNext_______x3d_x3e_____closed__8; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__1; LEAN_EXPORT lean_object* l_term___x3c_x2a__; static lean_object* l_Lean_Parser_Attr_simp___closed__5; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_assumption___closed__1; static lean_object* l_Lean_Parser_Tactic_letrec___closed__13; static lean_object* l_stx___x2a___closed__2; @@ -778,98 +727,107 @@ static lean_object* l_Lean_Parser_Tactic_apply___closed__3; static lean_object* l_Lean_Parser_Tactic_clear___closed__5; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__5; static lean_object* l_Lean_Parser_Tactic_tacticInfer__instance___closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__6; static lean_object* l_Lean_Parser_Tactic_tacticAdmit___closed__2; static lean_object* l_term___x3c_x3c_x3c_____closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4413____closed__1; lean_object* lean_nat_sub(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_locationHyp___closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2159____closed__4; static lean_object* l_Lean_Parser_Tactic_generalizeArg___closed__8; static lean_object* l_Lean_Parser_Tactic_tacticUnhygienic_____closed__4; static lean_object* l_termIfThenElse___closed__12; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__6; +LEAN_EXPORT lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_revert; static lean_object* l_term_xac_____closed__1; static lean_object* l_stx___x3f___closed__2; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_term___x7c_x7c__; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_generalize; static lean_object* l_stx___x2c_x2a___closed__2; static lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__3; static lean_object* l_Lean_Parser_Tactic_changeWith___closed__2; static lean_object* l_term___x25_____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_8925____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__4; static lean_object* l_Lean_Parser_Tactic_withReducible___closed__2; static lean_object* l_stx___x3c_x7c_x3e_____closed__3; -static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__5; static lean_object* l_Lean_Parser_Tactic_simpErase___closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4678____closed__4; static lean_object* l_term___x3c_x24_x3e_____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1534____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12132____closed__6; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__2(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__4; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__termMax__prec__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticAdmit___closed__5; static lean_object* l_term___x3e_x3d_____closed__3; static lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__2; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Or__2(lean_object*, lean_object*); static lean_object* l_term___x2a_____closed__7; -static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__14; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12375____closed__2; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__20; static lean_object* l_term___x24_______closed__9; static lean_object* l_Lean_Parser_Tactic_changeWith___closed__8; static lean_object* l_Lean_Parser_Tactic_focus___closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_11869____closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5738____closed__5; static lean_object* l_precArg___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4678____closed__3; static lean_object* l_term___x3c_x7c_____closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_locationTargets; static lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__6; static lean_object* l_Lean_Parser_Tactic_change___closed__8; -static lean_object* l_myMacro____x40_Init_Notation___hyg_6002____closed__7; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__1; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__letrec__1___closed__3; static lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__8; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13327____closed__6; +static lean_object* l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__11; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HAnd__hAnd__1(lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__12; static lean_object* l_Lean_Parser_Syntax_addPrec___closed__3; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__7; static lean_object* l_stx___x2c_x2a___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_8925____closed__6; static lean_object* l_Lean_Parser_Tactic_traceState___closed__2; static lean_object* l_term___x2f_____closed__3; static lean_object* l_Lean_Parser_Tactic_discharger___closed__9; static lean_object* l_Lean_Parser_Syntax_subPrio___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_9190____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__6; LEAN_EXPORT lean_object* l_term___x3a_x3a__; static lean_object* l_Lean_Parser_Tactic_tacticRfl___closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticAdmit; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13879____closed__8; static lean_object* l_Lean_Parser_Tactic_location___closed__1; static lean_object* l_prec_x28___x29___closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4678____closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__23; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Syntax_addPrio___closed__3; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_prioLow; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_rewriteSeq; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__letrec__1___closed__2; static lean_object* l_term___x3a_x3a_____closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_simpPre; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3353____closed__6; static lean_object* l_term___x3e_x3e_x3d_____closed__1; static lean_object* l_term___u2218_____closed__4; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_withReducibleAndInstances___closed__1; static lean_object* l_stx___x3f___closed__3; -static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1300____closed__2; +static lean_object* l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__5; +static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__10; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__letrec__1___closed__1; static lean_object* l_Lean_Parser_Tactic_intro___closed__11; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13879____closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1098____closed__7; static lean_object* l_Lean_Parser_Tactic_discharger___closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_focus; static lean_object* l_term_xac_____closed__2; static lean_object* l_termDepIfThenElse___closed__23; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__13; LEAN_EXPORT lean_object* l_precMin; static lean_object* l_term___x2a_x3e_____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5473____closed__5; static lean_object* l_Lean_Parser_Tactic_refine_x27___closed__5; static lean_object* l_prioLow___closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2558____closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__9; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Syntax_addPrec___closed__15; static lean_object* l_prec_x28___x29___closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__5; static lean_object* l_Lean_Parser_Tactic_intros___closed__2; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__12; static lean_object* l_term___x5e_____closed__6; @@ -878,56 +836,59 @@ static lean_object* l_Lean_Parser_Tactic_simpAll___closed__11; static lean_object* l_termDepIfThenElse___closed__13; LEAN_EXPORT lean_object* l_stx___x2b; static lean_object* l_term___x2a_x3e_____closed__3; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__11; static lean_object* l_Lean_Parser_Tactic_locationHyp___closed__10; +static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__7; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticShow_____closed__3; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_rotateLeft; static lean_object* l_Lean_Parser_Tactic_focus___closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5473____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4148____closed__2; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave_x27____1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_changeWith___closed__1; +static lean_object* l___aux__Init__Notation______macroRules__term_x21____1___closed__2; static lean_object* l_Lean_Parser_Syntax_addPrio___closed__1; static lean_object* l_term___x7c_x7c_x7c_____closed__5; static lean_object* l_termIfThenElse___closed__1; static lean_object* l_prec_x28___x29___closed__8; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__6; static lean_object* l_Lean_Parser_Syntax_addPrec___closed__14; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__1; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__2(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__7; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Not__1(lean_object*, lean_object*); static lean_object* l_stx_x21_____closed__5; static lean_object* l_prioHigh___closed__3; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___u2228___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_split___closed__2; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__15; static lean_object* l_Lean_Parser_Tactic_cases___closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__6; static lean_object* l_stx___x2c_x2a_x2c_x3f___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__9; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__3; static lean_object* l_Lean_Parser_Syntax_addPrec___closed__5; static lean_object* l_Lean_Parser_Tactic_tacticAdmit___closed__1; static lean_object* l_stx___x3c_x7c_x3e_____closed__6; static lean_object* l_term___x2f_____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13129____closed__9; static lean_object* l_term___x3c_____closed__5; static lean_object* l_prioHigh___closed__1; static lean_object* l_Lean_Parser_Tactic_constructor___closed__3; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__16; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14726____closed__6; static lean_object* l_term___x3c_____closed__3; static lean_object* l_prioLow___closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12375____closed__1; static lean_object* l_Lean_Parser_Tactic_induction___closed__7; static lean_object* l_term___x3a_x3a_____closed__3; static lean_object* l_Lean_Parser_Tactic_renameI___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2293____closed__12; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_simpStar; static lean_object* l_Lean_Parser_Tactic_revert___closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4413____closed__9; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__3(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_prio_x28___x29; LEAN_EXPORT lean_object* l_term___x2d__; static lean_object* l_term___x5c_x2f_____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5738____closed__6; static lean_object* l_Lean_Parser_Tactic_tacticRfl___closed__3; static lean_object* l_Lean_Parser_Tactic_simpAll___closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_6468____closed__2; -static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__8; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__precArg__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_split___closed__6; static lean_object* l_stx___x2c_x2b___closed__4; static lean_object* l_Lean_Parser_Tactic_simp___closed__4; @@ -938,65 +899,62 @@ static lean_object* l_Lean_Parser_Tactic_intro___closed__10; LEAN_EXPORT lean_object* l_precLead; static lean_object* l_Lean_Parser_Tactic_injections___closed__2; static lean_object* l_precMin1___closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13527____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_9190____closed__2; +static lean_object* l___aux__Init__Notation______macroRules__precMin1__1___closed__1; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x7c___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_prioHigh___closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__10; -static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__2; +static lean_object* l___aux__Init__Notation______macroRules__prioDefault__1___closed__1; static lean_object* l_term_x25_x5b___x7c___x5d___closed__7; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3088____closed__6; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454____closed__2; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__3; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__or__1(lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__5; static lean_object* l_Lean_Parser_Tactic_changeWith___closed__7; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__2; static lean_object* l_Lean_Parser_Tactic_apply___closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__7; static lean_object* l_Lean_Parser_Syntax_addPrec___closed__7; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_precMin1___closed__3; static lean_object* l_Lean_Parser_Tactic_delta___closed__5; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Functor__map__1(lean_object*, lean_object*); static lean_object* l_term___u2218_____closed__9; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__4; static lean_object* l_Lean_Parser_Tactic_letrec___closed__11; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_10303____closed__5; static lean_object* l_Lean_Parser_Tactic_revert___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__12; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13773____closed__6; static lean_object* l_Lean_Parser_Tactic_intros___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticRefine__lift_x27__; static lean_object* l_term___x5e_x5e_x5e_____closed__7; -static lean_object* l_myMacro____x40_Init_Notation___hyg_8660____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__21; static lean_object* l_Lean_Parser_Tactic_simp___closed__13; static lean_object* l_Lean_Parser_Tactic_injection___closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__7; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__3; static lean_object* l_Lean_Parser_Syntax_addPrio___closed__2; static lean_object* l_Lean_Parser_Tactic_tacticRefine__lift_x27_____closed__3; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__7; static lean_object* l_Lean_Parser_Tactic_simpPre___closed__1; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1400____closed__7; +static lean_object* l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__4; static lean_object* l_term___x3e_x3d_____closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1199____closed__1; static lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__5; static lean_object* l_Lean_Parser_Tactic_rotateLeft___closed__6; static lean_object* l_term_xac_____closed__3; -static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__5; static lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__3; static lean_object* l_Lean_Parser_Tactic_config___closed__10; static lean_object* l_term___x7c_x7c_____closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_6002____closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__3; static lean_object* l_prio_x28___x29___closed__5; +static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__16; static lean_object* l_Lean_Parser_Tactic_tacticShow_____closed__2; static lean_object* l_Lean_Parser_Tactic_revert___closed__6; static lean_object* l_term___x2a_____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4148____closed__4; static lean_object* l_prioDefault___closed__2; static lean_object* l_Lean_Parser_Tactic_discharger___closed__1; LEAN_EXPORT lean_object* l_term___x7c_x7c_x7c__; static lean_object* l_prioMid___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14042____closed__10; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4413____closed__8; static lean_object* l_Lean_Parser_Tactic_simpLemma___closed__4; -static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__3; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_term___x3a_x3a_____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4678____closed__8; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__6; static lean_object* l_precLead___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_delta; static lean_object* l_Lean_Parser_Tactic_casesTarget___closed__1; @@ -1005,217 +963,227 @@ LEAN_EXPORT lean_object* l_prioDefault; static lean_object* l_Lean_Parser_Tactic_injections___closed__4; static lean_object* l_term___x3c_x7c_x3e_____closed__3; static lean_object* l_Lean_Parser_Tactic_changeWith___closed__4; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HDiv__hDiv__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__8; static lean_object* l_Lean_Parser_Tactic_letrec___closed__1; static lean_object* l_termDepIfThenElse___closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5473____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4413____closed__4; static lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__14; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__20; static lean_object* l_term___x24_______closed__13; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2293____closed__3; static lean_object* l_Lean_Parser_Tactic_delta___closed__3; static lean_object* l_termIfThenElse___closed__10; static lean_object* l_Lean_Parser_Tactic_tacticInfer__instance___closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13879____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5208____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4148____closed__8; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__7; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__6; static lean_object* l_Lean_Parser_Syntax_addPrio___closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1199____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_11869____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__7; static lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_rwRuleSeq; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3353____closed__9; +static lean_object* l___aux__Init__Notation______macroRules__precMax__1___closed__2; static lean_object* l_Lean_Parser_Tactic_cases___closed__8; static lean_object* l_prioDefault___closed__1; static lean_object* l_term_x25_x5b___x7c___x5d___closed__5; static lean_object* l_Lean_Parser_Tactic_location___closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__4; static lean_object* l_term___x3e_____closed__6; static lean_object* l_term___x2a_____closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_locationWildcard; -static lean_object* l_myMacro____x40_Init_Notation___hyg_6002____closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__2; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___u2265___xbb__2(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_term___x3c_x2a_x3e__; -static lean_object* l_myMacro____x40_Init_Notation___hyg_6468____closed__3; static lean_object* l_Lean_Parser_Tactic_simpLemma___closed__1; static lean_object* l_term___x2d_____closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__5; static lean_object* l_term___x3c_x24_x3e_____closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_8925____closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14042____closed__20; static lean_object* l_Lean_Parser_Tactic_withReducibleAndInstances___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Syntax_subPrec; static lean_object* l_stx___x3f___closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; static lean_object* l_Lean_Parser_Tactic_renameI___closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13773____closed__5; LEAN_EXPORT lean_object* l_term___x2b__; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__8; static lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2823____closed__5; static lean_object* l_Lean_Parser_Tactic_location___closed__8; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__7; static lean_object* l_Lean_Parser_Tactic_exact___closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__3; static lean_object* l_term___xd7_____closed__3; static lean_object* l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__9; static lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__3; static lean_object* l_prio_x28___x29___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__16; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17075____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__5; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__8; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__9; static lean_object* l_Lean_Parser_Tactic_discharger___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3353____closed__8; static lean_object* l_Lean_Parser_Tactic_tacticNext_______x3d_x3e_____closed__3; static lean_object* l_prioLow___closed__4; static lean_object* l_Lean_Parser_Tactic_tacticLet_x27_____closed__4; static lean_object* l_Lean_Parser_Tactic_assumption___closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_location; static lean_object* l_term_x7e_x7e_x7e_____closed__5; static lean_object* l_Lean_Parser_Tactic_locationHyp___closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12132____closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__3; static lean_object* l_Lean_Parser_Tactic_withReducibleAndInstances___closed__5; static lean_object* l_term___x5c_x2f_____closed__6; static lean_object* l_term___x3c_x2a_____closed__6; -static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__6; static lean_object* l_precLead___closed__2; static lean_object* l_term___x2b_x2b_____closed__6; +static lean_object* l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__9; static lean_object* l_Lean_Parser_Syntax_addPrec___closed__16; static lean_object* l_term___x3c_x3c_x3c_____closed__2; static lean_object* l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13879____closed__9; static lean_object* l_term_x25_x5b___x7c___x5d___closed__3; static lean_object* l_Lean_Parser_Tactic_simpPre___closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__2; LEAN_EXPORT lean_object* l_term___x24____; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__GT__gt__1(lean_object*, lean_object*); static lean_object* l_term___x3a_x3a_____closed__2; static lean_object* l_Lean_Parser_Tactic_exact___closed__5; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_650____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13879____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__7; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__5; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__7; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5473____closed__7; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14726____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__5; static lean_object* l_term_u2039___u203a___closed__6; static lean_object* l_term___x3e_____closed__4; static lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____closed__5; static lean_object* l_Lean_Parser_Tactic_induction___closed__10; static lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_7335____closed__5; static lean_object* l_Lean_Parser_Tactic_case___closed__12; static lean_object* l_Lean_Parser_Tactic_paren___closed__3; +static lean_object* l___aux__Init__Notation______macroRules__precArg__1___closed__1; static lean_object* l_term___x26_x26_x26_____closed__1; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__3; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_injections; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__18; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticSuffices____1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__5; +static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__19; static lean_object* l_term_x25_x5b___x7c___x5d___closed__10; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2823____closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__4; static lean_object* l_term___x7c_x3e_____closed__3; static lean_object* l_Lean_Parser_Tactic_intro___closed__7; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__5; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__15; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__9; static lean_object* l_Lean_Parser_Syntax_subPrio___closed__1; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__17; +static lean_object* l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; +static lean_object* l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__1; static lean_object* l_Lean_Parser_Tactic_simp___closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5473____closed__9; static lean_object* l_term___x3a_x3a_____closed__6; static lean_object* l_term_x5b___x5d___closed__7; static lean_object* l_Lean_Parser_Tactic_rename___closed__2; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__1; static lean_object* l_Lean_Parser_Tactic_tacticHave_____closed__9; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13327____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_10303____closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__9; LEAN_EXPORT lean_object* l_termIfThenElse; static lean_object* l_Lean_Parser_Tactic_injection___closed__3; +static lean_object* l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__10; static lean_object* l_Lean_Parser_Tactic_tacticRfl___closed__4; static lean_object* l_term___x3e_____closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticHave_x27__; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14042____closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5208____closed__1; +static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__11; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__7; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__7; static lean_object* l_term_x25_x5b___x7c___x5d___closed__4; static lean_object* l_Lean_Parser_Tactic_tacticRefine__lift_x27_____closed__4; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__3; static lean_object* l_Lean_Parser_Tactic_anyGoals___closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12668____closed__3; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__2; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__6; static lean_object* l_Lean_Parser_Tactic_change___closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1300____closed__3; -static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__10; static lean_object* l_stx___x2c_x2a___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_11604____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3353____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_8130____closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2293____closed__10; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__1; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__4; static lean_object* l_Lean_Parser_Tactic_rotateRight___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1685____closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__6; static lean_object* l_Lean_Parser_Tactic_discharger___closed__11; static lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__7; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__8; +static lean_object* l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__3; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Function__comp__1(lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__16; static lean_object* l_termIfThenElse___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12668____closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__3; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__4; static lean_object* l_stx___x2a___closed__4; static lean_object* l_Lean_Parser_Syntax_subPrec___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4148____closed__5; static lean_object* l_term___x26_x26_x26_____closed__6; static lean_object* l_Lean_Parser_Tactic_simpStar___closed__1; extern lean_object* l_Lean_instInhabitedSyntax; static lean_object* l_term___x3c_x2a_x3e_____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3618____closed__2; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__14; static lean_object* l_Lean_Parser_Tactic_tacticLet_x27_____closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__1; static lean_object* l_term___x3d_x3d_____closed__5; static lean_object* l_term_x2d_____closed__5; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__3; +static lean_object* l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__1; static lean_object* l_Lean_Parser_Tactic_refine___closed__6; static lean_object* l_termDepIfThenElse___closed__25; static lean_object* l_term___x25_____closed__3; static lean_object* l_Lean_Parser_Tactic_tacticHave_____closed__8; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2823____closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1098____closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1___closed__2; static lean_object* l_Lean_Parser_Tactic_allGoals___closed__2; +static lean_object* l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__2; static lean_object* l_Lean_Parser_Tactic_injection___closed__5; static lean_object* l_term___x3e_x3e_x3d_____closed__2; static lean_object* l_Lean_Parser_Tactic_tacticShow_____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_73____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_15580____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13327____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__5; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___u2264___xbb__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__termIfThenElse__1(lean_object*, lean_object*, lean_object*); static lean_object* l_termWithout__expected__type_____closed__5; static lean_object* l_Lean_Parser_Tactic_withReducibleAndInstances___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_6244____closed__7; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__4; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Syntax_addPrio___closed__6; static lean_object* l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__7; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HPow__hPow__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticLet_x27__; static lean_object* l_Lean_Parser_Tactic_anyGoals___closed__3; static lean_object* l_term___x26_x26_x26_____closed__2; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___u2265___xbb__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__2; static lean_object* l_Lean_Parser_Tactic_simpLemma___closed__6; static lean_object* l_term___x3c_____closed__4; static lean_object* l_termDepIfThenElse___closed__30; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14726____closed__2; static lean_object* l_Lean_Parser_Tactic_first___closed__16; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13327____closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_apply; static lean_object* l_Lean_Parser_Syntax_addPrec___closed__10; static lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__13; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__3; static lean_object* l_term___x7c_x7c_x7c_____closed__3; LEAN_EXPORT lean_object* l_term_x25_x5b___x7c___x5d; static lean_object* l_Lean_Parser_Tactic_rename___closed__1; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_failIfSuccess; static lean_object* l_Lean_Parser_Tactic_simpAll___closed__2; static lean_object* l_Lean_Parser_Tactic_paren___closed__1; static lean_object* l_stx___x2c_x2a___closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_7865____closed__7; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3353____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13129____closed__5; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14042____closed__12; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__24; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__4; LEAN_EXPORT lean_object* l_term___x2a__; static lean_object* l_Lean_Parser_Tactic_letrec___closed__6; static lean_object* l_Lean_Parser_Tactic_done___closed__2; static lean_object* l_Lean_Parser_Tactic_change___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4943____closed__9; static lean_object* l_Lean_Parser_Tactic_tacticTry_____closed__4; static lean_object* l_Lean_Parser_Tactic_first___closed__7; LEAN_EXPORT lean_object* l_term___x3c_x7c_x3e__; static lean_object* l_Lean_Parser_Tactic_tacticHave_____closed__4; static lean_object* l_termDepIfThenElse___closed__28; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__5; static lean_object* l_term___x3e_x3e_x3e_____closed__6; static lean_object* l_termDepIfThenElse___closed__14; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__4; static lean_object* l_term___x7c_x7c_x7c_____closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticInfer__instance; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1098____closed__8; static lean_object* l_Lean_Parser_Tactic_paren___closed__2; static lean_object* l_Lean_Parser_Tactic_subst___closed__3; static lean_object* l_Lean_Parser_Tactic_withReducible___closed__6; @@ -1225,88 +1193,62 @@ static lean_object* l_Lean_Parser_Tactic_anyGoals___closed__5; static lean_object* l_Lean_Parser_Tactic_simpAll___closed__1; static lean_object* l_termDepIfThenElse___closed__9; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__8; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5208____closed__4; static lean_object* l_Lean_Parser_Tactic_withReducible___closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2823____closed__4; static lean_object* l_Lean_Parser_Tactic_injection___closed__7; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabprio_x28___x29_xbb__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_term___x2f_x5c__; static lean_object* l_term___x2b_x2b_____closed__2; static lean_object* l_term___x3e_____closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__11; static lean_object* l_term___x25_____closed__4; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__GE__ge__1(lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__2; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__2(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__4; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticLet_x27____1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticNext_______x3d_x3e__; static lean_object* l_Lean_Parser_Tactic_tacticShow_____closed__4; static lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__6; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_term___u2228__; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__6; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__prioDefault__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_case___closed__5; LEAN_EXPORT lean_object* l_term___u2218__; -static lean_object* l_myMacro____x40_Init_Notation___hyg_15580____closed__3; -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_10816_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_10551_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_9173_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_12358_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_8908_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_8113_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_8643_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_7318_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_7583_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_7848_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_10286_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_8378_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_13510_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_12115_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_12651_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_11344_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_11081_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_11852_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_11587_(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__6; -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_2541_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_4131_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_2276_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_5986_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_5191_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_4926_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_5721_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_5456_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_3866_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_4661_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_4396_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_3071_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_2806_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_3601_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_3336_(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_6228_(lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules__precMax__1___closed__1; static lean_object* l_Lean_Parser_Tactic_generalizeArg___closed__6; static lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____closed__3; -static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__4; static lean_object* l_Lean_Parser_Tactic_allGoals___closed__6; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__2; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__precMin__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__5; static lean_object* l_term___x5e_____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5738____closed__2; static lean_object* l_Lean_Parser_Tactic_subst___closed__5; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__5; static lean_object* l_Lean_Parser_Tactic_induction___closed__20; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5473____closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_subst; -static lean_object* l_myMacro____x40_Init_Notation___hyg_73____closed__2; static lean_object* l_termDepIfThenElse___closed__22; static lean_object* l_term___u2265_____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_10303____closed__2; static lean_object* l_Lean_Parser_Tactic_existsIntro___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13327____closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__4; static lean_object* l_term_xac_____closed__6; static lean_object* l_rawNatLit___closed__7; static lean_object* l_Lean_Parser_Tactic_tacticLet_x27_____closed__1; static lean_object* l_Lean_Parser_Tactic_tacticShow_____closed__1; +static lean_object* l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__8; LEAN_EXPORT lean_object* l_term___u2265__; -static lean_object* l_myMacro____x40_Init_Notation___hyg_8660____closed__7; static lean_object* l_precArg___closed__5; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__2; static lean_object* l_Lean_Parser_Tactic_tacticNext_______x3d_x3e_____closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1300____closed__1; +static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__3; static lean_object* l_term___x5c_x2f_____closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticLet__; +static lean_object* l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__2; static lean_object* l_term_x25_x5b___x7c___x5d___closed__9; static lean_object* l_Lean_Parser_Tactic_tacticRfl___closed__1; static lean_object* l_Lean_Parser_Tactic_intros___closed__4; @@ -1314,197 +1256,183 @@ static lean_object* l_termIfThenElse___closed__7; static lean_object* l_term___x3e_x3e_____closed__6; static lean_object* l_term___x5c_x2f_____closed__4; LEAN_EXPORT lean_object* l_stx___x3f; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__2; static lean_object* l_Lean_Parser_Tactic_existsIntro___closed__5; +static lean_object* l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__3; static lean_object* l_term___x3d_____closed__6; static lean_object* l_Lean_Parser_Tactic_change___closed__6; +static lean_object* l___aux__Init__Notation______macroRules__precMax__1___closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__7; static lean_object* l_stx___x3f___closed__5; static lean_object* l_Lean_Parser_Tactic_tacticRefine__lift_x27_____closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_10303____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13327____closed__9; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13773____closed__9; -static lean_object* l_myMacro____x40_Init_Notation___hyg_73____closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__7; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_simpLemma; static lean_object* l_Lean_Parser_Tactic_casesTarget___closed__3; static lean_object* l_Lean_Parser_Tactic_rotateRight___closed__5; static lean_object* l_Lean_Parser_Tactic_intro___closed__16; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1534____closed__13; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__8; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__4; lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__3; static lean_object* l_term___x5e_____closed__4; uint8_t l_Lean_Syntax_isNodeOf(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_delta___closed__4; +LEAN_EXPORT lean_object* l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2823____closed__9; -static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__13; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Syntax_subPrio___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_10833____closed__5; static lean_object* l_Lean_Parser_Tactic_first___closed__10; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HMod__hMod__1(lean_object*, lean_object*); static lean_object* l_term___x3e_x3e_x3d_____closed__4; static lean_object* l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__8; static lean_object* l_stx___x2a___closed__5; static lean_object* l_term___x3c_x3d_____closed__5; static lean_object* l_Lean_Parser_Tactic_intros___closed__9; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__1; +static lean_object* l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__7; static lean_object* l_termDepIfThenElse___closed__33; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__6; static lean_object* l_term___x2a_____closed__6; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRepeat____1___closed__1; static lean_object* l_term___x3c_x2a_x3e_____closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_22078____closed__3; static lean_object* l_term_x2d_____closed__3; static lean_object* l_precMin___closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__10; static lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3618____closed__8; static lean_object* l_Lean_Parser_Tactic_tacticLet_x27_____closed__3; static lean_object* l_Lean_Parser_Tactic_existsIntro___closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3618____closed__4; static lean_object* l_Lean_Parser_Tactic_generalizeArg___closed__3; -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18030_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21644_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21576_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21508_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21226_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20806_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20631_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20477_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20260_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20069_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19773_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19629_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18132_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17564_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17075_(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Notation___hyg_402____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_specialize; -static lean_object* l_myMacro____x40_Init_Notation___hyg_11604____closed__3; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__LE__le__1(lean_object*, lean_object*); static lean_object* l_term___x3e_____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5208____closed__8; static lean_object* l_term_x25_x5b___x7c___x5d___closed__8; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13327____closed__7; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__7; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__And__1(lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__2; static lean_object* l_term___x5e_____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5208____closed__2; static lean_object* l_Lean_Parser_Tactic_simp___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4413____closed__2; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__5; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabprio_x28___x29_xbb__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_prioHigh; LEAN_EXPORT lean_object* l_precArg; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4148____closed__9; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1534____closed__4; static lean_object* l_term___x2b_____closed__3; static lean_object* l_precMax___closed__4; static lean_object* l_Lean_Parser_Tactic_simp___closed__14; -LEAN_EXPORT lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__1; static lean_object* l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__2; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_7335____closed__9; -static lean_object* l_unexpand____x40_Init_Notation___hyg_2276____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4678____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1098____closed__6; static lean_object* l_term_x5b___x5d___closed__5; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__LT__lt__1(lean_object*, lean_object*); static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__13; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_rwRule; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__3; static lean_object* l_Lean_Parser_Tactic_refine___closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__4; static lean_object* l_Lean_Parser_Tactic_paren___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13129____closed__7; static lean_object* l_term___x2b_x2b_____closed__3; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12668____closed__5; LEAN_EXPORT lean_object* l_term_x5b___x5d; -static lean_object* l_myMacro____x40_Init_Notation___hyg_11869____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3353____closed__7; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_10303____closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__1; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabprec_x28___x29_xbb__1___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticAdmit__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticNext_______x3d_x3e_____closed__9; static lean_object* l_Lean_Parser_Tactic_tacticLet_x27_____closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_7335____closed__8; static lean_object* l_Lean_Parser_Tactic_refine___closed__2; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__8; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__6; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticAdmit__1___closed__2; static lean_object* l_Lean_Parser_Tactic_first___closed__3; static lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__19; static lean_object* l_Lean_Parser_Tactic_case___closed__3; static lean_object* l_Lean_Parser_Tactic_refine_x27___closed__3; static lean_object* l_stx___x2c_x2b___closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2823____closed__8; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3618____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__2; static lean_object* l_Lean_Parser_Tactic_first___closed__15; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__5; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__2; static lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__2; static lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__28; static lean_object* l_term___x2b_x2b_____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__27; static lean_object* l_stx___x3c_x7c_x3e_____closed__7; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1685____closed__2; static lean_object* l_Lean_Parser_Tactic_changeWith___closed__6; static lean_object* l_Lean_Parser_Tactic_simpPre___closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2293____closed__9; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14726____closed__7; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__6; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_term___x3c_x7c_____closed__7; static lean_object* l_termDepIfThenElse___closed__19; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1534____closed__6; +static lean_object* l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__2; static lean_object* l_Lean_Parser_Tactic_focus___closed__5; lean_object* l_Lean_Syntax_setArg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_simpErase___closed__2; LEAN_EXPORT lean_object* l_term_xac__; -static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__14; static lean_object* l_term___u2218_____closed__6; static lean_object* l_Lean_Parser_Tactic_first___closed__18; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_generalizeArg; -static lean_object* l_myMacro____x40_Init_Notation___hyg_7865____closed__3; static lean_object* l_term___x3c_x7c_____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14042____closed__19; static lean_object* l_Lean_Parser_Tactic_induction___closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_7335____closed__2; static lean_object* l_Lean_Parser_Tactic_simpAll___closed__7; static lean_object* l_Lean_Parser_Tactic_discharger___closed__12; static lean_object* l_stx_x21_____closed__6; static lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__8; static lean_object* l_stx___x2b___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__11; +static lean_object* l___aux__Init__Notation______macroRules__precMin__1___closed__1; static lean_object* l_Lean_Parser_Tactic_letrec___closed__2; static lean_object* l_Lean_Parser_Syntax_subPrio___closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticHave_____x3a_x3d__; static lean_object* l_prioDefault___closed__5; static lean_object* l_prec_x28___x29___closed__9; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__3; static lean_object* l_stx___x3c_x7c_x3e_____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4943____closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__2; static lean_object* l_term_u2039___u203a___closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__4; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HAppend__hAppend__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_first___closed__14; static lean_object* l_Lean_Parser_Tactic_tacticRepeat_____closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__1; static lean_object* l_term___x3e_x3e_x3e_____closed__5; static lean_object* l_term___u2265_____closed__5; LEAN_EXPORT lean_object* l_term_x21__; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4413____closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__6; static lean_object* l_Lean_Parser_Tactic_simp___closed__18; static lean_object* l_Lean_Parser_Tactic_simp___closed__15; +LEAN_EXPORT lean_object* l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1_expandListLit(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__3; static lean_object* l_Lean_term__Matches_____closed__5; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HShiftRight__hShiftRight__1(lean_object*, lean_object*); static lean_object* l_term___x3d_____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_8660____closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__3; static lean_object* l_Lean_Parser_Tactic_refine___closed__4; static lean_object* l_Lean_Parser_Tactic_tacticTry_____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13527____closed__8; static lean_object* l_precMax___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__15; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__8; static lean_object* l_termWithout__expected__type_____closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_exact; static lean_object* l_Lean_Parser_Tactic_tacticSorry___closed__3; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__17; static lean_object* l_Lean_Parser_Tactic_tacticNext_______x3d_x3e_____closed__2; static lean_object* l_Lean_Parser_Tactic_first___closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13527____closed__2; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__letrec__1(lean_object*, lean_object*, lean_object*); static lean_object* l_term___u2227_____closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13773____closed__7; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__4; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__1; static lean_object* l_stx___x2c_x2b___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__7; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_term___x7c_x3e_____closed__7; static lean_object* l_precMin___closed__5; static lean_object* l_Lean_Parser_Tactic_tacticNext_______x3d_x3e_____closed__4; @@ -1512,100 +1440,104 @@ static lean_object* l_Lean_Parser_Tactic_case___closed__1; static lean_object* l_Lean_Parser_Tactic_tacticHave_____closed__1; lean_object* l_Lean_Syntax_getArgs(lean_object*); static lean_object* l_Lean_Parser_Tactic_locationHyp___closed__8; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13327____closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__7; static lean_object* l_term___x2f_____closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__1; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_term___x26_x26_x26_____closed__4; static lean_object* l_term___u2227_____closed__3; static lean_object* l_Lean_Parser_Tactic_revert___closed__7; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__3; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__2; static lean_object* l_Lean_Parser_Tactic_allGoals___closed__5; static lean_object* l_Lean_Parser_Tactic_induction___closed__15; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14726____closed__3; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__1; static lean_object* l_term___x24_______closed__12; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__2; static lean_object* l_term___u2264_____closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticSorry; -static lean_object* l_myMacro____x40_Init_Notation___hyg_16039____closed__10; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_x27_____x3a_x3d___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__3; static lean_object* l_term___x7c_x3e_____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1534____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3088____closed__4; static lean_object* l_term___x3c_x2a_x3e_____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3618____closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4943____closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__6; static lean_object* l_Lean_Parser_Tactic_locationTargets___closed__1; static lean_object* l_termIfThenElse___closed__5; static lean_object* l_Lean_Parser_Tactic_locationWildcard___closed__3; static lean_object* l_rawNatLit___closed__3; static lean_object* l_term_x5b___x5d___closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1534____closed__9; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__8; +static lean_object* l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__13; static lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_11869____closed__6; static lean_object* l_Lean_Parser_Tactic_simp___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__3; static lean_object* l_Lean_Parser_Tactic_contradiction___closed__2; static lean_object* l_term_x25_x5b___x7c___x5d___closed__1; static lean_object* l_Lean_Parser_Tactic_locationHyp___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14726____closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__3; static lean_object* l_Lean_Parser_Tactic_rename___closed__8; -static lean_object* l_myMacro____x40_Init_Notation___hyg_6244____closed__2; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__9; static lean_object* l_Lean_Parser_Tactic_induction___closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__8; static lean_object* l_term___x3c_x3d_____closed__3; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2(lean_object*, lean_object*, lean_object*); lean_object* l_Array_appendCore___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_case___closed__9; static lean_object* l_Lean_Parser_Tactic_tacticTry_____closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2159____closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__7; static lean_object* l_term___x26_x26_____closed__7; static lean_object* l_Lean_Parser_Tactic_tacticRfl___closed__2; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__termWithout__expected__type____1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_letrec; +static lean_object* l___aux__Init__Notation______macroRules__stx_x21____1___closed__3; static lean_object* l_Lean_Parser_Tactic_tacticRepeat_____closed__6; LEAN_EXPORT lean_object* l_term_x7b_____x3a___x2f_x2f___x7d; static lean_object* l_Lean_Parser_Tactic_case___closed__8; static lean_object* l_term___x7c_x7c_____closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_7865____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3088____closed__9; -static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__4; static lean_object* l_termWithout__expected__type_____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1836____closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_change; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__5; static lean_object* l_Lean_Parser_Tactic_simp___closed__5; static lean_object* l_Lean_Parser_Tactic_locationHyp___closed__9; static lean_object* l_Lean_Parser_Tactic_injection___closed__10; static lean_object* l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__7; static lean_object* l_term___x3c_x7c_x3e_____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_7335____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13327____closed__5; LEAN_EXPORT lean_object* l_term___u2264__; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1098____closed__5; static lean_object* l_term___x3c_x2a_____closed__5; static lean_object* l_Lean_Parser_Tactic_assumption___closed__3; static lean_object* l_Lean_Parser_Tactic_done___closed__1; static lean_object* l_term___x2b_x2b_____closed__5; static lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__7; static lean_object* l_Lean_Parser_Tactic_locationTargets___closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__5; static lean_object* l_term___x24_______closed__11; static lean_object* l_term___u2227_____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_156____closed__1; static lean_object* l_Lean_Parser_Tactic_rename___closed__9; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__26; static lean_object* l_precMin___closed__3; static lean_object* l_Lean_Parser_Tactic_tacticHave_____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14042____closed__11; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3883____closed__7; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__2; LEAN_EXPORT lean_object* l_termIfLet___x3a_x3d__Then__Else__; static lean_object* l_stx___x2b___closed__1; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__3; static lean_object* l_Lean_Parser_Tactic_simpAll___closed__3; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Prod__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_induction___closed__18; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HSub__hSub__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Syntax_subPrec___closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__3; static lean_object* l_Lean_Parser_Tactic_letrec___closed__8; LEAN_EXPORT lean_object* l_term___x3c_x24_x3e__; static lean_object* l_Lean_Parser_Tactic_rwRule___closed__10; -static lean_object* l_myMacro____x40_Init_Notation___hyg_7335____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_16039____closed__7; +static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__12; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__and__1(lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__12; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_withReducibleAndInstances; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3088____closed__8; +static lean_object* l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__6; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_7335____closed__4; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__2; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__1; static lean_object* l_termDepIfThenElse___closed__29; static lean_object* l_Lean_Parser_Tactic_induction___closed__5; static lean_object* l_term___u2264_____closed__4; @@ -1614,176 +1546,207 @@ static lean_object* l_Lean_Parser_Tactic_case___closed__2; static lean_object* l_Lean_Parser_Tactic_simp___closed__2; static lean_object* l_term___x2f_x5c_____closed__3; static lean_object* l_Lean_Parser_Tactic_tacticNext_______x3d_x3e_____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__5; static lean_object* l_Lean_Parser_Tactic_rename___closed__4; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__7; LEAN_EXPORT lean_object* l_term___x3e_x3e__; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__9; static lean_object* l_termMax__prec___closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5738____closed__8; +static lean_object* l___aux__Init__Notation______macroRules__prioLow__1___closed__1; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; static lean_object* l_term_x5b___x5d___closed__8; -static lean_object* l_myMacro____x40_Init_Notation___hyg_10833____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14042____closed__9; static lean_object* l_Lean_Parser_Tactic_rwRule___closed__1; static lean_object* l_term___x3c_x3d_____closed__7; -static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__7; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__2; static lean_object* l_Lean_Parser_Tactic_split___closed__9; static lean_object* l_Lean_Parser_Tactic_intro___closed__6; static lean_object* l_Lean_Parser_Syntax_addPrec___closed__12; LEAN_EXPORT lean_object* l_stx___x2c_x2b; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13773____closed__2; static lean_object* l_term_x7e_x7e_x7e_____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__1; +static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__13; static lean_object* l_Lean_Parser_Tactic_simp___closed__7; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12668____closed__9; static lean_object* l_Lean_Parser_Tactic_tacticSorry___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1534____closed__3; static lean_object* l_term___x3a_x3a_____closed__7; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20477____closed__1; static lean_object* l_term___x3d_x3d_____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13527____closed__7; static lean_object* l_termDepIfThenElse___closed__8; static lean_object* l_Lean_Parser_Tactic_cases___closed__7; static lean_object* l_Lean_Parser_Tactic_tacticTry_____closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__9; static lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4943____closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__2; static lean_object* l_term_u2039___u203a___closed__9; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__1; static lean_object* l_term___x2a_x3e_____closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_simpPost; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_done; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__7; static lean_object* l_term_x5b___x5d___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14042____closed__7; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_intros; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__21; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__8; static lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__3; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__7; static lean_object* l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__6; static lean_object* l_term___x3c_____closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_8130____closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_u2039___u203a_xbb__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticTry__; static lean_object* l_term___x3c_x3c_x3c_____closed__1; static lean_object* l_term___u2228_____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3088____closed__1; static lean_object* l_Lean_Parser_Tactic_simpAll___closed__9; static lean_object* l_Lean_Parser_Tactic_discharger___closed__10; static lean_object* l_Lean_Parser_Tactic_refine_x27___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1400____closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__4; static lean_object* l_Lean_Parser_Tactic_specialize___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__26; static lean_object* l_stx___x2b___closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__1; static lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____closed__2; static lean_object* l_term___x2b_____closed__5; static lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__6; static lean_object* l_Lean_Parser_Tactic_renameI___closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__9; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__4; static lean_object* l_Lean_Parser_Tactic_induction___closed__14; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabprec_x28___x29_xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_case___closed__7; static lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__9; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14042____closed__17; static lean_object* l_Lean_Parser_Tactic_generalizeArg___closed__7; static lean_object* l_term_x5b___x5d___closed__12; static lean_object* l_Lean_Parser_Tactic_constructor___closed__2; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticTrivial___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_8130____closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__3; static lean_object* l_term___x2a_x3e_____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__1; static lean_object* l_prio_x28___x29___closed__2; static lean_object* l_prec_x28___x29___closed__10; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__5; static lean_object* l_termDepIfThenElse___closed__17; static lean_object* l_term___x26_x26_x26_____closed__7; -static lean_object* l_myMacro____x40_Init_Notation___hyg_16039____closed__5; static lean_object* l_Lean_Parser_Tactic_exact___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Syntax_addPrio; static lean_object* l_Lean_Parser_Tactic_tacticRefine__lift_____closed__4; -static lean_object* l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +static lean_object* l___aux__Init__Notation______macroRules__term_x21____1___closed__4; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__2; static lean_object* l_term___x2a_____closed__2; +static lean_object* l___aux__Init__Notation______unexpand__Function__comp__1___closed__1; static lean_object* l_term___xd7_____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13129____closed__1; static lean_object* l_Lean_Parser_Tactic_done___closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__9; static lean_object* l_termDepIfThenElse___closed__27; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14042____closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__12; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__3; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__3; static lean_object* l_Lean_Parser_Tactic_simpLemma___closed__7; LEAN_EXPORT lean_object* l_term___x3e_x3e_x3e__; static lean_object* l_prioMid___closed__5; static lean_object* l_Lean_Parser_Tactic_apply___closed__1; LEAN_EXPORT lean_object* l_stx___x2a; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_u2039___u203a_xbb__1___closed__2; static lean_object* l_Lean_Parser_Tactic_rwSeq___closed__7; LEAN_EXPORT lean_object* l_term___x2f__; -static lean_object* l_myMacro____x40_Init_Notation___hyg_8130____closed__9; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__8; static lean_object* l_Lean_Parser_Tactic_renameI___closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2293____closed__11; static lean_object* l_term___u2265_____closed__6; static lean_object* l_termDepIfThenElse___closed__4; static lean_object* l_Lean_Parser_Tactic_specialize___closed__2; static lean_object* l_termIfThenElse___closed__2; static lean_object* l_Lean_term__Matches_____closed__4; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__4; static lean_object* l_term___u2228_____closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__4; static lean_object* l_stx___x2c_x2b_x2c_x3f___closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5738____closed__1; static lean_object* l_stx_x21_____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_7865____closed__6; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_letrec___closed__7; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__3; +static lean_object* l___aux__Init__Notation______macroRules__stx_x21____1___closed__2; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__13; static lean_object* l_term___x3c_x2a_x3e_____closed__1; static lean_object* l_term___u2218_____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__8; LEAN_EXPORT lean_object* l_term___x7c_x3e__; static lean_object* l_Lean_Parser_Tactic_first___closed__6; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19629____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3618____closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__5; static lean_object* l_precArg___closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4148____closed__3; -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_331____boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__4; static lean_object* l_Lean_Parser_Tactic_generalize___closed__7; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3088____closed__2; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_renameI___closed__6; static lean_object* l_term_x7e_x7e_x7e_____closed__3; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__3; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__1; +static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__2; static lean_object* l_Lean_Parser_Tactic_induction___closed__4; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20069____closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__9; +static lean_object* l___aux__Init__Notation______macroRules__stx___x3f__1___closed__2; static lean_object* l_stx_x21_____closed__4; static lean_object* l_term___x3d_x3d_____closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_anyGoals; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12375____closed__7; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2293____closed__8; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__stx___x3f__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticRepeat_____closed__1; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__22; static lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__7; static lean_object* l_precMin1___closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_6002____closed__9; static lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__5; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HXor__hXor__1(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_withReducible; static lean_object* l_prioMid___closed__3; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2293____closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_8130____closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_simpErase; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5208____closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__8; static lean_object* l_Lean_Parser_Tactic_induction___closed__8; static lean_object* l_Lean_Parser_Tactic_rotateRight___closed__2; static lean_object* l_Lean_Parser_Tactic_simpPost___closed__5; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__1; +static lean_object* l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__3; static lean_object* l_Lean_term__Matches_____closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__1; static lean_object* l_Lean_Parser_Tactic_rotateLeft___closed__2; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__2; static lean_object* l_Lean_Parser_Tactic_tacticTry_____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13129____closed__4; static lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__2; static lean_object* l_term___x2a_____closed__1; +static lean_object* l___aux__Init__Notation______macroRules__stx___x3f__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_injection; static lean_object* l_term_u2039___u203a___closed__1; static lean_object* l_prec_x28___x29___closed__7; -static lean_object* l_myMacro____x40_Init_Notation___hyg_9436____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1534____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_10833____closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__2; static lean_object* l_Lean_Parser_Tactic_exact___closed__2; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Neg__neg__1(lean_object*, lean_object*); static lean_object* l_term___xd7_____closed__2; static lean_object* l_term___x2b_____closed__1; static lean_object* l_Lean_Parser_Tactic_tacticShow_____closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_6002____closed__4; static lean_object* l_Lean_Parser_Tactic_split___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1098____closed__9; static lean_object* l_term___x3d_x3d_____closed__1; static lean_object* l_term___x3c_x2a_x3e_____closed__4; static lean_object* l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__4; static lean_object* l_prioHigh___closed__2; static lean_object* l_Lean_Parser_Tactic_intro___closed__2; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__7; static lean_object* l_term___x3e_x3e_x3d_____closed__6; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__term_x21____1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_focus___closed__3; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRepeat____1(lean_object*, lean_object*, lean_object*); static lean_object* l_term___x26_x26_x26_____closed__5; static lean_object* l_Lean_Parser_Tactic_rwSeq___closed__2; static lean_object* l_Lean_Parser_Tactic_changeWith___closed__3; @@ -1793,20 +1756,21 @@ static lean_object* l_rawNatLit___closed__6; static lean_object* l_term___x5e_x5e_x5e_____closed__1; static lean_object* l_term_xac_____closed__7; static lean_object* l_stx___x2c_x2b_x2c_x3f___closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__9; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1___closed__1; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__4; static lean_object* l_Lean_Parser_Tactic_simpLemma___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_constructor; static lean_object* l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3883____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13129____closed__8; static lean_object* l_Lean_Parser_Tactic_tacticNext_______x3d_x3e_____closed__7; static lean_object* l_term___xd7_____closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_15580____closed__1; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic___x3c_x3b_x3e___xbb__1___closed__1; static lean_object* l_termDepIfThenElse___closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3353____closed__3; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18030____closed__1; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1___closed__2; static lean_object* l_Lean_term__Matches_____closed__2; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__2; static lean_object* l_termIfThenElse___closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_11361____closed__4; static lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__5; static lean_object* l_term___x3e_x3e_____closed__7; static lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__10; @@ -1815,285 +1779,321 @@ static lean_object* l_term___x3c_x2a_x3e_____closed__2; static lean_object* l_prec_x28___x29___closed__3; static lean_object* l_term_x5b___x5d___closed__1; static lean_object* l_stx___x2c_x2b_x2c_x3f___closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_16039____closed__3; static lean_object* l_term___x24_______closed__7; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__9; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_discharger; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__2; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_term_x7e_x7e_x7e_____closed__6; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__2; -static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__11; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__2; static lean_object* l_term___x26_x26_____closed__1; static lean_object* l_term___x26_x26_____closed__2; LEAN_EXPORT lean_object* l_precMax; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__9; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x3e___xbb__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__6; LEAN_EXPORT lean_object* l_term_u2039___u203a; -static lean_object* l_myMacro____x40_Init_Notation___hyg_733____closed__1; +static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__23; static lean_object* l_Lean_Parser_Tactic_induction___closed__9; static lean_object* l_prioHigh___closed__4; static lean_object* l_Lean_Parser_Tactic_specialize___closed__3; static lean_object* l_Lean_Parser_Tactic_tacticSorry___closed__1; +static lean_object* l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__15; +static lean_object* l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4; static lean_object* l_term_u2039___u203a___closed__8; LEAN_EXPORT lean_object* l_precMin1; +static lean_object* l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__5; static lean_object* l_Lean_Parser_Tactic_rotateLeft___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__4; static lean_object* l_Lean_term__Matches_____closed__1; static lean_object* l_Lean_Parser_Tactic_allGoals___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1400____closed__1; static lean_object* l_Lean_Parser_Tactic_tacticSorry___closed__2; static lean_object* l_prioMid___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__4; static lean_object* l_Lean_Parser_Tactic_intro___closed__1; static lean_object* l_Lean_Parser_Tactic_rename___closed__5; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticLet____1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__7; +static lean_object* l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__14; static lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__3; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__11; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1___closed__1; +static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__21; static lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_15580____closed__8; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; static lean_object* l_Lean_Parser_Tactic_simpAll___closed__12; static lean_object* l_term_x2d_____closed__7; static lean_object* l_Lean_Parser_Tactic_first___closed__13; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__1; static lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__7; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_split; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__2(lean_object*, lean_object*, lean_object*); static lean_object* l_term___u2265_____closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__9; static lean_object* l_Lean_Parser_Tactic_locationHyp___closed__2; static lean_object* l_termIfThenElse___closed__4; static lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__1; +static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__17; static lean_object* l_term___xd7_____closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__1; static lean_object* l_Lean_Parser_Tactic_simpErase___closed__3; static lean_object* l_term___u2227_____closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_x2c_x3f_xbb__1___closed__1; static lean_object* l_rawNatLit___closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_6002____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_15580____closed__2; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__19; static lean_object* l_Lean_Parser_Tactic_existsIntro___closed__2; -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16234__expandListLit___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__25; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__1; static lean_object* l_Lean_Parser_Tactic_contradiction___closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__9; static lean_object* l_Lean_Parser_Tactic_rwSeq___closed__3; static lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____closed__4; LEAN_EXPORT lean_object* l_term___x5e__; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__4; static lean_object* l_Lean_Parser_Tactic_intro___closed__14; static lean_object* l_termIfThenElse___closed__8; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3618____closed__3; LEAN_EXPORT lean_object* l_stx___x2c_x2a; static lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__9; LEAN_EXPORT lean_object* l_Lean_Parser_Syntax_subPrio; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__9; static lean_object* l_Lean_Parser_Tactic_simpLemma___closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__3; static lean_object* l_Lean_Parser_Tactic_simpPost___closed__3; static lean_object* l_Lean_Parser_Tactic_intro___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_11604____closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12132____closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__5; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__not__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_discharger___closed__7; -static lean_object* l_myMacro____x40_Init_Notation___hyg_11361____closed__6; +static lean_object* l___aux__Init__Notation______macroRules__precLead__1___closed__1; static lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e__; +static lean_object* l___aux__Init__Notation______macroRules__precMax__1___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Syntax_addPrec; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13773____closed__12; +static lean_object* l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__8; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__1; static lean_object* l_Lean_Parser_Tactic_constructor___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__23; static lean_object* l_prioDefault___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_10833____closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__8; static lean_object* l_term___x3c_x3d_____closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__4; static lean_object* l_Lean_Parser_Tactic_intro___closed__5; static lean_object* l_term___x3d_x3d_____closed__4; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1(lean_object*, lean_object*, lean_object*); static lean_object* l_stx___x2a___closed__3; LEAN_EXPORT lean_object* l_stx_x21__; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13129____closed__3; static lean_object* l_Lean_Parser_Tactic_simpAll___closed__5; static lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__8; static lean_object* l_Lean_Parser_Tactic_induction___closed__17; static lean_object* l_term___x2a_____closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1199____closed__3; static lean_object* l_Lean_Parser_Syntax_addPrec___closed__11; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19629____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_7335____closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__9; static lean_object* l_term_x7e_x7e_x7e_____closed__2; static lean_object* l_term___u2227_____closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_casesTarget; static lean_object* l_stx___x2c_x2b_x2c_x3f___closed__2; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__3; +LEAN_EXPORT lean_object* l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__4; static lean_object* l_Lean_Parser_Tactic_letrec___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14042____closed__13; static lean_object* l_Lean_Parser_Tactic_simpPre___closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4943____closed__4; static lean_object* l_term___x7c_x3e_____closed__4; static lean_object* l_Lean_Parser_Tactic_injections___closed__3; static lean_object* l_term___x5e_x5e_x5e_____closed__4; static lean_object* l_Lean_Parser_Tactic_simpPost___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1534____closed__7; static lean_object* l_Lean_Parser_Syntax_subPrec___closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__7; static lean_object* l_term_x5b___x5d___closed__2; -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_991____boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_rotateLeft___closed__4; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HShiftLeft__hShiftLeft__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_locationHyp___closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4943____closed__8; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__8; +static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; +static lean_object* l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__7; static lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_skip; static lean_object* l_term___x3e_x3e_x3e_____closed__3; static lean_object* l_Lean_Parser_Attr_simp___closed__1; static lean_object* l_term___x3c_x7c_____closed__6; static lean_object* l_Lean_Parser_Tactic_rwRule___closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__9; static lean_object* l_Lean_Parser_Tactic_simp___closed__16; static lean_object* l_term___u2218_____closed__7; static lean_object* l_Lean_Parser_Tactic_casesTarget___closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14042____closed__23; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__And__2(lean_object*, lean_object*); static lean_object* l_term___u2228_____closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticShow__; -static lean_object* l_myMacro____x40_Init_Notation___hyg_6002____closed__8; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__1; static lean_object* l_stx_x21_____closed__7; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4148____closed__6; static lean_object* l_Lean_Parser_Tactic_rename___closed__6; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__9; static lean_object* l_stx___x2c_x2b_x2c_x3f___closed__4; LEAN_EXPORT lean_object* l_stx___x2c_x2b_x2c_x3f; static lean_object* l_Lean_Parser_Tactic_expandRwSeq___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandRwSeq(lean_object*, lean_object*, lean_object*); static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__1; +static lean_object* l___aux__Init__Notation______macroRules__term_x21____1___closed__3; static lean_object* l_term___x3e_____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_6002____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__8; static lean_object* l_Lean_Parser_Tactic_existsIntro___closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2293____closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__5; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__LE__le__2(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticRefine__lift_____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4413____closed__7; +static lean_object* l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__4; static lean_object* l_Lean_Parser_Tactic_allGoals___closed__1; static lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__12; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_traceState; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__8; static lean_object* l_term___x2f_x5c_____closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_rotateRight; +static lean_object* l___aux__Init__Notation______macroRules__stx_x21____1___closed__1; static lean_object* l_Lean_Parser_Tactic_intro___closed__15; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2823____closed__1; static lean_object* l_term___x26_x26_____closed__3; static lean_object* l_Lean_Parser_Tactic_tacticRefine__lift_____closed__2; static lean_object* l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__7; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14042____closed__21; static lean_object* l_prio_x28___x29___closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1098____closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__2; +static lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_tacticSuffices__; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__13; static lean_object* l_Lean_Parser_Tactic_withReducible___closed__3; static lean_object* l_Lean_Parser_Tactic_case___closed__13; static lean_object* l_Lean_Parser_Tactic_tacticUnhygienic_____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_239____closed__1; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__1; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HAdd__hAdd__1(lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__4; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__2(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticSuffices____1___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__6; static lean_object* l_term___x3d_____closed__3; static lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__1; static lean_object* l_Lean_Parser_Tactic_tacticRefine__lift_x27_____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14042____closed__8; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__5; static lean_object* l_term___x7c_x3e_____closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5738____closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_paren; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__9; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_intro; static lean_object* l_term___x3c_x7c_____closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__5; static lean_object* l_termDepIfThenElse___closed__5; static lean_object* l_term___x2f_x5c_____closed__4; static lean_object* l_Lean_Parser_Tactic_constructor___closed__1; static lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__8; static lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_locationHyp; -static lean_object* l_myMacro____x40_Init_Notation___hyg_9436____closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; +static lean_object* l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__5; +static lean_object* l___aux__Init__Notation______macroRules__term_x21____1___closed__5; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__3; static lean_object* l_term___x3e_x3e_x3d_____closed__5; -static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__12; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12668____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__8; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_refine; static lean_object* l_Lean_Parser_Tactic_rwSeq___closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1685____closed__1; static lean_object* l_term___x3c_x3c_x3c_____closed__4; static lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__2; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14466____closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_11361____closed__5; static lean_object* l_Lean_Parser_Tactic_config___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__7; static lean_object* l_term_x7e_x7e_x7e_____closed__4; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__4; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_generalize___closed__5; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__3; static lean_object* l_precArg___closed__4; static lean_object* l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__3; static lean_object* l_termWithout__expected__type_____closed__3; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__9; static lean_object* l_Lean_Parser_Tactic_config___closed__2; static lean_object* l_stx___x2c_x2b___closed__5; static lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__11; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__4; static lean_object* l_term___u2265_____closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_2823____closed__2; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__11; static lean_object* l_term___x3e_x3e_____closed__2; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12668____closed__8; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3618____closed__7; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm_u2039___u203a_xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticUnhygienic_____closed__5; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__6; static lean_object* l_Lean_Parser_Syntax_subPrec___closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_15580____closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14042____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13527____closed__9; -static lean_object* l_myMacro____x40_Init_Notation___hyg_4943____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3883____closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__6; +static lean_object* l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__16; static lean_object* l_Lean_Parser_Tactic_rwRule___closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_485____closed__1; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__4; static lean_object* l_Lean_Parser_Tactic_skip___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_9190____closed__6; static lean_object* l_Lean_Parser_Tactic_rwRule___closed__7; static lean_object* l_term___x26_x26_____closed__6; static lean_object* l_term___x7c_x7c_x7c_____closed__4; +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HMul__hMul__1(lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__3; static lean_object* l_Lean_Parser_Tactic_rotateRight___closed__6; static lean_object* l_term_u2039___u203a___closed__4; static lean_object* l_Lean_Parser_Tactic_rwWithRfl___closed__1; static lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__2; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__2(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_term___x3d_x3d__; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5208____closed__9; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14042____closed__2; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__5; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__prioMid__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Notation______macroRules__stx___x3f__1___closed__3; static lean_object* l_term___x2a_x3e_____closed__2; static lean_object* l_Lean_Parser_Tactic_letrec___closed__10; static lean_object* l_Lean_Parser_Tactic_split___closed__8; static lean_object* l_Lean_Parser_Tactic_tacticAdmit___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_9436____closed__1; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__4; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__5; LEAN_EXPORT lean_object* l_term___x5c_x2f__; static lean_object* l_Lean_Parser_Tactic_refine_x27___closed__1; static lean_object* l_Lean_Parser_Tactic_specialize___closed__4; static lean_object* l_Lean_Parser_Attr_simp___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13879____closed__7; static lean_object* l_Lean_Parser_Syntax_addPrec___closed__8; static lean_object* l_Lean_Parser_Tactic_intros___closed__10; static lean_object* l_term___x3d_____closed__5; static lean_object* l_Lean_Parser_Tactic_refine_x27___closed__2; static lean_object* l_term___x7c_x7c_____closed__7; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1400____closed__4; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticSuffices____1___closed__2; +static lean_object* l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__11; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__3; static lean_object* l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__3; static lean_object* l_term_x5b___x5d___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_1098____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_14466____closed__3; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__3; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__9; static lean_object* l_term___x25_____closed__6; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12668____closed__2; LEAN_EXPORT lean_object* l_term___x25__; static lean_object* l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__6; static lean_object* l_stx___x2b___closed__5; static lean_object* l_Lean_Parser_Tactic_simpPost___closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_11361____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_13773____closed__11; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__8; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__1; static lean_object* l_Lean_Parser_Tactic_letrec___closed__5; -static lean_object* l_myMacro____x40_Init_Notation___hyg_3883____closed__6; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__6; static lean_object* l_termDepIfThenElse___closed__1; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17564____closed__1; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_term___x2b_____closed__4; LEAN_EXPORT lean_object* l_term___x2a_x3e__; static lean_object* l_term___x24_______closed__10; +static lean_object* l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__7; static lean_object* l_prio_x28___x29___closed__4; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__8; static lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_5738____closed__9; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__5; +static lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__4; static lean_object* l_Lean_Parser_Tactic_rwSeq___closed__5; static lean_object* l_Lean_Parser_Tactic_anyGoals___closed__4; static lean_object* l_Lean_Parser_Tactic_tacticRepeat_____closed__4; +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__stx_x21____1(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_16039____closed__6; static lean_object* l_Lean_Parser_Tactic_tacticRefine__lift_x27_____closed__2; +static lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__4; static lean_object* l_Lean_Parser_Tactic_config___closed__3; -static lean_object* l_myMacro____x40_Init_Notation___hyg_12931____closed__2; static lean_object* l_Lean_Parser_Tactic_config___closed__5; static lean_object* l_Lean_Parser_Attr_simp___closed__8; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticSorry__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_termWithout__expected__type__; +static lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__5; static lean_object* _init_l_Lean_Parser_Syntax_addPrec___closed__1() { _start: { @@ -2546,7 +2546,7 @@ x_1 = l_precMax___closed__5; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; @@ -2560,7 +2560,7 @@ lean_ctor_set(x_5, 1, x_2); return x_5; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_73____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules__precMax__1___closed__1() { _start: { lean_object* x_1; @@ -2568,17 +2568,17 @@ x_1 = lean_mk_string("numLit"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_73____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules__precMax__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_73____closed__1; +x_2 = l___aux__Init__Notation______macroRules__precMax__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_73____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules__precMax__1___closed__3() { _start: { lean_object* x_1; @@ -2586,7 +2586,7 @@ x_1 = lean_mk_string("1024"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_73____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules__precMax__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -2595,7 +2595,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_73_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__precMax__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2614,19 +2614,19 @@ return x_7; else { lean_object* x_8; uint8_t x_9; -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; x_10 = lean_ctor_get(x_8, 0); -x_11 = l_myMacro____x40_Init_Notation___hyg_73____closed__3; +x_11 = l___aux__Init__Notation______macroRules__precMax__1___closed__3; x_12 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); -x_13 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_13 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_14 = lean_array_push(x_13, x_12); -x_15 = l_myMacro____x40_Init_Notation___hyg_73____closed__2; +x_15 = l___aux__Init__Notation______macroRules__precMax__1___closed__2; x_16 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_16, 0, x_15); lean_ctor_set(x_16, 1, x_14); @@ -2641,13 +2641,13 @@ x_18 = lean_ctor_get(x_8, 1); lean_inc(x_18); lean_inc(x_17); lean_dec(x_8); -x_19 = l_myMacro____x40_Init_Notation___hyg_73____closed__3; +x_19 = l___aux__Init__Notation______macroRules__precMax__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_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_21 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_22 = lean_array_push(x_21, x_20); -x_23 = l_myMacro____x40_Init_Notation___hyg_73____closed__2; +x_23 = l___aux__Init__Notation______macroRules__precMax__1___closed__2; x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); @@ -2719,7 +2719,7 @@ x_1 = l_precArg___closed__5; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_156____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules__precArg__1___closed__1() { _start: { lean_object* x_1; @@ -2727,7 +2727,7 @@ x_1 = lean_mk_string("1023"); return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_156_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__precArg__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2746,19 +2746,19 @@ return x_7; else { lean_object* x_8; uint8_t x_9; -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; x_10 = lean_ctor_get(x_8, 0); -x_11 = l_myMacro____x40_Init_Notation___hyg_156____closed__1; +x_11 = l___aux__Init__Notation______macroRules__precArg__1___closed__1; x_12 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); -x_13 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_13 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_14 = lean_array_push(x_13, x_12); -x_15 = l_myMacro____x40_Init_Notation___hyg_73____closed__2; +x_15 = l___aux__Init__Notation______macroRules__precMax__1___closed__2; x_16 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_16, 0, x_15); lean_ctor_set(x_16, 1, x_14); @@ -2773,13 +2773,13 @@ x_18 = lean_ctor_get(x_8, 1); lean_inc(x_18); lean_inc(x_17); lean_dec(x_8); -x_19 = l_myMacro____x40_Init_Notation___hyg_156____closed__1; +x_19 = l___aux__Init__Notation______macroRules__precArg__1___closed__1; 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_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_21 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_22 = lean_array_push(x_21, x_20); -x_23 = l_myMacro____x40_Init_Notation___hyg_73____closed__2; +x_23 = l___aux__Init__Notation______macroRules__precMax__1___closed__2; x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); @@ -2851,7 +2851,7 @@ x_1 = l_precLead___closed__5; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_239____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules__precLead__1___closed__1() { _start: { lean_object* x_1; @@ -2859,7 +2859,7 @@ x_1 = lean_mk_string("1022"); return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_239_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__precLead__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2878,19 +2878,19 @@ return x_7; else { lean_object* x_8; uint8_t x_9; -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; x_10 = lean_ctor_get(x_8, 0); -x_11 = l_myMacro____x40_Init_Notation___hyg_239____closed__1; +x_11 = l___aux__Init__Notation______macroRules__precLead__1___closed__1; x_12 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); -x_13 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_13 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_14 = lean_array_push(x_13, x_12); -x_15 = l_myMacro____x40_Init_Notation___hyg_73____closed__2; +x_15 = l___aux__Init__Notation______macroRules__precMax__1___closed__2; x_16 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_16, 0, x_15); lean_ctor_set(x_16, 1, x_14); @@ -2905,13 +2905,13 @@ x_18 = lean_ctor_get(x_8, 1); lean_inc(x_18); lean_inc(x_17); lean_dec(x_8); -x_19 = l_myMacro____x40_Init_Notation___hyg_239____closed__1; +x_19 = l___aux__Init__Notation______macroRules__precLead__1___closed__1; 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_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_21 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_22 = lean_array_push(x_21, x_20); -x_23 = l_myMacro____x40_Init_Notation___hyg_73____closed__2; +x_23 = l___aux__Init__Notation______macroRules__precMax__1___closed__2; x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); @@ -3041,7 +3041,7 @@ x_1 = l_prec_x28___x29___closed__10; return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_331_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabprec_x28___x29_xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -3071,11 +3071,11 @@ return x_10; } } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_331____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabprec_x28___x29_xbb__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_myMacro____x40_Init_Notation___hyg_331_(x_1, x_2, x_3); +x_4 = l___aux__Init__Notation______macroRules___xabprec_x28___x29_xbb__1(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -3140,7 +3140,7 @@ x_1 = l_precMin___closed__5; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_402____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules__precMin__1___closed__1() { _start: { lean_object* x_1; @@ -3148,7 +3148,7 @@ x_1 = lean_mk_string("10"); return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_402_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__precMin__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -3167,19 +3167,19 @@ return x_7; else { lean_object* x_8; uint8_t x_9; -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; x_10 = lean_ctor_get(x_8, 0); -x_11 = l_myMacro____x40_Init_Notation___hyg_402____closed__1; +x_11 = l___aux__Init__Notation______macroRules__precMin__1___closed__1; x_12 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); -x_13 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_13 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_14 = lean_array_push(x_13, x_12); -x_15 = l_myMacro____x40_Init_Notation___hyg_73____closed__2; +x_15 = l___aux__Init__Notation______macroRules__precMax__1___closed__2; x_16 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_16, 0, x_15); lean_ctor_set(x_16, 1, x_14); @@ -3194,13 +3194,13 @@ x_18 = lean_ctor_get(x_8, 1); lean_inc(x_18); lean_inc(x_17); lean_dec(x_8); -x_19 = l_myMacro____x40_Init_Notation___hyg_402____closed__1; +x_19 = l___aux__Init__Notation______macroRules__precMin__1___closed__1; 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_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_21 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_22 = lean_array_push(x_21, x_20); -x_23 = l_myMacro____x40_Init_Notation___hyg_73____closed__2; +x_23 = l___aux__Init__Notation______macroRules__precMax__1___closed__2; x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); @@ -3272,7 +3272,7 @@ x_1 = l_precMin1___closed__5; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_485____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules__precMin1__1___closed__1() { _start: { lean_object* x_1; @@ -3280,7 +3280,7 @@ x_1 = lean_mk_string("11"); return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_485_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__precMin1__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -3299,19 +3299,19 @@ return x_7; else { lean_object* x_8; uint8_t x_9; -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; x_10 = lean_ctor_get(x_8, 0); -x_11 = l_myMacro____x40_Init_Notation___hyg_485____closed__1; +x_11 = l___aux__Init__Notation______macroRules__precMin1__1___closed__1; x_12 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); -x_13 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_13 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_14 = lean_array_push(x_13, x_12); -x_15 = l_myMacro____x40_Init_Notation___hyg_73____closed__2; +x_15 = l___aux__Init__Notation______macroRules__precMax__1___closed__2; x_16 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_16, 0, x_15); lean_ctor_set(x_16, 1, x_14); @@ -3326,13 +3326,13 @@ x_18 = lean_ctor_get(x_8, 1); lean_inc(x_18); lean_inc(x_17); lean_dec(x_8); -x_19 = l_myMacro____x40_Init_Notation___hyg_485____closed__1; +x_19 = l___aux__Init__Notation______macroRules__precMin1__1___closed__1; 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_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_21 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_22 = lean_array_push(x_21, x_20); -x_23 = l_myMacro____x40_Init_Notation___hyg_73____closed__2; +x_23 = l___aux__Init__Notation______macroRules__precMax__1___closed__2; x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); @@ -3402,7 +3402,7 @@ x_1 = l_termMax__prec___closed__5; return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_567_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__termMax__prec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -3421,19 +3421,19 @@ return x_7; else { lean_object* x_8; uint8_t x_9; -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; x_10 = lean_ctor_get(x_8, 0); -x_11 = l_myMacro____x40_Init_Notation___hyg_73____closed__3; +x_11 = l___aux__Init__Notation______macroRules__precMax__1___closed__3; x_12 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); -x_13 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_13 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_14 = lean_array_push(x_13, x_12); -x_15 = l_myMacro____x40_Init_Notation___hyg_73____closed__2; +x_15 = l___aux__Init__Notation______macroRules__precMax__1___closed__2; x_16 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_16, 0, x_15); lean_ctor_set(x_16, 1, x_14); @@ -3448,13 +3448,13 @@ x_18 = lean_ctor_get(x_8, 1); lean_inc(x_18); lean_inc(x_17); lean_dec(x_8); -x_19 = l_myMacro____x40_Init_Notation___hyg_73____closed__3; +x_19 = l___aux__Init__Notation______macroRules__precMax__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_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_21 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_22 = lean_array_push(x_21, x_20); -x_23 = l_myMacro____x40_Init_Notation___hyg_73____closed__2; +x_23 = l___aux__Init__Notation______macroRules__precMax__1___closed__2; x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); @@ -3526,7 +3526,7 @@ x_1 = l_prioDefault___closed__5; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_650____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules__prioDefault__1___closed__1() { _start: { lean_object* x_1; @@ -3534,7 +3534,7 @@ x_1 = lean_mk_string("1000"); return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_650_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__prioDefault__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -3553,19 +3553,19 @@ return x_7; else { lean_object* x_8; uint8_t x_9; -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; x_10 = lean_ctor_get(x_8, 0); -x_11 = l_myMacro____x40_Init_Notation___hyg_650____closed__1; +x_11 = l___aux__Init__Notation______macroRules__prioDefault__1___closed__1; x_12 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); -x_13 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_13 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_14 = lean_array_push(x_13, x_12); -x_15 = l_myMacro____x40_Init_Notation___hyg_73____closed__2; +x_15 = l___aux__Init__Notation______macroRules__precMax__1___closed__2; x_16 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_16, 0, x_15); lean_ctor_set(x_16, 1, x_14); @@ -3580,13 +3580,13 @@ x_18 = lean_ctor_get(x_8, 1); lean_inc(x_18); lean_inc(x_17); lean_dec(x_8); -x_19 = l_myMacro____x40_Init_Notation___hyg_650____closed__1; +x_19 = l___aux__Init__Notation______macroRules__prioDefault__1___closed__1; 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_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_21 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_22 = lean_array_push(x_21, x_20); -x_23 = l_myMacro____x40_Init_Notation___hyg_73____closed__2; +x_23 = l___aux__Init__Notation______macroRules__precMax__1___closed__2; x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); @@ -3658,7 +3658,7 @@ x_1 = l_prioLow___closed__5; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_733____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules__prioLow__1___closed__1() { _start: { lean_object* x_1; @@ -3666,7 +3666,7 @@ x_1 = lean_mk_string("100"); return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_733_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__prioLow__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -3685,19 +3685,19 @@ return x_7; else { lean_object* x_8; uint8_t x_9; -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; x_10 = lean_ctor_get(x_8, 0); -x_11 = l_myMacro____x40_Init_Notation___hyg_733____closed__1; +x_11 = l___aux__Init__Notation______macroRules__prioLow__1___closed__1; x_12 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); -x_13 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_13 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_14 = lean_array_push(x_13, x_12); -x_15 = l_myMacro____x40_Init_Notation___hyg_73____closed__2; +x_15 = l___aux__Init__Notation______macroRules__precMax__1___closed__2; x_16 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_16, 0, x_15); lean_ctor_set(x_16, 1, x_14); @@ -3712,13 +3712,13 @@ x_18 = lean_ctor_get(x_8, 1); lean_inc(x_18); lean_inc(x_17); lean_dec(x_8); -x_19 = l_myMacro____x40_Init_Notation___hyg_733____closed__1; +x_19 = l___aux__Init__Notation______macroRules__prioLow__1___closed__1; 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_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_21 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_22 = lean_array_push(x_21, x_20); -x_23 = l_myMacro____x40_Init_Notation___hyg_73____closed__2; +x_23 = l___aux__Init__Notation______macroRules__precMax__1___closed__2; x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); @@ -3790,7 +3790,7 @@ x_1 = l_prioMid___closed__5; return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_816_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__prioMid__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -3809,19 +3809,19 @@ return x_7; else { lean_object* x_8; uint8_t x_9; -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; x_10 = lean_ctor_get(x_8, 0); -x_11 = l_myMacro____x40_Init_Notation___hyg_650____closed__1; +x_11 = l___aux__Init__Notation______macroRules__prioDefault__1___closed__1; x_12 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); -x_13 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_13 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_14 = lean_array_push(x_13, x_12); -x_15 = l_myMacro____x40_Init_Notation___hyg_73____closed__2; +x_15 = l___aux__Init__Notation______macroRules__precMax__1___closed__2; x_16 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_16, 0, x_15); lean_ctor_set(x_16, 1, x_14); @@ -3836,13 +3836,13 @@ x_18 = lean_ctor_get(x_8, 1); lean_inc(x_18); lean_inc(x_17); lean_dec(x_8); -x_19 = l_myMacro____x40_Init_Notation___hyg_650____closed__1; +x_19 = l___aux__Init__Notation______macroRules__prioDefault__1___closed__1; 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_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_21 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_22 = lean_array_push(x_21, x_20); -x_23 = l_myMacro____x40_Init_Notation___hyg_73____closed__2; +x_23 = l___aux__Init__Notation______macroRules__precMax__1___closed__2; x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); @@ -3914,7 +3914,7 @@ x_1 = l_prioHigh___closed__5; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_899____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules__prioHigh__1___closed__1() { _start: { lean_object* x_1; @@ -3922,7 +3922,7 @@ x_1 = lean_mk_string("10000"); return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_899_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__prioHigh__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -3941,19 +3941,19 @@ return x_7; else { lean_object* x_8; uint8_t x_9; -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; x_10 = lean_ctor_get(x_8, 0); -x_11 = l_myMacro____x40_Init_Notation___hyg_899____closed__1; +x_11 = l___aux__Init__Notation______macroRules__prioHigh__1___closed__1; x_12 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); -x_13 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_13 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_14 = lean_array_push(x_13, x_12); -x_15 = l_myMacro____x40_Init_Notation___hyg_73____closed__2; +x_15 = l___aux__Init__Notation______macroRules__precMax__1___closed__2; x_16 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_16, 0, x_15); lean_ctor_set(x_16, 1, x_14); @@ -3968,13 +3968,13 @@ x_18 = lean_ctor_get(x_8, 1); lean_inc(x_18); lean_inc(x_17); lean_dec(x_8); -x_19 = l_myMacro____x40_Init_Notation___hyg_899____closed__1; +x_19 = l___aux__Init__Notation______macroRules__prioHigh__1___closed__1; 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_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_21 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_22 = lean_array_push(x_21, x_20); -x_23 = l_myMacro____x40_Init_Notation___hyg_73____closed__2; +x_23 = l___aux__Init__Notation______macroRules__precMax__1___closed__2; x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); @@ -4066,7 +4066,7 @@ x_1 = l_prio_x28___x29___closed__6; return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_991_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabprio_x28___x29_xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -4096,11 +4096,11 @@ return x_10; } } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_991____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabprio_x28___x29_xbb__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_myMacro____x40_Init_Notation___hyg_991_(x_1, x_2, x_3); +x_4 = l___aux__Init__Notation______macroRules___xabprio_x28___x29_xbb__1(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -4388,7 +4388,7 @@ x_1 = l_stx___x3c_x7c_x3e_____closed__9; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1098____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__1() { _start: { lean_object* x_1; @@ -4396,17 +4396,17 @@ x_1 = lean_mk_string("unary"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1098____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Syntax_addPrec___closed__6; -x_2 = l_myMacro____x40_Init_Notation___hyg_1098____closed__1; +x_2 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1098____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__3() { _start: { lean_object* x_1; @@ -4414,22 +4414,22 @@ x_1 = lean_mk_string("many1"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1098____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_1098____closed__3; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__3; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1098____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_1098____closed__3; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_1098____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__4; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -4437,17 +4437,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1098____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_1098____closed__3; +x_2 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1098____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__7() { _start: { lean_object* x_1; @@ -4455,17 +4455,17 @@ x_1 = lean_mk_string("null"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1098____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_1098____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1098____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; @@ -4474,7 +4474,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_1098_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -4499,7 +4499,7 @@ x_8 = lean_unsigned_to_nat(0u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); lean_inc(x_2); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { @@ -4510,10 +4510,10 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_2, 1); lean_inc(x_14); lean_dec(x_2); -x_15 = l_myMacro____x40_Init_Notation___hyg_1098____closed__6; +x_15 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__6; x_16 = l_Lean_addMacroScope(x_14, x_15, x_13); x_17 = lean_box(0); -x_18 = l_myMacro____x40_Init_Notation___hyg_1098____closed__5; +x_18 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__5; lean_inc(x_12); x_19 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_19, 0, x_12); @@ -4525,9 +4525,9 @@ lean_inc(x_12); x_21 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_21, 0, x_12); lean_ctor_set(x_21, 1, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_22 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_23 = lean_array_push(x_22, x_9); -x_24 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); @@ -4535,12 +4535,12 @@ x_26 = l_prec_x28___x29___closed__7; x_27 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_27, 0, x_12); lean_ctor_set(x_27, 1, x_26); -x_28 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_28 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_29 = lean_array_push(x_28, x_19); x_30 = lean_array_push(x_29, x_21); x_31 = lean_array_push(x_30, x_25); x_32 = lean_array_push(x_31, x_27); -x_33 = l_myMacro____x40_Init_Notation___hyg_1098____closed__2; +x_33 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__2; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); @@ -4560,10 +4560,10 @@ lean_inc(x_37); x_38 = lean_ctor_get(x_2, 1); lean_inc(x_38); lean_dec(x_2); -x_39 = l_myMacro____x40_Init_Notation___hyg_1098____closed__6; +x_39 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__6; x_40 = l_Lean_addMacroScope(x_38, x_39, x_37); x_41 = lean_box(0); -x_42 = l_myMacro____x40_Init_Notation___hyg_1098____closed__5; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__5; lean_inc(x_35); x_43 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_43, 0, x_35); @@ -4575,9 +4575,9 @@ lean_inc(x_35); x_45 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_45, 0, x_35); lean_ctor_set(x_45, 1, x_44); -x_46 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_46 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_47 = lean_array_push(x_46, x_9); -x_48 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_48 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_49 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); @@ -4585,12 +4585,12 @@ x_50 = l_prec_x28___x29___closed__7; x_51 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_51, 0, x_35); lean_ctor_set(x_51, 1, x_50); -x_52 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_52 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_53 = lean_array_push(x_52, x_43); x_54 = lean_array_push(x_53, x_45); x_55 = lean_array_push(x_54, x_49); x_56 = lean_array_push(x_55, x_51); -x_57 = l_myMacro____x40_Init_Notation___hyg_1098____closed__2; +x_57 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__2; x_58 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); @@ -4602,7 +4602,7 @@ return x_59; } } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1199____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__1() { _start: { lean_object* x_1; @@ -4610,22 +4610,22 @@ x_1 = lean_mk_string("many"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1199____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_1199____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1199____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_1199____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_1199____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -4633,17 +4633,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1199____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_1199____closed__1; +x_2 = l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_1199_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -4668,7 +4668,7 @@ x_8 = lean_unsigned_to_nat(0u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); lean_inc(x_2); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { @@ -4679,10 +4679,10 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_2, 1); lean_inc(x_14); lean_dec(x_2); -x_15 = l_myMacro____x40_Init_Notation___hyg_1199____closed__4; +x_15 = l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__4; x_16 = l_Lean_addMacroScope(x_14, x_15, x_13); x_17 = lean_box(0); -x_18 = l_myMacro____x40_Init_Notation___hyg_1199____closed__3; +x_18 = l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__3; lean_inc(x_12); x_19 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_19, 0, x_12); @@ -4694,9 +4694,9 @@ lean_inc(x_12); x_21 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_21, 0, x_12); lean_ctor_set(x_21, 1, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_22 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_23 = lean_array_push(x_22, x_9); -x_24 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); @@ -4704,12 +4704,12 @@ x_26 = l_prec_x28___x29___closed__7; x_27 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_27, 0, x_12); lean_ctor_set(x_27, 1, x_26); -x_28 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_28 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_29 = lean_array_push(x_28, x_19); x_30 = lean_array_push(x_29, x_21); x_31 = lean_array_push(x_30, x_25); x_32 = lean_array_push(x_31, x_27); -x_33 = l_myMacro____x40_Init_Notation___hyg_1098____closed__2; +x_33 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__2; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); @@ -4729,10 +4729,10 @@ lean_inc(x_37); x_38 = lean_ctor_get(x_2, 1); lean_inc(x_38); lean_dec(x_2); -x_39 = l_myMacro____x40_Init_Notation___hyg_1199____closed__4; +x_39 = l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__4; x_40 = l_Lean_addMacroScope(x_38, x_39, x_37); x_41 = lean_box(0); -x_42 = l_myMacro____x40_Init_Notation___hyg_1199____closed__3; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__3; lean_inc(x_35); x_43 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_43, 0, x_35); @@ -4744,9 +4744,9 @@ lean_inc(x_35); x_45 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_45, 0, x_35); lean_ctor_set(x_45, 1, x_44); -x_46 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_46 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_47 = lean_array_push(x_46, x_9); -x_48 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_48 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_49 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); @@ -4754,12 +4754,12 @@ x_50 = l_prec_x28___x29___closed__7; x_51 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_51, 0, x_35); lean_ctor_set(x_51, 1, x_50); -x_52 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_52 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_53 = lean_array_push(x_52, x_43); x_54 = lean_array_push(x_53, x_45); x_55 = lean_array_push(x_54, x_49); x_56 = lean_array_push(x_55, x_51); -x_57 = l_myMacro____x40_Init_Notation___hyg_1098____closed__2; +x_57 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__2; x_58 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); @@ -4771,7 +4771,7 @@ return x_59; } } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1300____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules__stx___x3f__1___closed__1() { _start: { lean_object* x_1; @@ -4779,22 +4779,22 @@ x_1 = lean_mk_string("optional"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1300____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules__stx___x3f__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_1300____closed__1; +x_1 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1300____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules__stx___x3f__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_1300____closed__1; +x_1 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_1300____closed__2; +x_3 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -4802,17 +4802,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1300____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_1300____closed__1; +x_2 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_1300_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__stx___x3f__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -4837,7 +4837,7 @@ x_8 = lean_unsigned_to_nat(0u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); lean_inc(x_2); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { @@ -4848,10 +4848,10 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_2, 1); lean_inc(x_14); lean_dec(x_2); -x_15 = l_myMacro____x40_Init_Notation___hyg_1300____closed__4; +x_15 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4; x_16 = l_Lean_addMacroScope(x_14, x_15, x_13); x_17 = lean_box(0); -x_18 = l_myMacro____x40_Init_Notation___hyg_1300____closed__3; +x_18 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__3; lean_inc(x_12); x_19 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_19, 0, x_12); @@ -4863,9 +4863,9 @@ lean_inc(x_12); x_21 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_21, 0, x_12); lean_ctor_set(x_21, 1, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_22 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_23 = lean_array_push(x_22, x_9); -x_24 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); @@ -4873,12 +4873,12 @@ x_26 = l_prec_x28___x29___closed__7; x_27 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_27, 0, x_12); lean_ctor_set(x_27, 1, x_26); -x_28 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_28 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_29 = lean_array_push(x_28, x_19); x_30 = lean_array_push(x_29, x_21); x_31 = lean_array_push(x_30, x_25); x_32 = lean_array_push(x_31, x_27); -x_33 = l_myMacro____x40_Init_Notation___hyg_1098____closed__2; +x_33 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__2; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); @@ -4898,10 +4898,10 @@ lean_inc(x_37); x_38 = lean_ctor_get(x_2, 1); lean_inc(x_38); lean_dec(x_2); -x_39 = l_myMacro____x40_Init_Notation___hyg_1300____closed__4; +x_39 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4; x_40 = l_Lean_addMacroScope(x_38, x_39, x_37); x_41 = lean_box(0); -x_42 = l_myMacro____x40_Init_Notation___hyg_1300____closed__3; +x_42 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__3; lean_inc(x_35); x_43 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_43, 0, x_35); @@ -4913,9 +4913,9 @@ lean_inc(x_35); x_45 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_45, 0, x_35); lean_ctor_set(x_45, 1, x_44); -x_46 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_46 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_47 = lean_array_push(x_46, x_9); -x_48 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_48 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_49 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); @@ -4923,12 +4923,12 @@ x_50 = l_prec_x28___x29___closed__7; x_51 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_51, 0, x_35); lean_ctor_set(x_51, 1, x_50); -x_52 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_52 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_53 = lean_array_push(x_52, x_43); x_54 = lean_array_push(x_53, x_45); x_55 = lean_array_push(x_54, x_49); x_56 = lean_array_push(x_55, x_51); -x_57 = l_myMacro____x40_Init_Notation___hyg_1098____closed__2; +x_57 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__2; x_58 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); @@ -4940,7 +4940,7 @@ return x_59; } } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1400____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -4948,17 +4948,17 @@ x_1 = lean_mk_string("binary"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1400____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Syntax_addPrec___closed__6; -x_2 = l_myMacro____x40_Init_Notation___hyg_1400____closed__1; +x_2 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1400____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__3() { _start: { lean_object* x_1; @@ -4966,22 +4966,22 @@ x_1 = lean_mk_string("orelse"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1400____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_1400____closed__3; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__3; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1400____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_1400____closed__3; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_1400____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__4; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -4989,17 +4989,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1400____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_1400____closed__3; +x_2 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1400____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__7() { _start: { lean_object* x_1; @@ -5007,7 +5007,7 @@ x_1 = lean_mk_string(","); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1400____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; @@ -5016,7 +5016,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_1400_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -5043,7 +5043,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -5054,10 +5054,10 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_1400____closed__6; +x_17 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__6; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); x_19 = lean_box(0); -x_20 = l_myMacro____x40_Init_Notation___hyg_1400____closed__5; +x_20 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__5; lean_inc(x_14); x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); @@ -5069,13 +5069,13 @@ lean_inc(x_14); x_23 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_24 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_25 = lean_array_push(x_24, x_9); -x_26 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_26 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_27 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_27, 0, x_26); lean_ctor_set(x_27, 1, x_25); -x_28 = l_myMacro____x40_Init_Notation___hyg_1400____closed__7; +x_28 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__7; lean_inc(x_14); x_29 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_29, 0, x_14); @@ -5088,14 +5088,14 @@ x_32 = l_prec_x28___x29___closed__7; x_33 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_33, 0, x_14); lean_ctor_set(x_33, 1, x_32); -x_34 = l_myMacro____x40_Init_Notation___hyg_1400____closed__8; +x_34 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__8; x_35 = lean_array_push(x_34, x_21); x_36 = lean_array_push(x_35, x_23); x_37 = lean_array_push(x_36, x_27); x_38 = lean_array_push(x_37, x_29); x_39 = lean_array_push(x_38, x_31); x_40 = lean_array_push(x_39, x_33); -x_41 = l_myMacro____x40_Init_Notation___hyg_1400____closed__2; +x_41 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__2; x_42 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_42, 0, x_41); lean_ctor_set(x_42, 1, x_40); @@ -5115,10 +5115,10 @@ lean_inc(x_45); x_46 = lean_ctor_get(x_2, 1); lean_inc(x_46); lean_dec(x_2); -x_47 = l_myMacro____x40_Init_Notation___hyg_1400____closed__6; +x_47 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__6; x_48 = l_Lean_addMacroScope(x_46, x_47, x_45); x_49 = lean_box(0); -x_50 = l_myMacro____x40_Init_Notation___hyg_1400____closed__5; +x_50 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__5; lean_inc(x_43); x_51 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_51, 0, x_43); @@ -5130,13 +5130,13 @@ lean_inc(x_43); x_53 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_53, 0, x_43); lean_ctor_set(x_53, 1, x_52); -x_54 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_54 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_55 = lean_array_push(x_54, x_9); -x_56 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_56 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_57 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_57, 0, x_56); lean_ctor_set(x_57, 1, x_55); -x_58 = l_myMacro____x40_Init_Notation___hyg_1400____closed__7; +x_58 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__7; lean_inc(x_43); x_59 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_59, 0, x_43); @@ -5149,14 +5149,14 @@ x_62 = l_prec_x28___x29___closed__7; x_63 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_63, 0, x_43); lean_ctor_set(x_63, 1, x_62); -x_64 = l_myMacro____x40_Init_Notation___hyg_1400____closed__8; +x_64 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__8; x_65 = lean_array_push(x_64, x_51); x_66 = lean_array_push(x_65, x_53); x_67 = lean_array_push(x_66, x_57); x_68 = lean_array_push(x_67, x_59); x_69 = lean_array_push(x_68, x_61); x_70 = lean_array_push(x_69, x_63); -x_71 = l_myMacro____x40_Init_Notation___hyg_1400____closed__2; +x_71 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__2; x_72 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_72, 0, x_71); lean_ctor_set(x_72, 1, x_70); @@ -5228,7 +5228,7 @@ x_1 = l_stx___x2c_x2a___closed__5; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__1() { _start: { lean_object* x_1; @@ -5236,17 +5236,17 @@ x_1 = lean_mk_string("sepBy"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Syntax_addPrec___closed__6; -x_2 = l_myMacro____x40_Init_Notation___hyg_1534____closed__1; +x_2 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__3() { _start: { lean_object* x_1; @@ -5254,7 +5254,7 @@ x_1 = lean_mk_string("sepBy("); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__4() { _start: { lean_object* x_1; @@ -5262,17 +5262,17 @@ x_1 = lean_mk_string("strLit"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_1534____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__6() { _start: { lean_object* x_1; @@ -5280,7 +5280,7 @@ x_1 = lean_mk_string("\",\""); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__7() { _start: { lean_object* x_1; @@ -5288,17 +5288,17 @@ x_1 = lean_mk_string("atom"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Syntax_addPrec___closed__6; -x_2 = l_myMacro____x40_Init_Notation___hyg_1534____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__9() { _start: { lean_object* x_1; @@ -5306,7 +5306,7 @@ x_1 = lean_mk_string("\", \""); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__10() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; @@ -5315,7 +5315,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__11() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; @@ -5324,19 +5324,19 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__12() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; -x_2 = l_myMacro____x40_Init_Notation___hyg_1534____closed__11; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__11; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__13() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__13() { _start: { lean_object* x_1; lean_object* x_2; @@ -5345,7 +5345,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_1534_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -5369,39 +5369,39 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(0u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_myMacro____x40_Init_Notation___hyg_1534____closed__3; +x_13 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__3; lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); -x_15 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_15 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_16 = lean_array_push(x_15, x_9); -x_17 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_17 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_18 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_18, 0, x_17); lean_ctor_set(x_18, 1, x_16); -x_19 = l_myMacro____x40_Init_Notation___hyg_1400____closed__7; +x_19 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__7; lean_inc(x_12); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_12); lean_ctor_set(x_20, 1, x_19); -x_21 = l_myMacro____x40_Init_Notation___hyg_1534____closed__6; +x_21 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__6; lean_inc(x_12); x_22 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_22, 0, x_12); lean_ctor_set(x_22, 1, x_21); x_23 = lean_array_push(x_15, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_1534____closed__5; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__5; x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); -x_26 = l_myMacro____x40_Init_Notation___hyg_1534____closed__9; +x_26 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__9; lean_inc(x_12); x_27 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_27, 0, x_12); @@ -5411,7 +5411,7 @@ x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_24); lean_ctor_set(x_29, 1, x_28); x_30 = lean_array_push(x_15, x_29); -x_31 = l_myMacro____x40_Init_Notation___hyg_1534____closed__8; +x_31 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__8; x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -5419,7 +5419,7 @@ x_33 = lean_array_push(x_15, x_32); x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_17); lean_ctor_set(x_34, 1, x_33); -x_35 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_35 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; lean_inc(x_20); x_36 = lean_array_push(x_35, x_20); x_37 = lean_array_push(x_36, x_34); @@ -5430,16 +5430,16 @@ x_39 = l_prec_x28___x29___closed__7; x_40 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_40, 0, x_12); lean_ctor_set(x_40, 1, x_39); -x_41 = l_myMacro____x40_Init_Notation___hyg_1534____closed__13; +x_41 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__13; x_42 = lean_array_push(x_41, x_14); x_43 = lean_array_push(x_42, x_18); x_44 = lean_array_push(x_43, x_20); x_45 = lean_array_push(x_44, x_25); x_46 = lean_array_push(x_45, x_38); -x_47 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_47 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_48 = lean_array_push(x_46, x_47); x_49 = lean_array_push(x_48, x_40); -x_50 = l_myMacro____x40_Init_Notation___hyg_1534____closed__2; +x_50 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__2; x_51 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_51, 0, x_50); lean_ctor_set(x_51, 1, x_49); @@ -5454,33 +5454,33 @@ x_53 = lean_ctor_get(x_10, 1); lean_inc(x_53); lean_inc(x_52); lean_dec(x_10); -x_54 = l_myMacro____x40_Init_Notation___hyg_1534____closed__3; +x_54 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__3; lean_inc(x_52); x_55 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_55, 0, x_52); lean_ctor_set(x_55, 1, x_54); -x_56 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_56 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_57 = lean_array_push(x_56, x_9); -x_58 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_58 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_59 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_59, 0, x_58); lean_ctor_set(x_59, 1, x_57); -x_60 = l_myMacro____x40_Init_Notation___hyg_1400____closed__7; +x_60 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__7; lean_inc(x_52); x_61 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_61, 0, x_52); lean_ctor_set(x_61, 1, x_60); -x_62 = l_myMacro____x40_Init_Notation___hyg_1534____closed__6; +x_62 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__6; lean_inc(x_52); x_63 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_63, 0, x_52); lean_ctor_set(x_63, 1, x_62); x_64 = lean_array_push(x_56, x_63); -x_65 = l_myMacro____x40_Init_Notation___hyg_1534____closed__5; +x_65 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__5; x_66 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_66, 0, x_65); lean_ctor_set(x_66, 1, x_64); -x_67 = l_myMacro____x40_Init_Notation___hyg_1534____closed__9; +x_67 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__9; lean_inc(x_52); x_68 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_68, 0, x_52); @@ -5490,7 +5490,7 @@ x_70 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_70, 0, x_65); lean_ctor_set(x_70, 1, x_69); x_71 = lean_array_push(x_56, x_70); -x_72 = l_myMacro____x40_Init_Notation___hyg_1534____closed__8; +x_72 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__8; x_73 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_73, 0, x_72); lean_ctor_set(x_73, 1, x_71); @@ -5498,7 +5498,7 @@ x_74 = lean_array_push(x_56, x_73); x_75 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_75, 0, x_58); lean_ctor_set(x_75, 1, x_74); -x_76 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_76 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; lean_inc(x_61); x_77 = lean_array_push(x_76, x_61); x_78 = lean_array_push(x_77, x_75); @@ -5509,16 +5509,16 @@ x_80 = l_prec_x28___x29___closed__7; x_81 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_81, 0, x_52); lean_ctor_set(x_81, 1, x_80); -x_82 = l_myMacro____x40_Init_Notation___hyg_1534____closed__13; +x_82 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__13; x_83 = lean_array_push(x_82, x_55); x_84 = lean_array_push(x_83, x_59); x_85 = lean_array_push(x_84, x_61); x_86 = lean_array_push(x_85, x_66); x_87 = lean_array_push(x_86, x_79); -x_88 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_88 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_89 = lean_array_push(x_87, x_88); x_90 = lean_array_push(x_89, x_81); -x_91 = l_myMacro____x40_Init_Notation___hyg_1534____closed__2; +x_91 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__2; x_92 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_92, 0, x_91); lean_ctor_set(x_92, 1, x_90); @@ -5590,7 +5590,7 @@ x_1 = l_stx___x2c_x2b___closed__5; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1685____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1___closed__1() { _start: { lean_object* x_1; @@ -5598,17 +5598,17 @@ x_1 = lean_mk_string("sepBy1"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1685____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Syntax_addPrec___closed__6; -x_2 = l_myMacro____x40_Init_Notation___hyg_1685____closed__1; +x_2 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1685____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1___closed__3() { _start: { lean_object* x_1; @@ -5616,7 +5616,7 @@ x_1 = lean_mk_string("sepBy1("); return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_1685_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -5640,39 +5640,39 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(0u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_myMacro____x40_Init_Notation___hyg_1685____closed__3; +x_13 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1___closed__3; lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); -x_15 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_15 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_16 = lean_array_push(x_15, x_9); -x_17 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_17 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_18 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_18, 0, x_17); lean_ctor_set(x_18, 1, x_16); -x_19 = l_myMacro____x40_Init_Notation___hyg_1400____closed__7; +x_19 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__7; lean_inc(x_12); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_12); lean_ctor_set(x_20, 1, x_19); -x_21 = l_myMacro____x40_Init_Notation___hyg_1534____closed__6; +x_21 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__6; lean_inc(x_12); x_22 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_22, 0, x_12); lean_ctor_set(x_22, 1, x_21); x_23 = lean_array_push(x_15, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_1534____closed__5; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__5; x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); -x_26 = l_myMacro____x40_Init_Notation___hyg_1534____closed__9; +x_26 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__9; lean_inc(x_12); x_27 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_27, 0, x_12); @@ -5682,7 +5682,7 @@ x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_24); lean_ctor_set(x_29, 1, x_28); x_30 = lean_array_push(x_15, x_29); -x_31 = l_myMacro____x40_Init_Notation___hyg_1534____closed__8; +x_31 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__8; x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -5690,7 +5690,7 @@ x_33 = lean_array_push(x_15, x_32); x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_17); lean_ctor_set(x_34, 1, x_33); -x_35 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_35 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; lean_inc(x_20); x_36 = lean_array_push(x_35, x_20); x_37 = lean_array_push(x_36, x_34); @@ -5701,16 +5701,16 @@ x_39 = l_prec_x28___x29___closed__7; x_40 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_40, 0, x_12); lean_ctor_set(x_40, 1, x_39); -x_41 = l_myMacro____x40_Init_Notation___hyg_1534____closed__13; +x_41 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__13; x_42 = lean_array_push(x_41, x_14); x_43 = lean_array_push(x_42, x_18); x_44 = lean_array_push(x_43, x_20); x_45 = lean_array_push(x_44, x_25); x_46 = lean_array_push(x_45, x_38); -x_47 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_47 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_48 = lean_array_push(x_46, x_47); x_49 = lean_array_push(x_48, x_40); -x_50 = l_myMacro____x40_Init_Notation___hyg_1685____closed__2; +x_50 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1___closed__2; x_51 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_51, 0, x_50); lean_ctor_set(x_51, 1, x_49); @@ -5725,33 +5725,33 @@ x_53 = lean_ctor_get(x_10, 1); lean_inc(x_53); lean_inc(x_52); lean_dec(x_10); -x_54 = l_myMacro____x40_Init_Notation___hyg_1685____closed__3; +x_54 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1___closed__3; lean_inc(x_52); x_55 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_55, 0, x_52); lean_ctor_set(x_55, 1, x_54); -x_56 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_56 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_57 = lean_array_push(x_56, x_9); -x_58 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_58 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_59 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_59, 0, x_58); lean_ctor_set(x_59, 1, x_57); -x_60 = l_myMacro____x40_Init_Notation___hyg_1400____closed__7; +x_60 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__7; lean_inc(x_52); x_61 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_61, 0, x_52); lean_ctor_set(x_61, 1, x_60); -x_62 = l_myMacro____x40_Init_Notation___hyg_1534____closed__6; +x_62 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__6; lean_inc(x_52); x_63 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_63, 0, x_52); lean_ctor_set(x_63, 1, x_62); x_64 = lean_array_push(x_56, x_63); -x_65 = l_myMacro____x40_Init_Notation___hyg_1534____closed__5; +x_65 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__5; x_66 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_66, 0, x_65); lean_ctor_set(x_66, 1, x_64); -x_67 = l_myMacro____x40_Init_Notation___hyg_1534____closed__9; +x_67 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__9; lean_inc(x_52); x_68 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_68, 0, x_52); @@ -5761,7 +5761,7 @@ x_70 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_70, 0, x_65); lean_ctor_set(x_70, 1, x_69); x_71 = lean_array_push(x_56, x_70); -x_72 = l_myMacro____x40_Init_Notation___hyg_1534____closed__8; +x_72 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__8; x_73 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_73, 0, x_72); lean_ctor_set(x_73, 1, x_71); @@ -5769,7 +5769,7 @@ x_74 = lean_array_push(x_56, x_73); x_75 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_75, 0, x_58); lean_ctor_set(x_75, 1, x_74); -x_76 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_76 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; lean_inc(x_61); x_77 = lean_array_push(x_76, x_61); x_78 = lean_array_push(x_77, x_75); @@ -5780,16 +5780,16 @@ x_80 = l_prec_x28___x29___closed__7; x_81 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_81, 0, x_52); lean_ctor_set(x_81, 1, x_80); -x_82 = l_myMacro____x40_Init_Notation___hyg_1534____closed__13; +x_82 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__13; x_83 = lean_array_push(x_82, x_55); x_84 = lean_array_push(x_83, x_59); x_85 = lean_array_push(x_84, x_61); x_86 = lean_array_push(x_85, x_66); x_87 = lean_array_push(x_86, x_79); -x_88 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_88 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_89 = lean_array_push(x_87, x_88); x_90 = lean_array_push(x_89, x_81); -x_91 = l_myMacro____x40_Init_Notation___hyg_1685____closed__2; +x_91 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1___closed__2; x_92 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_92, 0, x_91); lean_ctor_set(x_92, 1, x_90); @@ -5861,7 +5861,7 @@ x_1 = l_stx___x2c_x2a_x2c_x3f___closed__5; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_1836____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_x2c_x3f_xbb__1___closed__1() { _start: { lean_object* x_1; @@ -5869,7 +5869,7 @@ x_1 = lean_mk_string("allowTrailingSep"); return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_1836_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_x2c_x3f_xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -5893,39 +5893,39 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(0u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_myMacro____x40_Init_Notation___hyg_1534____closed__3; +x_13 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__3; lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); -x_15 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_15 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_16 = lean_array_push(x_15, x_9); -x_17 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_17 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_18 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_18, 0, x_17); lean_ctor_set(x_18, 1, x_16); -x_19 = l_myMacro____x40_Init_Notation___hyg_1400____closed__7; +x_19 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__7; lean_inc(x_12); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_12); lean_ctor_set(x_20, 1, x_19); -x_21 = l_myMacro____x40_Init_Notation___hyg_1534____closed__6; +x_21 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__6; lean_inc(x_12); x_22 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_22, 0, x_12); lean_ctor_set(x_22, 1, x_21); x_23 = lean_array_push(x_15, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_1534____closed__5; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__5; x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); -x_26 = l_myMacro____x40_Init_Notation___hyg_1534____closed__9; +x_26 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__9; lean_inc(x_12); x_27 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_27, 0, x_12); @@ -5935,7 +5935,7 @@ x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_24); lean_ctor_set(x_29, 1, x_28); x_30 = lean_array_push(x_15, x_29); -x_31 = l_myMacro____x40_Init_Notation___hyg_1534____closed__8; +x_31 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__8; x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -5943,7 +5943,7 @@ x_33 = lean_array_push(x_15, x_32); x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_17); lean_ctor_set(x_34, 1, x_33); -x_35 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_35 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; lean_inc(x_20); x_36 = lean_array_push(x_35, x_20); lean_inc(x_36); @@ -5951,7 +5951,7 @@ x_37 = lean_array_push(x_36, x_34); x_38 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_38, 0, x_17); lean_ctor_set(x_38, 1, x_37); -x_39 = l_myMacro____x40_Init_Notation___hyg_1836____closed__1; +x_39 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_x2c_x3f_xbb__1___closed__1; lean_inc(x_12); x_40 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_40, 0, x_12); @@ -5964,7 +5964,7 @@ x_43 = l_prec_x28___x29___closed__7; x_44 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_44, 0, x_12); lean_ctor_set(x_44, 1, x_43); -x_45 = l_myMacro____x40_Init_Notation___hyg_1534____closed__13; +x_45 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__13; x_46 = lean_array_push(x_45, x_14); x_47 = lean_array_push(x_46, x_18); x_48 = lean_array_push(x_47, x_20); @@ -5972,7 +5972,7 @@ x_49 = lean_array_push(x_48, x_25); x_50 = lean_array_push(x_49, x_38); x_51 = lean_array_push(x_50, x_42); x_52 = lean_array_push(x_51, x_44); -x_53 = l_myMacro____x40_Init_Notation___hyg_1534____closed__2; +x_53 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__2; x_54 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_54, 0, x_53); lean_ctor_set(x_54, 1, x_52); @@ -5987,33 +5987,33 @@ x_56 = lean_ctor_get(x_10, 1); lean_inc(x_56); lean_inc(x_55); lean_dec(x_10); -x_57 = l_myMacro____x40_Init_Notation___hyg_1534____closed__3; +x_57 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__3; lean_inc(x_55); x_58 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_58, 0, x_55); lean_ctor_set(x_58, 1, x_57); -x_59 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_59 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_60 = lean_array_push(x_59, x_9); -x_61 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_61 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_61); lean_ctor_set(x_62, 1, x_60); -x_63 = l_myMacro____x40_Init_Notation___hyg_1400____closed__7; +x_63 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__7; lean_inc(x_55); x_64 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_64, 0, x_55); lean_ctor_set(x_64, 1, x_63); -x_65 = l_myMacro____x40_Init_Notation___hyg_1534____closed__6; +x_65 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__6; lean_inc(x_55); x_66 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_66, 0, x_55); lean_ctor_set(x_66, 1, x_65); x_67 = lean_array_push(x_59, x_66); -x_68 = l_myMacro____x40_Init_Notation___hyg_1534____closed__5; +x_68 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__5; x_69 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_69, 0, x_68); lean_ctor_set(x_69, 1, x_67); -x_70 = l_myMacro____x40_Init_Notation___hyg_1534____closed__9; +x_70 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__9; lean_inc(x_55); x_71 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_71, 0, x_55); @@ -6023,7 +6023,7 @@ x_73 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_73, 0, x_68); lean_ctor_set(x_73, 1, x_72); x_74 = lean_array_push(x_59, x_73); -x_75 = l_myMacro____x40_Init_Notation___hyg_1534____closed__8; +x_75 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__8; x_76 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_74); @@ -6031,7 +6031,7 @@ x_77 = lean_array_push(x_59, x_76); x_78 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_78, 0, x_61); lean_ctor_set(x_78, 1, x_77); -x_79 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_79 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; lean_inc(x_64); x_80 = lean_array_push(x_79, x_64); lean_inc(x_80); @@ -6039,7 +6039,7 @@ x_81 = lean_array_push(x_80, x_78); x_82 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_82, 0, x_61); lean_ctor_set(x_82, 1, x_81); -x_83 = l_myMacro____x40_Init_Notation___hyg_1836____closed__1; +x_83 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_x2c_x3f_xbb__1___closed__1; lean_inc(x_55); x_84 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_84, 0, x_55); @@ -6052,7 +6052,7 @@ x_87 = l_prec_x28___x29___closed__7; x_88 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_88, 0, x_55); lean_ctor_set(x_88, 1, x_87); -x_89 = l_myMacro____x40_Init_Notation___hyg_1534____closed__13; +x_89 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__13; x_90 = lean_array_push(x_89, x_58); x_91 = lean_array_push(x_90, x_62); x_92 = lean_array_push(x_91, x_64); @@ -6060,7 +6060,7 @@ x_93 = lean_array_push(x_92, x_69); x_94 = lean_array_push(x_93, x_82); x_95 = lean_array_push(x_94, x_86); x_96 = lean_array_push(x_95, x_88); -x_97 = l_myMacro____x40_Init_Notation___hyg_1534____closed__2; +x_97 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__2; x_98 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_98, 0, x_97); lean_ctor_set(x_98, 1, x_96); @@ -6132,7 +6132,7 @@ x_1 = l_stx___x2c_x2b_x2c_x3f___closed__5; return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_1995_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_x2c_x3f_xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -6156,39 +6156,39 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(0u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_myMacro____x40_Init_Notation___hyg_1685____closed__3; +x_13 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1___closed__3; lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); -x_15 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_15 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_16 = lean_array_push(x_15, x_9); -x_17 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_17 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_18 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_18, 0, x_17); lean_ctor_set(x_18, 1, x_16); -x_19 = l_myMacro____x40_Init_Notation___hyg_1400____closed__7; +x_19 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__7; lean_inc(x_12); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_12); lean_ctor_set(x_20, 1, x_19); -x_21 = l_myMacro____x40_Init_Notation___hyg_1534____closed__6; +x_21 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__6; lean_inc(x_12); x_22 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_22, 0, x_12); lean_ctor_set(x_22, 1, x_21); x_23 = lean_array_push(x_15, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_1534____closed__5; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__5; x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); -x_26 = l_myMacro____x40_Init_Notation___hyg_1534____closed__9; +x_26 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__9; lean_inc(x_12); x_27 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_27, 0, x_12); @@ -6198,7 +6198,7 @@ x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_24); lean_ctor_set(x_29, 1, x_28); x_30 = lean_array_push(x_15, x_29); -x_31 = l_myMacro____x40_Init_Notation___hyg_1534____closed__8; +x_31 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__8; x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -6206,7 +6206,7 @@ x_33 = lean_array_push(x_15, x_32); x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_17); lean_ctor_set(x_34, 1, x_33); -x_35 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_35 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; lean_inc(x_20); x_36 = lean_array_push(x_35, x_20); lean_inc(x_36); @@ -6214,7 +6214,7 @@ x_37 = lean_array_push(x_36, x_34); x_38 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_38, 0, x_17); lean_ctor_set(x_38, 1, x_37); -x_39 = l_myMacro____x40_Init_Notation___hyg_1836____closed__1; +x_39 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_x2c_x3f_xbb__1___closed__1; lean_inc(x_12); x_40 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_40, 0, x_12); @@ -6227,7 +6227,7 @@ x_43 = l_prec_x28___x29___closed__7; x_44 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_44, 0, x_12); lean_ctor_set(x_44, 1, x_43); -x_45 = l_myMacro____x40_Init_Notation___hyg_1534____closed__13; +x_45 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__13; x_46 = lean_array_push(x_45, x_14); x_47 = lean_array_push(x_46, x_18); x_48 = lean_array_push(x_47, x_20); @@ -6235,7 +6235,7 @@ x_49 = lean_array_push(x_48, x_25); x_50 = lean_array_push(x_49, x_38); x_51 = lean_array_push(x_50, x_42); x_52 = lean_array_push(x_51, x_44); -x_53 = l_myMacro____x40_Init_Notation___hyg_1685____closed__2; +x_53 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1___closed__2; x_54 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_54, 0, x_53); lean_ctor_set(x_54, 1, x_52); @@ -6250,33 +6250,33 @@ x_56 = lean_ctor_get(x_10, 1); lean_inc(x_56); lean_inc(x_55); lean_dec(x_10); -x_57 = l_myMacro____x40_Init_Notation___hyg_1685____closed__3; +x_57 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1___closed__3; lean_inc(x_55); x_58 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_58, 0, x_55); lean_ctor_set(x_58, 1, x_57); -x_59 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_59 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_60 = lean_array_push(x_59, x_9); -x_61 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_61 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_61); lean_ctor_set(x_62, 1, x_60); -x_63 = l_myMacro____x40_Init_Notation___hyg_1400____closed__7; +x_63 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__7; lean_inc(x_55); x_64 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_64, 0, x_55); lean_ctor_set(x_64, 1, x_63); -x_65 = l_myMacro____x40_Init_Notation___hyg_1534____closed__6; +x_65 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__6; lean_inc(x_55); x_66 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_66, 0, x_55); lean_ctor_set(x_66, 1, x_65); x_67 = lean_array_push(x_59, x_66); -x_68 = l_myMacro____x40_Init_Notation___hyg_1534____closed__5; +x_68 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__5; x_69 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_69, 0, x_68); lean_ctor_set(x_69, 1, x_67); -x_70 = l_myMacro____x40_Init_Notation___hyg_1534____closed__9; +x_70 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__9; lean_inc(x_55); x_71 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_71, 0, x_55); @@ -6286,7 +6286,7 @@ x_73 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_73, 0, x_68); lean_ctor_set(x_73, 1, x_72); x_74 = lean_array_push(x_59, x_73); -x_75 = l_myMacro____x40_Init_Notation___hyg_1534____closed__8; +x_75 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__8; x_76 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_74); @@ -6294,7 +6294,7 @@ x_77 = lean_array_push(x_59, x_76); x_78 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_78, 0, x_61); lean_ctor_set(x_78, 1, x_77); -x_79 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_79 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; lean_inc(x_64); x_80 = lean_array_push(x_79, x_64); lean_inc(x_80); @@ -6302,7 +6302,7 @@ x_81 = lean_array_push(x_80, x_78); x_82 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_82, 0, x_61); lean_ctor_set(x_82, 1, x_81); -x_83 = l_myMacro____x40_Init_Notation___hyg_1836____closed__1; +x_83 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_x2c_x3f_xbb__1___closed__1; lean_inc(x_55); x_84 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_84, 0, x_55); @@ -6315,7 +6315,7 @@ x_87 = l_prec_x28___x29___closed__7; x_88 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_88, 0, x_55); lean_ctor_set(x_88, 1, x_87); -x_89 = l_myMacro____x40_Init_Notation___hyg_1534____closed__13; +x_89 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__13; x_90 = lean_array_push(x_89, x_58); x_91 = lean_array_push(x_90, x_62); x_92 = lean_array_push(x_91, x_64); @@ -6323,7 +6323,7 @@ x_93 = lean_array_push(x_92, x_69); x_94 = lean_array_push(x_93, x_82); x_95 = lean_array_push(x_94, x_86); x_96 = lean_array_push(x_95, x_88); -x_97 = l_myMacro____x40_Init_Notation___hyg_1685____closed__2; +x_97 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1___closed__2; x_98 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_98, 0, x_97); lean_ctor_set(x_98, 1, x_96); @@ -6421,7 +6421,7 @@ x_1 = l_stx_x21_____closed__7; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2159____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules__stx_x21____1___closed__1() { _start: { lean_object* x_1; @@ -6429,22 +6429,22 @@ x_1 = lean_mk_string("notFollowedBy"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2159____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules__stx_x21____1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_2159____closed__1; +x_1 = l___aux__Init__Notation______macroRules__stx_x21____1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2159____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules__stx_x21____1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_2159____closed__1; +x_1 = l___aux__Init__Notation______macroRules__stx_x21____1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_2159____closed__2; +x_3 = l___aux__Init__Notation______macroRules__stx_x21____1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -6452,17 +6452,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2159____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules__stx_x21____1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_2159____closed__1; +x_2 = l___aux__Init__Notation______macroRules__stx_x21____1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_2159_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__stx_x21____1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -6487,7 +6487,7 @@ x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); lean_inc(x_2); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { @@ -6498,10 +6498,10 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_2, 1); lean_inc(x_14); lean_dec(x_2); -x_15 = l_myMacro____x40_Init_Notation___hyg_2159____closed__4; +x_15 = l___aux__Init__Notation______macroRules__stx_x21____1___closed__4; x_16 = l_Lean_addMacroScope(x_14, x_15, x_13); x_17 = lean_box(0); -x_18 = l_myMacro____x40_Init_Notation___hyg_2159____closed__3; +x_18 = l___aux__Init__Notation______macroRules__stx_x21____1___closed__3; lean_inc(x_12); x_19 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_19, 0, x_12); @@ -6513,9 +6513,9 @@ lean_inc(x_12); x_21 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_21, 0, x_12); lean_ctor_set(x_21, 1, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_22 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_23 = lean_array_push(x_22, x_9); -x_24 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); @@ -6523,12 +6523,12 @@ x_26 = l_prec_x28___x29___closed__7; x_27 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_27, 0, x_12); lean_ctor_set(x_27, 1, x_26); -x_28 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_28 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_29 = lean_array_push(x_28, x_19); x_30 = lean_array_push(x_29, x_21); x_31 = lean_array_push(x_30, x_25); x_32 = lean_array_push(x_31, x_27); -x_33 = l_myMacro____x40_Init_Notation___hyg_1098____closed__2; +x_33 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__2; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); @@ -6548,10 +6548,10 @@ lean_inc(x_37); x_38 = lean_ctor_get(x_2, 1); lean_inc(x_38); lean_dec(x_2); -x_39 = l_myMacro____x40_Init_Notation___hyg_2159____closed__4; +x_39 = l___aux__Init__Notation______macroRules__stx_x21____1___closed__4; x_40 = l_Lean_addMacroScope(x_38, x_39, x_37); x_41 = lean_box(0); -x_42 = l_myMacro____x40_Init_Notation___hyg_2159____closed__3; +x_42 = l___aux__Init__Notation______macroRules__stx_x21____1___closed__3; lean_inc(x_35); x_43 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_43, 0, x_35); @@ -6563,9 +6563,9 @@ lean_inc(x_35); x_45 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_45, 0, x_35); lean_ctor_set(x_45, 1, x_44); -x_46 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_46 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_47 = lean_array_push(x_46, x_9); -x_48 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_48 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_49 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); @@ -6573,12 +6573,12 @@ x_50 = l_prec_x28___x29___closed__7; x_51 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_51, 0, x_35); lean_ctor_set(x_51, 1, x_50); -x_52 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_52 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_53 = lean_array_push(x_52, x_43); x_54 = lean_array_push(x_53, x_45); x_55 = lean_array_push(x_54, x_49); x_56 = lean_array_push(x_55, x_51); -x_57 = l_myMacro____x40_Init_Notation___hyg_1098____closed__2; +x_57 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__2; x_58 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); @@ -6794,7 +6794,7 @@ x_1 = l_term___u2218_____closed__9; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -6802,17 +6802,17 @@ x_1 = lean_mk_string("Term"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Syntax_addPrec___closed__4; -x_2 = l_myMacro____x40_Init_Notation___hyg_2293____closed__1; +x_2 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__3() { _start: { lean_object* x_1; @@ -6820,17 +6820,17 @@ x_1 = lean_mk_string("app"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_2293____closed__3; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__5() { _start: { lean_object* x_1; @@ -6838,22 +6838,22 @@ x_1 = lean_mk_string("Function.comp"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__5; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__5; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__5; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__5; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__6; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__6; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -6861,7 +6861,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__8() { _start: { lean_object* x_1; @@ -6869,17 +6869,17 @@ x_1 = lean_mk_string("Function"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_2293____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__8; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__10() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__10() { _start: { lean_object* x_1; @@ -6887,41 +6887,41 @@ x_1 = lean_mk_string("comp"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__11() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__9; -x_2 = l_myMacro____x40_Init_Notation___hyg_2293____closed__10; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__9; +x_2 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__10; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__12() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_2293____closed__11; +x_2 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__11; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__13() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_2293____closed__12; +x_2 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__12; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_2293_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -6948,7 +6948,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -6959,25 +6959,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_2293____closed__11; +x_17 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__11; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_2293____closed__7; -x_20 = l_myMacro____x40_Init_Notation___hyg_2293____closed__13; +x_19 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__7; +x_20 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__13; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -6997,25 +6997,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_2293____closed__11; +x_35 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__11; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_2293____closed__7; -x_38 = l_myMacro____x40_Init_Notation___hyg_2293____closed__13; +x_37 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__7; +x_38 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__13; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -7027,7 +7027,7 @@ return x_49; } } } -static lean_object* _init_l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1___closed__1() { +static lean_object* _init_l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -7036,18 +7036,18 @@ x_2 = l_Lean_SourceInfo_fromRef(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1___closed__1; +x_2 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1___closed__1; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_unexpand____x40_Init_Notation___hyg_2276____closed__1() { +static lean_object* _init_l___aux__Init__Notation______unexpand__Function__comp__1___closed__1() { _start: { lean_object* x_1; @@ -7055,17 +7055,17 @@ x_1 = lean_mk_string("ident"); return x_1; } } -static lean_object* _init_l_unexpand____x40_Init_Notation___hyg_2276____closed__2() { +static lean_object* _init_l___aux__Init__Notation______unexpand__Function__comp__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_unexpand____x40_Init_Notation___hyg_2276____closed__1; +x_2 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_unexpand____x40_Init_Notation___hyg_2276____closed__3() { +static lean_object* _init_l___aux__Init__Notation______unexpand__Function__comp__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; @@ -7074,11 +7074,11 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_2276_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Function__comp__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -7096,7 +7096,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -7134,7 +7134,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -7144,7 +7144,7 @@ x_25 = l_term___u2218_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -7167,7 +7167,7 @@ x_35 = l_term___u2218_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -7271,7 +7271,7 @@ x_1 = l_term___xd7_____closed__7; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2558____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -7279,22 +7279,22 @@ x_1 = lean_mk_string("Prod"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2558____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_2558____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2558____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_2558____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_2558____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -7302,41 +7302,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2558____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_2558____closed__1; +x_2 = l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2558____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_2558____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__4; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2558____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_2558____closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_2558_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -7363,7 +7363,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -7374,25 +7374,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_2558____closed__4; +x_17 = l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__4; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_2558____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_2558____closed__6; +x_19 = l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__6; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -7412,25 +7412,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_2558____closed__4; +x_35 = l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__4; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_2558____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_2558____closed__6; +x_37 = l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__6; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -7442,11 +7442,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_2541_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Prod__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -7464,7 +7464,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -7502,7 +7502,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -7512,7 +7512,7 @@ x_25 = l_term___xd7_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -7535,7 +7535,7 @@ x_35 = l_term___xd7_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -7638,7 +7638,7 @@ x_1 = l_term___x7c_x7c_x7c_____closed__7; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2823____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -7646,22 +7646,22 @@ x_1 = lean_mk_string("HOr.hOr"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2823____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_2823____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2823____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_2823____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_2823____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -7669,7 +7669,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2823____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -7677,17 +7677,17 @@ x_1 = lean_mk_string("HOr"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2823____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_2823____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2823____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -7695,41 +7695,41 @@ x_1 = lean_mk_string("hOr"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2823____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2823____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_2823____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2823____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_2823____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_2823____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_2823____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_2823_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -7756,7 +7756,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -7767,25 +7767,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_2823____closed__7; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__7; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_2823____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_2823____closed__9; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__9; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -7805,25 +7805,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_2823____closed__7; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__7; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_2823____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_2823____closed__9; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__9; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -7835,11 +7835,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_2806_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HOr__hOr__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -7857,7 +7857,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -7895,7 +7895,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -7905,7 +7905,7 @@ x_25 = l_term___x7c_x7c_x7c_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -7928,7 +7928,7 @@ x_35 = l_term___x7c_x7c_x7c_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -8031,7 +8031,7 @@ x_1 = l_term___x5e_x5e_x5e_____closed__7; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3088____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -8039,22 +8039,22 @@ x_1 = lean_mk_string("HXor.hXor"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3088____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_3088____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3088____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_3088____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_3088____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -8062,7 +8062,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3088____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -8070,17 +8070,17 @@ x_1 = lean_mk_string("HXor"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3088____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_3088____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3088____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -8088,41 +8088,41 @@ x_1 = lean_mk_string("hXor"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3088____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_3088____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_3088____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3088____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_3088____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3088____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_3088____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_3088_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -8149,7 +8149,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -8160,25 +8160,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_3088____closed__7; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__7; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_3088____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_3088____closed__9; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__9; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -8198,25 +8198,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_3088____closed__7; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__7; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_3088____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_3088____closed__9; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__9; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -8228,11 +8228,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_3071_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HXor__hXor__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -8250,7 +8250,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -8288,7 +8288,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -8298,7 +8298,7 @@ x_25 = l_term___x5e_x5e_x5e_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -8321,7 +8321,7 @@ x_35 = l_term___x5e_x5e_x5e_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -8424,7 +8424,7 @@ x_1 = l_term___x26_x26_x26_____closed__7; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3353____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -8432,22 +8432,22 @@ x_1 = lean_mk_string("HAnd.hAnd"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3353____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_3353____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3353____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_3353____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_3353____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -8455,7 +8455,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3353____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -8463,17 +8463,17 @@ x_1 = lean_mk_string("HAnd"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3353____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_3353____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3353____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -8481,41 +8481,41 @@ x_1 = lean_mk_string("hAnd"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3353____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_3353____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_3353____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3353____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_3353____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3353____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_3353____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_3353_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -8542,7 +8542,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -8553,25 +8553,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_3353____closed__7; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__7; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_3353____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_3353____closed__9; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__9; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -8591,25 +8591,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_3353____closed__7; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__7; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_3353____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_3353____closed__9; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__9; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -8621,11 +8621,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_3336_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HAnd__hAnd__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -8643,7 +8643,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -8681,7 +8681,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -8691,7 +8691,7 @@ x_25 = l_term___x26_x26_x26_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -8714,7 +8714,7 @@ x_35 = l_term___x26_x26_x26_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -8799,7 +8799,7 @@ x_1 = l_term___x2b_____closed__5; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3618____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -8807,22 +8807,22 @@ x_1 = lean_mk_string("HAdd.hAdd"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3618____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_3618____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3618____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_3618____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_3618____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -8830,7 +8830,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3618____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -8838,17 +8838,17 @@ x_1 = lean_mk_string("HAdd"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3618____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_3618____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3618____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -8856,41 +8856,41 @@ x_1 = lean_mk_string("hAdd"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3618____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_3618____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_3618____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3618____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_3618____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3618____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_3618____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_3618_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -8917,7 +8917,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -8928,25 +8928,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_3618____closed__7; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__7; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_3618____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_3618____closed__9; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__9; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -8966,25 +8966,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_3618____closed__7; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__7; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_3618____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_3618____closed__9; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__9; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -8996,11 +8996,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_3601_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HAdd__hAdd__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -9018,7 +9018,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -9056,7 +9056,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -9066,7 +9066,7 @@ x_25 = l_Lean_Parser_Syntax_addPrec___closed__11; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -9089,7 +9089,7 @@ x_35 = l_Lean_Parser_Syntax_addPrec___closed__11; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -9162,7 +9162,7 @@ x_1 = l_term___x2d_____closed__4; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3883____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -9170,22 +9170,22 @@ x_1 = lean_mk_string("HSub.hSub"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3883____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_3883____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3883____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_3883____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_3883____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -9193,7 +9193,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3883____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -9201,17 +9201,17 @@ x_1 = lean_mk_string("HSub"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3883____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_3883____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3883____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -9219,41 +9219,41 @@ x_1 = lean_mk_string("hSub"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3883____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_3883____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_3883____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3883____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_3883____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_3883____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_3883____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_3883_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -9280,7 +9280,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -9291,25 +9291,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_3883____closed__7; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__7; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_3883____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_3883____closed__9; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__9; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -9329,25 +9329,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_3883____closed__7; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__7; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_3883____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_3883____closed__9; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__9; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -9359,11 +9359,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_3866_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HSub__hSub__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -9381,7 +9381,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -9419,7 +9419,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -9429,7 +9429,7 @@ x_25 = l_Lean_Parser_Syntax_subPrec___closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -9452,7 +9452,7 @@ x_35 = l_Lean_Parser_Syntax_subPrec___closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -9555,7 +9555,7 @@ x_1 = l_term___x2a_____closed__7; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4148____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -9563,22 +9563,22 @@ x_1 = lean_mk_string("HMul.hMul"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4148____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_4148____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4148____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_4148____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_4148____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -9586,7 +9586,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4148____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -9594,17 +9594,17 @@ x_1 = lean_mk_string("HMul"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4148____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_4148____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4148____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -9612,41 +9612,41 @@ x_1 = lean_mk_string("hMul"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4148____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_4148____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_4148____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4148____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_4148____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4148____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_4148____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_4148_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -9673,7 +9673,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -9684,25 +9684,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_4148____closed__7; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__7; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_4148____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_4148____closed__9; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__9; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -9722,25 +9722,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_4148____closed__7; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__7; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_4148____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_4148____closed__9; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__9; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -9752,11 +9752,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_4131_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HMul__hMul__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -9774,7 +9774,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -9812,7 +9812,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -9822,7 +9822,7 @@ x_25 = l_term___x2a_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -9845,7 +9845,7 @@ x_35 = l_term___x2a_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -9936,7 +9936,7 @@ x_1 = l_term___x2f_____closed__6; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4413____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -9944,22 +9944,22 @@ x_1 = lean_mk_string("HDiv.hDiv"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4413____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_4413____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4413____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_4413____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_4413____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -9967,7 +9967,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4413____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -9975,17 +9975,17 @@ x_1 = lean_mk_string("HDiv"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4413____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_4413____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4413____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -9993,41 +9993,41 @@ x_1 = lean_mk_string("hDiv"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4413____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_4413____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_4413____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4413____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_4413____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4413____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_4413____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_4413_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -10054,7 +10054,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -10065,25 +10065,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_4413____closed__7; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__7; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_4413____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_4413____closed__9; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__9; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -10103,25 +10103,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_4413____closed__7; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__7; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_4413____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_4413____closed__9; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__9; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -10133,11 +10133,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_4396_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HDiv__hDiv__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -10155,7 +10155,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -10193,7 +10193,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -10203,7 +10203,7 @@ x_25 = l_term___x2f_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -10226,7 +10226,7 @@ x_35 = l_term___x2f_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -10317,7 +10317,7 @@ x_1 = l_term___x25_____closed__6; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4678____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -10325,22 +10325,22 @@ x_1 = lean_mk_string("HMod.hMod"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4678____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_4678____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4678____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_4678____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_4678____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -10348,7 +10348,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4678____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -10356,17 +10356,17 @@ x_1 = lean_mk_string("HMod"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4678____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_4678____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4678____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -10374,41 +10374,41 @@ x_1 = lean_mk_string("hMod"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4678____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_4678____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_4678____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4678____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_4678____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4678____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_4678____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_4678_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -10435,7 +10435,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -10446,25 +10446,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_4678____closed__7; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__7; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_4678____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_4678____closed__9; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__9; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -10484,25 +10484,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_4678____closed__7; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__7; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_4678____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_4678____closed__9; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__9; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -10514,11 +10514,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_4661_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HMod__hMod__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -10536,7 +10536,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -10574,7 +10574,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -10584,7 +10584,7 @@ x_25 = l_term___x25_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -10607,7 +10607,7 @@ x_35 = l_term___x25_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -10710,7 +10710,7 @@ x_1 = l_term___x3c_x3c_x3c_____closed__7; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4943____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -10718,22 +10718,22 @@ x_1 = lean_mk_string("HShiftLeft.hShiftLeft"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4943____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_4943____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4943____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_4943____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_4943____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -10741,7 +10741,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4943____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -10749,17 +10749,17 @@ x_1 = lean_mk_string("HShiftLeft"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4943____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_4943____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4943____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -10767,41 +10767,41 @@ x_1 = lean_mk_string("hShiftLeft"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4943____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_4943____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_4943____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4943____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_4943____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_4943____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_4943____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_4943_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -10828,7 +10828,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -10839,25 +10839,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_4943____closed__7; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__7; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_4943____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_4943____closed__9; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__9; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -10877,25 +10877,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_4943____closed__7; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__7; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_4943____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_4943____closed__9; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__9; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -10907,11 +10907,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_4926_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HShiftLeft__hShiftLeft__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -10929,7 +10929,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -10967,7 +10967,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -10977,7 +10977,7 @@ x_25 = l_term___x3c_x3c_x3c_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -11000,7 +11000,7 @@ x_35 = l_term___x3c_x3c_x3c_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -11091,7 +11091,7 @@ x_1 = l_term___x3e_x3e_x3e_____closed__6; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5208____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -11099,22 +11099,22 @@ x_1 = lean_mk_string("HShiftRight.hShiftRight"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5208____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_5208____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5208____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_5208____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_5208____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -11122,7 +11122,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5208____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -11130,17 +11130,17 @@ x_1 = lean_mk_string("HShiftRight"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5208____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_5208____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5208____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -11148,41 +11148,41 @@ x_1 = lean_mk_string("hShiftRight"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5208____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_5208____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_5208____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5208____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_5208____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5208____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_5208____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_5208_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -11209,7 +11209,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -11220,25 +11220,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_5208____closed__7; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__7; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_5208____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_5208____closed__9; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__9; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -11258,25 +11258,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_5208____closed__7; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__7; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_5208____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_5208____closed__9; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__9; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -11288,11 +11288,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_5191_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HShiftRight__hShiftRight__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -11310,7 +11310,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -11348,7 +11348,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -11358,7 +11358,7 @@ x_25 = l_term___x3e_x3e_x3e_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -11381,7 +11381,7 @@ x_35 = l_term___x3e_x3e_x3e_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -11485,7 +11485,7 @@ x_1 = l_term___x5e_____closed__7; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5473____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -11493,22 +11493,22 @@ x_1 = lean_mk_string("HPow.hPow"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5473____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_5473____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5473____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_5473____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_5473____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -11516,7 +11516,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5473____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -11524,17 +11524,17 @@ x_1 = lean_mk_string("HPow"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5473____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_5473____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5473____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -11542,41 +11542,41 @@ x_1 = lean_mk_string("hPow"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5473____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_5473____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_5473____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5473____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_5473____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5473____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_5473____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_5473_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -11603,7 +11603,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -11614,25 +11614,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_5473____closed__7; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__7; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_5473____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_5473____closed__9; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__9; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -11652,25 +11652,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_5473____closed__7; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__7; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_5473____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_5473____closed__9; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__9; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -11682,11 +11682,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_5456_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HPow__hPow__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -11704,7 +11704,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -11742,7 +11742,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -11752,7 +11752,7 @@ x_25 = l_term___x5e_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -11775,7 +11775,7 @@ x_35 = l_term___x5e_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -11866,7 +11866,7 @@ x_1 = l_term___x2b_x2b_____closed__6; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5738____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -11874,22 +11874,22 @@ x_1 = lean_mk_string("HAppend.hAppend"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5738____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_5738____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5738____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_5738____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_5738____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -11897,7 +11897,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5738____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -11905,17 +11905,17 @@ x_1 = lean_mk_string("HAppend"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5738____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_5738____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5738____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -11923,41 +11923,41 @@ x_1 = lean_mk_string("hAppend"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5738____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_5738____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_5738____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5738____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_5738____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_5738____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_5738____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_5738_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -11984,7 +11984,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -11995,25 +11995,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_5738____closed__7; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__7; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_5738____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_5738____closed__9; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__9; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -12033,25 +12033,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_5738____closed__7; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__7; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_5738____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_5738____closed__9; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__9; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -12063,11 +12063,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_5721_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__HAppend__hAppend__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -12085,7 +12085,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -12123,7 +12123,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -12133,7 +12133,7 @@ x_25 = l_term___x2b_x2b_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -12156,7 +12156,7 @@ x_35 = l_term___x2b_x2b_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -12258,7 +12258,7 @@ x_1 = l_term_x2d_____closed__7; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_6002____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -12266,22 +12266,22 @@ x_1 = lean_mk_string("Neg.neg"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_6002____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_6002____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_6002____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_6002____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_6002____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -12289,7 +12289,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_6002____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -12297,17 +12297,17 @@ x_1 = lean_mk_string("Neg"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_6002____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_6002____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_6002____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -12315,41 +12315,41 @@ x_1 = lean_mk_string("neg"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_6002____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_6002____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_6002____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_6002____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_6002____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_6002____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_6002____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_6002_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -12374,7 +12374,7 @@ x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); lean_inc(x_2); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { @@ -12385,25 +12385,25 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_2, 1); lean_inc(x_14); lean_dec(x_2); -x_15 = l_myMacro____x40_Init_Notation___hyg_6002____closed__7; +x_15 = l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__7; x_16 = l_Lean_addMacroScope(x_14, x_15, x_13); -x_17 = l_myMacro____x40_Init_Notation___hyg_6002____closed__3; -x_18 = l_myMacro____x40_Init_Notation___hyg_6002____closed__9; +x_17 = l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__3; +x_18 = l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__9; x_19 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_19, 0, x_12); lean_ctor_set(x_19, 1, x_17); lean_ctor_set(x_19, 2, x_16); lean_ctor_set(x_19, 3, x_18); -x_20 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_20 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_21 = lean_array_push(x_20, x_9); -x_22 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_23 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_23, 0, x_22); lean_ctor_set(x_23, 1, x_21); -x_24 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_25 = lean_array_push(x_24, x_19); x_26 = lean_array_push(x_25, x_23); -x_27 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_27 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_26); @@ -12423,25 +12423,25 @@ lean_inc(x_31); x_32 = lean_ctor_get(x_2, 1); lean_inc(x_32); lean_dec(x_2); -x_33 = l_myMacro____x40_Init_Notation___hyg_6002____closed__7; +x_33 = l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__7; x_34 = l_Lean_addMacroScope(x_32, x_33, x_31); -x_35 = l_myMacro____x40_Init_Notation___hyg_6002____closed__3; -x_36 = l_myMacro____x40_Init_Notation___hyg_6002____closed__9; +x_35 = l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__3; +x_36 = l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__9; x_37 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_37, 0, x_29); lean_ctor_set(x_37, 1, x_35); lean_ctor_set(x_37, 2, x_34); lean_ctor_set(x_37, 3, x_36); -x_38 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_38 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_39 = lean_array_push(x_38, x_9); -x_40 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_39); -x_42 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_43 = lean_array_push(x_42, x_37); x_44 = lean_array_push(x_43, x_41); -x_45 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_45 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_46 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_44); @@ -12453,11 +12453,11 @@ return x_47; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_5986_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Neg__neg__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -12475,7 +12475,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -12511,7 +12511,7 @@ else lean_object* x_19; lean_object* x_20; uint8_t x_21; x_19 = l_Lean_Syntax_getArg(x_14, x_7); lean_dec(x_14); -x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_21 = !lean_is_exclusive(x_20); if (x_21 == 0) { @@ -12521,7 +12521,7 @@ x_23 = l_term_x2d_____closed__3; x_24 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_24, 0, x_22); lean_ctor_set(x_24, 1, x_23); -x_25 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_26 = lean_array_push(x_25, x_24); x_27 = lean_array_push(x_26, x_19); x_28 = l_term_x2d_____closed__2; @@ -12543,7 +12543,7 @@ x_32 = l_term_x2d_____closed__3; x_33 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_33, 0, x_30); lean_ctor_set(x_33, 1, x_32); -x_34 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_34 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_35 = lean_array_push(x_34, x_33); x_36 = lean_array_push(x_35, x_19); x_37 = l_term_x2d_____closed__2; @@ -12632,7 +12632,7 @@ x_1 = l_term_x7e_x7e_x7e_____closed__6; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_6244____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -12640,22 +12640,22 @@ x_1 = lean_mk_string("Complement.complement"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_6244____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_6244____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_6244____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_6244____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_6244____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -12663,7 +12663,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_6244____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -12671,17 +12671,17 @@ x_1 = lean_mk_string("Complement"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_6244____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_6244____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_6244____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -12689,41 +12689,41 @@ x_1 = lean_mk_string("complement"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_6244____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_6244____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_6244____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_6244____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_6244____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_6244____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_6244____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_6244_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -12748,7 +12748,7 @@ x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); lean_inc(x_2); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { @@ -12759,25 +12759,25 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_2, 1); lean_inc(x_14); lean_dec(x_2); -x_15 = l_myMacro____x40_Init_Notation___hyg_6244____closed__7; +x_15 = l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__7; x_16 = l_Lean_addMacroScope(x_14, x_15, x_13); -x_17 = l_myMacro____x40_Init_Notation___hyg_6244____closed__3; -x_18 = l_myMacro____x40_Init_Notation___hyg_6244____closed__9; +x_17 = l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__3; +x_18 = l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__9; x_19 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_19, 0, x_12); lean_ctor_set(x_19, 1, x_17); lean_ctor_set(x_19, 2, x_16); lean_ctor_set(x_19, 3, x_18); -x_20 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_20 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_21 = lean_array_push(x_20, x_9); -x_22 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_23 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_23, 0, x_22); lean_ctor_set(x_23, 1, x_21); -x_24 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_25 = lean_array_push(x_24, x_19); x_26 = lean_array_push(x_25, x_23); -x_27 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_27 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_26); @@ -12797,25 +12797,25 @@ lean_inc(x_31); x_32 = lean_ctor_get(x_2, 1); lean_inc(x_32); lean_dec(x_2); -x_33 = l_myMacro____x40_Init_Notation___hyg_6244____closed__7; +x_33 = l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__7; x_34 = l_Lean_addMacroScope(x_32, x_33, x_31); -x_35 = l_myMacro____x40_Init_Notation___hyg_6244____closed__3; -x_36 = l_myMacro____x40_Init_Notation___hyg_6244____closed__9; +x_35 = l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__3; +x_36 = l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__9; x_37 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_37, 0, x_29); lean_ctor_set(x_37, 1, x_35); lean_ctor_set(x_37, 2, x_34); lean_ctor_set(x_37, 3, x_36); -x_38 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_38 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_39 = lean_array_push(x_38, x_9); -x_40 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_39); -x_42 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_43 = lean_array_push(x_42, x_37); x_44 = lean_array_push(x_43, x_41); -x_45 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_45 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_46 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_44); @@ -12827,11 +12827,11 @@ return x_47; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_6228_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Complement__complement__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -12849,7 +12849,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -12885,7 +12885,7 @@ else lean_object* x_19; lean_object* x_20; uint8_t x_21; x_19 = l_Lean_Syntax_getArg(x_14, x_7); lean_dec(x_14); -x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_21 = !lean_is_exclusive(x_20); if (x_21 == 0) { @@ -12895,7 +12895,7 @@ x_23 = l_term_x7e_x7e_x7e_____closed__3; x_24 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_24, 0, x_22); lean_ctor_set(x_24, 1, x_23); -x_25 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_26 = lean_array_push(x_25, x_24); x_27 = lean_array_push(x_26, x_19); x_28 = l_term_x7e_x7e_x7e_____closed__2; @@ -12917,7 +12917,7 @@ x_32 = l_term_x7e_x7e_x7e_____closed__3; x_33 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_33, 0, x_30); lean_ctor_set(x_33, 1, x_32); -x_34 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_34 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_35 = lean_array_push(x_34, x_33); x_36 = lean_array_push(x_35, x_19); x_37 = l_term_x7e_x7e_x7e_____closed__2; @@ -12934,7 +12934,7 @@ return x_39; } } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_6468____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__1() { _start: { lean_object* x_1; @@ -12942,17 +12942,17 @@ x_1 = lean_mk_string("binop"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_6468____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_6468____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_6468____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__3() { _start: { lean_object* x_1; @@ -12960,7 +12960,7 @@ x_1 = lean_mk_string("binop%"); return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_6468_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -12987,7 +12987,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -12998,26 +12998,26 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_6468____closed__3; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__3; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_2823____closed__7; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__7; x_20 = l_Lean_addMacroScope(x_16, x_19, x_15); -x_21 = l_myMacro____x40_Init_Notation___hyg_2823____closed__3; -x_22 = l_myMacro____x40_Init_Notation___hyg_2823____closed__9; +x_21 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__3; +x_22 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__9; x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_21); lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_25 = lean_array_push(x_24, x_18); x_26 = lean_array_push(x_25, x_23); x_27 = lean_array_push(x_26, x_9); x_28 = lean_array_push(x_27, x_11); -x_29 = l_myMacro____x40_Init_Notation___hyg_6468____closed__2; +x_29 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__2; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -13037,26 +13037,26 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_6468____closed__3; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__3; lean_inc(x_31); x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_31); lean_ctor_set(x_36, 1, x_35); -x_37 = l_myMacro____x40_Init_Notation___hyg_2823____closed__7; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__7; x_38 = l_Lean_addMacroScope(x_34, x_37, x_33); -x_39 = l_myMacro____x40_Init_Notation___hyg_2823____closed__3; -x_40 = l_myMacro____x40_Init_Notation___hyg_2823____closed__9; +x_39 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__3; +x_40 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__9; x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_31); lean_ctor_set(x_41, 1, x_39); lean_ctor_set(x_41, 2, x_38); lean_ctor_set(x_41, 3, x_40); -x_42 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_43 = lean_array_push(x_42, x_36); x_44 = lean_array_push(x_43, x_41); x_45 = lean_array_push(x_44, x_9); x_46 = lean_array_push(x_45, x_11); -x_47 = l_myMacro____x40_Init_Notation___hyg_6468____closed__2; +x_47 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -13068,7 +13068,7 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_6574_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -13095,7 +13095,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -13106,26 +13106,26 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_6468____closed__3; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__3; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_3088____closed__7; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__7; x_20 = l_Lean_addMacroScope(x_16, x_19, x_15); -x_21 = l_myMacro____x40_Init_Notation___hyg_3088____closed__3; -x_22 = l_myMacro____x40_Init_Notation___hyg_3088____closed__9; +x_21 = l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__3; +x_22 = l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__9; x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_21); lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_25 = lean_array_push(x_24, x_18); x_26 = lean_array_push(x_25, x_23); x_27 = lean_array_push(x_26, x_9); x_28 = lean_array_push(x_27, x_11); -x_29 = l_myMacro____x40_Init_Notation___hyg_6468____closed__2; +x_29 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__2; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -13145,26 +13145,26 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_6468____closed__3; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__3; lean_inc(x_31); x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_31); lean_ctor_set(x_36, 1, x_35); -x_37 = l_myMacro____x40_Init_Notation___hyg_3088____closed__7; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__7; x_38 = l_Lean_addMacroScope(x_34, x_37, x_33); -x_39 = l_myMacro____x40_Init_Notation___hyg_3088____closed__3; -x_40 = l_myMacro____x40_Init_Notation___hyg_3088____closed__9; +x_39 = l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__3; +x_40 = l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__9; x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_31); lean_ctor_set(x_41, 1, x_39); lean_ctor_set(x_41, 2, x_38); lean_ctor_set(x_41, 3, x_40); -x_42 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_43 = lean_array_push(x_42, x_36); x_44 = lean_array_push(x_43, x_41); x_45 = lean_array_push(x_44, x_9); x_46 = lean_array_push(x_45, x_11); -x_47 = l_myMacro____x40_Init_Notation___hyg_6468____closed__2; +x_47 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -13176,7 +13176,7 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_6680_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -13203,7 +13203,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -13214,26 +13214,26 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_6468____closed__3; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__3; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_3353____closed__7; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__7; x_20 = l_Lean_addMacroScope(x_16, x_19, x_15); -x_21 = l_myMacro____x40_Init_Notation___hyg_3353____closed__3; -x_22 = l_myMacro____x40_Init_Notation___hyg_3353____closed__9; +x_21 = l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__3; +x_22 = l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__9; x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_21); lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_25 = lean_array_push(x_24, x_18); x_26 = lean_array_push(x_25, x_23); x_27 = lean_array_push(x_26, x_9); x_28 = lean_array_push(x_27, x_11); -x_29 = l_myMacro____x40_Init_Notation___hyg_6468____closed__2; +x_29 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__2; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -13253,26 +13253,26 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_6468____closed__3; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__3; lean_inc(x_31); x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_31); lean_ctor_set(x_36, 1, x_35); -x_37 = l_myMacro____x40_Init_Notation___hyg_3353____closed__7; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__7; x_38 = l_Lean_addMacroScope(x_34, x_37, x_33); -x_39 = l_myMacro____x40_Init_Notation___hyg_3353____closed__3; -x_40 = l_myMacro____x40_Init_Notation___hyg_3353____closed__9; +x_39 = l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__3; +x_40 = l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__9; x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_31); lean_ctor_set(x_41, 1, x_39); lean_ctor_set(x_41, 2, x_38); lean_ctor_set(x_41, 3, x_40); -x_42 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_43 = lean_array_push(x_42, x_36); x_44 = lean_array_push(x_43, x_41); x_45 = lean_array_push(x_44, x_9); x_46 = lean_array_push(x_45, x_11); -x_47 = l_myMacro____x40_Init_Notation___hyg_6468____closed__2; +x_47 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -13284,7 +13284,7 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_6786_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -13311,7 +13311,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -13322,26 +13322,26 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_6468____closed__3; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__3; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_3618____closed__7; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__7; x_20 = l_Lean_addMacroScope(x_16, x_19, x_15); -x_21 = l_myMacro____x40_Init_Notation___hyg_3618____closed__3; -x_22 = l_myMacro____x40_Init_Notation___hyg_3618____closed__9; +x_21 = l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__3; +x_22 = l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__9; x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_21); lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_25 = lean_array_push(x_24, x_18); x_26 = lean_array_push(x_25, x_23); x_27 = lean_array_push(x_26, x_9); x_28 = lean_array_push(x_27, x_11); -x_29 = l_myMacro____x40_Init_Notation___hyg_6468____closed__2; +x_29 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__2; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -13361,26 +13361,26 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_6468____closed__3; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__3; lean_inc(x_31); x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_31); lean_ctor_set(x_36, 1, x_35); -x_37 = l_myMacro____x40_Init_Notation___hyg_3618____closed__7; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__7; x_38 = l_Lean_addMacroScope(x_34, x_37, x_33); -x_39 = l_myMacro____x40_Init_Notation___hyg_3618____closed__3; -x_40 = l_myMacro____x40_Init_Notation___hyg_3618____closed__9; +x_39 = l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__3; +x_40 = l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__9; x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_31); lean_ctor_set(x_41, 1, x_39); lean_ctor_set(x_41, 2, x_38); lean_ctor_set(x_41, 3, x_40); -x_42 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_43 = lean_array_push(x_42, x_36); x_44 = lean_array_push(x_43, x_41); x_45 = lean_array_push(x_44, x_9); x_46 = lean_array_push(x_45, x_11); -x_47 = l_myMacro____x40_Init_Notation___hyg_6468____closed__2; +x_47 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -13392,7 +13392,7 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_6892_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -13419,7 +13419,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -13430,26 +13430,26 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_6468____closed__3; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__3; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_3883____closed__7; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__7; x_20 = l_Lean_addMacroScope(x_16, x_19, x_15); -x_21 = l_myMacro____x40_Init_Notation___hyg_3883____closed__3; -x_22 = l_myMacro____x40_Init_Notation___hyg_3883____closed__9; +x_21 = l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__3; +x_22 = l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__9; x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_21); lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_25 = lean_array_push(x_24, x_18); x_26 = lean_array_push(x_25, x_23); x_27 = lean_array_push(x_26, x_9); x_28 = lean_array_push(x_27, x_11); -x_29 = l_myMacro____x40_Init_Notation___hyg_6468____closed__2; +x_29 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__2; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -13469,26 +13469,26 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_6468____closed__3; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__3; lean_inc(x_31); x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_31); lean_ctor_set(x_36, 1, x_35); -x_37 = l_myMacro____x40_Init_Notation___hyg_3883____closed__7; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__7; x_38 = l_Lean_addMacroScope(x_34, x_37, x_33); -x_39 = l_myMacro____x40_Init_Notation___hyg_3883____closed__3; -x_40 = l_myMacro____x40_Init_Notation___hyg_3883____closed__9; +x_39 = l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__3; +x_40 = l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__9; x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_31); lean_ctor_set(x_41, 1, x_39); lean_ctor_set(x_41, 2, x_38); lean_ctor_set(x_41, 3, x_40); -x_42 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_43 = lean_array_push(x_42, x_36); x_44 = lean_array_push(x_43, x_41); x_45 = lean_array_push(x_44, x_9); x_46 = lean_array_push(x_45, x_11); -x_47 = l_myMacro____x40_Init_Notation___hyg_6468____closed__2; +x_47 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -13500,7 +13500,7 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_6998_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -13527,7 +13527,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -13538,26 +13538,26 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_6468____closed__3; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__3; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_4148____closed__7; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__7; x_20 = l_Lean_addMacroScope(x_16, x_19, x_15); -x_21 = l_myMacro____x40_Init_Notation___hyg_4148____closed__3; -x_22 = l_myMacro____x40_Init_Notation___hyg_4148____closed__9; +x_21 = l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__3; +x_22 = l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__9; x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_21); lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_25 = lean_array_push(x_24, x_18); x_26 = lean_array_push(x_25, x_23); x_27 = lean_array_push(x_26, x_9); x_28 = lean_array_push(x_27, x_11); -x_29 = l_myMacro____x40_Init_Notation___hyg_6468____closed__2; +x_29 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__2; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -13577,26 +13577,26 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_6468____closed__3; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__3; lean_inc(x_31); x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_31); lean_ctor_set(x_36, 1, x_35); -x_37 = l_myMacro____x40_Init_Notation___hyg_4148____closed__7; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__7; x_38 = l_Lean_addMacroScope(x_34, x_37, x_33); -x_39 = l_myMacro____x40_Init_Notation___hyg_4148____closed__3; -x_40 = l_myMacro____x40_Init_Notation___hyg_4148____closed__9; +x_39 = l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__3; +x_40 = l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__9; x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_31); lean_ctor_set(x_41, 1, x_39); lean_ctor_set(x_41, 2, x_38); lean_ctor_set(x_41, 3, x_40); -x_42 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_43 = lean_array_push(x_42, x_36); x_44 = lean_array_push(x_43, x_41); x_45 = lean_array_push(x_44, x_9); x_46 = lean_array_push(x_45, x_11); -x_47 = l_myMacro____x40_Init_Notation___hyg_6468____closed__2; +x_47 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -13608,7 +13608,7 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_7104_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -13635,7 +13635,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -13646,26 +13646,26 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_6468____closed__3; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__3; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_4413____closed__7; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__7; x_20 = l_Lean_addMacroScope(x_16, x_19, x_15); -x_21 = l_myMacro____x40_Init_Notation___hyg_4413____closed__3; -x_22 = l_myMacro____x40_Init_Notation___hyg_4413____closed__9; +x_21 = l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__3; +x_22 = l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__9; x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_21); lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_25 = lean_array_push(x_24, x_18); x_26 = lean_array_push(x_25, x_23); x_27 = lean_array_push(x_26, x_9); x_28 = lean_array_push(x_27, x_11); -x_29 = l_myMacro____x40_Init_Notation___hyg_6468____closed__2; +x_29 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__2; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -13685,26 +13685,26 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_6468____closed__3; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__3; lean_inc(x_31); x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_31); lean_ctor_set(x_36, 1, x_35); -x_37 = l_myMacro____x40_Init_Notation___hyg_4413____closed__7; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__7; x_38 = l_Lean_addMacroScope(x_34, x_37, x_33); -x_39 = l_myMacro____x40_Init_Notation___hyg_4413____closed__3; -x_40 = l_myMacro____x40_Init_Notation___hyg_4413____closed__9; +x_39 = l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__3; +x_40 = l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__9; x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_31); lean_ctor_set(x_41, 1, x_39); lean_ctor_set(x_41, 2, x_38); lean_ctor_set(x_41, 3, x_40); -x_42 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_43 = lean_array_push(x_42, x_36); x_44 = lean_array_push(x_43, x_41); x_45 = lean_array_push(x_44, x_9); x_46 = lean_array_push(x_45, x_11); -x_47 = l_myMacro____x40_Init_Notation___hyg_6468____closed__2; +x_47 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -13716,7 +13716,7 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_7210_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -13743,7 +13743,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -13754,26 +13754,26 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_6468____closed__3; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__3; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_5738____closed__7; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__7; x_20 = l_Lean_addMacroScope(x_16, x_19, x_15); -x_21 = l_myMacro____x40_Init_Notation___hyg_5738____closed__3; -x_22 = l_myMacro____x40_Init_Notation___hyg_5738____closed__9; +x_21 = l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__3; +x_22 = l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__9; x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_21); lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_25 = lean_array_push(x_24, x_18); x_26 = lean_array_push(x_25, x_23); x_27 = lean_array_push(x_26, x_9); x_28 = lean_array_push(x_27, x_11); -x_29 = l_myMacro____x40_Init_Notation___hyg_6468____closed__2; +x_29 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__2; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -13793,26 +13793,26 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_6468____closed__3; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__3; lean_inc(x_31); x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_31); lean_ctor_set(x_36, 1, x_35); -x_37 = l_myMacro____x40_Init_Notation___hyg_5738____closed__7; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__7; x_38 = l_Lean_addMacroScope(x_34, x_37, x_33); -x_39 = l_myMacro____x40_Init_Notation___hyg_5738____closed__3; -x_40 = l_myMacro____x40_Init_Notation___hyg_5738____closed__9; +x_39 = l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__3; +x_40 = l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__9; x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_31); lean_ctor_set(x_41, 1, x_39); lean_ctor_set(x_41, 2, x_38); lean_ctor_set(x_41, 3, x_40); -x_42 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_43 = lean_array_push(x_42, x_36); x_44 = lean_array_push(x_43, x_41); x_45 = lean_array_push(x_44, x_9); x_46 = lean_array_push(x_45, x_11); -x_47 = l_myMacro____x40_Init_Notation___hyg_6468____closed__2; +x_47 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -13910,7 +13910,7 @@ x_1 = l_term___x3c_x3d_____closed__7; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_7335____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -13918,22 +13918,22 @@ x_1 = lean_mk_string("LE.le"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_7335____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_7335____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_7335____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_7335____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_7335____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -13941,7 +13941,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_7335____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -13949,17 +13949,17 @@ x_1 = lean_mk_string("LE"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_7335____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_7335____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_7335____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -13967,41 +13967,41 @@ x_1 = lean_mk_string("le"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_7335____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_7335____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_7335____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_7335____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_7335____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_7335____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_7335____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_7335_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -14028,7 +14028,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -14039,25 +14039,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_7335____closed__7; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__7; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_7335____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_7335____closed__9; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__9; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -14077,25 +14077,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_7335____closed__7; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__7; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_7335____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_7335____closed__9; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__9; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -14107,11 +14107,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_7318_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__LE__le__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -14129,7 +14129,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -14167,7 +14167,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -14177,7 +14177,7 @@ x_25 = l_term___x3c_x3d_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -14200,7 +14200,7 @@ x_35 = l_term___x3c_x3d_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -14292,7 +14292,7 @@ x_1 = l_term___u2264_____closed__6; return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_7600_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___u2264___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -14319,7 +14319,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -14330,25 +14330,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_7335____closed__7; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__7; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_7335____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_7335____closed__9; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__9; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -14368,25 +14368,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_7335____closed__7; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__7; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_7335____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_7335____closed__9; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__9; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -14398,11 +14398,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_7583_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__LE__le__2(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -14420,7 +14420,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -14458,7 +14458,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -14468,7 +14468,7 @@ x_25 = l_term___u2264_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -14491,7 +14491,7 @@ x_35 = l_term___u2264_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -14583,7 +14583,7 @@ x_1 = l_term___x3c_____closed__6; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_7865____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -14591,22 +14591,22 @@ x_1 = lean_mk_string("LT.lt"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_7865____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_7865____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_7865____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_7865____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_7865____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -14614,7 +14614,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_7865____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -14622,17 +14622,17 @@ x_1 = lean_mk_string("LT"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_7865____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_7865____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_7865____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -14640,41 +14640,41 @@ x_1 = lean_mk_string("lt"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_7865____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_7865____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_7865____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_7865____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_7865____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_7865____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_7865____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_7865_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -14701,7 +14701,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -14712,25 +14712,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_7865____closed__7; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__7; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_7865____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_7865____closed__9; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__9; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -14750,25 +14750,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_7865____closed__7; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__7; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_7865____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_7865____closed__9; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__9; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -14780,11 +14780,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_7848_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__LT__lt__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -14802,7 +14802,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -14840,7 +14840,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -14850,7 +14850,7 @@ x_25 = l_term___x3c_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -14873,7 +14873,7 @@ x_35 = l_term___x3c_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -14965,7 +14965,7 @@ x_1 = l_term___x3e_x3d_____closed__6; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_8130____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -14973,22 +14973,22 @@ x_1 = lean_mk_string("GE.ge"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_8130____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_8130____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_8130____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_8130____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_8130____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -14996,7 +14996,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_8130____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -15004,17 +15004,17 @@ x_1 = lean_mk_string("GE"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_8130____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_8130____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_8130____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -15022,41 +15022,41 @@ x_1 = lean_mk_string("ge"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_8130____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_8130____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_8130____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_8130____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_8130____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_8130____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_8130____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_8130_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -15083,7 +15083,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -15094,25 +15094,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_8130____closed__7; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__7; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_8130____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_8130____closed__9; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__9; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -15132,25 +15132,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_8130____closed__7; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__7; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_8130____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_8130____closed__9; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__9; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -15162,11 +15162,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_8113_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__GE__ge__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -15184,7 +15184,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -15222,7 +15222,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -15232,7 +15232,7 @@ x_25 = l_term___x3e_x3d_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -15255,7 +15255,7 @@ x_35 = l_term___x3e_x3d_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -15347,7 +15347,7 @@ x_1 = l_term___u2265_____closed__6; return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_8395_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___u2265___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -15374,7 +15374,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -15385,25 +15385,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_8130____closed__7; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__7; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_8130____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_8130____closed__9; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__9; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -15423,25 +15423,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_8130____closed__7; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__7; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_8130____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_8130____closed__9; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__9; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -15453,11 +15453,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_8378_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__GE__ge__2(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -15475,7 +15475,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -15513,7 +15513,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -15523,7 +15523,7 @@ x_25 = l_term___u2265_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -15546,7 +15546,7 @@ x_35 = l_term___u2265_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -15638,7 +15638,7 @@ x_1 = l_term___x3e_____closed__6; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_8660____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -15646,22 +15646,22 @@ x_1 = lean_mk_string("GT.gt"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_8660____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_8660____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_8660____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_8660____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_8660____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -15669,7 +15669,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_8660____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -15677,17 +15677,17 @@ x_1 = lean_mk_string("GT"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_8660____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_8660____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_8660____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -15695,41 +15695,41 @@ x_1 = lean_mk_string("gt"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_8660____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_8660____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_8660____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_8660____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_8660____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_8660____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_8660____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_8660_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -15756,7 +15756,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -15767,25 +15767,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_8660____closed__7; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__7; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_8660____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_8660____closed__9; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__9; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -15805,25 +15805,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_8660____closed__7; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__7; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_8660____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_8660____closed__9; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__9; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -15835,11 +15835,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_8643_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__GT__gt__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -15857,7 +15857,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -15895,7 +15895,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -15905,7 +15905,7 @@ x_25 = l_term___x3e_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -15928,7 +15928,7 @@ x_35 = l_term___x3e_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -16020,7 +16020,7 @@ x_1 = l_term___x3d_____closed__6; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_8925____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -16028,22 +16028,22 @@ x_1 = lean_mk_string("Eq"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_8925____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_8925____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_8925____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_8925____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_8925____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -16051,41 +16051,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_8925____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_8925____closed__1; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_8925____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_8925____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__4; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_8925____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_8925____closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_8925_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -16112,7 +16112,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -16123,25 +16123,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_8925____closed__4; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__4; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_8925____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_8925____closed__6; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__6; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -16161,25 +16161,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_8925____closed__4; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__4; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_8925____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_8925____closed__6; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__6; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -16191,11 +16191,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_8908_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Eq__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -16213,7 +16213,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -16251,7 +16251,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -16261,7 +16261,7 @@ x_25 = l_term___x3d_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -16284,7 +16284,7 @@ x_35 = l_term___x3d_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -16376,7 +16376,7 @@ x_1 = l_term___x3d_x3d_____closed__6; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_9190____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -16384,22 +16384,22 @@ x_1 = lean_mk_string("BEq.beq"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_9190____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_9190____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_9190____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_9190____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_9190____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -16407,7 +16407,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_9190____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -16415,17 +16415,17 @@ x_1 = lean_mk_string("BEq"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_9190____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_9190____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_9190____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -16433,41 +16433,41 @@ x_1 = lean_mk_string("beq"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_9190____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_9190____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_9190____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_9190____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_9190____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_9190____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_9190____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_9190_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -16494,7 +16494,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -16505,25 +16505,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_9190____closed__7; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__7; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_9190____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_9190____closed__9; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__9; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -16543,25 +16543,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_9190____closed__7; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__7; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_9190____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_9190____closed__9; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__9; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -16573,11 +16573,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_9173_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__BEq__beq__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -16595,7 +16595,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -16633,7 +16633,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -16643,7 +16643,7 @@ x_25 = l_term___x3d_x3d_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -16666,7 +16666,7 @@ x_35 = l_term___x3d_x3d_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -16684,7 +16684,7 @@ return x_43; } } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_9436____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__1() { _start: { lean_object* x_1; @@ -16692,17 +16692,17 @@ x_1 = lean_mk_string("binrel"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_9436____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_9436____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_9436____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__3() { _start: { lean_object* x_1; @@ -16710,7 +16710,7 @@ x_1 = lean_mk_string("binrel%"); return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_9436_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -16737,7 +16737,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -16748,26 +16748,26 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_9436____closed__3; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__3; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_7335____closed__7; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__7; x_20 = l_Lean_addMacroScope(x_16, x_19, x_15); -x_21 = l_myMacro____x40_Init_Notation___hyg_7335____closed__3; -x_22 = l_myMacro____x40_Init_Notation___hyg_7335____closed__9; +x_21 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__3; +x_22 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__9; x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_21); lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_25 = lean_array_push(x_24, x_18); x_26 = lean_array_push(x_25, x_23); x_27 = lean_array_push(x_26, x_9); x_28 = lean_array_push(x_27, x_11); -x_29 = l_myMacro____x40_Init_Notation___hyg_9436____closed__2; +x_29 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__2; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -16787,26 +16787,26 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_9436____closed__3; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__3; lean_inc(x_31); x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_31); lean_ctor_set(x_36, 1, x_35); -x_37 = l_myMacro____x40_Init_Notation___hyg_7335____closed__7; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__7; x_38 = l_Lean_addMacroScope(x_34, x_37, x_33); -x_39 = l_myMacro____x40_Init_Notation___hyg_7335____closed__3; -x_40 = l_myMacro____x40_Init_Notation___hyg_7335____closed__9; +x_39 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__3; +x_40 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__9; x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_31); lean_ctor_set(x_41, 1, x_39); lean_ctor_set(x_41, 2, x_38); lean_ctor_set(x_41, 3, x_40); -x_42 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_43 = lean_array_push(x_42, x_36); x_44 = lean_array_push(x_43, x_41); x_45 = lean_array_push(x_44, x_9); x_46 = lean_array_push(x_45, x_11); -x_47 = l_myMacro____x40_Init_Notation___hyg_9436____closed__2; +x_47 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -16818,7 +16818,7 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_9542_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___u2264___xbb__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -16845,7 +16845,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -16856,26 +16856,26 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_9436____closed__3; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__3; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_7335____closed__7; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__7; x_20 = l_Lean_addMacroScope(x_16, x_19, x_15); -x_21 = l_myMacro____x40_Init_Notation___hyg_7335____closed__3; -x_22 = l_myMacro____x40_Init_Notation___hyg_7335____closed__9; +x_21 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__3; +x_22 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__9; x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_21); lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_25 = lean_array_push(x_24, x_18); x_26 = lean_array_push(x_25, x_23); x_27 = lean_array_push(x_26, x_9); x_28 = lean_array_push(x_27, x_11); -x_29 = l_myMacro____x40_Init_Notation___hyg_9436____closed__2; +x_29 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__2; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -16895,26 +16895,26 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_9436____closed__3; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__3; lean_inc(x_31); x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_31); lean_ctor_set(x_36, 1, x_35); -x_37 = l_myMacro____x40_Init_Notation___hyg_7335____closed__7; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__7; x_38 = l_Lean_addMacroScope(x_34, x_37, x_33); -x_39 = l_myMacro____x40_Init_Notation___hyg_7335____closed__3; -x_40 = l_myMacro____x40_Init_Notation___hyg_7335____closed__9; +x_39 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__3; +x_40 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__9; x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_31); lean_ctor_set(x_41, 1, x_39); lean_ctor_set(x_41, 2, x_38); lean_ctor_set(x_41, 3, x_40); -x_42 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_43 = lean_array_push(x_42, x_36); x_44 = lean_array_push(x_43, x_41); x_45 = lean_array_push(x_44, x_9); x_46 = lean_array_push(x_45, x_11); -x_47 = l_myMacro____x40_Init_Notation___hyg_9436____closed__2; +x_47 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -16926,7 +16926,7 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_9648_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -16953,7 +16953,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -16964,26 +16964,26 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_9436____closed__3; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__3; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_7865____closed__7; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__7; x_20 = l_Lean_addMacroScope(x_16, x_19, x_15); -x_21 = l_myMacro____x40_Init_Notation___hyg_7865____closed__3; -x_22 = l_myMacro____x40_Init_Notation___hyg_7865____closed__9; +x_21 = l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__3; +x_22 = l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__9; x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_21); lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_25 = lean_array_push(x_24, x_18); x_26 = lean_array_push(x_25, x_23); x_27 = lean_array_push(x_26, x_9); x_28 = lean_array_push(x_27, x_11); -x_29 = l_myMacro____x40_Init_Notation___hyg_9436____closed__2; +x_29 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__2; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -17003,26 +17003,26 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_9436____closed__3; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__3; lean_inc(x_31); x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_31); lean_ctor_set(x_36, 1, x_35); -x_37 = l_myMacro____x40_Init_Notation___hyg_7865____closed__7; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__7; x_38 = l_Lean_addMacroScope(x_34, x_37, x_33); -x_39 = l_myMacro____x40_Init_Notation___hyg_7865____closed__3; -x_40 = l_myMacro____x40_Init_Notation___hyg_7865____closed__9; +x_39 = l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__3; +x_40 = l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__9; x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_31); lean_ctor_set(x_41, 1, x_39); lean_ctor_set(x_41, 2, x_38); lean_ctor_set(x_41, 3, x_40); -x_42 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_43 = lean_array_push(x_42, x_36); x_44 = lean_array_push(x_43, x_41); x_45 = lean_array_push(x_44, x_9); x_46 = lean_array_push(x_45, x_11); -x_47 = l_myMacro____x40_Init_Notation___hyg_9436____closed__2; +x_47 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -17034,7 +17034,7 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_9754_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -17061,7 +17061,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -17072,26 +17072,26 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_9436____closed__3; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__3; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_8660____closed__7; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__7; x_20 = l_Lean_addMacroScope(x_16, x_19, x_15); -x_21 = l_myMacro____x40_Init_Notation___hyg_8660____closed__3; -x_22 = l_myMacro____x40_Init_Notation___hyg_8660____closed__9; +x_21 = l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__3; +x_22 = l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__9; x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_21); lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_25 = lean_array_push(x_24, x_18); x_26 = lean_array_push(x_25, x_23); x_27 = lean_array_push(x_26, x_9); x_28 = lean_array_push(x_27, x_11); -x_29 = l_myMacro____x40_Init_Notation___hyg_9436____closed__2; +x_29 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__2; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -17111,26 +17111,26 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_9436____closed__3; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__3; lean_inc(x_31); x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_31); lean_ctor_set(x_36, 1, x_35); -x_37 = l_myMacro____x40_Init_Notation___hyg_8660____closed__7; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__7; x_38 = l_Lean_addMacroScope(x_34, x_37, x_33); -x_39 = l_myMacro____x40_Init_Notation___hyg_8660____closed__3; -x_40 = l_myMacro____x40_Init_Notation___hyg_8660____closed__9; +x_39 = l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__3; +x_40 = l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__9; x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_31); lean_ctor_set(x_41, 1, x_39); lean_ctor_set(x_41, 2, x_38); lean_ctor_set(x_41, 3, x_40); -x_42 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_43 = lean_array_push(x_42, x_36); x_44 = lean_array_push(x_43, x_41); x_45 = lean_array_push(x_44, x_9); x_46 = lean_array_push(x_45, x_11); -x_47 = l_myMacro____x40_Init_Notation___hyg_9436____closed__2; +x_47 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -17142,7 +17142,7 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_9860_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -17169,7 +17169,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -17180,26 +17180,26 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_9436____closed__3; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__3; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_8130____closed__7; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__7; x_20 = l_Lean_addMacroScope(x_16, x_19, x_15); -x_21 = l_myMacro____x40_Init_Notation___hyg_8130____closed__3; -x_22 = l_myMacro____x40_Init_Notation___hyg_8130____closed__9; +x_21 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__3; +x_22 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__9; x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_21); lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_25 = lean_array_push(x_24, x_18); x_26 = lean_array_push(x_25, x_23); x_27 = lean_array_push(x_26, x_9); x_28 = lean_array_push(x_27, x_11); -x_29 = l_myMacro____x40_Init_Notation___hyg_9436____closed__2; +x_29 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__2; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -17219,26 +17219,26 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_9436____closed__3; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__3; lean_inc(x_31); x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_31); lean_ctor_set(x_36, 1, x_35); -x_37 = l_myMacro____x40_Init_Notation___hyg_8130____closed__7; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__7; x_38 = l_Lean_addMacroScope(x_34, x_37, x_33); -x_39 = l_myMacro____x40_Init_Notation___hyg_8130____closed__3; -x_40 = l_myMacro____x40_Init_Notation___hyg_8130____closed__9; +x_39 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__3; +x_40 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__9; x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_31); lean_ctor_set(x_41, 1, x_39); lean_ctor_set(x_41, 2, x_38); lean_ctor_set(x_41, 3, x_40); -x_42 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_43 = lean_array_push(x_42, x_36); x_44 = lean_array_push(x_43, x_41); x_45 = lean_array_push(x_44, x_9); x_46 = lean_array_push(x_45, x_11); -x_47 = l_myMacro____x40_Init_Notation___hyg_9436____closed__2; +x_47 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -17250,7 +17250,7 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_9966_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___u2265___xbb__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -17277,7 +17277,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -17288,26 +17288,26 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_9436____closed__3; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__3; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_8130____closed__7; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__7; x_20 = l_Lean_addMacroScope(x_16, x_19, x_15); -x_21 = l_myMacro____x40_Init_Notation___hyg_8130____closed__3; -x_22 = l_myMacro____x40_Init_Notation___hyg_8130____closed__9; +x_21 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__3; +x_22 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__9; x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_21); lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_25 = lean_array_push(x_24, x_18); x_26 = lean_array_push(x_25, x_23); x_27 = lean_array_push(x_26, x_9); x_28 = lean_array_push(x_27, x_11); -x_29 = l_myMacro____x40_Init_Notation___hyg_9436____closed__2; +x_29 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__2; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -17327,26 +17327,26 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_9436____closed__3; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__3; lean_inc(x_31); x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_31); lean_ctor_set(x_36, 1, x_35); -x_37 = l_myMacro____x40_Init_Notation___hyg_8130____closed__7; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__7; x_38 = l_Lean_addMacroScope(x_34, x_37, x_33); -x_39 = l_myMacro____x40_Init_Notation___hyg_8130____closed__3; -x_40 = l_myMacro____x40_Init_Notation___hyg_8130____closed__9; +x_39 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__3; +x_40 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__9; x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_31); lean_ctor_set(x_41, 1, x_39); lean_ctor_set(x_41, 2, x_38); lean_ctor_set(x_41, 3, x_40); -x_42 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_43 = lean_array_push(x_42, x_36); x_44 = lean_array_push(x_43, x_41); x_45 = lean_array_push(x_44, x_9); x_46 = lean_array_push(x_45, x_11); -x_47 = l_myMacro____x40_Init_Notation___hyg_9436____closed__2; +x_47 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -17358,7 +17358,7 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_10072_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -17385,7 +17385,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -17396,26 +17396,26 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_9436____closed__3; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__3; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_8925____closed__4; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__4; x_20 = l_Lean_addMacroScope(x_16, x_19, x_15); -x_21 = l_myMacro____x40_Init_Notation___hyg_8925____closed__3; -x_22 = l_myMacro____x40_Init_Notation___hyg_8925____closed__6; +x_21 = l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__3; +x_22 = l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__6; x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_21); lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_25 = lean_array_push(x_24, x_18); x_26 = lean_array_push(x_25, x_23); x_27 = lean_array_push(x_26, x_9); x_28 = lean_array_push(x_27, x_11); -x_29 = l_myMacro____x40_Init_Notation___hyg_9436____closed__2; +x_29 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__2; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -17435,26 +17435,26 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_9436____closed__3; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__3; lean_inc(x_31); x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_31); lean_ctor_set(x_36, 1, x_35); -x_37 = l_myMacro____x40_Init_Notation___hyg_8925____closed__4; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__4; x_38 = l_Lean_addMacroScope(x_34, x_37, x_33); -x_39 = l_myMacro____x40_Init_Notation___hyg_8925____closed__3; -x_40 = l_myMacro____x40_Init_Notation___hyg_8925____closed__6; +x_39 = l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__3; +x_40 = l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__6; x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_31); lean_ctor_set(x_41, 1, x_39); lean_ctor_set(x_41, 2, x_38); lean_ctor_set(x_41, 3, x_40); -x_42 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_43 = lean_array_push(x_42, x_36); x_44 = lean_array_push(x_43, x_41); x_45 = lean_array_push(x_44, x_9); x_46 = lean_array_push(x_45, x_11); -x_47 = l_myMacro____x40_Init_Notation___hyg_9436____closed__2; +x_47 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -17466,7 +17466,7 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_10178_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -17493,7 +17493,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -17504,26 +17504,26 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_9436____closed__3; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__3; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_9190____closed__7; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__7; x_20 = l_Lean_addMacroScope(x_16, x_19, x_15); -x_21 = l_myMacro____x40_Init_Notation___hyg_9190____closed__3; -x_22 = l_myMacro____x40_Init_Notation___hyg_9190____closed__9; +x_21 = l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__3; +x_22 = l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__9; x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_21); lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_25 = lean_array_push(x_24, x_18); x_26 = lean_array_push(x_25, x_23); x_27 = lean_array_push(x_26, x_9); x_28 = lean_array_push(x_27, x_11); -x_29 = l_myMacro____x40_Init_Notation___hyg_9436____closed__2; +x_29 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__2; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -17543,26 +17543,26 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_9436____closed__3; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__3; lean_inc(x_31); x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_31); lean_ctor_set(x_36, 1, x_35); -x_37 = l_myMacro____x40_Init_Notation___hyg_9190____closed__7; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__7; x_38 = l_Lean_addMacroScope(x_34, x_37, x_33); -x_39 = l_myMacro____x40_Init_Notation___hyg_9190____closed__3; -x_40 = l_myMacro____x40_Init_Notation___hyg_9190____closed__9; +x_39 = l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__3; +x_40 = l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__9; x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_31); lean_ctor_set(x_41, 1, x_39); lean_ctor_set(x_41, 2, x_38); lean_ctor_set(x_41, 3, x_40); -x_42 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_43 = lean_array_push(x_42, x_36); x_44 = lean_array_push(x_43, x_41); x_45 = lean_array_push(x_44, x_9); x_46 = lean_array_push(x_45, x_11); -x_47 = l_myMacro____x40_Init_Notation___hyg_9436____closed__2; +x_47 = l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -17648,7 +17648,7 @@ x_1 = l_term___x2f_x5c_____closed__6; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_10303____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -17656,22 +17656,22 @@ x_1 = lean_mk_string("And"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_10303____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_10303____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_10303____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_10303____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_10303____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -17679,41 +17679,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_10303____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_10303____closed__1; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_10303____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_10303____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__4; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_10303____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_10303____closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_10303_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -17740,7 +17740,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -17751,25 +17751,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_10303____closed__4; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__4; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_10303____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_10303____closed__6; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__6; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -17789,25 +17789,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_10303____closed__4; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__4; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_10303____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_10303____closed__6; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__6; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -17819,11 +17819,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_10286_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__And__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -17841,7 +17841,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -17879,7 +17879,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -17889,7 +17889,7 @@ x_25 = l_term___x2f_x5c_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -17912,7 +17912,7 @@ x_35 = l_term___x2f_x5c_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -18004,7 +18004,7 @@ x_1 = l_term___u2227_____closed__6; return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_10568_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___u2227___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -18031,7 +18031,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -18042,25 +18042,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_10303____closed__4; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__4; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_10303____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_10303____closed__6; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__6; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -18080,25 +18080,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_10303____closed__4; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__4; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_10303____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_10303____closed__6; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__6; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -18110,11 +18110,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_10551_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__And__2(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -18132,7 +18132,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -18170,7 +18170,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -18180,7 +18180,7 @@ x_25 = l_term___u2227_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -18203,7 +18203,7 @@ x_35 = l_term___u2227_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -18307,7 +18307,7 @@ x_1 = l_term___x5c_x2f_____closed__7; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_10833____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -18315,22 +18315,22 @@ x_1 = lean_mk_string("Or"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_10833____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_10833____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_10833____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_10833____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_10833____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -18338,41 +18338,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_10833____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_10833____closed__1; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_10833____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_10833____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__4; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_10833____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_10833____closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_10833_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -18399,7 +18399,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -18410,25 +18410,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_10833____closed__4; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__4; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_10833____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_10833____closed__6; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__6; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -18448,25 +18448,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_10833____closed__4; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__4; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_10833____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_10833____closed__6; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__6; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -18478,11 +18478,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_10816_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Or__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -18500,7 +18500,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -18538,7 +18538,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -18548,7 +18548,7 @@ x_25 = l_term___x5c_x2f_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -18571,7 +18571,7 @@ x_35 = l_term___x5c_x2f_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -18663,7 +18663,7 @@ x_1 = l_term___u2228_____closed__6; return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_11098_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___u2228___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -18690,7 +18690,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -18701,25 +18701,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_10833____closed__4; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__4; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_10833____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_10833____closed__6; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__6; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -18739,25 +18739,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_10833____closed__4; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__4; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_10833____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_10833____closed__6; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__6; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -18769,11 +18769,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_11081_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Or__2(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -18791,7 +18791,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -18829,7 +18829,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -18839,7 +18839,7 @@ x_25 = l_term___u2228_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -18862,7 +18862,7 @@ x_35 = l_term___u2228_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -18964,7 +18964,7 @@ x_1 = l_term_xac_____closed__7; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_11361____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -18972,22 +18972,22 @@ x_1 = lean_mk_string("Not"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_11361____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_11361____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_11361____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_11361____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_11361____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -18995,41 +18995,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_11361____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_11361____closed__1; +x_2 = l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_11361____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_11361____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__4; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_11361____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_11361____closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_11361_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -19054,7 +19054,7 @@ x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); lean_inc(x_2); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { @@ -19065,25 +19065,25 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_2, 1); lean_inc(x_14); lean_dec(x_2); -x_15 = l_myMacro____x40_Init_Notation___hyg_11361____closed__4; +x_15 = l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__4; x_16 = l_Lean_addMacroScope(x_14, x_15, x_13); -x_17 = l_myMacro____x40_Init_Notation___hyg_11361____closed__3; -x_18 = l_myMacro____x40_Init_Notation___hyg_11361____closed__6; +x_17 = l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__3; +x_18 = l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__6; x_19 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_19, 0, x_12); lean_ctor_set(x_19, 1, x_17); lean_ctor_set(x_19, 2, x_16); lean_ctor_set(x_19, 3, x_18); -x_20 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_20 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_21 = lean_array_push(x_20, x_9); -x_22 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_23 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_23, 0, x_22); lean_ctor_set(x_23, 1, x_21); -x_24 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_25 = lean_array_push(x_24, x_19); x_26 = lean_array_push(x_25, x_23); -x_27 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_27 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_26); @@ -19103,25 +19103,25 @@ lean_inc(x_31); x_32 = lean_ctor_get(x_2, 1); lean_inc(x_32); lean_dec(x_2); -x_33 = l_myMacro____x40_Init_Notation___hyg_11361____closed__4; +x_33 = l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__4; x_34 = l_Lean_addMacroScope(x_32, x_33, x_31); -x_35 = l_myMacro____x40_Init_Notation___hyg_11361____closed__3; -x_36 = l_myMacro____x40_Init_Notation___hyg_11361____closed__6; +x_35 = l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__3; +x_36 = l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__6; x_37 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_37, 0, x_29); lean_ctor_set(x_37, 1, x_35); lean_ctor_set(x_37, 2, x_34); lean_ctor_set(x_37, 3, x_36); -x_38 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_38 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_39 = lean_array_push(x_38, x_9); -x_40 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_39); -x_42 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_43 = lean_array_push(x_42, x_37); x_44 = lean_array_push(x_43, x_41); -x_45 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_45 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_46 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_44); @@ -19133,11 +19133,11 @@ return x_47; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_11344_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Not__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -19155,7 +19155,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -19191,7 +19191,7 @@ else lean_object* x_19; lean_object* x_20; uint8_t x_21; x_19 = l_Lean_Syntax_getArg(x_14, x_7); lean_dec(x_14); -x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_21 = !lean_is_exclusive(x_20); if (x_21 == 0) { @@ -19201,7 +19201,7 @@ x_23 = l_term_xac_____closed__3; x_24 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_24, 0, x_22); lean_ctor_set(x_24, 1, x_23); -x_25 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_26 = lean_array_push(x_25, x_24); x_27 = lean_array_push(x_26, x_19); x_28 = l_term_xac_____closed__2; @@ -19223,7 +19223,7 @@ x_32 = l_term_xac_____closed__3; x_33 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_33, 0, x_30); lean_ctor_set(x_33, 1, x_32); -x_34 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_34 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_35 = lean_array_push(x_34, x_33); x_36 = lean_array_push(x_35, x_19); x_37 = l_term_xac_____closed__2; @@ -19325,7 +19325,7 @@ x_1 = l_term___x26_x26_____closed__7; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_11604____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -19333,22 +19333,22 @@ x_1 = lean_mk_string("and"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_11604____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_11604____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_11604____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_11604____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_11604____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -19356,41 +19356,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_11604____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_11604____closed__1; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_11604____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_11604____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__4; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_11604____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_11604____closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_11604_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -19417,7 +19417,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -19428,25 +19428,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_11604____closed__4; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__4; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_11604____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_11604____closed__6; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__6; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -19466,25 +19466,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_11604____closed__4; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__4; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_11604____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_11604____closed__6; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__6; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -19496,11 +19496,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_11587_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__and__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -19518,7 +19518,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -19556,7 +19556,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -19566,7 +19566,7 @@ x_25 = l_term___x26_x26_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -19589,7 +19589,7 @@ x_35 = l_term___x26_x26_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -19692,7 +19692,7 @@ x_1 = l_term___x7c_x7c_____closed__7; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_11869____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -19700,22 +19700,22 @@ x_1 = lean_mk_string("or"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_11869____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_11869____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_11869____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_11869____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_11869____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -19723,41 +19723,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_11869____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_11869____closed__1; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_11869____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_11869____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__4; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_11869____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_11869____closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_11869_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -19784,7 +19784,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -19795,25 +19795,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_11869____closed__4; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__4; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_11869____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_11869____closed__6; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__6; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -19833,25 +19833,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_11869____closed__4; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__4; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_11869____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_11869____closed__6; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__6; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -19863,11 +19863,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_11852_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__or__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -19885,7 +19885,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -19923,7 +19923,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -19933,7 +19933,7 @@ x_25 = l_term___x7c_x7c_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -19956,7 +19956,7 @@ x_35 = l_term___x7c_x7c_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -20038,7 +20038,7 @@ x_1 = l_term_x21_____closed__5; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12132____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules__term_x21____1___closed__1() { _start: { lean_object* x_1; @@ -20046,22 +20046,22 @@ x_1 = lean_mk_string("not"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12132____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules__term_x21____1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_12132____closed__1; +x_1 = l___aux__Init__Notation______macroRules__term_x21____1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12132____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules__term_x21____1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_12132____closed__1; +x_1 = l___aux__Init__Notation______macroRules__term_x21____1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_12132____closed__2; +x_3 = l___aux__Init__Notation______macroRules__term_x21____1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -20069,41 +20069,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12132____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules__term_x21____1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_12132____closed__1; +x_2 = l___aux__Init__Notation______macroRules__term_x21____1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12132____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules__term_x21____1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_12132____closed__4; +x_2 = l___aux__Init__Notation______macroRules__term_x21____1___closed__4; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12132____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules__term_x21____1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_12132____closed__5; +x_2 = l___aux__Init__Notation______macroRules__term_x21____1___closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_12132_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__term_x21____1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -20128,7 +20128,7 @@ x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); lean_inc(x_2); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { @@ -20139,25 +20139,25 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_2, 1); lean_inc(x_14); lean_dec(x_2); -x_15 = l_myMacro____x40_Init_Notation___hyg_12132____closed__4; +x_15 = l___aux__Init__Notation______macroRules__term_x21____1___closed__4; x_16 = l_Lean_addMacroScope(x_14, x_15, x_13); -x_17 = l_myMacro____x40_Init_Notation___hyg_12132____closed__3; -x_18 = l_myMacro____x40_Init_Notation___hyg_12132____closed__6; +x_17 = l___aux__Init__Notation______macroRules__term_x21____1___closed__3; +x_18 = l___aux__Init__Notation______macroRules__term_x21____1___closed__6; x_19 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_19, 0, x_12); lean_ctor_set(x_19, 1, x_17); lean_ctor_set(x_19, 2, x_16); lean_ctor_set(x_19, 3, x_18); -x_20 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_20 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_21 = lean_array_push(x_20, x_9); -x_22 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_23 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_23, 0, x_22); lean_ctor_set(x_23, 1, x_21); -x_24 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_25 = lean_array_push(x_24, x_19); x_26 = lean_array_push(x_25, x_23); -x_27 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_27 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_26); @@ -20177,25 +20177,25 @@ lean_inc(x_31); x_32 = lean_ctor_get(x_2, 1); lean_inc(x_32); lean_dec(x_2); -x_33 = l_myMacro____x40_Init_Notation___hyg_12132____closed__4; +x_33 = l___aux__Init__Notation______macroRules__term_x21____1___closed__4; x_34 = l_Lean_addMacroScope(x_32, x_33, x_31); -x_35 = l_myMacro____x40_Init_Notation___hyg_12132____closed__3; -x_36 = l_myMacro____x40_Init_Notation___hyg_12132____closed__6; +x_35 = l___aux__Init__Notation______macroRules__term_x21____1___closed__3; +x_36 = l___aux__Init__Notation______macroRules__term_x21____1___closed__6; x_37 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_37, 0, x_29); lean_ctor_set(x_37, 1, x_35); lean_ctor_set(x_37, 2, x_34); lean_ctor_set(x_37, 3, x_36); -x_38 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_38 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_39 = lean_array_push(x_38, x_9); -x_40 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_39); -x_42 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_43 = lean_array_push(x_42, x_37); x_44 = lean_array_push(x_43, x_41); -x_45 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_45 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_46 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_44); @@ -20207,11 +20207,11 @@ return x_47; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_12115_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__not__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -20229,7 +20229,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -20265,7 +20265,7 @@ else lean_object* x_19; lean_object* x_20; uint8_t x_21; x_19 = l_Lean_Syntax_getArg(x_14, x_7); lean_dec(x_14); -x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_21 = !lean_is_exclusive(x_20); if (x_21 == 0) { @@ -20275,7 +20275,7 @@ x_23 = l_stx_x21_____closed__3; x_24 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_24, 0, x_22); lean_ctor_set(x_24, 1, x_23); -x_25 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_26 = lean_array_push(x_25, x_24); x_27 = lean_array_push(x_26, x_19); x_28 = l_term_x21_____closed__2; @@ -20297,7 +20297,7 @@ x_32 = l_stx_x21_____closed__3; x_33 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_33, 0, x_30); lean_ctor_set(x_33, 1, x_32); -x_34 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_34 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_35 = lean_array_push(x_34, x_33); x_36 = lean_array_push(x_35, x_19); x_37 = l_term_x21_____closed__2; @@ -20400,7 +20400,7 @@ x_1 = l_term___x3a_x3a_____closed__7; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12375____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -20408,22 +20408,22 @@ x_1 = lean_mk_string("List.cons"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12375____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_12375____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12375____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_12375____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_12375____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -20431,7 +20431,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12375____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -20439,17 +20439,17 @@ x_1 = lean_mk_string("List"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12375____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_12375____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12375____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -20457,41 +20457,41 @@ x_1 = lean_mk_string("cons"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12375____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_12375____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_12375____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12375____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_12375____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12375____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_12375____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_12375_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -20518,7 +20518,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -20529,25 +20529,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_12375____closed__7; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__7; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_12375____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_12375____closed__9; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__9; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -20567,25 +20567,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_12375____closed__7; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__7; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_12375____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_12375____closed__9; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__9; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -20597,11 +20597,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_12358_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__List__cons__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -20619,7 +20619,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -20657,7 +20657,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -20667,7 +20667,7 @@ x_25 = l_term___x3a_x3a_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -20690,7 +20690,7 @@ x_35 = l_term___x3a_x3a_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -20935,7 +20935,7 @@ x_1 = l_term___x3e_x3e_x3d_____closed__6; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12668____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -20943,22 +20943,22 @@ x_1 = lean_mk_string("Bind.bind"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12668____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_12668____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12668____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_12668____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_12668____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -20966,7 +20966,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12668____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -20974,17 +20974,17 @@ x_1 = lean_mk_string("Bind"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12668____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_12668____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12668____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -20992,41 +20992,41 @@ x_1 = lean_mk_string("bind"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12668____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_12668____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_12668____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12668____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_12668____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12668____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_12668____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_12668_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -21053,7 +21053,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -21064,25 +21064,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_12668____closed__7; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__7; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_12668____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_12668____closed__9; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__9; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -21102,25 +21102,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_12668____closed__7; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__7; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_12668____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_12668____closed__9; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__9; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -21132,11 +21132,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_12651_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Bind__bind__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -21154,7 +21154,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -21192,7 +21192,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -21202,7 +21202,7 @@ x_25 = l_term___x3e_x3e_x3d_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -21225,7 +21225,7 @@ x_35 = l_term___x3e_x3e_x3d_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -21316,7 +21316,7 @@ x_1 = l_term___x3c_x2a_x3e_____closed__6; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -21324,22 +21324,22 @@ x_1 = lean_mk_string("Seq.seq"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_12931____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_12931____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_12931____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -21347,7 +21347,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -21355,17 +21355,17 @@ x_1 = lean_mk_string("Seq"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_12931____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -21373,41 +21373,41 @@ x_1 = lean_mk_string("seq"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_12931____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_12931____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_12931____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_12931____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__10() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__10() { _start: { lean_object* x_1; @@ -21415,17 +21415,17 @@ x_1 = lean_mk_string("fun"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__11() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_12931____closed__10; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__10; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__12() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__12() { _start: { lean_object* x_1; @@ -21433,17 +21433,17 @@ x_1 = lean_mk_string("basicFun"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__13() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_12931____closed__12; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__12; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__14() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__14() { _start: { lean_object* x_1; @@ -21451,17 +21451,17 @@ x_1 = lean_mk_string("simpleBinder"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__15() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_12931____closed__14; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__14; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__16() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__16() { _start: { lean_object* x_1; @@ -21469,17 +21469,17 @@ x_1 = lean_mk_string("hole"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__17() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_12931____closed__16; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__16; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__18() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18() { _start: { lean_object* x_1; @@ -21487,7 +21487,7 @@ x_1 = lean_mk_string("_"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__19() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__19() { _start: { lean_object* x_1; @@ -21495,17 +21495,17 @@ x_1 = lean_mk_string("typeSpec"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__20() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_12931____closed__19; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__19; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__21() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__21() { _start: { lean_object* x_1; @@ -21513,7 +21513,7 @@ x_1 = lean_mk_string(":"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__22() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__22() { _start: { lean_object* x_1; @@ -21521,22 +21521,22 @@ x_1 = lean_mk_string("Unit"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__23() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__23() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_12931____closed__22; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__22; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__24() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_12931____closed__22; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__22; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_12931____closed__23; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__23; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -21544,41 +21544,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__25() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__25() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_12931____closed__22; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__22; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__26() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_12931____closed__25; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__25; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__27() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__27() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_12931____closed__26; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__26; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__28() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__28() { _start: { lean_object* x_1; @@ -21586,7 +21586,7 @@ x_1 = lean_mk_string("=>"); return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_12931_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -21613,7 +21613,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -21624,58 +21624,58 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_12931____closed__7; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__7; lean_inc(x_15); lean_inc(x_16); x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_12931____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_12931____closed__9; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__9; lean_inc(x_14); x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_12931____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__10; lean_inc(x_14); x_23 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_24 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; lean_inc(x_14); x_25 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_25, 0, x_14); lean_ctor_set(x_25, 1, x_24); -x_26 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_26 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_27 = lean_array_push(x_26, x_25); -x_28 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_28 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); x_30 = lean_array_push(x_26, x_29); -x_31 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_31 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); -x_33 = l_myMacro____x40_Init_Notation___hyg_12931____closed__21; +x_33 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__21; lean_inc(x_14); x_34 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_34, 0, x_14); lean_ctor_set(x_34, 1, x_33); -x_35 = l_myMacro____x40_Init_Notation___hyg_12931____closed__25; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__25; x_36 = l_Lean_addMacroScope(x_16, x_35, x_15); -x_37 = l_myMacro____x40_Init_Notation___hyg_12931____closed__24; -x_38 = l_myMacro____x40_Init_Notation___hyg_12931____closed__27; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__24; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__27; lean_inc(x_14); x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_14); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_34); x_42 = lean_array_push(x_41, x_39); -x_43 = l_myMacro____x40_Init_Notation___hyg_12931____closed__20; +x_43 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__20; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); @@ -21685,7 +21685,7 @@ lean_ctor_set(x_46, 0, x_31); lean_ctor_set(x_46, 1, x_45); x_47 = lean_array_push(x_40, x_32); x_48 = lean_array_push(x_47, x_46); -x_49 = l_myMacro____x40_Init_Notation___hyg_12931____closed__15; +x_49 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__15; x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); @@ -21693,21 +21693,21 @@ x_51 = lean_array_push(x_26, x_50); x_52 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_52, 0, x_31); lean_ctor_set(x_52, 1, x_51); -x_53 = l_myMacro____x40_Init_Notation___hyg_12931____closed__28; +x_53 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__28; x_54 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_54, 0, x_14); lean_ctor_set(x_54, 1, x_53); -x_55 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_55 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_56 = lean_array_push(x_55, x_52); x_57 = lean_array_push(x_56, x_54); x_58 = lean_array_push(x_57, x_11); -x_59 = l_myMacro____x40_Init_Notation___hyg_12931____closed__13; +x_59 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__13; x_60 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_60, 0, x_59); lean_ctor_set(x_60, 1, x_58); x_61 = lean_array_push(x_40, x_23); x_62 = lean_array_push(x_61, x_60); -x_63 = l_myMacro____x40_Init_Notation___hyg_12931____closed__11; +x_63 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__11; x_64 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_64, 0, x_63); lean_ctor_set(x_64, 1, x_62); @@ -21718,7 +21718,7 @@ lean_ctor_set(x_67, 0, x_31); lean_ctor_set(x_67, 1, x_66); x_68 = lean_array_push(x_40, x_21); x_69 = lean_array_push(x_68, x_67); -x_70 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_70 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_71 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_71, 0, x_70); lean_ctor_set(x_71, 1, x_69); @@ -21738,58 +21738,58 @@ lean_inc(x_74); x_75 = lean_ctor_get(x_2, 1); lean_inc(x_75); lean_dec(x_2); -x_76 = l_myMacro____x40_Init_Notation___hyg_12931____closed__7; +x_76 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__7; lean_inc(x_74); lean_inc(x_75); x_77 = l_Lean_addMacroScope(x_75, x_76, x_74); -x_78 = l_myMacro____x40_Init_Notation___hyg_12931____closed__3; -x_79 = l_myMacro____x40_Init_Notation___hyg_12931____closed__9; +x_78 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__3; +x_79 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__9; lean_inc(x_72); x_80 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_80, 0, x_72); lean_ctor_set(x_80, 1, x_78); lean_ctor_set(x_80, 2, x_77); lean_ctor_set(x_80, 3, x_79); -x_81 = l_myMacro____x40_Init_Notation___hyg_12931____closed__10; +x_81 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__10; lean_inc(x_72); x_82 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_82, 0, x_72); lean_ctor_set(x_82, 1, x_81); -x_83 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_83 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; lean_inc(x_72); x_84 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_84, 0, x_72); lean_ctor_set(x_84, 1, x_83); -x_85 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_85 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_86 = lean_array_push(x_85, x_84); -x_87 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_87 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_88 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_88, 0, x_87); lean_ctor_set(x_88, 1, x_86); x_89 = lean_array_push(x_85, x_88); -x_90 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_90 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_91 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_91, 0, x_90); lean_ctor_set(x_91, 1, x_89); -x_92 = l_myMacro____x40_Init_Notation___hyg_12931____closed__21; +x_92 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__21; lean_inc(x_72); x_93 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_93, 0, x_72); lean_ctor_set(x_93, 1, x_92); -x_94 = l_myMacro____x40_Init_Notation___hyg_12931____closed__25; +x_94 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__25; x_95 = l_Lean_addMacroScope(x_75, x_94, x_74); -x_96 = l_myMacro____x40_Init_Notation___hyg_12931____closed__24; -x_97 = l_myMacro____x40_Init_Notation___hyg_12931____closed__27; +x_96 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__24; +x_97 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__27; lean_inc(x_72); x_98 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_98, 0, x_72); lean_ctor_set(x_98, 1, x_96); lean_ctor_set(x_98, 2, x_95); lean_ctor_set(x_98, 3, x_97); -x_99 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_99 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_100 = lean_array_push(x_99, x_93); x_101 = lean_array_push(x_100, x_98); -x_102 = l_myMacro____x40_Init_Notation___hyg_12931____closed__20; +x_102 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__20; x_103 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_103, 0, x_102); lean_ctor_set(x_103, 1, x_101); @@ -21799,7 +21799,7 @@ lean_ctor_set(x_105, 0, x_90); lean_ctor_set(x_105, 1, x_104); x_106 = lean_array_push(x_99, x_91); x_107 = lean_array_push(x_106, x_105); -x_108 = l_myMacro____x40_Init_Notation___hyg_12931____closed__15; +x_108 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__15; x_109 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_109, 0, x_108); lean_ctor_set(x_109, 1, x_107); @@ -21807,21 +21807,21 @@ x_110 = lean_array_push(x_85, x_109); x_111 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_111, 0, x_90); lean_ctor_set(x_111, 1, x_110); -x_112 = l_myMacro____x40_Init_Notation___hyg_12931____closed__28; +x_112 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__28; x_113 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_113, 0, x_72); lean_ctor_set(x_113, 1, x_112); -x_114 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_114 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_115 = lean_array_push(x_114, x_111); x_116 = lean_array_push(x_115, x_113); x_117 = lean_array_push(x_116, x_11); -x_118 = l_myMacro____x40_Init_Notation___hyg_12931____closed__13; +x_118 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__13; x_119 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_119, 0, x_118); lean_ctor_set(x_119, 1, x_117); x_120 = lean_array_push(x_99, x_82); x_121 = lean_array_push(x_120, x_119); -x_122 = l_myMacro____x40_Init_Notation___hyg_12931____closed__11; +x_122 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__11; x_123 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_123, 0, x_122); lean_ctor_set(x_123, 1, x_121); @@ -21832,7 +21832,7 @@ lean_ctor_set(x_126, 0, x_90); lean_ctor_set(x_126, 1, x_125); x_127 = lean_array_push(x_99, x_80); x_128 = lean_array_push(x_127, x_126); -x_129 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_129 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_130 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_130, 0, x_129); lean_ctor_set(x_130, 1, x_128); @@ -21917,7 +21917,7 @@ x_1 = l_term___x3c_x2a_____closed__6; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13129____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -21925,22 +21925,22 @@ x_1 = lean_mk_string("SeqLeft.seqLeft"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13129____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_13129____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13129____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_13129____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_13129____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -21948,7 +21948,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13129____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -21956,17 +21956,17 @@ x_1 = lean_mk_string("SeqLeft"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13129____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_13129____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13129____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -21974,41 +21974,41 @@ x_1 = lean_mk_string("seqLeft"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13129____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_13129____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_13129____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13129____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_13129____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13129____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_13129____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_13129_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -22035,7 +22035,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -22046,58 +22046,58 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_13129____closed__7; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__7; lean_inc(x_15); lean_inc(x_16); x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_13129____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_13129____closed__9; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__9; lean_inc(x_14); x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_12931____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__10; lean_inc(x_14); x_23 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_24 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; lean_inc(x_14); x_25 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_25, 0, x_14); lean_ctor_set(x_25, 1, x_24); -x_26 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_26 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_27 = lean_array_push(x_26, x_25); -x_28 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_28 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); x_30 = lean_array_push(x_26, x_29); -x_31 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_31 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); -x_33 = l_myMacro____x40_Init_Notation___hyg_12931____closed__21; +x_33 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__21; lean_inc(x_14); x_34 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_34, 0, x_14); lean_ctor_set(x_34, 1, x_33); -x_35 = l_myMacro____x40_Init_Notation___hyg_12931____closed__25; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__25; x_36 = l_Lean_addMacroScope(x_16, x_35, x_15); -x_37 = l_myMacro____x40_Init_Notation___hyg_12931____closed__24; -x_38 = l_myMacro____x40_Init_Notation___hyg_12931____closed__27; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__24; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__27; lean_inc(x_14); x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_14); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_34); x_42 = lean_array_push(x_41, x_39); -x_43 = l_myMacro____x40_Init_Notation___hyg_12931____closed__20; +x_43 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__20; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); @@ -22107,7 +22107,7 @@ lean_ctor_set(x_46, 0, x_31); lean_ctor_set(x_46, 1, x_45); x_47 = lean_array_push(x_40, x_32); x_48 = lean_array_push(x_47, x_46); -x_49 = l_myMacro____x40_Init_Notation___hyg_12931____closed__15; +x_49 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__15; x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); @@ -22115,21 +22115,21 @@ x_51 = lean_array_push(x_26, x_50); x_52 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_52, 0, x_31); lean_ctor_set(x_52, 1, x_51); -x_53 = l_myMacro____x40_Init_Notation___hyg_12931____closed__28; +x_53 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__28; x_54 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_54, 0, x_14); lean_ctor_set(x_54, 1, x_53); -x_55 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_55 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_56 = lean_array_push(x_55, x_52); x_57 = lean_array_push(x_56, x_54); x_58 = lean_array_push(x_57, x_11); -x_59 = l_myMacro____x40_Init_Notation___hyg_12931____closed__13; +x_59 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__13; x_60 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_60, 0, x_59); lean_ctor_set(x_60, 1, x_58); x_61 = lean_array_push(x_40, x_23); x_62 = lean_array_push(x_61, x_60); -x_63 = l_myMacro____x40_Init_Notation___hyg_12931____closed__11; +x_63 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__11; x_64 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_64, 0, x_63); lean_ctor_set(x_64, 1, x_62); @@ -22140,7 +22140,7 @@ lean_ctor_set(x_67, 0, x_31); lean_ctor_set(x_67, 1, x_66); x_68 = lean_array_push(x_40, x_21); x_69 = lean_array_push(x_68, x_67); -x_70 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_70 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_71 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_71, 0, x_70); lean_ctor_set(x_71, 1, x_69); @@ -22160,58 +22160,58 @@ lean_inc(x_74); x_75 = lean_ctor_get(x_2, 1); lean_inc(x_75); lean_dec(x_2); -x_76 = l_myMacro____x40_Init_Notation___hyg_13129____closed__7; +x_76 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__7; lean_inc(x_74); lean_inc(x_75); x_77 = l_Lean_addMacroScope(x_75, x_76, x_74); -x_78 = l_myMacro____x40_Init_Notation___hyg_13129____closed__3; -x_79 = l_myMacro____x40_Init_Notation___hyg_13129____closed__9; +x_78 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__3; +x_79 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__9; lean_inc(x_72); x_80 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_80, 0, x_72); lean_ctor_set(x_80, 1, x_78); lean_ctor_set(x_80, 2, x_77); lean_ctor_set(x_80, 3, x_79); -x_81 = l_myMacro____x40_Init_Notation___hyg_12931____closed__10; +x_81 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__10; lean_inc(x_72); x_82 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_82, 0, x_72); lean_ctor_set(x_82, 1, x_81); -x_83 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_83 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; lean_inc(x_72); x_84 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_84, 0, x_72); lean_ctor_set(x_84, 1, x_83); -x_85 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_85 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_86 = lean_array_push(x_85, x_84); -x_87 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_87 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_88 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_88, 0, x_87); lean_ctor_set(x_88, 1, x_86); x_89 = lean_array_push(x_85, x_88); -x_90 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_90 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_91 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_91, 0, x_90); lean_ctor_set(x_91, 1, x_89); -x_92 = l_myMacro____x40_Init_Notation___hyg_12931____closed__21; +x_92 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__21; lean_inc(x_72); x_93 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_93, 0, x_72); lean_ctor_set(x_93, 1, x_92); -x_94 = l_myMacro____x40_Init_Notation___hyg_12931____closed__25; +x_94 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__25; x_95 = l_Lean_addMacroScope(x_75, x_94, x_74); -x_96 = l_myMacro____x40_Init_Notation___hyg_12931____closed__24; -x_97 = l_myMacro____x40_Init_Notation___hyg_12931____closed__27; +x_96 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__24; +x_97 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__27; lean_inc(x_72); x_98 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_98, 0, x_72); lean_ctor_set(x_98, 1, x_96); lean_ctor_set(x_98, 2, x_95); lean_ctor_set(x_98, 3, x_97); -x_99 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_99 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_100 = lean_array_push(x_99, x_93); x_101 = lean_array_push(x_100, x_98); -x_102 = l_myMacro____x40_Init_Notation___hyg_12931____closed__20; +x_102 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__20; x_103 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_103, 0, x_102); lean_ctor_set(x_103, 1, x_101); @@ -22221,7 +22221,7 @@ lean_ctor_set(x_105, 0, x_90); lean_ctor_set(x_105, 1, x_104); x_106 = lean_array_push(x_99, x_91); x_107 = lean_array_push(x_106, x_105); -x_108 = l_myMacro____x40_Init_Notation___hyg_12931____closed__15; +x_108 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__15; x_109 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_109, 0, x_108); lean_ctor_set(x_109, 1, x_107); @@ -22229,21 +22229,21 @@ x_110 = lean_array_push(x_85, x_109); x_111 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_111, 0, x_90); lean_ctor_set(x_111, 1, x_110); -x_112 = l_myMacro____x40_Init_Notation___hyg_12931____closed__28; +x_112 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__28; x_113 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_113, 0, x_72); lean_ctor_set(x_113, 1, x_112); -x_114 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_114 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_115 = lean_array_push(x_114, x_111); x_116 = lean_array_push(x_115, x_113); x_117 = lean_array_push(x_116, x_11); -x_118 = l_myMacro____x40_Init_Notation___hyg_12931____closed__13; +x_118 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__13; x_119 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_119, 0, x_118); lean_ctor_set(x_119, 1, x_117); x_120 = lean_array_push(x_99, x_82); x_121 = lean_array_push(x_120, x_119); -x_122 = l_myMacro____x40_Init_Notation___hyg_12931____closed__11; +x_122 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__11; x_123 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_123, 0, x_122); lean_ctor_set(x_123, 1, x_121); @@ -22254,7 +22254,7 @@ lean_ctor_set(x_126, 0, x_90); lean_ctor_set(x_126, 1, x_125); x_127 = lean_array_push(x_99, x_80); x_128 = lean_array_push(x_127, x_126); -x_129 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_129 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_130 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_130, 0, x_129); lean_ctor_set(x_130, 1, x_128); @@ -22339,7 +22339,7 @@ x_1 = l_term___x2a_x3e_____closed__6; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13327____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -22347,22 +22347,22 @@ x_1 = lean_mk_string("SeqRight.seqRight"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13327____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_13327____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13327____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_13327____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_13327____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -22370,7 +22370,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13327____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -22378,17 +22378,17 @@ x_1 = lean_mk_string("SeqRight"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13327____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_13327____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13327____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -22396,41 +22396,41 @@ x_1 = lean_mk_string("seqRight"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13327____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_13327____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_13327____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13327____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_13327____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13327____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_13327____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_13327_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -22457,7 +22457,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -22468,58 +22468,58 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_13327____closed__7; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__7; lean_inc(x_15); lean_inc(x_16); x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_13327____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_13327____closed__9; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__9; lean_inc(x_14); x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_12931____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__10; lean_inc(x_14); x_23 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_24 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; lean_inc(x_14); x_25 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_25, 0, x_14); lean_ctor_set(x_25, 1, x_24); -x_26 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_26 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_27 = lean_array_push(x_26, x_25); -x_28 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_28 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); x_30 = lean_array_push(x_26, x_29); -x_31 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_31 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); -x_33 = l_myMacro____x40_Init_Notation___hyg_12931____closed__21; +x_33 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__21; lean_inc(x_14); x_34 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_34, 0, x_14); lean_ctor_set(x_34, 1, x_33); -x_35 = l_myMacro____x40_Init_Notation___hyg_12931____closed__25; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__25; x_36 = l_Lean_addMacroScope(x_16, x_35, x_15); -x_37 = l_myMacro____x40_Init_Notation___hyg_12931____closed__24; -x_38 = l_myMacro____x40_Init_Notation___hyg_12931____closed__27; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__24; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__27; lean_inc(x_14); x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_14); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_34); x_42 = lean_array_push(x_41, x_39); -x_43 = l_myMacro____x40_Init_Notation___hyg_12931____closed__20; +x_43 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__20; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); @@ -22529,7 +22529,7 @@ lean_ctor_set(x_46, 0, x_31); lean_ctor_set(x_46, 1, x_45); x_47 = lean_array_push(x_40, x_32); x_48 = lean_array_push(x_47, x_46); -x_49 = l_myMacro____x40_Init_Notation___hyg_12931____closed__15; +x_49 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__15; x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); @@ -22537,21 +22537,21 @@ x_51 = lean_array_push(x_26, x_50); x_52 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_52, 0, x_31); lean_ctor_set(x_52, 1, x_51); -x_53 = l_myMacro____x40_Init_Notation___hyg_12931____closed__28; +x_53 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__28; x_54 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_54, 0, x_14); lean_ctor_set(x_54, 1, x_53); -x_55 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_55 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_56 = lean_array_push(x_55, x_52); x_57 = lean_array_push(x_56, x_54); x_58 = lean_array_push(x_57, x_11); -x_59 = l_myMacro____x40_Init_Notation___hyg_12931____closed__13; +x_59 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__13; x_60 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_60, 0, x_59); lean_ctor_set(x_60, 1, x_58); x_61 = lean_array_push(x_40, x_23); x_62 = lean_array_push(x_61, x_60); -x_63 = l_myMacro____x40_Init_Notation___hyg_12931____closed__11; +x_63 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__11; x_64 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_64, 0, x_63); lean_ctor_set(x_64, 1, x_62); @@ -22562,7 +22562,7 @@ lean_ctor_set(x_67, 0, x_31); lean_ctor_set(x_67, 1, x_66); x_68 = lean_array_push(x_40, x_21); x_69 = lean_array_push(x_68, x_67); -x_70 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_70 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_71 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_71, 0, x_70); lean_ctor_set(x_71, 1, x_69); @@ -22582,58 +22582,58 @@ lean_inc(x_74); x_75 = lean_ctor_get(x_2, 1); lean_inc(x_75); lean_dec(x_2); -x_76 = l_myMacro____x40_Init_Notation___hyg_13327____closed__7; +x_76 = l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__7; lean_inc(x_74); lean_inc(x_75); x_77 = l_Lean_addMacroScope(x_75, x_76, x_74); -x_78 = l_myMacro____x40_Init_Notation___hyg_13327____closed__3; -x_79 = l_myMacro____x40_Init_Notation___hyg_13327____closed__9; +x_78 = l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__3; +x_79 = l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__9; lean_inc(x_72); x_80 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_80, 0, x_72); lean_ctor_set(x_80, 1, x_78); lean_ctor_set(x_80, 2, x_77); lean_ctor_set(x_80, 3, x_79); -x_81 = l_myMacro____x40_Init_Notation___hyg_12931____closed__10; +x_81 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__10; lean_inc(x_72); x_82 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_82, 0, x_72); lean_ctor_set(x_82, 1, x_81); -x_83 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_83 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; lean_inc(x_72); x_84 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_84, 0, x_72); lean_ctor_set(x_84, 1, x_83); -x_85 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_85 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_86 = lean_array_push(x_85, x_84); -x_87 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_87 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_88 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_88, 0, x_87); lean_ctor_set(x_88, 1, x_86); x_89 = lean_array_push(x_85, x_88); -x_90 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_90 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_91 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_91, 0, x_90); lean_ctor_set(x_91, 1, x_89); -x_92 = l_myMacro____x40_Init_Notation___hyg_12931____closed__21; +x_92 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__21; lean_inc(x_72); x_93 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_93, 0, x_72); lean_ctor_set(x_93, 1, x_92); -x_94 = l_myMacro____x40_Init_Notation___hyg_12931____closed__25; +x_94 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__25; x_95 = l_Lean_addMacroScope(x_75, x_94, x_74); -x_96 = l_myMacro____x40_Init_Notation___hyg_12931____closed__24; -x_97 = l_myMacro____x40_Init_Notation___hyg_12931____closed__27; +x_96 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__24; +x_97 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__27; lean_inc(x_72); x_98 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_98, 0, x_72); lean_ctor_set(x_98, 1, x_96); lean_ctor_set(x_98, 2, x_95); lean_ctor_set(x_98, 3, x_97); -x_99 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_99 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_100 = lean_array_push(x_99, x_93); x_101 = lean_array_push(x_100, x_98); -x_102 = l_myMacro____x40_Init_Notation___hyg_12931____closed__20; +x_102 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__20; x_103 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_103, 0, x_102); lean_ctor_set(x_103, 1, x_101); @@ -22643,7 +22643,7 @@ lean_ctor_set(x_105, 0, x_90); lean_ctor_set(x_105, 1, x_104); x_106 = lean_array_push(x_99, x_91); x_107 = lean_array_push(x_106, x_105); -x_108 = l_myMacro____x40_Init_Notation___hyg_12931____closed__15; +x_108 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__15; x_109 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_109, 0, x_108); lean_ctor_set(x_109, 1, x_107); @@ -22651,21 +22651,21 @@ x_110 = lean_array_push(x_85, x_109); x_111 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_111, 0, x_90); lean_ctor_set(x_111, 1, x_110); -x_112 = l_myMacro____x40_Init_Notation___hyg_12931____closed__28; +x_112 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__28; x_113 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_113, 0, x_72); lean_ctor_set(x_113, 1, x_112); -x_114 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_114 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_115 = lean_array_push(x_114, x_111); x_116 = lean_array_push(x_115, x_113); x_117 = lean_array_push(x_116, x_11); -x_118 = l_myMacro____x40_Init_Notation___hyg_12931____closed__13; +x_118 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__13; x_119 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_119, 0, x_118); lean_ctor_set(x_119, 1, x_117); x_120 = lean_array_push(x_99, x_82); x_121 = lean_array_push(x_120, x_119); -x_122 = l_myMacro____x40_Init_Notation___hyg_12931____closed__11; +x_122 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__11; x_123 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_123, 0, x_122); lean_ctor_set(x_123, 1, x_121); @@ -22676,7 +22676,7 @@ lean_ctor_set(x_126, 0, x_90); lean_ctor_set(x_126, 1, x_125); x_127 = lean_array_push(x_99, x_80); x_128 = lean_array_push(x_127, x_126); -x_129 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_129 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_130 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_130, 0, x_129); lean_ctor_set(x_130, 1, x_128); @@ -22762,7 +22762,7 @@ x_1 = l_term___x3c_x24_x3e_____closed__6; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13527____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -22770,22 +22770,22 @@ x_1 = lean_mk_string("Functor.map"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13527____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_13527____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13527____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_13527____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_13527____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -22793,7 +22793,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13527____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -22801,17 +22801,17 @@ x_1 = lean_mk_string("Functor"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13527____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_13527____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13527____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -22819,41 +22819,41 @@ x_1 = lean_mk_string("map"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13527____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_13527____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_13527____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13527____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_13527____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13527____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_13527____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_13527_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -22880,7 +22880,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -22891,25 +22891,25 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_13527____closed__7; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__7; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); -x_19 = l_myMacro____x40_Init_Notation___hyg_13527____closed__3; -x_20 = l_myMacro____x40_Init_Notation___hyg_13527____closed__9; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__3; +x_20 = l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__9; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_14); lean_ctor_set(x_21, 1, x_19); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_23 = lean_array_push(x_22, x_9); x_24 = lean_array_push(x_23, x_11); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_22, x_21); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_29 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -22929,25 +22929,25 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_13527____closed__7; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__7; x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); -x_37 = l_myMacro____x40_Init_Notation___hyg_13527____closed__3; -x_38 = l_myMacro____x40_Init_Notation___hyg_13527____closed__9; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__3; +x_38 = l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__9; x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_31); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_9); x_42 = lean_array_push(x_41, x_11); -x_43 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_40, x_39); x_46 = lean_array_push(x_45, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_47 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -22959,11 +22959,11 @@ return x_49; } } } -LEAN_EXPORT lean_object* l_unexpand____x40_Init_Notation___hyg_13510_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______unexpand__Functor__map__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_3 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -22981,7 +22981,7 @@ else lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_9 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_10 = l_Lean_Syntax_isOfKind(x_8, x_9); if (x_10 == 0) { @@ -23019,7 +23019,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; x_20 = l_Lean_Syntax_getArg(x_14, x_7); x_21 = l_Lean_Syntax_getArg(x_14, x_13); lean_dec(x_14); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -23029,7 +23029,7 @@ x_25 = l_term___x3c_x24_x3e_____closed__3; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_27 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); x_30 = lean_array_push(x_29, x_21); @@ -23052,7 +23052,7 @@ x_35 = l_term___x3c_x24_x3e_____closed__3; x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_33); lean_ctor_set(x_36, 1, x_35); -x_37 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_37 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_38 = lean_array_push(x_37, x_20); x_39 = lean_array_push(x_38, x_36); x_40 = lean_array_push(x_39, x_21); @@ -23070,7 +23070,7 @@ return x_43; } } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13773____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -23078,17 +23078,17 @@ x_1 = lean_mk_string("binop_lazy"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13773____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_13773____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13773____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__3() { _start: { lean_object* x_1; @@ -23096,7 +23096,7 @@ x_1 = lean_mk_string("binop_lazy%"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13773____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -23104,22 +23104,22 @@ x_1 = lean_mk_string("HOrElse.hOrElse"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13773____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_13773____closed__4; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__4; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13773____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_13773____closed__4; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__4; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_13773____closed__5; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__5; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -23127,7 +23127,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13773____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__7() { _start: { lean_object* x_1; @@ -23135,17 +23135,17 @@ x_1 = lean_mk_string("HOrElse"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13773____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_13773____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13773____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__9() { _start: { lean_object* x_1; @@ -23153,41 +23153,41 @@ x_1 = lean_mk_string("hOrElse"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13773____closed__10() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_13773____closed__8; -x_2 = l_myMacro____x40_Init_Notation___hyg_13773____closed__9; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__9; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13773____closed__11() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_13773____closed__10; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__10; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13773____closed__12() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_13773____closed__11; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__11; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_13773_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -23214,7 +23214,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -23225,26 +23225,26 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_13773____closed__3; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__3; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_13773____closed__10; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__10; x_20 = l_Lean_addMacroScope(x_16, x_19, x_15); -x_21 = l_myMacro____x40_Init_Notation___hyg_13773____closed__6; -x_22 = l_myMacro____x40_Init_Notation___hyg_13773____closed__12; +x_21 = l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__6; +x_22 = l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__12; x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_21); lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_25 = lean_array_push(x_24, x_18); x_26 = lean_array_push(x_25, x_23); x_27 = lean_array_push(x_26, x_9); x_28 = lean_array_push(x_27, x_11); -x_29 = l_myMacro____x40_Init_Notation___hyg_13773____closed__2; +x_29 = l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__2; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -23264,26 +23264,26 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_13773____closed__3; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__3; lean_inc(x_31); x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_31); lean_ctor_set(x_36, 1, x_35); -x_37 = l_myMacro____x40_Init_Notation___hyg_13773____closed__10; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__10; x_38 = l_Lean_addMacroScope(x_34, x_37, x_33); -x_39 = l_myMacro____x40_Init_Notation___hyg_13773____closed__6; -x_40 = l_myMacro____x40_Init_Notation___hyg_13773____closed__12; +x_39 = l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__6; +x_40 = l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__12; x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_31); lean_ctor_set(x_41, 1, x_39); lean_ctor_set(x_41, 2, x_38); lean_ctor_set(x_41, 3, x_40); -x_42 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_43 = lean_array_push(x_42, x_36); x_44 = lean_array_push(x_43, x_41); x_45 = lean_array_push(x_44, x_9); x_46 = lean_array_push(x_45, x_11); -x_47 = l_myMacro____x40_Init_Notation___hyg_13773____closed__2; +x_47 = l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -23295,7 +23295,7 @@ return x_49; } } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13879____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -23303,22 +23303,22 @@ x_1 = lean_mk_string("HAndThen.hAndThen"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13879____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_13879____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13879____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_13879____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_13879____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -23326,7 +23326,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13879____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -23334,17 +23334,17 @@ x_1 = lean_mk_string("HAndThen"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13879____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_13879____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13879____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -23352,41 +23352,41 @@ x_1 = lean_mk_string("hAndThen"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13879____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_13879____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_13879____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13879____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_13879____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_13879____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_13879____closed__8; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_13879_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -23413,7 +23413,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -23424,26 +23424,26 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_13773____closed__3; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__3; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_13879____closed__7; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__7; x_20 = l_Lean_addMacroScope(x_16, x_19, x_15); -x_21 = l_myMacro____x40_Init_Notation___hyg_13879____closed__3; -x_22 = l_myMacro____x40_Init_Notation___hyg_13879____closed__9; +x_21 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__3; +x_22 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__9; x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_14); lean_ctor_set(x_23, 1, x_21); lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_24 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_25 = lean_array_push(x_24, x_18); x_26 = lean_array_push(x_25, x_23); x_27 = lean_array_push(x_26, x_9); x_28 = lean_array_push(x_27, x_11); -x_29 = l_myMacro____x40_Init_Notation___hyg_13773____closed__2; +x_29 = l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__2; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); @@ -23463,26 +23463,26 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_Notation___hyg_13773____closed__3; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__3; lean_inc(x_31); x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_31); lean_ctor_set(x_36, 1, x_35); -x_37 = l_myMacro____x40_Init_Notation___hyg_13879____closed__7; +x_37 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__7; x_38 = l_Lean_addMacroScope(x_34, x_37, x_33); -x_39 = l_myMacro____x40_Init_Notation___hyg_13879____closed__3; -x_40 = l_myMacro____x40_Init_Notation___hyg_13879____closed__9; +x_39 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__3; +x_40 = l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__9; x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_31); lean_ctor_set(x_41, 1, x_39); lean_ctor_set(x_41, 2, x_38); lean_ctor_set(x_41, 3, x_40); -x_42 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_43 = lean_array_push(x_42, x_36); x_44 = lean_array_push(x_43, x_41); x_45 = lean_array_push(x_44, x_9); x_46 = lean_array_push(x_45, x_11); -x_47 = l_myMacro____x40_Init_Notation___hyg_13773____closed__2; +x_47 = l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -23570,7 +23570,7 @@ static lean_object* _init_l_termDepIfThenElse___closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_1 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -23868,7 +23868,7 @@ x_1 = l_termDepIfThenElse___closed__33; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__1() { _start: { lean_object* x_1; @@ -23876,17 +23876,17 @@ x_1 = lean_mk_string("letMVar"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_14042____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__3() { _start: { lean_object* x_1; @@ -23894,7 +23894,7 @@ x_1 = lean_mk_string("let_mvar%"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__4() { _start: { lean_object* x_1; @@ -23902,22 +23902,22 @@ x_1 = lean_mk_string("m"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_14042____closed__4; +x_1 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__4; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_14042____closed__4; +x_1 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__4; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_14042____closed__5; +x_3 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__5; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -23925,17 +23925,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_14042____closed__4; +x_2 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__8() { _start: { lean_object* x_1; @@ -23943,7 +23943,7 @@ x_1 = lean_mk_string(":="); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9() { _start: { lean_object* x_1; @@ -23951,7 +23951,7 @@ x_1 = lean_mk_string(";"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__10() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__10() { _start: { lean_object* x_1; @@ -23959,17 +23959,17 @@ x_1 = lean_mk_string("waitIfTypeMVar"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__11() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_14042____closed__10; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__10; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__12() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__12() { _start: { lean_object* x_1; @@ -23977,7 +23977,7 @@ x_1 = lean_mk_string("wait_if_type_mvar%"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__13() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__13() { _start: { lean_object* x_1; @@ -23985,22 +23985,22 @@ x_1 = lean_mk_string("dite"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__14() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_14042____closed__13; +x_1 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__13; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__15() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_14042____closed__13; +x_1 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__13; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_14042____closed__14; +x_3 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__14; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -24008,41 +24008,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__16() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_14042____closed__13; +x_2 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__13; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__17() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_14042____closed__16; +x_2 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__16; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__18() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_14042____closed__17; +x_2 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__17; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__19() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__19() { _start: { lean_object* x_1; @@ -24050,17 +24050,17 @@ x_1 = lean_mk_string("syntheticHole"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__20() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_14042____closed__19; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__19; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__21() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__21() { _start: { lean_object* x_1; @@ -24068,17 +24068,17 @@ x_1 = lean_mk_string("paren"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__22() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_14042____closed__21; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__21; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__23() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__23() { _start: { lean_object* x_1; lean_object* x_2; @@ -24087,7 +24087,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_14042_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__termDepIfThenElse__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -24110,7 +24110,7 @@ else lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); -x_10 = l_unexpand____x40_Init_Notation___hyg_2276____closed__2; +x_10 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__2; lean_inc(x_9); x_11 = l_Lean_Syntax_isOfKind(x_9, x_10); if (x_11 == 0) @@ -24136,7 +24136,7 @@ x_18 = lean_unsigned_to_nat(7u); x_19 = l_Lean_Syntax_getArg(x_1, x_18); lean_dec(x_1); lean_inc(x_2); -x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_21 = !lean_is_exclusive(x_20); if (x_21 == 0) { @@ -24147,7 +24147,7 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_2, 1); lean_inc(x_24); lean_dec(x_2); -x_25 = l_myMacro____x40_Init_Notation___hyg_14042____closed__3; +x_25 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__3; lean_inc(x_22); x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_22); @@ -24157,49 +24157,49 @@ lean_inc(x_22); x_28 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_28, 0, x_22); lean_ctor_set(x_28, 1, x_27); -x_29 = l_myMacro____x40_Init_Notation___hyg_14042____closed__7; +x_29 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__7; lean_inc(x_23); lean_inc(x_24); x_30 = l_Lean_addMacroScope(x_24, x_29, x_23); x_31 = lean_box(0); -x_32 = l_myMacro____x40_Init_Notation___hyg_14042____closed__6; +x_32 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__6; lean_inc(x_22); x_33 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_33, 0, x_22); lean_ctor_set(x_33, 1, x_32); lean_ctor_set(x_33, 2, x_30); lean_ctor_set(x_33, 3, x_31); -x_34 = l_myMacro____x40_Init_Notation___hyg_14042____closed__8; +x_34 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__8; lean_inc(x_22); x_35 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_35, 0, x_22); lean_ctor_set(x_35, 1, x_34); -x_36 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_36 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; lean_inc(x_22); x_37 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_37, 0, x_22); lean_ctor_set(x_37, 1, x_36); -x_38 = l_myMacro____x40_Init_Notation___hyg_14042____closed__12; +x_38 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__12; lean_inc(x_22); x_39 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_39, 0, x_22); lean_ctor_set(x_39, 1, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_14042____closed__16; +x_40 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__16; x_41 = l_Lean_addMacroScope(x_24, x_40, x_23); -x_42 = l_myMacro____x40_Init_Notation___hyg_14042____closed__15; -x_43 = l_myMacro____x40_Init_Notation___hyg_14042____closed__18; +x_42 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__15; +x_43 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__18; lean_inc(x_22); x_44 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_44, 0, x_22); lean_ctor_set(x_44, 1, x_42); lean_ctor_set(x_44, 2, x_41); lean_ctor_set(x_44, 3, x_43); -x_45 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_45 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; lean_inc(x_28); x_46 = lean_array_push(x_45, x_28); lean_inc(x_33); x_47 = lean_array_push(x_46, x_33); -x_48 = l_myMacro____x40_Init_Notation___hyg_14042____closed__20; +x_48 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__20; x_49 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); @@ -24208,40 +24208,40 @@ lean_inc(x_22); x_51 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_51, 0, x_22); lean_ctor_set(x_51, 1, x_50); -x_52 = l_myMacro____x40_Init_Notation___hyg_12931____closed__10; +x_52 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__10; lean_inc(x_22); x_53 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_53, 0, x_22); lean_ctor_set(x_53, 1, x_52); -x_54 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_54 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_55 = lean_array_push(x_54, x_9); -x_56 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_56 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_57 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_57, 0, x_56); lean_ctor_set(x_57, 1, x_55); -x_58 = l_myMacro____x40_Init_Notation___hyg_12931____closed__28; +x_58 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__28; lean_inc(x_22); x_59 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_59, 0, x_22); lean_ctor_set(x_59, 1, x_58); -x_60 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_60 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_61 = lean_array_push(x_60, x_57); x_62 = lean_array_push(x_61, x_59); lean_inc(x_62); x_63 = lean_array_push(x_62, x_17); -x_64 = l_myMacro____x40_Init_Notation___hyg_12931____closed__13; +x_64 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__13; x_65 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_65, 0, x_64); lean_ctor_set(x_65, 1, x_63); x_66 = lean_array_push(x_45, x_53); lean_inc(x_66); x_67 = lean_array_push(x_66, x_65); -x_68 = l_myMacro____x40_Init_Notation___hyg_12931____closed__11; +x_68 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__11; x_69 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_69, 0, x_68); lean_ctor_set(x_69, 1, x_67); x_70 = lean_array_push(x_45, x_69); -x_71 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_71 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_72 = lean_array_push(x_70, x_71); x_73 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_73, 0, x_56); @@ -24255,7 +24255,7 @@ lean_inc(x_76); x_77 = lean_array_push(x_76, x_73); lean_inc(x_75); x_78 = lean_array_push(x_77, x_75); -x_79 = l_myMacro____x40_Init_Notation___hyg_14042____closed__22; +x_79 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__22; x_80 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_80, 0, x_79); lean_ctor_set(x_80, 1, x_78); @@ -24285,11 +24285,11 @@ lean_ctor_set(x_94, 0, x_56); lean_ctor_set(x_94, 1, x_93); x_95 = lean_array_push(x_45, x_44); x_96 = lean_array_push(x_95, x_94); -x_97 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_97 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_98 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_98, 0, x_97); lean_ctor_set(x_98, 1, x_96); -x_99 = l_myMacro____x40_Init_Notation___hyg_14042____closed__23; +x_99 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__23; x_100 = lean_array_push(x_99, x_39); lean_inc(x_28); x_101 = lean_array_push(x_100, x_28); @@ -24298,11 +24298,11 @@ x_102 = lean_array_push(x_101, x_33); lean_inc(x_37); x_103 = lean_array_push(x_102, x_37); x_104 = lean_array_push(x_103, x_98); -x_105 = l_myMacro____x40_Init_Notation___hyg_14042____closed__11; +x_105 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__11; x_106 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_106, 0, x_105); lean_ctor_set(x_106, 1, x_104); -x_107 = l_myMacro____x40_Init_Notation___hyg_1534____closed__13; +x_107 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__13; x_108 = lean_array_push(x_107, x_26); x_109 = lean_array_push(x_108, x_28); x_110 = lean_array_push(x_109, x_33); @@ -24310,7 +24310,7 @@ x_111 = lean_array_push(x_110, x_35); x_112 = lean_array_push(x_111, x_15); x_113 = lean_array_push(x_112, x_37); x_114 = lean_array_push(x_113, x_106); -x_115 = l_myMacro____x40_Init_Notation___hyg_14042____closed__2; +x_115 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__2; x_116 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_116, 0, x_115); lean_ctor_set(x_116, 1, x_114); @@ -24330,7 +24330,7 @@ lean_inc(x_119); x_120 = lean_ctor_get(x_2, 1); lean_inc(x_120); lean_dec(x_2); -x_121 = l_myMacro____x40_Init_Notation___hyg_14042____closed__3; +x_121 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__3; lean_inc(x_117); x_122 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_122, 0, x_117); @@ -24340,49 +24340,49 @@ lean_inc(x_117); x_124 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_124, 0, x_117); lean_ctor_set(x_124, 1, x_123); -x_125 = l_myMacro____x40_Init_Notation___hyg_14042____closed__7; +x_125 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__7; lean_inc(x_119); lean_inc(x_120); x_126 = l_Lean_addMacroScope(x_120, x_125, x_119); x_127 = lean_box(0); -x_128 = l_myMacro____x40_Init_Notation___hyg_14042____closed__6; +x_128 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__6; lean_inc(x_117); x_129 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_129, 0, x_117); lean_ctor_set(x_129, 1, x_128); lean_ctor_set(x_129, 2, x_126); lean_ctor_set(x_129, 3, x_127); -x_130 = l_myMacro____x40_Init_Notation___hyg_14042____closed__8; +x_130 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__8; lean_inc(x_117); x_131 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_131, 0, x_117); lean_ctor_set(x_131, 1, x_130); -x_132 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_132 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; lean_inc(x_117); x_133 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_133, 0, x_117); lean_ctor_set(x_133, 1, x_132); -x_134 = l_myMacro____x40_Init_Notation___hyg_14042____closed__12; +x_134 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__12; lean_inc(x_117); x_135 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_135, 0, x_117); lean_ctor_set(x_135, 1, x_134); -x_136 = l_myMacro____x40_Init_Notation___hyg_14042____closed__16; +x_136 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__16; x_137 = l_Lean_addMacroScope(x_120, x_136, x_119); -x_138 = l_myMacro____x40_Init_Notation___hyg_14042____closed__15; -x_139 = l_myMacro____x40_Init_Notation___hyg_14042____closed__18; +x_138 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__15; +x_139 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__18; lean_inc(x_117); x_140 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_140, 0, x_117); lean_ctor_set(x_140, 1, x_138); lean_ctor_set(x_140, 2, x_137); lean_ctor_set(x_140, 3, x_139); -x_141 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_141 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; lean_inc(x_124); x_142 = lean_array_push(x_141, x_124); lean_inc(x_129); x_143 = lean_array_push(x_142, x_129); -x_144 = l_myMacro____x40_Init_Notation___hyg_14042____closed__20; +x_144 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__20; x_145 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_145, 0, x_144); lean_ctor_set(x_145, 1, x_143); @@ -24391,40 +24391,40 @@ lean_inc(x_117); x_147 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_147, 0, x_117); lean_ctor_set(x_147, 1, x_146); -x_148 = l_myMacro____x40_Init_Notation___hyg_12931____closed__10; +x_148 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__10; lean_inc(x_117); x_149 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_149, 0, x_117); lean_ctor_set(x_149, 1, x_148); -x_150 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_150 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_151 = lean_array_push(x_150, x_9); -x_152 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_152 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_153 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_153, 0, x_152); lean_ctor_set(x_153, 1, x_151); -x_154 = l_myMacro____x40_Init_Notation___hyg_12931____closed__28; +x_154 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__28; lean_inc(x_117); x_155 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_155, 0, x_117); lean_ctor_set(x_155, 1, x_154); -x_156 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_156 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_157 = lean_array_push(x_156, x_153); x_158 = lean_array_push(x_157, x_155); lean_inc(x_158); x_159 = lean_array_push(x_158, x_17); -x_160 = l_myMacro____x40_Init_Notation___hyg_12931____closed__13; +x_160 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__13; x_161 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_161, 0, x_160); lean_ctor_set(x_161, 1, x_159); x_162 = lean_array_push(x_141, x_149); lean_inc(x_162); x_163 = lean_array_push(x_162, x_161); -x_164 = l_myMacro____x40_Init_Notation___hyg_12931____closed__11; +x_164 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__11; 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 = lean_array_push(x_141, x_165); -x_167 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_167 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_168 = lean_array_push(x_166, x_167); x_169 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_169, 0, x_152); @@ -24438,7 +24438,7 @@ lean_inc(x_172); x_173 = lean_array_push(x_172, x_169); lean_inc(x_171); x_174 = lean_array_push(x_173, x_171); -x_175 = l_myMacro____x40_Init_Notation___hyg_14042____closed__22; +x_175 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__22; x_176 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_176, 0, x_175); lean_ctor_set(x_176, 1, x_174); @@ -24468,11 +24468,11 @@ lean_ctor_set(x_190, 0, x_152); lean_ctor_set(x_190, 1, x_189); x_191 = lean_array_push(x_141, x_140); x_192 = lean_array_push(x_191, x_190); -x_193 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_193 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_194 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_194, 0, x_193); lean_ctor_set(x_194, 1, x_192); -x_195 = l_myMacro____x40_Init_Notation___hyg_14042____closed__23; +x_195 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__23; x_196 = lean_array_push(x_195, x_135); lean_inc(x_124); x_197 = lean_array_push(x_196, x_124); @@ -24481,11 +24481,11 @@ x_198 = lean_array_push(x_197, x_129); lean_inc(x_133); x_199 = lean_array_push(x_198, x_133); x_200 = lean_array_push(x_199, x_194); -x_201 = l_myMacro____x40_Init_Notation___hyg_14042____closed__11; +x_201 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__11; x_202 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_202, 0, x_201); lean_ctor_set(x_202, 1, x_200); -x_203 = l_myMacro____x40_Init_Notation___hyg_1534____closed__13; +x_203 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__13; x_204 = lean_array_push(x_203, x_122); x_205 = lean_array_push(x_204, x_124); x_206 = lean_array_push(x_205, x_129); @@ -24493,7 +24493,7 @@ x_207 = lean_array_push(x_206, x_131); x_208 = lean_array_push(x_207, x_15); x_209 = lean_array_push(x_208, x_133); x_210 = lean_array_push(x_209, x_202); -x_211 = l_myMacro____x40_Init_Notation___hyg_14042____closed__2; +x_211 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__2; x_212 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_212, 0, x_211); lean_ctor_set(x_212, 1, x_210); @@ -24668,7 +24668,7 @@ x_1 = l_termIfThenElse___closed__12; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14466____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__1() { _start: { lean_object* x_1; @@ -24676,22 +24676,22 @@ x_1 = lean_mk_string("ite"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14466____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_14466____closed__1; +x_1 = l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14466____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_14466____closed__1; +x_1 = l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_14466____closed__2; +x_3 = l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -24699,41 +24699,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14466____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_14466____closed__1; +x_2 = l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14466____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_14466____closed__4; +x_2 = l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__4; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14466____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_14466____closed__5; +x_2 = l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_14466_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__termIfThenElse__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -24762,7 +24762,7 @@ x_12 = lean_unsigned_to_nat(5u); x_13 = l_Lean_Syntax_getArg(x_1, x_12); lean_dec(x_1); lean_inc(x_2); -x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_15 = !lean_is_exclusive(x_14); if (x_15 == 0) { @@ -24773,7 +24773,7 @@ lean_inc(x_17); x_18 = lean_ctor_get(x_2, 1); lean_inc(x_18); lean_dec(x_2); -x_19 = l_myMacro____x40_Init_Notation___hyg_14042____closed__3; +x_19 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__3; lean_inc(x_16); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_16); @@ -24783,66 +24783,66 @@ lean_inc(x_16); x_22 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_22, 0, x_16); lean_ctor_set(x_22, 1, x_21); -x_23 = l_myMacro____x40_Init_Notation___hyg_14042____closed__7; +x_23 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__7; lean_inc(x_17); lean_inc(x_18); x_24 = l_Lean_addMacroScope(x_18, x_23, x_17); x_25 = lean_box(0); -x_26 = l_myMacro____x40_Init_Notation___hyg_14042____closed__6; +x_26 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__6; lean_inc(x_16); x_27 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_27, 0, x_16); lean_ctor_set(x_27, 1, x_26); lean_ctor_set(x_27, 2, x_24); lean_ctor_set(x_27, 3, x_25); -x_28 = l_myMacro____x40_Init_Notation___hyg_14042____closed__8; +x_28 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__8; lean_inc(x_16); x_29 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_29, 0, x_16); lean_ctor_set(x_29, 1, x_28); -x_30 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_30 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; lean_inc(x_16); x_31 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_31, 0, x_16); lean_ctor_set(x_31, 1, x_30); -x_32 = l_myMacro____x40_Init_Notation___hyg_14042____closed__12; +x_32 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__12; lean_inc(x_16); x_33 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_33, 0, x_16); lean_ctor_set(x_33, 1, x_32); -x_34 = l_myMacro____x40_Init_Notation___hyg_14466____closed__4; +x_34 = l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__4; x_35 = l_Lean_addMacroScope(x_18, x_34, x_17); -x_36 = l_myMacro____x40_Init_Notation___hyg_14466____closed__3; -x_37 = l_myMacro____x40_Init_Notation___hyg_14466____closed__6; +x_36 = l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__3; +x_37 = l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__6; x_38 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_38, 0, x_16); lean_ctor_set(x_38, 1, x_36); lean_ctor_set(x_38, 2, x_35); lean_ctor_set(x_38, 3, x_37); -x_39 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_39 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; lean_inc(x_22); x_40 = lean_array_push(x_39, x_22); lean_inc(x_27); x_41 = lean_array_push(x_40, x_27); -x_42 = l_myMacro____x40_Init_Notation___hyg_14042____closed__20; +x_42 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__20; x_43 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_43, 0, x_42); lean_ctor_set(x_43, 1, x_41); -x_44 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_44 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_45 = lean_array_push(x_44, x_43); x_46 = lean_array_push(x_45, x_11); x_47 = lean_array_push(x_46, x_13); -x_48 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_48 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_49 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); x_50 = lean_array_push(x_39, x_38); x_51 = lean_array_push(x_50, x_49); -x_52 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_52 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_53 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_53, 0, x_52); lean_ctor_set(x_53, 1, x_51); -x_54 = l_myMacro____x40_Init_Notation___hyg_14042____closed__23; +x_54 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__23; x_55 = lean_array_push(x_54, x_33); lean_inc(x_22); x_56 = lean_array_push(x_55, x_22); @@ -24851,11 +24851,11 @@ x_57 = lean_array_push(x_56, x_27); lean_inc(x_31); x_58 = lean_array_push(x_57, x_31); x_59 = lean_array_push(x_58, x_53); -x_60 = l_myMacro____x40_Init_Notation___hyg_14042____closed__11; +x_60 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__11; x_61 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_61, 0, x_60); lean_ctor_set(x_61, 1, x_59); -x_62 = l_myMacro____x40_Init_Notation___hyg_1534____closed__13; +x_62 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__13; x_63 = lean_array_push(x_62, x_20); x_64 = lean_array_push(x_63, x_22); x_65 = lean_array_push(x_64, x_27); @@ -24863,7 +24863,7 @@ x_66 = lean_array_push(x_65, x_29); x_67 = lean_array_push(x_66, x_9); x_68 = lean_array_push(x_67, x_31); x_69 = lean_array_push(x_68, x_61); -x_70 = l_myMacro____x40_Init_Notation___hyg_14042____closed__2; +x_70 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__2; x_71 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_71, 0, x_70); lean_ctor_set(x_71, 1, x_69); @@ -24883,7 +24883,7 @@ lean_inc(x_74); x_75 = lean_ctor_get(x_2, 1); lean_inc(x_75); lean_dec(x_2); -x_76 = l_myMacro____x40_Init_Notation___hyg_14042____closed__3; +x_76 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__3; lean_inc(x_72); x_77 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_77, 0, x_72); @@ -24893,66 +24893,66 @@ lean_inc(x_72); x_79 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_79, 0, x_72); lean_ctor_set(x_79, 1, x_78); -x_80 = l_myMacro____x40_Init_Notation___hyg_14042____closed__7; +x_80 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__7; lean_inc(x_74); lean_inc(x_75); x_81 = l_Lean_addMacroScope(x_75, x_80, x_74); x_82 = lean_box(0); -x_83 = l_myMacro____x40_Init_Notation___hyg_14042____closed__6; +x_83 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__6; lean_inc(x_72); x_84 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_84, 0, x_72); lean_ctor_set(x_84, 1, x_83); lean_ctor_set(x_84, 2, x_81); lean_ctor_set(x_84, 3, x_82); -x_85 = l_myMacro____x40_Init_Notation___hyg_14042____closed__8; +x_85 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__8; lean_inc(x_72); x_86 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_86, 0, x_72); lean_ctor_set(x_86, 1, x_85); -x_87 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_87 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; lean_inc(x_72); x_88 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_88, 0, x_72); lean_ctor_set(x_88, 1, x_87); -x_89 = l_myMacro____x40_Init_Notation___hyg_14042____closed__12; +x_89 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__12; lean_inc(x_72); x_90 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_90, 0, x_72); lean_ctor_set(x_90, 1, x_89); -x_91 = l_myMacro____x40_Init_Notation___hyg_14466____closed__4; +x_91 = l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__4; x_92 = l_Lean_addMacroScope(x_75, x_91, x_74); -x_93 = l_myMacro____x40_Init_Notation___hyg_14466____closed__3; -x_94 = l_myMacro____x40_Init_Notation___hyg_14466____closed__6; +x_93 = l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__3; +x_94 = l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__6; x_95 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_95, 0, x_72); lean_ctor_set(x_95, 1, x_93); lean_ctor_set(x_95, 2, x_92); lean_ctor_set(x_95, 3, x_94); -x_96 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_96 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; lean_inc(x_79); x_97 = lean_array_push(x_96, x_79); lean_inc(x_84); x_98 = lean_array_push(x_97, x_84); -x_99 = l_myMacro____x40_Init_Notation___hyg_14042____closed__20; +x_99 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__20; x_100 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_100, 0, x_99); lean_ctor_set(x_100, 1, x_98); -x_101 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_101 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_102 = lean_array_push(x_101, x_100); x_103 = lean_array_push(x_102, x_11); x_104 = lean_array_push(x_103, x_13); -x_105 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_105 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_106 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_106, 0, x_105); lean_ctor_set(x_106, 1, x_104); x_107 = lean_array_push(x_96, x_95); x_108 = lean_array_push(x_107, x_106); -x_109 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_109 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_110 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_110, 0, x_109); lean_ctor_set(x_110, 1, x_108); -x_111 = l_myMacro____x40_Init_Notation___hyg_14042____closed__23; +x_111 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__23; x_112 = lean_array_push(x_111, x_90); lean_inc(x_79); x_113 = lean_array_push(x_112, x_79); @@ -24961,11 +24961,11 @@ x_114 = lean_array_push(x_113, x_84); lean_inc(x_88); x_115 = lean_array_push(x_114, x_88); x_116 = lean_array_push(x_115, x_110); -x_117 = l_myMacro____x40_Init_Notation___hyg_14042____closed__11; +x_117 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__11; x_118 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_118, 0, x_117); lean_ctor_set(x_118, 1, x_116); -x_119 = l_myMacro____x40_Init_Notation___hyg_1534____closed__13; +x_119 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__13; x_120 = lean_array_push(x_119, x_77); x_121 = lean_array_push(x_120, x_79); x_122 = lean_array_push(x_121, x_84); @@ -24973,7 +24973,7 @@ x_123 = lean_array_push(x_122, x_86); x_124 = lean_array_push(x_123, x_9); x_125 = lean_array_push(x_124, x_88); x_126 = lean_array_push(x_125, x_118); -x_127 = l_myMacro____x40_Init_Notation___hyg_14042____closed__2; +x_127 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__2; x_128 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_128, 0, x_127); lean_ctor_set(x_128, 1, x_126); @@ -25209,7 +25209,7 @@ x_1 = l_termIfLet___x3a_x3d__Then__Else_____closed__19; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14726____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -25217,17 +25217,17 @@ x_1 = lean_mk_string("match"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14726____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_14726____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14726____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__3() { _start: { lean_object* x_1; @@ -25235,27 +25235,27 @@ x_1 = lean_mk_string("matchDiscr"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14726____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_14726____closed__3; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14726____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; -x_2 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; +x_2 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14726____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -25263,7 +25263,7 @@ x_1 = lean_mk_string("with"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14726____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__7() { _start: { lean_object* x_1; @@ -25271,17 +25271,17 @@ x_1 = lean_mk_string("matchAlts"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14726____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_14726____closed__7; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14726____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__9() { _start: { lean_object* x_1; @@ -25289,17 +25289,17 @@ x_1 = lean_mk_string("matchAlt"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14726____closed__10() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_14726____closed__9; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__9; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_14726____closed__11() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__11() { _start: { lean_object* x_1; @@ -25307,7 +25307,7 @@ x_1 = lean_mk_string("|"); return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_14726_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -25337,35 +25337,35 @@ x_13 = l_Lean_Syntax_getArg(x_1, x_12); x_14 = lean_unsigned_to_nat(8u); x_15 = l_Lean_Syntax_getArg(x_1, x_14); lean_dec(x_1); -x_16 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_16 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_17 = !lean_is_exclusive(x_16); if (x_17 == 0) { lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; x_18 = lean_ctor_get(x_16, 0); -x_19 = l_myMacro____x40_Init_Notation___hyg_14726____closed__1; +x_19 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__1; lean_inc(x_18); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_18); lean_ctor_set(x_20, 1, x_19); -x_21 = l_myMacro____x40_Init_Notation___hyg_14726____closed__5; +x_21 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__5; x_22 = lean_array_push(x_21, x_11); -x_23 = l_myMacro____x40_Init_Notation___hyg_14726____closed__4; +x_23 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__4; x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); -x_25 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_25 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_26 = lean_array_push(x_25, x_24); -x_27 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_27 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_14726____closed__6; +x_29 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__6; lean_inc(x_18); x_30 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_30, 0, x_18); lean_ctor_set(x_30, 1, x_29); -x_31 = l_myMacro____x40_Init_Notation___hyg_14726____closed__11; +x_31 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__11; lean_inc(x_18); x_32 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_32, 0, x_18); @@ -25374,28 +25374,28 @@ x_33 = lean_array_push(x_25, x_9); x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_27); lean_ctor_set(x_34, 1, x_33); -x_35 = l_myMacro____x40_Init_Notation___hyg_12931____closed__28; +x_35 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__28; lean_inc(x_18); x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_18); lean_ctor_set(x_36, 1, x_35); -x_37 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_37 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_38 = lean_array_push(x_37, x_32); lean_inc(x_38); x_39 = lean_array_push(x_38, x_34); lean_inc(x_36); x_40 = lean_array_push(x_39, x_36); x_41 = lean_array_push(x_40, x_13); -x_42 = l_myMacro____x40_Init_Notation___hyg_14726____closed__10; +x_42 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__10; x_43 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_43, 0, x_42); lean_ctor_set(x_43, 1, x_41); -x_44 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_44 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; x_45 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_45, 0, x_18); lean_ctor_set(x_45, 1, x_44); x_46 = lean_array_push(x_25, x_45); -x_47 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_47 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -25409,26 +25409,26 @@ x_53 = lean_array_push(x_52, x_15); x_54 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_54, 0, x_42); lean_ctor_set(x_54, 1, x_53); -x_55 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_55 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_56 = lean_array_push(x_55, x_43); x_57 = lean_array_push(x_56, x_54); x_58 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_58, 0, x_27); lean_ctor_set(x_58, 1, x_57); x_59 = lean_array_push(x_25, x_58); -x_60 = l_myMacro____x40_Init_Notation___hyg_14726____closed__8; +x_60 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__8; x_61 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_61, 0, x_60); lean_ctor_set(x_61, 1, x_59); -x_62 = l_myMacro____x40_Init_Notation___hyg_1400____closed__8; +x_62 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__8; x_63 = lean_array_push(x_62, x_20); -x_64 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_64 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_65 = lean_array_push(x_63, x_64); x_66 = lean_array_push(x_65, x_28); x_67 = lean_array_push(x_66, x_64); x_68 = lean_array_push(x_67, x_30); x_69 = lean_array_push(x_68, x_61); -x_70 = l_myMacro____x40_Init_Notation___hyg_14726____closed__2; +x_70 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__2; x_71 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_71, 0, x_70); lean_ctor_set(x_71, 1, x_69); @@ -25443,29 +25443,29 @@ x_73 = lean_ctor_get(x_16, 1); lean_inc(x_73); lean_inc(x_72); lean_dec(x_16); -x_74 = l_myMacro____x40_Init_Notation___hyg_14726____closed__1; +x_74 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__1; lean_inc(x_72); x_75 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_75, 0, x_72); lean_ctor_set(x_75, 1, x_74); -x_76 = l_myMacro____x40_Init_Notation___hyg_14726____closed__5; +x_76 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__5; x_77 = lean_array_push(x_76, x_11); -x_78 = l_myMacro____x40_Init_Notation___hyg_14726____closed__4; +x_78 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__4; 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_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_80 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_81 = lean_array_push(x_80, x_79); -x_82 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_82 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_83 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_83, 0, x_82); lean_ctor_set(x_83, 1, x_81); -x_84 = l_myMacro____x40_Init_Notation___hyg_14726____closed__6; +x_84 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__6; lean_inc(x_72); x_85 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_85, 0, x_72); lean_ctor_set(x_85, 1, x_84); -x_86 = l_myMacro____x40_Init_Notation___hyg_14726____closed__11; +x_86 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__11; lean_inc(x_72); x_87 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_87, 0, x_72); @@ -25474,28 +25474,28 @@ x_88 = lean_array_push(x_80, x_9); x_89 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_89, 0, x_82); lean_ctor_set(x_89, 1, x_88); -x_90 = l_myMacro____x40_Init_Notation___hyg_12931____closed__28; +x_90 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__28; lean_inc(x_72); x_91 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_91, 0, x_72); lean_ctor_set(x_91, 1, x_90); -x_92 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_92 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_93 = lean_array_push(x_92, x_87); lean_inc(x_93); x_94 = lean_array_push(x_93, x_89); lean_inc(x_91); x_95 = lean_array_push(x_94, x_91); x_96 = lean_array_push(x_95, x_13); -x_97 = l_myMacro____x40_Init_Notation___hyg_14726____closed__10; +x_97 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__10; x_98 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_98, 0, x_97); lean_ctor_set(x_98, 1, x_96); -x_99 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_99 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; x_100 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_100, 0, x_72); lean_ctor_set(x_100, 1, x_99); x_101 = lean_array_push(x_80, x_100); -x_102 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_102 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_103 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_103, 0, x_102); lean_ctor_set(x_103, 1, x_101); @@ -25509,26 +25509,26 @@ x_108 = lean_array_push(x_107, x_15); x_109 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_109, 0, x_97); lean_ctor_set(x_109, 1, x_108); -x_110 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_110 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_111 = lean_array_push(x_110, x_98); x_112 = lean_array_push(x_111, x_109); x_113 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_113, 0, x_82); lean_ctor_set(x_113, 1, x_112); x_114 = lean_array_push(x_80, x_113); -x_115 = l_myMacro____x40_Init_Notation___hyg_14726____closed__8; +x_115 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__8; x_116 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_116, 0, x_115); lean_ctor_set(x_116, 1, x_114); -x_117 = l_myMacro____x40_Init_Notation___hyg_1400____closed__8; +x_117 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__8; x_118 = lean_array_push(x_117, x_75); -x_119 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_119 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_120 = lean_array_push(x_118, x_119); x_121 = lean_array_push(x_120, x_83); x_122 = lean_array_push(x_121, x_119); x_123 = lean_array_push(x_122, x_85); x_124 = lean_array_push(x_123, x_116); -x_125 = l_myMacro____x40_Init_Notation___hyg_14726____closed__2; +x_125 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__2; x_126 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_126, 0, x_125); lean_ctor_set(x_126, 1, x_124); @@ -25626,7 +25626,7 @@ x_1 = l_term___x3c_x7c_____closed__7; return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_14977_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x3c_x7c___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -25649,7 +25649,7 @@ else lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(0u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); -x_10 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_10 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_9); x_11 = l_Lean_Syntax_isOfKind(x_9, x_10); if (x_11 == 0) @@ -25658,20 +25658,20 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; x_12 = lean_unsigned_to_nat(2u); x_13 = l_Lean_Syntax_getArg(x_1, x_12); lean_dec(x_1); -x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_15 = !lean_is_exclusive(x_14); 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; lean_object* x_23; lean_object* x_24; x_16 = lean_ctor_get(x_14, 0); lean_dec(x_16); -x_17 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_17 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_18 = lean_array_push(x_17, x_13); -x_19 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_19 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_20 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); -x_21 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_21 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_22 = lean_array_push(x_21, x_9); x_23 = lean_array_push(x_22, x_20); x_24 = lean_alloc_ctor(1, 2, 0); @@ -25686,13 +25686,13 @@ lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean x_25 = lean_ctor_get(x_14, 1); lean_inc(x_25); lean_dec(x_14); -x_26 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_26 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_27 = lean_array_push(x_26, x_13); -x_28 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_28 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); -x_30 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_30 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_31 = lean_array_push(x_30, x_9); x_32 = lean_array_push(x_31, x_29); x_33 = lean_alloc_ctor(1, 2, 0); @@ -25717,21 +25717,21 @@ lean_dec(x_1); x_40 = l_Lean_Syntax_getArgs(x_37); lean_dec(x_37); x_41 = lean_array_push(x_40, x_39); -x_42 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_42 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_43 = !lean_is_exclusive(x_42); if (x_43 == 0) { lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; x_44 = lean_ctor_get(x_42, 0); lean_dec(x_44); -x_45 = l_myMacro____x40_Init_Notation___hyg_1534____closed__11; +x_45 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__11; x_46 = l_Array_appendCore___rarg(x_45, x_41); lean_dec(x_41); -x_47 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_47 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); -x_49 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_49 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_50 = lean_array_push(x_49, x_35); x_51 = lean_array_push(x_50, x_48); x_52 = lean_alloc_ctor(1, 2, 0); @@ -25746,14 +25746,14 @@ lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean x_53 = lean_ctor_get(x_42, 1); lean_inc(x_53); lean_dec(x_42); -x_54 = l_myMacro____x40_Init_Notation___hyg_1534____closed__11; +x_54 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__11; x_55 = l_Array_appendCore___rarg(x_54, x_41); lean_dec(x_41); -x_56 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_56 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_57 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_57, 0, x_56); lean_ctor_set(x_57, 1, x_55); -x_58 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_58 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_59 = lean_array_push(x_58, x_35); x_60 = lean_array_push(x_59, x_57); x_61 = lean_alloc_ctor(1, 2, 0); @@ -25854,7 +25854,7 @@ x_1 = l_term___x7c_x3e_____closed__7; return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_15173_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x7c_x3e___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -25880,26 +25880,26 @@ x_9 = l_Lean_Syntax_getArg(x_1, x_8); x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); -x_12 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_12 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_11); x_13 = l_Lean_Syntax_isOfKind(x_11, x_12); if (x_13 == 0) { lean_object* x_14; uint8_t x_15; -x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_15 = !lean_is_exclusive(x_14); 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; lean_object* x_23; lean_object* x_24; x_16 = lean_ctor_get(x_14, 0); lean_dec(x_16); -x_17 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_17 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_18 = lean_array_push(x_17, x_9); -x_19 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_19 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_20 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); -x_21 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_21 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_22 = lean_array_push(x_21, x_11); x_23 = lean_array_push(x_22, x_20); x_24 = lean_alloc_ctor(1, 2, 0); @@ -25914,13 +25914,13 @@ lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean x_25 = lean_ctor_get(x_14, 1); lean_inc(x_25); lean_dec(x_14); -x_26 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_26 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_27 = lean_array_push(x_26, x_9); -x_28 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_28 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); -x_30 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_30 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_31 = lean_array_push(x_30, x_11); x_32 = lean_array_push(x_31, x_29); x_33 = lean_alloc_ctor(1, 2, 0); @@ -25942,21 +25942,21 @@ lean_dec(x_11); x_38 = l_Lean_Syntax_getArgs(x_37); lean_dec(x_37); x_39 = lean_array_push(x_38, x_9); -x_40 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_40 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_41 = !lean_is_exclusive(x_40); if (x_41 == 0) { lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; x_42 = lean_ctor_get(x_40, 0); lean_dec(x_42); -x_43 = l_myMacro____x40_Init_Notation___hyg_1534____closed__11; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__11; x_44 = l_Array_appendCore___rarg(x_43, x_39); lean_dec(x_39); -x_45 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_45 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_46 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_47 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_48 = lean_array_push(x_47, x_35); x_49 = lean_array_push(x_48, x_46); x_50 = lean_alloc_ctor(1, 2, 0); @@ -25971,14 +25971,14 @@ lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean x_51 = lean_ctor_get(x_40, 1); lean_inc(x_51); lean_dec(x_40); -x_52 = l_myMacro____x40_Init_Notation___hyg_1534____closed__11; +x_52 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__11; x_53 = l_Array_appendCore___rarg(x_52, x_39); lean_dec(x_39); -x_54 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_54 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_55 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_55, 0, x_54); lean_ctor_set(x_55, 1, x_53); -x_56 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_56 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_57 = lean_array_push(x_56, x_35); x_58 = lean_array_push(x_57, x_55); x_59 = lean_alloc_ctor(1, 2, 0); @@ -26139,7 +26139,7 @@ x_1 = l_term___x24_______closed__13; return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_15363_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm___x24_____xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -26162,7 +26162,7 @@ else lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(0u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); -x_10 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_10 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; lean_inc(x_9); x_11 = l_Lean_Syntax_isOfKind(x_9, x_10); if (x_11 == 0) @@ -26171,20 +26171,20 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; x_12 = lean_unsigned_to_nat(2u); x_13 = l_Lean_Syntax_getArg(x_1, x_12); lean_dec(x_1); -x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_15 = !lean_is_exclusive(x_14); 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; lean_object* x_23; lean_object* x_24; x_16 = lean_ctor_get(x_14, 0); lean_dec(x_16); -x_17 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_17 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_18 = lean_array_push(x_17, x_13); -x_19 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_19 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_20 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); -x_21 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_21 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_22 = lean_array_push(x_21, x_9); x_23 = lean_array_push(x_22, x_20); x_24 = lean_alloc_ctor(1, 2, 0); @@ -26199,13 +26199,13 @@ lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean x_25 = lean_ctor_get(x_14, 1); lean_inc(x_25); lean_dec(x_14); -x_26 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_26 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_27 = lean_array_push(x_26, x_13); -x_28 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_28 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); -x_30 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_30 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_31 = lean_array_push(x_30, x_9); x_32 = lean_array_push(x_31, x_29); x_33 = lean_alloc_ctor(1, 2, 0); @@ -26230,21 +26230,21 @@ lean_dec(x_1); x_40 = l_Lean_Syntax_getArgs(x_37); lean_dec(x_37); x_41 = lean_array_push(x_40, x_39); -x_42 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_42 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_43 = !lean_is_exclusive(x_42); if (x_43 == 0) { lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; x_44 = lean_ctor_get(x_42, 0); lean_dec(x_44); -x_45 = l_myMacro____x40_Init_Notation___hyg_1534____closed__11; +x_45 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__11; x_46 = l_Array_appendCore___rarg(x_45, x_41); lean_dec(x_41); -x_47 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_47 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); -x_49 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_49 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_50 = lean_array_push(x_49, x_35); x_51 = lean_array_push(x_50, x_48); x_52 = lean_alloc_ctor(1, 2, 0); @@ -26259,14 +26259,14 @@ lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean x_53 = lean_ctor_get(x_42, 1); lean_inc(x_53); lean_dec(x_42); -x_54 = l_myMacro____x40_Init_Notation___hyg_1534____closed__11; +x_54 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__11; x_55 = l_Array_appendCore___rarg(x_54, x_41); lean_dec(x_41); -x_56 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_56 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_57 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_57, 0, x_56); lean_ctor_set(x_57, 1, x_55); -x_58 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_58 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_59 = lean_array_push(x_58, x_35); x_60 = lean_array_push(x_59, x_57); x_61 = lean_alloc_ctor(1, 2, 0); @@ -26349,7 +26349,7 @@ static lean_object* _init_l_term_x7b_____x3a___x2f_x2f___x7d___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1300____closed__4; +x_1 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4; x_2 = l_term_x7b_____x3a___x2f_x2f___x7d___closed__6; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -26471,7 +26471,7 @@ x_1 = l_term_x7b_____x3a___x2f_x2f___x7d___closed__16; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_15580____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__1() { _start: { lean_object* x_1; @@ -26479,22 +26479,22 @@ x_1 = lean_mk_string("Subtype"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_15580____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_15580____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_15580____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_15580____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_15580____closed__2; +x_3 = l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -26502,41 +26502,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_15580____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_15580____closed__1; +x_2 = l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_15580____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_15580____closed__4; +x_2 = l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__4; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_15580____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_15580____closed__5; +x_2 = l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_15580____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__7() { _start: { lean_object* x_1; @@ -26544,17 +26544,17 @@ x_1 = lean_mk_string("typeAscription"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_15580____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_15580____closed__7; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_15580_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -26606,7 +26606,7 @@ x_18 = lean_unsigned_to_nat(4u); x_19 = l_Lean_Syntax_getArg(x_1, x_18); lean_dec(x_1); lean_inc(x_2); -x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_21 = !lean_is_exclusive(x_20); if (x_21 == 0) { @@ -26617,10 +26617,10 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_2, 1); lean_inc(x_24); lean_dec(x_2); -x_25 = l_myMacro____x40_Init_Notation___hyg_15580____closed__4; +x_25 = l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__4; x_26 = l_Lean_addMacroScope(x_24, x_25, x_23); -x_27 = l_myMacro____x40_Init_Notation___hyg_15580____closed__3; -x_28 = l_myMacro____x40_Init_Notation___hyg_15580____closed__6; +x_27 = l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__3; +x_28 = l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__6; lean_inc(x_22); x_29 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_29, 0, x_22); @@ -26632,36 +26632,36 @@ lean_inc(x_22); x_31 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_31, 0, x_22); lean_ctor_set(x_31, 1, x_30); -x_32 = l_myMacro____x40_Init_Notation___hyg_12931____closed__10; +x_32 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__10; lean_inc(x_22); x_33 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_33, 0, x_22); lean_ctor_set(x_33, 1, x_32); -x_34 = l_myMacro____x40_Init_Notation___hyg_12931____closed__21; +x_34 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__21; lean_inc(x_22); x_35 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_35, 0, x_22); lean_ctor_set(x_35, 1, x_34); -x_36 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_36 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; lean_inc(x_22); x_37 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_37, 0, x_22); lean_ctor_set(x_37, 1, x_36); -x_38 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_38 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_39 = lean_array_push(x_38, x_37); -x_40 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_40 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_39); -x_42 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_43 = lean_array_push(x_42, x_35); x_44 = lean_array_push(x_43, x_41); -x_45 = l_myMacro____x40_Init_Notation___hyg_15580____closed__8; +x_45 = l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__8; x_46 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_44); x_47 = lean_array_push(x_38, x_46); -x_48 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_48 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_49 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); @@ -26675,13 +26675,13 @@ lean_inc(x_22); x_54 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_54, 0, x_22); lean_ctor_set(x_54, 1, x_53); -x_55 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_55 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_56 = lean_array_push(x_55, x_31); lean_inc(x_56); x_57 = lean_array_push(x_56, x_52); lean_inc(x_54); x_58 = lean_array_push(x_57, x_54); -x_59 = l_myMacro____x40_Init_Notation___hyg_14042____closed__22; +x_59 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__22; x_60 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_60, 0, x_59); lean_ctor_set(x_60, 1, x_58); @@ -26689,25 +26689,25 @@ x_61 = lean_array_push(x_38, x_60); x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_48); lean_ctor_set(x_62, 1, x_61); -x_63 = l_myMacro____x40_Init_Notation___hyg_12931____closed__28; +x_63 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__28; x_64 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_64, 0, x_22); lean_ctor_set(x_64, 1, x_63); x_65 = lean_array_push(x_55, x_62); x_66 = lean_array_push(x_65, x_64); x_67 = lean_array_push(x_66, x_19); -x_68 = l_myMacro____x40_Init_Notation___hyg_12931____closed__13; +x_68 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__13; x_69 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_69, 0, x_68); lean_ctor_set(x_69, 1, x_67); x_70 = lean_array_push(x_42, x_33); x_71 = lean_array_push(x_70, x_69); -x_72 = l_myMacro____x40_Init_Notation___hyg_12931____closed__11; +x_72 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__11; x_73 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_73, 0, x_72); lean_ctor_set(x_73, 1, x_71); x_74 = lean_array_push(x_42, x_73); -x_75 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_75 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_76 = lean_array_push(x_74, x_75); x_77 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_77, 0, x_48); @@ -26723,7 +26723,7 @@ lean_ctor_set(x_82, 0, x_48); lean_ctor_set(x_82, 1, x_81); x_83 = lean_array_push(x_42, x_29); x_84 = lean_array_push(x_83, x_82); -x_85 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_85 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_86 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_86, 0, x_85); lean_ctor_set(x_86, 1, x_84); @@ -26743,10 +26743,10 @@ lean_inc(x_89); x_90 = lean_ctor_get(x_2, 1); lean_inc(x_90); lean_dec(x_2); -x_91 = l_myMacro____x40_Init_Notation___hyg_15580____closed__4; +x_91 = l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__4; x_92 = l_Lean_addMacroScope(x_90, x_91, x_89); -x_93 = l_myMacro____x40_Init_Notation___hyg_15580____closed__3; -x_94 = l_myMacro____x40_Init_Notation___hyg_15580____closed__6; +x_93 = l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__3; +x_94 = l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__6; lean_inc(x_87); x_95 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_95, 0, x_87); @@ -26758,36 +26758,36 @@ lean_inc(x_87); x_97 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_97, 0, x_87); lean_ctor_set(x_97, 1, x_96); -x_98 = l_myMacro____x40_Init_Notation___hyg_12931____closed__10; +x_98 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__10; lean_inc(x_87); x_99 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_99, 0, x_87); lean_ctor_set(x_99, 1, x_98); -x_100 = l_myMacro____x40_Init_Notation___hyg_12931____closed__21; +x_100 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__21; lean_inc(x_87); x_101 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_101, 0, x_87); lean_ctor_set(x_101, 1, x_100); -x_102 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_102 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; lean_inc(x_87); x_103 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_103, 0, x_87); lean_ctor_set(x_103, 1, x_102); -x_104 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_104 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_105 = lean_array_push(x_104, x_103); -x_106 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_106 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_107 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_107, 0, x_106); lean_ctor_set(x_107, 1, x_105); -x_108 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_108 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_109 = lean_array_push(x_108, x_101); x_110 = lean_array_push(x_109, x_107); -x_111 = l_myMacro____x40_Init_Notation___hyg_15580____closed__8; +x_111 = l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__8; x_112 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_112, 0, x_111); lean_ctor_set(x_112, 1, x_110); x_113 = lean_array_push(x_104, x_112); -x_114 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_114 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_115 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_115, 0, x_114); lean_ctor_set(x_115, 1, x_113); @@ -26801,13 +26801,13 @@ lean_inc(x_87); x_120 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_120, 0, x_87); lean_ctor_set(x_120, 1, x_119); -x_121 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_121 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_122 = lean_array_push(x_121, x_97); lean_inc(x_122); x_123 = lean_array_push(x_122, x_118); lean_inc(x_120); x_124 = lean_array_push(x_123, x_120); -x_125 = l_myMacro____x40_Init_Notation___hyg_14042____closed__22; +x_125 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__22; x_126 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_126, 0, x_125); lean_ctor_set(x_126, 1, x_124); @@ -26815,25 +26815,25 @@ x_127 = lean_array_push(x_104, x_126); x_128 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_128, 0, x_114); lean_ctor_set(x_128, 1, x_127); -x_129 = l_myMacro____x40_Init_Notation___hyg_12931____closed__28; +x_129 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__28; x_130 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_130, 0, x_87); lean_ctor_set(x_130, 1, x_129); x_131 = lean_array_push(x_121, x_128); x_132 = lean_array_push(x_131, x_130); x_133 = lean_array_push(x_132, x_19); -x_134 = l_myMacro____x40_Init_Notation___hyg_12931____closed__13; +x_134 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__13; x_135 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_135, 0, x_134); lean_ctor_set(x_135, 1, x_133); x_136 = lean_array_push(x_108, x_99); x_137 = lean_array_push(x_136, x_135); -x_138 = l_myMacro____x40_Init_Notation___hyg_12931____closed__11; +x_138 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__11; x_139 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_139, 0, x_138); lean_ctor_set(x_139, 1, x_137); x_140 = lean_array_push(x_108, x_139); -x_141 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_141 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_142 = lean_array_push(x_140, x_141); x_143 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_143, 0, x_114); @@ -26849,7 +26849,7 @@ lean_ctor_set(x_148, 0, x_114); lean_ctor_set(x_148, 1, x_147); x_149 = lean_array_push(x_108, x_95); x_150 = lean_array_push(x_149, x_148); -x_151 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_151 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_152 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_152, 0, x_151); lean_ctor_set(x_152, 1, x_150); @@ -26869,7 +26869,7 @@ x_155 = lean_unsigned_to_nat(4u); x_156 = l_Lean_Syntax_getArg(x_1, x_155); lean_dec(x_1); lean_inc(x_2); -x_157 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_157 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_158 = !lean_is_exclusive(x_157); if (x_158 == 0) { @@ -26880,10 +26880,10 @@ lean_inc(x_160); x_161 = lean_ctor_get(x_2, 1); lean_inc(x_161); lean_dec(x_2); -x_162 = l_myMacro____x40_Init_Notation___hyg_15580____closed__4; +x_162 = l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__4; x_163 = l_Lean_addMacroScope(x_161, x_162, x_160); -x_164 = l_myMacro____x40_Init_Notation___hyg_15580____closed__3; -x_165 = l_myMacro____x40_Init_Notation___hyg_15580____closed__6; +x_164 = l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__3; +x_165 = l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__6; lean_inc(x_159); x_166 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_166, 0, x_159); @@ -26895,26 +26895,26 @@ lean_inc(x_159); x_168 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_168, 0, x_159); lean_ctor_set(x_168, 1, x_167); -x_169 = l_myMacro____x40_Init_Notation___hyg_12931____closed__10; +x_169 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__10; lean_inc(x_159); x_170 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_170, 0, x_159); lean_ctor_set(x_170, 1, x_169); -x_171 = l_myMacro____x40_Init_Notation___hyg_12931____closed__21; +x_171 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__21; lean_inc(x_159); 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_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_173 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_174 = lean_array_push(x_173, x_172); x_175 = lean_array_push(x_174, x_154); -x_176 = l_myMacro____x40_Init_Notation___hyg_15580____closed__8; +x_176 = l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__8; x_177 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_177, 0, x_176); lean_ctor_set(x_177, 1, x_175); -x_178 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_178 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_179 = lean_array_push(x_178, x_177); -x_180 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_180 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_181 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_181, 0, x_180); lean_ctor_set(x_181, 1, x_179); @@ -26928,13 +26928,13 @@ lean_inc(x_159); x_186 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_186, 0, x_159); lean_ctor_set(x_186, 1, x_185); -x_187 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_187 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_188 = lean_array_push(x_187, x_168); lean_inc(x_188); x_189 = lean_array_push(x_188, x_184); lean_inc(x_186); x_190 = lean_array_push(x_189, x_186); -x_191 = l_myMacro____x40_Init_Notation___hyg_14042____closed__22; +x_191 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__22; x_192 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_192, 0, x_191); lean_ctor_set(x_192, 1, x_190); @@ -26942,25 +26942,25 @@ x_193 = lean_array_push(x_178, x_192); x_194 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_194, 0, x_180); lean_ctor_set(x_194, 1, x_193); -x_195 = l_myMacro____x40_Init_Notation___hyg_12931____closed__28; +x_195 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__28; x_196 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_196, 0, x_159); lean_ctor_set(x_196, 1, x_195); x_197 = lean_array_push(x_187, x_194); x_198 = lean_array_push(x_197, x_196); x_199 = lean_array_push(x_198, x_156); -x_200 = l_myMacro____x40_Init_Notation___hyg_12931____closed__13; +x_200 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__13; x_201 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_201, 0, x_200); lean_ctor_set(x_201, 1, x_199); x_202 = lean_array_push(x_173, x_170); x_203 = lean_array_push(x_202, x_201); -x_204 = l_myMacro____x40_Init_Notation___hyg_12931____closed__11; +x_204 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__11; x_205 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_205, 0, x_204); lean_ctor_set(x_205, 1, x_203); x_206 = lean_array_push(x_173, x_205); -x_207 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_207 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_208 = lean_array_push(x_206, x_207); x_209 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_209, 0, x_180); @@ -26976,7 +26976,7 @@ lean_ctor_set(x_214, 0, x_180); lean_ctor_set(x_214, 1, x_213); x_215 = lean_array_push(x_173, x_166); x_216 = lean_array_push(x_215, x_214); -x_217 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_217 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_218 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_218, 0, x_217); lean_ctor_set(x_218, 1, x_216); @@ -26996,10 +26996,10 @@ lean_inc(x_221); x_222 = lean_ctor_get(x_2, 1); lean_inc(x_222); lean_dec(x_2); -x_223 = l_myMacro____x40_Init_Notation___hyg_15580____closed__4; +x_223 = l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__4; x_224 = l_Lean_addMacroScope(x_222, x_223, x_221); -x_225 = l_myMacro____x40_Init_Notation___hyg_15580____closed__3; -x_226 = l_myMacro____x40_Init_Notation___hyg_15580____closed__6; +x_225 = l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__3; +x_226 = l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__6; lean_inc(x_219); x_227 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_227, 0, x_219); @@ -27011,26 +27011,26 @@ lean_inc(x_219); x_229 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_229, 0, x_219); lean_ctor_set(x_229, 1, x_228); -x_230 = l_myMacro____x40_Init_Notation___hyg_12931____closed__10; +x_230 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__10; lean_inc(x_219); x_231 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_231, 0, x_219); lean_ctor_set(x_231, 1, x_230); -x_232 = l_myMacro____x40_Init_Notation___hyg_12931____closed__21; +x_232 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__21; lean_inc(x_219); x_233 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_233, 0, x_219); lean_ctor_set(x_233, 1, x_232); -x_234 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_234 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_235 = lean_array_push(x_234, x_233); x_236 = lean_array_push(x_235, x_154); -x_237 = l_myMacro____x40_Init_Notation___hyg_15580____closed__8; +x_237 = l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__8; x_238 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_238, 0, x_237); lean_ctor_set(x_238, 1, x_236); -x_239 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_239 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_240 = lean_array_push(x_239, x_238); -x_241 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_241 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_242 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_242, 0, x_241); lean_ctor_set(x_242, 1, x_240); @@ -27044,13 +27044,13 @@ lean_inc(x_219); x_247 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_247, 0, x_219); lean_ctor_set(x_247, 1, x_246); -x_248 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_248 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_249 = lean_array_push(x_248, x_229); lean_inc(x_249); x_250 = lean_array_push(x_249, x_245); lean_inc(x_247); x_251 = lean_array_push(x_250, x_247); -x_252 = l_myMacro____x40_Init_Notation___hyg_14042____closed__22; +x_252 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__22; x_253 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_253, 0, x_252); lean_ctor_set(x_253, 1, x_251); @@ -27058,25 +27058,25 @@ x_254 = lean_array_push(x_239, x_253); x_255 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_255, 0, x_241); lean_ctor_set(x_255, 1, x_254); -x_256 = l_myMacro____x40_Init_Notation___hyg_12931____closed__28; +x_256 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__28; x_257 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_257, 0, x_219); lean_ctor_set(x_257, 1, x_256); x_258 = lean_array_push(x_248, x_255); x_259 = lean_array_push(x_258, x_257); x_260 = lean_array_push(x_259, x_156); -x_261 = l_myMacro____x40_Init_Notation___hyg_12931____closed__13; +x_261 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__13; x_262 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_262, 0, x_261); lean_ctor_set(x_262, 1, x_260); x_263 = lean_array_push(x_234, x_231); x_264 = lean_array_push(x_263, x_262); -x_265 = l_myMacro____x40_Init_Notation___hyg_12931____closed__11; +x_265 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__11; x_266 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_266, 0, x_265); lean_ctor_set(x_266, 1, x_264); x_267 = lean_array_push(x_234, x_266); -x_268 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_268 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_269 = lean_array_push(x_267, x_268); x_270 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_270, 0, x_241); @@ -27092,7 +27092,7 @@ lean_ctor_set(x_275, 0, x_241); lean_ctor_set(x_275, 1, x_274); x_276 = lean_array_push(x_234, x_227); x_277 = lean_array_push(x_276, x_275); -x_278 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_278 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_279 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_279, 0, x_278); lean_ctor_set(x_279, 1, x_277); @@ -27177,7 +27177,7 @@ x_1 = l_termWithout__expected__type_____closed__6; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_16039____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__1() { _start: { lean_object* x_1; @@ -27185,17 +27185,17 @@ x_1 = lean_mk_string("let"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_16039____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_16039____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_16039____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__3() { _start: { lean_object* x_1; @@ -27203,17 +27203,17 @@ x_1 = lean_mk_string("letDecl"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_16039____closed__4() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_16039____closed__3; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_16039____closed__5() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__5() { _start: { lean_object* x_1; @@ -27221,17 +27221,17 @@ x_1 = lean_mk_string("letIdDecl"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_16039____closed__6() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_16039____closed__5; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_16039____closed__7() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__7() { _start: { lean_object* x_1; @@ -27239,22 +27239,22 @@ x_1 = lean_mk_string("aux"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_16039____closed__8() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_16039____closed__7; +x_1 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__7; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_16039____closed__9() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_16039____closed__7; +x_1 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__7; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_Notation___hyg_16039____closed__8; +x_3 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__8; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -27262,17 +27262,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_16039____closed__10() { +static lean_object* _init_l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_16039____closed__7; +x_2 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_16039_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules__termWithout__expected__type____1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -27297,7 +27297,7 @@ x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); lean_inc(x_2); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { @@ -27308,59 +27308,59 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_2, 1); lean_inc(x_14); lean_dec(x_2); -x_15 = l_myMacro____x40_Init_Notation___hyg_16039____closed__1; +x_15 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__1; lean_inc(x_12); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_12); lean_ctor_set(x_16, 1, x_15); -x_17 = l_myMacro____x40_Init_Notation___hyg_16039____closed__10; +x_17 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__10; x_18 = l_Lean_addMacroScope(x_14, x_17, x_13); x_19 = lean_box(0); -x_20 = l_myMacro____x40_Init_Notation___hyg_16039____closed__9; +x_20 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__9; lean_inc(x_12); x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_12); lean_ctor_set(x_21, 1, x_20); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_19); -x_22 = l_myMacro____x40_Init_Notation___hyg_14042____closed__8; +x_22 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__8; lean_inc(x_12); x_23 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_23, 0, x_12); lean_ctor_set(x_23, 1, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_14042____closed__23; +x_24 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__23; lean_inc(x_21); x_25 = lean_array_push(x_24, x_21); -x_26 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_26 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_27 = lean_array_push(x_25, x_26); x_28 = lean_array_push(x_27, x_26); x_29 = lean_array_push(x_28, x_23); x_30 = lean_array_push(x_29, x_9); -x_31 = l_myMacro____x40_Init_Notation___hyg_16039____closed__6; +x_31 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__6; x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); -x_33 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_33 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_34 = lean_array_push(x_33, x_32); -x_35 = l_myMacro____x40_Init_Notation___hyg_16039____closed__4; +x_35 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__4; x_36 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_36, 0, x_35); lean_ctor_set(x_36, 1, x_34); -x_37 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_37 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; x_38 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_38, 0, x_12); lean_ctor_set(x_38, 1, x_37); x_39 = lean_array_push(x_33, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_39); -x_42 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_42 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_43 = lean_array_push(x_42, x_16); x_44 = lean_array_push(x_43, x_36); x_45 = lean_array_push(x_44, x_41); x_46 = lean_array_push(x_45, x_21); -x_47 = l_myMacro____x40_Init_Notation___hyg_16039____closed__2; +x_47 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__2; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -27380,59 +27380,59 @@ lean_inc(x_51); x_52 = lean_ctor_get(x_2, 1); lean_inc(x_52); lean_dec(x_2); -x_53 = l_myMacro____x40_Init_Notation___hyg_16039____closed__1; +x_53 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__1; lean_inc(x_49); x_54 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_54, 0, x_49); lean_ctor_set(x_54, 1, x_53); -x_55 = l_myMacro____x40_Init_Notation___hyg_16039____closed__10; +x_55 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__10; x_56 = l_Lean_addMacroScope(x_52, x_55, x_51); x_57 = lean_box(0); -x_58 = l_myMacro____x40_Init_Notation___hyg_16039____closed__9; +x_58 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__9; lean_inc(x_49); x_59 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_59, 0, x_49); lean_ctor_set(x_59, 1, x_58); lean_ctor_set(x_59, 2, x_56); lean_ctor_set(x_59, 3, x_57); -x_60 = l_myMacro____x40_Init_Notation___hyg_14042____closed__8; +x_60 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__8; lean_inc(x_49); x_61 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_61, 0, x_49); lean_ctor_set(x_61, 1, x_60); -x_62 = l_myMacro____x40_Init_Notation___hyg_14042____closed__23; +x_62 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__23; lean_inc(x_59); x_63 = lean_array_push(x_62, x_59); -x_64 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_64 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_65 = lean_array_push(x_63, x_64); x_66 = lean_array_push(x_65, x_64); x_67 = lean_array_push(x_66, x_61); x_68 = lean_array_push(x_67, x_9); -x_69 = l_myMacro____x40_Init_Notation___hyg_16039____closed__6; +x_69 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__6; x_70 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_70, 0, x_69); lean_ctor_set(x_70, 1, x_68); -x_71 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_71 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_72 = lean_array_push(x_71, x_70); -x_73 = l_myMacro____x40_Init_Notation___hyg_16039____closed__4; +x_73 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__4; x_74 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_74, 0, x_73); lean_ctor_set(x_74, 1, x_72); -x_75 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_75 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; x_76 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_76, 0, x_49); lean_ctor_set(x_76, 1, x_75); x_77 = lean_array_push(x_71, x_76); -x_78 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_78 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_80 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_81 = lean_array_push(x_80, x_54); x_82 = lean_array_push(x_81, x_74); x_83 = lean_array_push(x_82, x_79); x_84 = lean_array_push(x_83, x_59); -x_85 = l_myMacro____x40_Init_Notation___hyg_16039____closed__2; +x_85 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__2; x_86 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_86, 0, x_85); lean_ctor_set(x_86, 1, x_84); @@ -27503,7 +27503,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = l_termDepIfThenElse___closed__14; -x_2 = l_myMacro____x40_Init_Notation___hyg_1400____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__7; x_3 = l_term_x5b___x5d___closed__6; x_4 = 0; x_5 = lean_alloc_ctor(10, 3, 1); @@ -27636,7 +27636,7 @@ static lean_object* _init_l_term_x25_x5b___x7c___x5d___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_14726____closed__11; +x_1 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__11; x_2 = lean_alloc_ctor(5, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -27706,7 +27706,7 @@ x_1 = l_term_x25_x5b___x7c___x5d___closed__10; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16234__expandListLit(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_EXPORT lean_object* l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1_expandListLit(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -27722,7 +27722,7 @@ if (x_3 == 0) { lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_inc(x_5); -x_11 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_6); +x_11 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_6); x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); x_13 = lean_ctor_get(x_11, 1); @@ -27732,10 +27732,10 @@ x_14 = lean_ctor_get(x_5, 2); lean_inc(x_14); x_15 = lean_ctor_get(x_5, 1); lean_inc(x_15); -x_16 = l_myMacro____x40_Init_Notation___hyg_12375____closed__7; +x_16 = l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__7; x_17 = l_Lean_addMacroScope(x_15, x_16, x_14); -x_18 = l_myMacro____x40_Init_Notation___hyg_12375____closed__3; -x_19 = l_myMacro____x40_Init_Notation___hyg_12375____closed__9; +x_18 = l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__3; +x_19 = l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__9; x_20 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_20, 0, x_12); lean_ctor_set(x_20, 1, x_18); @@ -27743,16 +27743,16 @@ lean_ctor_set(x_20, 2, x_17); lean_ctor_set(x_20, 3, x_19); x_21 = l_Lean_instInhabitedSyntax; x_22 = lean_array_get(x_21, x_1, x_10); -x_23 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_23 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_24 = lean_array_push(x_23, x_22); x_25 = lean_array_push(x_24, x_4); -x_26 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_26 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_27 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_27, 0, x_26); lean_ctor_set(x_27, 1, x_25); x_28 = lean_array_push(x_23, x_20); x_29 = lean_array_push(x_28, x_27); -x_30 = l_myMacro____x40_Init_Notation___hyg_2293____closed__4; +x_30 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4; x_31 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -27784,18 +27784,18 @@ return x_36; } } } -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16234__expandListLit___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1_expandListLit___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { uint8_t x_7; lean_object* x_8; x_7 = lean_unbox(x_3); lean_dec(x_3); -x_8 = l_Lean_myMacro____x40_Init_Notation___hyg_16234__expandListLit(x_1, x_2, x_7, x_4, x_5, x_6); +x_8 = l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1_expandListLit(x_1, x_2, x_7, x_4, x_5, x_6); lean_dec(x_1); return x_8; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__1() { +static lean_object* _init_l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__1() { _start: { lean_object* x_1; @@ -27803,22 +27803,22 @@ x_1 = lean_mk_string("List.nil"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__2() { +static lean_object* _init_l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__1; +x_1 = l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__3() { +static lean_object* _init_l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__1; +x_1 = l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__2; +x_3 = l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -27826,7 +27826,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__4() { +static lean_object* _init_l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__4() { _start: { lean_object* x_1; @@ -27834,41 +27834,41 @@ x_1 = lean_mk_string("nil"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__5() { +static lean_object* _init_l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_12375____closed__5; -x_2 = l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__4; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__5; +x_2 = l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__6() { +static lean_object* _init_l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__5; +x_2 = l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__5; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__7() { +static lean_object* _init_l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__6; +x_2 = l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__6; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16234_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -27902,7 +27902,7 @@ if (x_13 == 0) lean_object* x_14; uint8_t x_15; lean_dec(x_11); lean_inc(x_2); -x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_15 = !lean_is_exclusive(x_14); if (x_15 == 0) { @@ -27918,22 +27918,22 @@ lean_inc(x_16); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_16); lean_ctor_set(x_20, 1, x_19); -x_21 = l_myMacro____x40_Init_Notation___hyg_1534____closed__11; +x_21 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__11; x_22 = l_Array_appendCore___rarg(x_21, x_10); lean_dec(x_10); -x_23 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_23 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); -x_25 = l_myMacro____x40_Init_Notation___hyg_14726____closed__11; +x_25 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__11; lean_inc(x_16); x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_16); lean_ctor_set(x_26, 1, x_25); -x_27 = l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__5; +x_27 = l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__5; x_28 = l_Lean_addMacroScope(x_18, x_27, x_17); -x_29 = l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__3; -x_30 = l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__7; +x_29 = l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__3; +x_30 = l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__7; lean_inc(x_16); x_31 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_31, 0, x_16); @@ -27944,7 +27944,7 @@ x_32 = l_term_x5b___x5d___closed__9; x_33 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_33, 0, x_16); lean_ctor_set(x_33, 1, x_32); -x_34 = l_myMacro____x40_Init_Notation___hyg_14042____closed__23; +x_34 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__23; x_35 = lean_array_push(x_34, x_20); x_36 = lean_array_push(x_35, x_24); x_37 = lean_array_push(x_36, x_26); @@ -27975,22 +27975,22 @@ lean_inc(x_42); x_47 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_47, 0, x_42); lean_ctor_set(x_47, 1, x_46); -x_48 = l_myMacro____x40_Init_Notation___hyg_1534____closed__11; +x_48 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__11; x_49 = l_Array_appendCore___rarg(x_48, x_10); lean_dec(x_10); -x_50 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_50 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_51 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_51, 0, x_50); lean_ctor_set(x_51, 1, x_49); -x_52 = l_myMacro____x40_Init_Notation___hyg_14726____closed__11; +x_52 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__11; lean_inc(x_42); x_53 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_53, 0, x_42); lean_ctor_set(x_53, 1, x_52); -x_54 = l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__5; +x_54 = l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__5; x_55 = l_Lean_addMacroScope(x_45, x_54, x_44); -x_56 = l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__3; -x_57 = l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__7; +x_56 = l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__3; +x_57 = l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__7; lean_inc(x_42); x_58 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_58, 0, x_42); @@ -28001,7 +28001,7 @@ x_59 = l_term_x5b___x5d___closed__9; x_60 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_60, 0, x_42); lean_ctor_set(x_60, 1, x_59); -x_61 = l_myMacro____x40_Init_Notation___hyg_14042____closed__23; +x_61 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__23; x_62 = lean_array_push(x_61, x_47); x_63 = lean_array_push(x_62, x_51); x_64 = lean_array_push(x_63, x_53); @@ -28021,7 +28021,7 @@ else { lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; uint8_t x_80; lean_object* x_81; lean_inc(x_2); -x_70 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_70 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_71 = lean_ctor_get(x_70, 0); lean_inc(x_71); x_72 = lean_ctor_get(x_70, 1); @@ -28031,17 +28031,17 @@ x_73 = lean_ctor_get(x_2, 2); lean_inc(x_73); x_74 = lean_ctor_get(x_2, 1); lean_inc(x_74); -x_75 = l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__5; +x_75 = l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__5; x_76 = l_Lean_addMacroScope(x_74, x_75, x_73); -x_77 = l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__3; -x_78 = l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__7; +x_77 = l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__3; +x_78 = l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__7; x_79 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_79, 0, x_71); lean_ctor_set(x_79, 1, x_77); lean_ctor_set(x_79, 2, x_76); lean_ctor_set(x_79, 3, x_78); x_80 = 0; -x_81 = l_Lean_myMacro____x40_Init_Notation___hyg_16234__expandListLit(x_10, x_11, x_80, x_79, x_2, x_72); +x_81 = l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1_expandListLit(x_10, x_11, x_80, x_79, x_2, x_72); lean_dec(x_10); return x_81; } @@ -28122,7 +28122,7 @@ x_1 = l_Lean_term__Matches_____closed__6; return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__1() { +static lean_object* _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__1() { _start: { lean_object* x_1; @@ -28130,22 +28130,22 @@ x_1 = lean_mk_string("true"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__2() { +static lean_object* _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__1; +x_1 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__3() { +static lean_object* _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__1; +x_1 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__2; +x_3 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -28153,17 +28153,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__4() { +static lean_object* _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__1; +x_2 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__5() { +static lean_object* _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__5() { _start: { lean_object* x_1; @@ -28171,51 +28171,51 @@ x_1 = lean_mk_string("Bool"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__6() { +static lean_object* _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__5; +x_2 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__7() { +static lean_object* _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__6; -x_2 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__1; +x_1 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__6; +x_2 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__8() { +static lean_object* _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__7; +x_2 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__9() { +static lean_object* _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__8; +x_2 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__10() { +static lean_object* _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__10() { _start: { lean_object* x_1; @@ -28223,22 +28223,22 @@ x_1 = lean_mk_string("false"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__11() { +static lean_object* _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__10; +x_1 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__10; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__12() { +static lean_object* _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__10; +x_1 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__10; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__11; +x_3 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__11; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -28246,51 +28246,51 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__13() { +static lean_object* _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__10; +x_2 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__10; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__14() { +static lean_object* _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__6; -x_2 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__10; +x_1 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__6; +x_2 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__10; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__15() { +static lean_object* _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__14; +x_2 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__14; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__16() { +static lean_object* _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__15; +x_2 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__15; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_16578_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -28317,7 +28317,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -28328,29 +28328,29 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_myMacro____x40_Init_Notation___hyg_14726____closed__1; +x_17 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__1; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_14726____closed__5; +x_19 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__5; x_20 = lean_array_push(x_19, x_9); -x_21 = l_myMacro____x40_Init_Notation___hyg_14726____closed__4; +x_21 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__4; x_22 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_22, 0, x_21); lean_ctor_set(x_22, 1, x_20); -x_23 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_23 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_24 = lean_array_push(x_23, x_22); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = l_myMacro____x40_Init_Notation___hyg_14726____closed__6; +x_27 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__6; lean_inc(x_14); x_28 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_28, 0, x_14); lean_ctor_set(x_28, 1, x_27); -x_29 = l_myMacro____x40_Init_Notation___hyg_14726____closed__11; +x_29 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__11; lean_inc(x_14); x_30 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_30, 0, x_14); @@ -28359,41 +28359,41 @@ x_31 = lean_array_push(x_23, x_11); x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_25); lean_ctor_set(x_32, 1, x_31); -x_33 = l_myMacro____x40_Init_Notation___hyg_12931____closed__28; +x_33 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__28; lean_inc(x_14); x_34 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_34, 0, x_14); lean_ctor_set(x_34, 1, x_33); -x_35 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__4; +x_35 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__4; lean_inc(x_15); lean_inc(x_16); x_36 = l_Lean_addMacroScope(x_16, x_35, x_15); -x_37 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__3; -x_38 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__9; +x_37 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__3; +x_38 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__9; lean_inc(x_14); x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_14); lean_ctor_set(x_39, 1, x_37); lean_ctor_set(x_39, 2, x_36); lean_ctor_set(x_39, 3, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_41 = lean_array_push(x_40, x_30); lean_inc(x_41); x_42 = lean_array_push(x_41, x_32); lean_inc(x_34); x_43 = lean_array_push(x_42, x_34); x_44 = lean_array_push(x_43, x_39); -x_45 = l_myMacro____x40_Init_Notation___hyg_14726____closed__10; +x_45 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__10; x_46 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_47 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; lean_inc(x_14); x_48 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_48, 0, x_14); lean_ctor_set(x_48, 1, x_47); x_49 = lean_array_push(x_23, x_48); -x_50 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_50 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_51 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_51, 0, x_50); lean_ctor_set(x_51, 1, x_49); @@ -28401,10 +28401,10 @@ x_52 = lean_array_push(x_23, x_51); x_53 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_53, 0, x_25); lean_ctor_set(x_53, 1, x_52); -x_54 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__13; +x_54 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__13; x_55 = l_Lean_addMacroScope(x_16, x_54, x_15); -x_56 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__12; -x_57 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__16; +x_56 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__12; +x_57 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__16; x_58 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_58, 0, x_14); lean_ctor_set(x_58, 1, x_56); @@ -28416,26 +28416,26 @@ x_61 = lean_array_push(x_60, x_58); x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_45); lean_ctor_set(x_62, 1, x_61); -x_63 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_63 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_64 = lean_array_push(x_63, x_46); x_65 = lean_array_push(x_64, x_62); x_66 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_66, 0, x_25); lean_ctor_set(x_66, 1, x_65); x_67 = lean_array_push(x_23, x_66); -x_68 = l_myMacro____x40_Init_Notation___hyg_14726____closed__8; +x_68 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__8; x_69 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_69, 0, x_68); lean_ctor_set(x_69, 1, x_67); -x_70 = l_myMacro____x40_Init_Notation___hyg_1400____closed__8; +x_70 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__8; x_71 = lean_array_push(x_70, x_18); -x_72 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_72 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_73 = lean_array_push(x_71, x_72); x_74 = lean_array_push(x_73, x_26); x_75 = lean_array_push(x_74, x_72); x_76 = lean_array_push(x_75, x_28); x_77 = lean_array_push(x_76, x_69); -x_78 = l_myMacro____x40_Init_Notation___hyg_14726____closed__2; +x_78 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__2; x_79 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_79, 0, x_78); lean_ctor_set(x_79, 1, x_77); @@ -28455,29 +28455,29 @@ lean_inc(x_82); x_83 = lean_ctor_get(x_2, 1); lean_inc(x_83); lean_dec(x_2); -x_84 = l_myMacro____x40_Init_Notation___hyg_14726____closed__1; +x_84 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__1; lean_inc(x_80); x_85 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_85, 0, x_80); lean_ctor_set(x_85, 1, x_84); -x_86 = l_myMacro____x40_Init_Notation___hyg_14726____closed__5; +x_86 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__5; x_87 = lean_array_push(x_86, x_9); -x_88 = l_myMacro____x40_Init_Notation___hyg_14726____closed__4; +x_88 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__4; x_89 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_89, 0, x_88); lean_ctor_set(x_89, 1, x_87); -x_90 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_90 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_91 = lean_array_push(x_90, x_89); -x_92 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_92 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_93 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_93, 0, x_92); lean_ctor_set(x_93, 1, x_91); -x_94 = l_myMacro____x40_Init_Notation___hyg_14726____closed__6; +x_94 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__6; lean_inc(x_80); x_95 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_95, 0, x_80); lean_ctor_set(x_95, 1, x_94); -x_96 = l_myMacro____x40_Init_Notation___hyg_14726____closed__11; +x_96 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__11; lean_inc(x_80); x_97 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_97, 0, x_80); @@ -28486,41 +28486,41 @@ x_98 = lean_array_push(x_90, x_11); x_99 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_99, 0, x_92); lean_ctor_set(x_99, 1, x_98); -x_100 = l_myMacro____x40_Init_Notation___hyg_12931____closed__28; +x_100 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__28; lean_inc(x_80); x_101 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_101, 0, x_80); lean_ctor_set(x_101, 1, x_100); -x_102 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__4; +x_102 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__4; lean_inc(x_82); lean_inc(x_83); x_103 = l_Lean_addMacroScope(x_83, x_102, x_82); -x_104 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__3; -x_105 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__9; +x_104 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__3; +x_105 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__9; lean_inc(x_80); x_106 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_106, 0, x_80); lean_ctor_set(x_106, 1, x_104); lean_ctor_set(x_106, 2, x_103); lean_ctor_set(x_106, 3, x_105); -x_107 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_107 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_108 = lean_array_push(x_107, x_97); lean_inc(x_108); x_109 = lean_array_push(x_108, x_99); lean_inc(x_101); x_110 = lean_array_push(x_109, x_101); x_111 = lean_array_push(x_110, x_106); -x_112 = l_myMacro____x40_Init_Notation___hyg_14726____closed__10; +x_112 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__10; x_113 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_113, 0, x_112); lean_ctor_set(x_113, 1, x_111); -x_114 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_114 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; lean_inc(x_80); x_115 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_115, 0, x_80); lean_ctor_set(x_115, 1, x_114); x_116 = lean_array_push(x_90, x_115); -x_117 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_117 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_118 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_118, 0, x_117); lean_ctor_set(x_118, 1, x_116); @@ -28528,10 +28528,10 @@ x_119 = lean_array_push(x_90, x_118); x_120 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_120, 0, x_92); lean_ctor_set(x_120, 1, x_119); -x_121 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__13; +x_121 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__13; x_122 = l_Lean_addMacroScope(x_83, x_121, x_82); -x_123 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__12; -x_124 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__16; +x_123 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__12; +x_124 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__16; x_125 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_125, 0, x_80); lean_ctor_set(x_125, 1, x_123); @@ -28543,26 +28543,26 @@ x_128 = lean_array_push(x_127, x_125); x_129 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_129, 0, x_112); lean_ctor_set(x_129, 1, x_128); -x_130 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_130 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_131 = lean_array_push(x_130, x_113); x_132 = lean_array_push(x_131, x_129); x_133 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_133, 0, x_92); lean_ctor_set(x_133, 1, x_132); x_134 = lean_array_push(x_90, x_133); -x_135 = l_myMacro____x40_Init_Notation___hyg_14726____closed__8; +x_135 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__8; x_136 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_136, 0, x_135); lean_ctor_set(x_136, 1, x_134); -x_137 = l_myMacro____x40_Init_Notation___hyg_1400____closed__8; +x_137 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__8; x_138 = lean_array_push(x_137, x_85); -x_139 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_139 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_140 = lean_array_push(x_138, x_139); x_141 = lean_array_push(x_140, x_93); x_142 = lean_array_push(x_141, x_139); x_143 = lean_array_push(x_142, x_95); x_144 = lean_array_push(x_143, x_136); -x_145 = l_myMacro____x40_Init_Notation___hyg_14726____closed__2; +x_145 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__2; x_146 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_146, 0, x_145); lean_ctor_set(x_146, 1, x_144); @@ -28634,7 +28634,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_intro___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2159____closed__4; +x_1 = l___aux__Init__Notation______macroRules__stx_x21____1___closed__4; x_2 = l_term_x25_x5b___x7c___x5d___closed__6; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -28714,7 +28714,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_intro___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1199____closed__4; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__4; x_2 = l_Lean_Parser_Tactic_intro___closed__13; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -28800,7 +28800,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_intros___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; x_2 = lean_alloc_ctor(5, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -28810,7 +28810,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_intros___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_1400____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__6; x_2 = l_termDepIfThenElse___closed__9; x_3 = l_Lean_Parser_Tactic_intros___closed__5; x_4 = lean_alloc_ctor(2, 3, 0); @@ -28838,7 +28838,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_intros___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1199____closed__4; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__4; x_2 = l_Lean_Parser_Tactic_intros___closed__7; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -29058,7 +29058,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_revert___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1098____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__6; x_2 = l_Lean_Parser_Tactic_revert___closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -29758,7 +29758,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_case___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1199____closed__4; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__4; x_2 = l_Lean_Parser_Tactic_intros___closed__6; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -29900,7 +29900,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticNext_______x3d_x3e_____clos _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1199____closed__4; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__4; x_2 = l_Lean_Parser_Tactic_intros___closed__6; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -29972,7 +29972,7 @@ x_1 = l_Lean_Parser_Tactic_tacticNext_______x3d_x3e_____closed__9; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17075____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticNext_______x3d_x3e___xbb__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -29982,7 +29982,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17075_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticNext_______x3d_x3e___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -30008,7 +30008,7 @@ x_9 = l_Lean_Syntax_getArg(x_1, x_8); x_10 = lean_unsigned_to_nat(3u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -30019,31 +30019,31 @@ lean_inc(x_14); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_14); lean_ctor_set(x_16, 1, x_15); -x_17 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_17 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); x_19 = l_Lean_Syntax_getArgs(x_9); lean_dec(x_9); -x_20 = l_myMacro____x40_Init_Notation___hyg_1534____closed__11; +x_20 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__11; x_21 = l_Array_appendCore___rarg(x_20, x_19); lean_dec(x_19); -x_22 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_22 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_23 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_23, 0, x_22); lean_ctor_set(x_23, 1, x_21); -x_24 = l_myMacro____x40_Init_Notation___hyg_12931____closed__28; +x_24 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__28; x_25 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_25, 0, x_14); lean_ctor_set(x_25, 1, x_24); -x_26 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_26 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_27 = lean_array_push(x_26, x_11); -x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17075____closed__1; +x_28 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticNext_______x3d_x3e___xbb__1___closed__1; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); -x_30 = l_myMacro____x40_Init_Notation___hyg_14042____closed__23; +x_30 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__23; x_31 = lean_array_push(x_30, x_16); x_32 = lean_array_push(x_31, x_18); x_33 = lean_array_push(x_32, x_23); @@ -30069,31 +30069,31 @@ lean_inc(x_38); x_41 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_41, 0, x_38); lean_ctor_set(x_41, 1, x_40); -x_42 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_42 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; lean_inc(x_38); x_43 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_43, 0, x_38); lean_ctor_set(x_43, 1, x_42); x_44 = l_Lean_Syntax_getArgs(x_9); lean_dec(x_9); -x_45 = l_myMacro____x40_Init_Notation___hyg_1534____closed__11; +x_45 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__11; x_46 = l_Array_appendCore___rarg(x_45, x_44); lean_dec(x_44); -x_47 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_47 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); -x_49 = l_myMacro____x40_Init_Notation___hyg_12931____closed__28; +x_49 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__28; x_50 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_50, 0, x_38); lean_ctor_set(x_50, 1, x_49); -x_51 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_51 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_52 = lean_array_push(x_51, x_11); -x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17075____closed__1; +x_53 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticNext_______x3d_x3e___xbb__1___closed__1; x_54 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_54, 0, x_53); lean_ctor_set(x_54, 1, x_52); -x_55 = l_myMacro____x40_Init_Notation___hyg_14042____closed__23; +x_55 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__23; x_56 = lean_array_push(x_55, x_41); x_57 = lean_array_push(x_56, x_43); x_58 = lean_array_push(x_57, x_48); @@ -30576,7 +30576,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_intro___closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_14042____closed__21; +x_2 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__21; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -30925,7 +30925,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_first___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1098____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__6; x_2 = l_Lean_Parser_Tactic_first___closed__14; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -31023,7 +31023,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_rotateLeft___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1300____closed__4; +x_1 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4; x_2 = l_rawNatLit___closed__7; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -31215,7 +31215,7 @@ x_1 = l_Lean_Parser_Tactic_tacticTry_____closed__6; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__1() { _start: { lean_object* x_1; @@ -31223,17 +31223,17 @@ x_1 = lean_mk_string("seq1"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_intro___closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__1; +x_2 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__3() { _start: { lean_object* x_1; @@ -31241,17 +31241,17 @@ x_1 = lean_mk_string("tacticSeq1Indented"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_intro___closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__3; +x_2 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -31275,7 +31275,7 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { @@ -31286,18 +31286,18 @@ lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); -x_15 = l_myMacro____x40_Init_Notation___hyg_14726____closed__11; +x_15 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__11; lean_inc(x_12); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_12); lean_ctor_set(x_16, 1, x_15); -x_17 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_17 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_18 = lean_array_push(x_17, x_9); -x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17075____closed__1; +x_19 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticNext_______x3d_x3e___xbb__1___closed__1; x_20 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); -x_21 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_21 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_22 = lean_array_push(x_21, x_16); lean_inc(x_22); x_23 = lean_array_push(x_22, x_20); @@ -31315,18 +31315,18 @@ x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); x_31 = lean_array_push(x_21, x_30); -x_32 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_32 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_33 = lean_array_push(x_31, x_32); x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_24); lean_ctor_set(x_34, 1, x_33); x_35 = lean_array_push(x_17, x_34); -x_36 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_36 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); x_38 = lean_array_push(x_17, x_37); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__4; +x_39 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__4; x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); @@ -31354,7 +31354,7 @@ x_53 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_53, 0, x_36); lean_ctor_set(x_53, 1, x_52); x_54 = lean_array_push(x_17, x_53); -x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_55 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_56 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_56, 0, x_55); lean_ctor_set(x_56, 1, x_54); @@ -31374,18 +31374,18 @@ lean_inc(x_57); x_60 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_60, 0, x_57); lean_ctor_set(x_60, 1, x_59); -x_61 = l_myMacro____x40_Init_Notation___hyg_14726____closed__11; +x_61 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__11; lean_inc(x_57); x_62 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_62, 0, x_57); lean_ctor_set(x_62, 1, x_61); -x_63 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_63 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_64 = lean_array_push(x_63, x_9); -x_65 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17075____closed__1; +x_65 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticNext_______x3d_x3e___xbb__1___closed__1; x_66 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_66, 0, x_65); lean_ctor_set(x_66, 1, x_64); -x_67 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_67 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_68 = lean_array_push(x_67, x_62); lean_inc(x_68); x_69 = lean_array_push(x_68, x_66); @@ -31403,18 +31403,18 @@ x_76 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_74); x_77 = lean_array_push(x_67, x_76); -x_78 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_78 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_79 = lean_array_push(x_77, x_78); x_80 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_80, 0, x_70); lean_ctor_set(x_80, 1, x_79); x_81 = lean_array_push(x_63, x_80); -x_82 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_82 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_array_push(x_63, x_83); -x_85 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__4; +x_85 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__4; x_86 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_86, 0, x_85); lean_ctor_set(x_86, 1, x_84); @@ -31442,7 +31442,7 @@ x_99 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_99, 0, x_82); lean_ctor_set(x_99, 1, x_98); x_100 = lean_array_push(x_63, x_99); -x_101 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_101 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_102 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_102, 0, x_101); lean_ctor_set(x_102, 1, x_100); @@ -31558,7 +31558,7 @@ x_1 = l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__9; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17564____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic___x3c_x3b_x3e___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -31566,7 +31566,7 @@ x_1 = lean_mk_string("all_goals"); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17564_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic___x3c_x3b_x3e___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -31592,7 +31592,7 @@ x_9 = l_Lean_Syntax_getArg(x_1, x_8); x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -31608,31 +31608,31 @@ lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_19 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; lean_inc(x_14); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_14); lean_ctor_set(x_20, 1, x_19); -x_21 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_21 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_22 = lean_array_push(x_21, x_20); -x_23 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_23 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); -x_25 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_26 = lean_array_push(x_25, x_9); x_27 = lean_array_push(x_26, x_24); x_28 = l_Lean_Parser_Tactic_first___closed__8; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); -x_30 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17564____closed__1; +x_30 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic___x3c_x3b_x3e___xbb__1___closed__1; lean_inc(x_14); x_31 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_31, 0, x_14); lean_ctor_set(x_31, 1, x_30); x_32 = lean_array_push(x_25, x_11); -x_33 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_33 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_34 = lean_array_push(x_32, x_33); x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_28); @@ -31642,12 +31642,12 @@ x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_23); lean_ctor_set(x_37, 1, x_36); x_38 = lean_array_push(x_21, x_37); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__4; +x_39 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__4; x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); x_41 = lean_array_push(x_21, x_40); -x_42 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17075____closed__1; +x_42 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticNext_______x3d_x3e___xbb__1___closed__1; x_43 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_43, 0, x_42); lean_ctor_set(x_43, 1, x_41); @@ -31679,7 +31679,7 @@ x_58 = l_prec_x28___x29___closed__7; x_59 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_59, 0, x_14); lean_ctor_set(x_59, 1, x_58); -x_60 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_60 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_61 = lean_array_push(x_60, x_18); x_62 = lean_array_push(x_61, x_57); x_63 = lean_array_push(x_62, x_59); @@ -31731,31 +31731,31 @@ lean_inc(x_79); x_84 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_84, 0, x_79); lean_ctor_set(x_84, 1, x_83); -x_85 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_85 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; lean_inc(x_79); x_86 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_86, 0, x_79); lean_ctor_set(x_86, 1, x_85); -x_87 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_87 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_88 = lean_array_push(x_87, x_86); -x_89 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_89 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_90 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_90, 0, x_89); lean_ctor_set(x_90, 1, x_88); -x_91 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_91 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_92 = lean_array_push(x_91, x_9); x_93 = lean_array_push(x_92, x_90); x_94 = l_Lean_Parser_Tactic_first___closed__8; x_95 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_95, 0, x_94); lean_ctor_set(x_95, 1, x_93); -x_96 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17564____closed__1; +x_96 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic___x3c_x3b_x3e___xbb__1___closed__1; lean_inc(x_79); x_97 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_97, 0, x_79); lean_ctor_set(x_97, 1, x_96); x_98 = lean_array_push(x_91, x_11); -x_99 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_99 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_100 = lean_array_push(x_98, x_99); x_101 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_101, 0, x_94); @@ -31765,12 +31765,12 @@ x_103 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_103, 0, x_89); lean_ctor_set(x_103, 1, x_102); x_104 = lean_array_push(x_87, x_103); -x_105 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__4; +x_105 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__4; x_106 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_106, 0, x_105); lean_ctor_set(x_106, 1, x_104); x_107 = lean_array_push(x_87, x_106); -x_108 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17075____closed__1; +x_108 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticNext_______x3d_x3e___xbb__1___closed__1; x_109 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_109, 0, x_108); lean_ctor_set(x_109, 1, x_107); @@ -31802,7 +31802,7 @@ x_124 = l_prec_x28___x29___closed__7; x_125 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_125, 0, x_79); lean_ctor_set(x_125, 1, x_124); -x_126 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_126 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_127 = lean_array_push(x_126, x_84); x_128 = lean_array_push(x_127, x_123); x_129 = lean_array_push(x_128, x_125); @@ -31899,7 +31899,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_1400____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__6; x_2 = l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__4; x_3 = l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__6; x_4 = lean_alloc_ctor(2, 3, 0); @@ -31945,7 +31945,7 @@ x_1 = l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__9; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -31953,17 +31953,17 @@ x_1 = lean_mk_string("tacticSeqBracketed"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_intro___closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__1; +x_2 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__3() { _start: { lean_object* x_1; @@ -31971,7 +31971,7 @@ x_1 = lean_mk_string("}"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -31979,7 +31979,7 @@ x_1 = lean_mk_string("{"); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -32005,7 +32005,7 @@ x_9 = l_Lean_Syntax_getArg(x_1, x_8); x_10 = lean_unsigned_to_nat(1u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -32023,7 +32023,7 @@ lean_inc(x_14); x_19 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_19, 0, x_14); lean_ctor_set(x_19, 1, x_18); -x_20 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_20 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_21 = lean_array_push(x_20, x_17); x_22 = lean_array_push(x_21, x_11); x_23 = lean_array_push(x_22, x_19); @@ -32031,21 +32031,21 @@ x_24 = l_Lean_Parser_Tactic_paren___closed__1; x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); -x_26 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_26 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_27 = lean_array_push(x_26, x_25); -x_28 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_28 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_29 = lean_array_push(x_27, x_28); x_30 = l_Lean_Parser_Tactic_first___closed__8; x_31 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); -x_32 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_32 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_33 = lean_array_push(x_32, x_31); -x_34 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_34 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); -x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__3; +x_36 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__3; lean_inc(x_14); x_37 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_37, 0, x_14); @@ -32053,14 +32053,14 @@ lean_ctor_set(x_37, 1, x_36); if (lean_obj_tag(x_15) == 0) { lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_38 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__4; +x_38 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__4; x_39 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_39, 0, x_14); lean_ctor_set(x_39, 1, x_38); x_40 = lean_array_push(x_20, x_39); x_41 = lean_array_push(x_40, x_35); x_42 = lean_array_push(x_41, x_37); -x_43 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__2; +x_43 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__2; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); @@ -32074,14 +32074,14 @@ lean_dec(x_14); x_45 = lean_ctor_get(x_15, 0); lean_inc(x_45); lean_dec(x_15); -x_46 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__4; +x_46 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__4; x_47 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_47, 0, x_45); lean_ctor_set(x_47, 1, x_46); x_48 = lean_array_push(x_20, x_47); x_49 = lean_array_push(x_48, x_35); x_50 = lean_array_push(x_49, x_37); -x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__2; +x_51 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__2; x_52 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_52, 0, x_51); lean_ctor_set(x_52, 1, x_50); @@ -32109,7 +32109,7 @@ lean_inc(x_53); x_59 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_59, 0, x_53); lean_ctor_set(x_59, 1, x_58); -x_60 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_60 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_61 = lean_array_push(x_60, x_57); x_62 = lean_array_push(x_61, x_11); x_63 = lean_array_push(x_62, x_59); @@ -32117,21 +32117,21 @@ x_64 = l_Lean_Parser_Tactic_paren___closed__1; x_65 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_65, 0, x_64); lean_ctor_set(x_65, 1, x_63); -x_66 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_66 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_67 = lean_array_push(x_66, x_65); -x_68 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_68 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_69 = lean_array_push(x_67, x_68); x_70 = l_Lean_Parser_Tactic_first___closed__8; x_71 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_71, 0, x_70); lean_ctor_set(x_71, 1, x_69); -x_72 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_72 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_73 = lean_array_push(x_72, x_71); -x_74 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_74 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_75 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_75, 0, x_74); lean_ctor_set(x_75, 1, x_73); -x_76 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__3; +x_76 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__3; lean_inc(x_53); x_77 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_77, 0, x_53); @@ -32139,14 +32139,14 @@ lean_ctor_set(x_77, 1, x_76); if (lean_obj_tag(x_55) == 0) { 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_78 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__4; +x_78 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__4; x_79 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_79, 0, x_53); lean_ctor_set(x_79, 1, x_78); x_80 = lean_array_push(x_60, x_79); x_81 = lean_array_push(x_80, x_75); x_82 = lean_array_push(x_81, x_77); -x_83 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__2; +x_83 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__2; x_84 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_84, 0, x_83); lean_ctor_set(x_84, 1, x_82); @@ -32162,14 +32162,14 @@ lean_dec(x_53); x_86 = lean_ctor_get(x_55, 0); lean_inc(x_86); lean_dec(x_55); -x_87 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__4; +x_87 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__4; x_88 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_88, 0, x_86); lean_ctor_set(x_88, 1, x_87); x_89 = lean_array_push(x_60, x_88); x_90 = lean_array_push(x_89, x_75); x_91 = lean_array_push(x_90, x_77); -x_92 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__2; +x_92 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__2; x_93 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_93, 0, x_92); lean_ctor_set(x_93, 1, x_91); @@ -32242,7 +32242,7 @@ x_1 = l_Lean_Parser_Tactic_tacticRfl___closed__5; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -32251,13 +32251,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Tactic_tacticRfl___closed__3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__1; +x_3 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__1; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -32265,7 +32265,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -32275,31 +32275,31 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__3; +x_2 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__3; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__4; +x_2 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__4; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -32319,7 +32319,7 @@ else { lean_object* x_8; uint8_t x_9; lean_inc(x_2); -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { @@ -32335,30 +32335,30 @@ lean_inc(x_10); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_10); lean_ctor_set(x_14, 1, x_13); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__3; +x_15 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__3; x_16 = l_Lean_addMacroScope(x_12, x_15, x_11); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__2; -x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__5; +x_17 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__2; +x_18 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__5; x_19 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_19, 0, x_10); lean_ctor_set(x_19, 1, x_17); lean_ctor_set(x_19, 2, x_16); lean_ctor_set(x_19, 3, x_18); -x_20 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_20 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_21 = lean_array_push(x_20, x_14); x_22 = lean_array_push(x_21, x_19); x_23 = l_Lean_Parser_Tactic_exact___closed__2; x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); -x_25 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_25 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_26 = lean_array_push(x_25, x_24); -x_27 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_27 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_26); x_29 = lean_array_push(x_25, x_28); -x_30 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_30 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_31 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -32383,30 +32383,30 @@ lean_inc(x_32); x_37 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_37, 0, x_32); lean_ctor_set(x_37, 1, x_36); -x_38 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__3; +x_38 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__3; x_39 = l_Lean_addMacroScope(x_35, x_38, x_34); -x_40 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__2; -x_41 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__5; +x_40 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__2; +x_41 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__5; x_42 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_42, 0, x_32); lean_ctor_set(x_42, 1, x_40); lean_ctor_set(x_42, 2, x_39); lean_ctor_set(x_42, 3, x_41); -x_43 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_44 = lean_array_push(x_43, x_37); x_45 = lean_array_push(x_44, x_42); x_46 = l_Lean_Parser_Tactic_exact___closed__2; x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_46); lean_ctor_set(x_47, 1, x_45); -x_48 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_48 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_49 = lean_array_push(x_48, x_47); -x_50 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_50 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_51 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_51, 0, x_50); lean_ctor_set(x_51, 1, x_49); x_52 = lean_array_push(x_48, x_51); -x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_53 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_54 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_54, 0, x_53); lean_ctor_set(x_54, 1, x_52); @@ -32478,7 +32478,7 @@ x_1 = l_Lean_Parser_Tactic_tacticAdmit___closed__5; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18030____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticAdmit__1___closed__1() { _start: { lean_object* x_1; @@ -32486,17 +32486,17 @@ x_1 = lean_mk_string("sorry"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18030____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticAdmit__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18030____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticAdmit__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18030_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticAdmit__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -32515,7 +32515,7 @@ return x_7; else { lean_object* x_8; uint8_t x_9; -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { @@ -32526,17 +32526,17 @@ lean_inc(x_10); x_12 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18030____closed__1; +x_13 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticAdmit__1___closed__1; x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_10); lean_ctor_set(x_14, 1, x_13); -x_15 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_15 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_16 = lean_array_push(x_15, x_14); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18030____closed__2; +x_17 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticAdmit__1___closed__2; x_18 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_18, 0, x_17); lean_ctor_set(x_18, 1, x_16); -x_19 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_19 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_20 = lean_array_push(x_19, x_12); x_21 = lean_array_push(x_20, x_18); x_22 = l_Lean_Parser_Tactic_exact___closed__2; @@ -32544,12 +32544,12 @@ x_23 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_23, 0, x_22); lean_ctor_set(x_23, 1, x_21); x_24 = lean_array_push(x_15, x_23); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_15, x_26); -x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_28 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); @@ -32569,17 +32569,17 @@ lean_inc(x_30); x_33 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_33, 0, x_30); lean_ctor_set(x_33, 1, x_32); -x_34 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18030____closed__1; +x_34 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticAdmit__1___closed__1; x_35 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_35, 0, x_30); lean_ctor_set(x_35, 1, x_34); -x_36 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_36 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_37 = lean_array_push(x_36, x_35); -x_38 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18030____closed__2; +x_38 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticAdmit__1___closed__2; x_39 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_39, 0, x_38); lean_ctor_set(x_39, 1, x_37); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_33); x_42 = lean_array_push(x_41, x_39); x_43 = l_Lean_Parser_Tactic_exact___closed__2; @@ -32587,12 +32587,12 @@ x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_36, x_44); -x_46 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_46 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_46); lean_ctor_set(x_47, 1, x_45); x_48 = lean_array_push(x_36, x_47); -x_49 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_49 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); @@ -32626,7 +32626,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticSorry___closed__3() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18030____closed__1; +x_1 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticAdmit__1___closed__1; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -32656,7 +32656,7 @@ x_1 = l_Lean_Parser_Tactic_tacticSorry___closed__4; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18132_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticSorry__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -32675,7 +32675,7 @@ return x_7; else { lean_object* x_8; uint8_t x_9; -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { @@ -32686,17 +32686,17 @@ lean_inc(x_10); x_12 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18030____closed__1; +x_13 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticAdmit__1___closed__1; x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_10); lean_ctor_set(x_14, 1, x_13); -x_15 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_15 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_16 = lean_array_push(x_15, x_14); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18030____closed__2; +x_17 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticAdmit__1___closed__2; x_18 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_18, 0, x_17); lean_ctor_set(x_18, 1, x_16); -x_19 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_19 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_20 = lean_array_push(x_19, x_12); x_21 = lean_array_push(x_20, x_18); x_22 = l_Lean_Parser_Tactic_exact___closed__2; @@ -32704,12 +32704,12 @@ x_23 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_23, 0, x_22); lean_ctor_set(x_23, 1, x_21); x_24 = lean_array_push(x_15, x_23); -x_25 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; 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_27 = lean_array_push(x_15, x_26); -x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_28 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); @@ -32729,17 +32729,17 @@ lean_inc(x_30); x_33 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_33, 0, x_30); lean_ctor_set(x_33, 1, x_32); -x_34 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18030____closed__1; +x_34 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticAdmit__1___closed__1; x_35 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_35, 0, x_30); lean_ctor_set(x_35, 1, x_34); -x_36 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_36 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_37 = lean_array_push(x_36, x_35); -x_38 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18030____closed__2; +x_38 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticAdmit__1___closed__2; x_39 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_39, 0, x_38); lean_ctor_set(x_39, 1, x_37); -x_40 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_40 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_41 = lean_array_push(x_40, x_33); x_42 = lean_array_push(x_41, x_39); x_43 = l_Lean_Parser_Tactic_exact___closed__2; @@ -32747,12 +32747,12 @@ x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_36, x_44); -x_46 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_46 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_46); lean_ctor_set(x_47, 1, x_45); x_48 = lean_array_push(x_36, x_47); -x_49 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_49 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); @@ -32824,7 +32824,7 @@ x_1 = l_Lean_Parser_Tactic_tacticInfer__instance___closed__5; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__1() { _start: { lean_object* x_1; @@ -32832,22 +32832,22 @@ x_1 = lean_mk_string("inferInstance"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__1; +x_1 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__1; +x_1 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__2; +x_3 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -32855,41 +32855,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__1; +x_2 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__4; +x_2 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__4; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__5; +x_2 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -32909,7 +32909,7 @@ else { lean_object* x_8; uint8_t x_9; lean_inc(x_2); -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { @@ -32925,30 +32925,30 @@ lean_inc(x_10); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_10); lean_ctor_set(x_14, 1, x_13); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__4; +x_15 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__4; x_16 = l_Lean_addMacroScope(x_12, x_15, x_11); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__3; -x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__6; +x_17 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__3; +x_18 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__6; x_19 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_19, 0, x_10); lean_ctor_set(x_19, 1, x_17); lean_ctor_set(x_19, 2, x_16); lean_ctor_set(x_19, 3, x_18); -x_20 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_20 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_21 = lean_array_push(x_20, x_14); x_22 = lean_array_push(x_21, x_19); x_23 = l_Lean_Parser_Tactic_exact___closed__2; x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); -x_25 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_25 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_26 = lean_array_push(x_25, x_24); -x_27 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_27 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_26); x_29 = lean_array_push(x_25, x_28); -x_30 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_30 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_31 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -32973,30 +32973,30 @@ lean_inc(x_32); x_37 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_37, 0, x_32); lean_ctor_set(x_37, 1, x_36); -x_38 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__4; +x_38 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__4; x_39 = l_Lean_addMacroScope(x_35, x_38, x_34); -x_40 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__3; -x_41 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__6; +x_40 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__3; +x_41 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__6; x_42 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_42, 0, x_32); lean_ctor_set(x_42, 1, x_40); lean_ctor_set(x_42, 2, x_39); lean_ctor_set(x_42, 3, x_41); -x_43 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_44 = lean_array_push(x_43, x_37); x_45 = lean_array_push(x_44, x_42); x_46 = l_Lean_Parser_Tactic_exact___closed__2; x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_46); lean_ctor_set(x_47, 1, x_45); -x_48 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_48 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_49 = lean_array_push(x_48, x_47); -x_50 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_50 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_51 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_51, 0, x_50); lean_ctor_set(x_51, 1, x_49); x_52 = lean_array_push(x_48, x_51); -x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_53 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_54 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_54, 0, x_53); lean_ctor_set(x_54, 1, x_52); @@ -33236,7 +33236,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_locationHyp___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_1400____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__6; x_2 = l_Lean_Parser_Tactic_locationHyp___closed__4; x_3 = l_Lean_Parser_Tactic_locationHyp___closed__6; x_4 = lean_alloc_ctor(2, 3, 0); @@ -33250,7 +33250,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_locationHyp___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1300____closed__4; +x_1 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4; x_2 = l_Lean_Parser_Tactic_locationHyp___closed__7; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -33374,7 +33374,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_location___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_1400____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__6; x_2 = l_Lean_Parser_Tactic_locationWildcard; x_3 = l_Lean_Parser_Tactic_locationHyp; x_4 = lean_alloc_ctor(2, 3, 0); @@ -33488,7 +33488,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_change___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1300____closed__4; +x_1 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4; x_2 = l_Lean_Parser_Tactic_location; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -33690,7 +33690,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_rwRule___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_1400____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__6; x_2 = l_Lean_Parser_Tactic_rwRule___closed__4; x_3 = l_Lean_Parser_Tactic_rwRule___closed__6; x_4 = lean_alloc_ctor(2, 3, 0); @@ -33704,7 +33704,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_rwRule___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1300____closed__4; +x_1 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4; x_2 = l_Lean_Parser_Tactic_rwRule___closed__7; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -33771,7 +33771,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = l_Lean_Parser_Tactic_rwRule; -x_2 = l_myMacro____x40_Init_Notation___hyg_1400____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__7; x_3 = l_term_x5b___x5d___closed__6; x_4 = 1; x_5 = lean_alloc_ctor(11, 3, 1); @@ -33874,7 +33874,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1300____closed__4; +x_1 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4; x_2 = l_Lean_Parser_Tactic_config; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -34091,7 +34091,7 @@ x_12 = l_Lean_mkAtomFrom(x_3, x_2); x_13 = lean_unsigned_to_nat(0u); x_14 = l_Lean_Syntax_setArg(x_11, x_13, x_12); x_15 = l_Lean_Syntax_setArg(x_14, x_6, x_10); -x_16 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_4, x_5); +x_16 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_4, x_5); x_17 = lean_ctor_get(x_16, 0); lean_inc(x_17); x_18 = lean_ctor_get(x_16, 1); @@ -34104,7 +34104,7 @@ if (lean_is_exclusive(x_16)) { lean_dec_ref(x_16); x_19 = lean_box(0); } -x_20 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_20 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; lean_inc(x_17); x_21 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_21, 0, x_17); @@ -34126,14 +34126,14 @@ lean_ctor_set(x_27, 0, x_17); lean_ctor_set(x_27, 1, x_26); x_28 = l_Lean_Syntax_getHeadInfo_x3f(x_8); lean_dec(x_8); -x_29 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_29 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_30 = lean_array_push(x_29, x_27); x_31 = l_prec_x28___x29___closed__7; lean_inc(x_17); x_32 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_32, 0, x_17); lean_ctor_set(x_32, 1, x_31); -x_33 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_33 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_34 = lean_array_push(x_33, x_25); x_35 = lean_array_push(x_29, x_23); x_36 = lean_array_push(x_33, x_15); @@ -34160,31 +34160,31 @@ x_39 = l_Lean_Parser_Tactic_tacticRfl___closed__3; x_40 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_40, 0, x_38); lean_ctor_set(x_40, 1, x_39); -x_41 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_41 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_42 = lean_array_push(x_41, x_40); x_43 = l_Lean_Parser_Tactic_tacticRfl___closed__2; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); x_45 = lean_array_push(x_29, x_44); -x_46 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_46 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_47 = lean_array_push(x_45, x_46); x_48 = l_Lean_Parser_Tactic_first___closed__8; x_49 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); x_50 = lean_array_push(x_41, x_49); -x_51 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_51 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_52 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_52, 0, x_51); lean_ctor_set(x_52, 1, x_50); x_53 = lean_array_push(x_41, x_52); -x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__4; +x_54 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__4; x_55 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_55, 0, x_54); lean_ctor_set(x_55, 1, x_53); x_56 = lean_array_push(x_41, x_55); -x_57 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17075____closed__1; +x_57 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticNext_______x3d_x3e___xbb__1___closed__1; x_58 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); @@ -34243,7 +34243,7 @@ x_88 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_88, 0, x_51); lean_ctor_set(x_88, 1, x_87); x_89 = lean_array_push(x_41, x_88); -x_90 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_90 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_91 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_91, 0, x_90); lean_ctor_set(x_91, 1, x_89); @@ -34332,7 +34332,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_injection___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1098____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__6; x_2 = l_Lean_Parser_Tactic_intros___closed__7; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -34358,7 +34358,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_injection___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1300____closed__4; +x_1 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4; x_2 = l_Lean_Parser_Tactic_injection___closed__7; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -34508,7 +34508,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_discharger___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_1400____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__6; x_2 = l_Lean_Parser_Tactic_discharger___closed__3; x_3 = l_Lean_Parser_Tactic_discharger___closed__5; x_4 = lean_alloc_ctor(2, 3, 0); @@ -34746,7 +34746,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_simpLemma___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_1400____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__6; x_2 = l_Lean_Parser_Tactic_simpPre; x_3 = l_Lean_Parser_Tactic_simpPost; x_4 = lean_alloc_ctor(2, 3, 0); @@ -34760,7 +34760,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_simpLemma___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1300____closed__4; +x_1 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4; x_2 = l_Lean_Parser_Tactic_simpLemma___closed__3; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -34968,7 +34968,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_simp___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1300____closed__4; +x_1 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4; x_2 = l_Lean_Parser_Tactic_discharger; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -35014,7 +35014,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_simp___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1300____closed__4; +x_1 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4; x_2 = l_Lean_Parser_Tactic_simp___closed__9; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -35040,7 +35040,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_simp___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_1400____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__6; x_2 = l_Lean_Parser_Tactic_simpErase; x_3 = l_Lean_Parser_Tactic_simpLemma; x_4 = lean_alloc_ctor(2, 3, 0); @@ -35054,7 +35054,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_simp___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_1400____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__6; x_2 = l_Lean_Parser_Tactic_simpStar; x_3 = l_Lean_Parser_Tactic_simp___closed__12; x_4 = lean_alloc_ctor(2, 3, 0); @@ -35069,7 +35069,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = l_Lean_Parser_Tactic_simp___closed__13; -x_2 = l_myMacro____x40_Init_Notation___hyg_1400____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__7; x_3 = l_term_x5b___x5d___closed__6; x_4 = 0; x_5 = lean_alloc_ctor(10, 3, 1); @@ -35112,7 +35112,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_simp___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1300____closed__4; +x_1 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4; x_2 = l_Lean_Parser_Tactic_simp___closed__16; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -35255,7 +35255,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = l_Lean_Parser_Tactic_simp___closed__12; -x_2 = l_myMacro____x40_Init_Notation___hyg_1400____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__7; x_3 = l_term_x5b___x5d___closed__6; x_4 = 0; x_5 = lean_alloc_ctor(10, 3, 1); @@ -35298,7 +35298,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_simpAll___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1300____closed__4; +x_1 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4; x_2 = l_Lean_Parser_Tactic_simpAll___closed__10; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -35504,7 +35504,7 @@ x_1 = l_Lean_Parser_Tactic_tacticRefine__lift_____closed__6; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1___closed__1() { _start: { lean_object* x_1; @@ -35512,17 +35512,17 @@ x_1 = lean_mk_string("noImplicitLambda"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1___closed__3() { _start: { lean_object* x_1; @@ -35530,7 +35530,7 @@ x_1 = lean_mk_string("no_implicit_lambda%"); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -35554,7 +35554,7 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { @@ -35575,15 +35575,15 @@ lean_inc(x_12); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_12); lean_ctor_set(x_18, 1, x_17); -x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083____closed__3; +x_19 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1___closed__3; lean_inc(x_12); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_12); lean_ctor_set(x_20, 1, x_19); -x_21 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_21 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_22 = lean_array_push(x_21, x_20); x_23 = lean_array_push(x_22, x_9); -x_24 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083____closed__2; +x_24 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1___closed__2; x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); @@ -35593,14 +35593,14 @@ x_28 = l_Lean_Parser_Tactic_refine___closed__2; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); -x_30 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_30 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; lean_inc(x_12); x_31 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_31, 0, x_12); lean_ctor_set(x_31, 1, x_30); -x_32 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_32 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_33 = lean_array_push(x_32, x_31); -x_34 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_34 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); @@ -35616,7 +35616,7 @@ x_41 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_41, 0, x_12); lean_ctor_set(x_41, 1, x_40); x_42 = lean_array_push(x_21, x_41); -x_43 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_44 = lean_array_push(x_42, x_43); x_45 = l_Lean_Parser_Tactic_rotateRight___closed__2; x_46 = lean_alloc_ctor(1, 2, 0); @@ -35633,12 +35633,12 @@ x_52 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_52, 0, x_34); lean_ctor_set(x_52, 1, x_51); x_53 = lean_array_push(x_32, x_52); -x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__4; +x_54 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__4; x_55 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_55, 0, x_54); lean_ctor_set(x_55, 1, x_53); x_56 = lean_array_push(x_32, x_55); -x_57 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17075____closed__1; +x_57 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticNext_______x3d_x3e___xbb__1___closed__1; x_58 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); @@ -35646,7 +35646,7 @@ x_59 = l_prec_x28___x29___closed__7; x_60 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_60, 0, x_12); lean_ctor_set(x_60, 1, x_59); -x_61 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_61 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_62 = lean_array_push(x_61, x_16); x_63 = lean_array_push(x_62, x_58); x_64 = lean_array_push(x_63, x_60); @@ -35682,7 +35682,7 @@ x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_34); lean_ctor_set(x_81, 1, x_80); x_82 = lean_array_push(x_32, x_81); -x_83 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_83 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_84 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_84, 0, x_83); lean_ctor_set(x_84, 1, x_82); @@ -35712,15 +35712,15 @@ lean_inc(x_85); x_92 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_92, 0, x_85); lean_ctor_set(x_92, 1, x_91); -x_93 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083____closed__3; +x_93 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1___closed__3; lean_inc(x_85); x_94 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_94, 0, x_85); lean_ctor_set(x_94, 1, x_93); -x_95 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_95 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_96 = lean_array_push(x_95, x_94); x_97 = lean_array_push(x_96, x_9); -x_98 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083____closed__2; +x_98 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1___closed__2; x_99 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_99, 0, x_98); lean_ctor_set(x_99, 1, x_97); @@ -35730,14 +35730,14 @@ x_102 = l_Lean_Parser_Tactic_refine___closed__2; x_103 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_103, 0, x_102); lean_ctor_set(x_103, 1, x_101); -x_104 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_104 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; lean_inc(x_85); x_105 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_105, 0, x_85); lean_ctor_set(x_105, 1, x_104); -x_106 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_106 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_107 = lean_array_push(x_106, x_105); -x_108 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_108 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_109 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_109, 0, x_108); lean_ctor_set(x_109, 1, x_107); @@ -35753,7 +35753,7 @@ x_115 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_115, 0, x_85); lean_ctor_set(x_115, 1, x_114); x_116 = lean_array_push(x_95, x_115); -x_117 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_117 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_118 = lean_array_push(x_116, x_117); x_119 = l_Lean_Parser_Tactic_rotateRight___closed__2; x_120 = lean_alloc_ctor(1, 2, 0); @@ -35770,12 +35770,12 @@ x_126 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_126, 0, x_108); lean_ctor_set(x_126, 1, x_125); x_127 = lean_array_push(x_106, x_126); -x_128 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__4; +x_128 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__4; x_129 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_129, 0, x_128); lean_ctor_set(x_129, 1, x_127); x_130 = lean_array_push(x_106, x_129); -x_131 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17075____closed__1; +x_131 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticNext_______x3d_x3e___xbb__1___closed__1; x_132 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_132, 0, x_131); lean_ctor_set(x_132, 1, x_130); @@ -35783,7 +35783,7 @@ x_133 = l_prec_x28___x29___closed__7; x_134 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_134, 0, x_85); lean_ctor_set(x_134, 1, x_133); -x_135 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_135 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_136 = lean_array_push(x_135, x_90); x_137 = lean_array_push(x_136, x_132); x_138 = lean_array_push(x_137, x_134); @@ -35819,7 +35819,7 @@ x_155 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_155, 0, x_108); lean_ctor_set(x_155, 1, x_154); x_156 = lean_array_push(x_106, x_155); -x_157 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_157 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_158 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_158, 0, x_157); lean_ctor_set(x_158, 1, x_156); @@ -35933,7 +35933,7 @@ x_1 = l_Lean_Parser_Tactic_tacticHave_____closed__9; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__1() { _start: { lean_object* x_1; @@ -35941,7 +35941,7 @@ x_1 = lean_mk_string("refine_lift"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__2() { _start: { lean_object* x_1; @@ -35949,17 +35949,17 @@ x_1 = lean_mk_string("have"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__2; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__2; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -35983,30 +35983,30 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__1; +x_13 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__1; lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__2; +x_15 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__2; lean_inc(x_12); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_12); lean_ctor_set(x_16, 1, x_15); -x_17 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_17 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; lean_inc(x_12); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_12); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_19 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_20 = lean_array_push(x_19, x_18); -x_21 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_21 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_22 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_22, 0, x_21); lean_ctor_set(x_22, 1, x_20); @@ -36015,28 +36015,28 @@ lean_inc(x_12); x_24 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_24, 0, x_12); lean_ctor_set(x_24, 1, x_23); -x_25 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_25 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_12); lean_ctor_set(x_26, 1, x_25); x_27 = lean_array_push(x_19, x_26); -x_28 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_28 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); -x_30 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_30 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_31 = lean_array_push(x_30, x_24); x_32 = lean_array_push(x_31, x_29); -x_33 = l_myMacro____x40_Init_Notation___hyg_14042____closed__20; +x_33 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__20; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); -x_35 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_35 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_36 = lean_array_push(x_35, x_16); x_37 = lean_array_push(x_36, x_9); x_38 = lean_array_push(x_37, x_22); x_39 = lean_array_push(x_38, x_34); -x_40 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__3; +x_40 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__3; x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_39); @@ -36051,7 +36051,7 @@ x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_21); lean_ctor_set(x_47, 1, x_46); x_48 = lean_array_push(x_19, x_47); -x_49 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_49 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); @@ -36066,24 +36066,24 @@ x_52 = lean_ctor_get(x_10, 1); lean_inc(x_52); lean_inc(x_51); lean_dec(x_10); -x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__1; +x_53 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__1; lean_inc(x_51); x_54 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_54, 0, x_51); lean_ctor_set(x_54, 1, x_53); -x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__2; +x_55 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__2; lean_inc(x_51); x_56 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_56, 0, x_51); lean_ctor_set(x_56, 1, x_55); -x_57 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_57 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; lean_inc(x_51); x_58 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_58, 0, x_51); lean_ctor_set(x_58, 1, x_57); -x_59 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_59 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_60 = lean_array_push(x_59, x_58); -x_61 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_61 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_61); lean_ctor_set(x_62, 1, x_60); @@ -36092,28 +36092,28 @@ lean_inc(x_51); x_64 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_64, 0, x_51); lean_ctor_set(x_64, 1, x_63); -x_65 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_65 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; x_66 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_66, 0, x_51); lean_ctor_set(x_66, 1, x_65); x_67 = lean_array_push(x_59, x_66); -x_68 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_68 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_69 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_69, 0, x_68); lean_ctor_set(x_69, 1, x_67); -x_70 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_70 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_71 = lean_array_push(x_70, x_64); x_72 = lean_array_push(x_71, x_69); -x_73 = l_myMacro____x40_Init_Notation___hyg_14042____closed__20; +x_73 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__20; x_74 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_74, 0, x_73); lean_ctor_set(x_74, 1, x_72); -x_75 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_75 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_76 = lean_array_push(x_75, x_56); x_77 = lean_array_push(x_76, x_9); x_78 = lean_array_push(x_77, x_62); x_79 = lean_array_push(x_78, x_74); -x_80 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__3; +x_80 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__3; x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_80); lean_ctor_set(x_81, 1, x_79); @@ -36128,7 +36128,7 @@ x_87 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_87, 0, x_61); lean_ctor_set(x_87, 1, x_86); x_88 = lean_array_push(x_59, x_87); -x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_89 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_90 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_90, 0, x_89); lean_ctor_set(x_90, 1, x_88); @@ -36162,7 +36162,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__2; +x_1 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__2; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -36234,17 +36234,17 @@ x_1 = l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__7; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; x_2 = l_Lean_Parser_Tactic_tacticHave_____closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1___closed__2() { _start: { lean_object* x_1; @@ -36252,17 +36252,17 @@ x_1 = lean_mk_string("haveIdDecl"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454____closed__2; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1___closed__2; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -36288,44 +36288,44 @@ x_9 = l_Lean_Syntax_getArg(x_1, x_8); x_10 = lean_unsigned_to_nat(3u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(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; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; x_14 = lean_ctor_get(x_12, 0); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__2; +x_15 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__2; lean_inc(x_14); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_14); lean_ctor_set(x_16, 1, x_15); -x_17 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_17 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_18 = lean_array_push(x_17, x_9); -x_19 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_19 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_20 = lean_array_push(x_18, x_19); -x_21 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_21 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_22 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_22, 0, x_21); lean_ctor_set(x_22, 1, x_20); -x_23 = l_myMacro____x40_Init_Notation___hyg_12931____closed__21; +x_23 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__21; lean_inc(x_14); x_24 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_24, 0, x_14); lean_ctor_set(x_24, 1, x_23); -x_25 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_25 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; lean_inc(x_14); x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_14); lean_ctor_set(x_26, 1, x_25); -x_27 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_27 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_29 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); x_31 = lean_array_push(x_17, x_24); x_32 = lean_array_push(x_31, x_30); -x_33 = l_myMacro____x40_Init_Notation___hyg_12931____closed__20; +x_33 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__20; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); @@ -36333,21 +36333,21 @@ x_35 = lean_array_push(x_27, x_34); x_36 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_36, 0, x_21); lean_ctor_set(x_36, 1, x_35); -x_37 = l_myMacro____x40_Init_Notation___hyg_14042____closed__8; +x_37 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__8; x_38 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_38, 0, x_14); lean_ctor_set(x_38, 1, x_37); -x_39 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_39 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_40 = lean_array_push(x_39, x_22); x_41 = lean_array_push(x_40, x_36); x_42 = lean_array_push(x_41, x_38); x_43 = lean_array_push(x_42, x_11); -x_44 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454____closed__3; +x_44 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1___closed__3; x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_44); lean_ctor_set(x_45, 1, x_43); x_46 = lean_array_push(x_27, x_45); -x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454____closed__1; +x_47 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1___closed__1; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -36362,7 +36362,7 @@ x_54 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_54, 0, x_21); lean_ctor_set(x_54, 1, x_53); x_55 = lean_array_push(x_27, x_54); -x_56 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_56 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_57 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_57, 0, x_56); lean_ctor_set(x_57, 1, x_55); @@ -36377,38 +36377,38 @@ x_59 = lean_ctor_get(x_12, 1); lean_inc(x_59); lean_inc(x_58); lean_dec(x_12); -x_60 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__2; +x_60 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__2; lean_inc(x_58); x_61 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_61, 0, x_58); lean_ctor_set(x_61, 1, x_60); -x_62 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_62 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_63 = lean_array_push(x_62, x_9); -x_64 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_64 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_65 = lean_array_push(x_63, x_64); -x_66 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_66 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_67 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_67, 0, x_66); lean_ctor_set(x_67, 1, x_65); -x_68 = l_myMacro____x40_Init_Notation___hyg_12931____closed__21; +x_68 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__21; lean_inc(x_58); x_69 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_69, 0, x_58); lean_ctor_set(x_69, 1, x_68); -x_70 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_70 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; lean_inc(x_58); x_71 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_71, 0, x_58); lean_ctor_set(x_71, 1, x_70); -x_72 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_72 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_73 = lean_array_push(x_72, x_71); -x_74 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_74 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_75 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_75, 0, x_74); lean_ctor_set(x_75, 1, x_73); x_76 = lean_array_push(x_62, x_69); x_77 = lean_array_push(x_76, x_75); -x_78 = l_myMacro____x40_Init_Notation___hyg_12931____closed__20; +x_78 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__20; x_79 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_79, 0, x_78); lean_ctor_set(x_79, 1, x_77); @@ -36416,21 +36416,21 @@ x_80 = lean_array_push(x_72, x_79); x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_66); lean_ctor_set(x_81, 1, x_80); -x_82 = l_myMacro____x40_Init_Notation___hyg_14042____closed__8; +x_82 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__8; x_83 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_83, 0, x_58); lean_ctor_set(x_83, 1, x_82); -x_84 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_84 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_85 = lean_array_push(x_84, x_67); x_86 = lean_array_push(x_85, x_81); x_87 = lean_array_push(x_86, x_83); x_88 = lean_array_push(x_87, x_11); -x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454____closed__3; +x_89 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1___closed__3; x_90 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_90, 0, x_89); lean_ctor_set(x_90, 1, x_88); x_91 = lean_array_push(x_72, x_90); -x_92 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454____closed__1; +x_92 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1___closed__1; x_93 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_93, 0, x_92); lean_ctor_set(x_93, 1, x_91); @@ -36445,7 +36445,7 @@ x_99 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_99, 0, x_66); lean_ctor_set(x_99, 1, x_98); x_100 = lean_array_push(x_72, x_99); -x_101 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_101 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_102 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_102, 0, x_101); lean_ctor_set(x_102, 1, x_100); @@ -36559,7 +36559,7 @@ x_1 = l_Lean_Parser_Tactic_tacticSuffices_____closed__9; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19629____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticSuffices____1___closed__1() { _start: { lean_object* x_1; @@ -36567,17 +36567,17 @@ x_1 = lean_mk_string("suffices"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19629____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticSuffices____1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19629____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticSuffices____1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19629_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticSuffices____1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -36601,30 +36601,30 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__1; +x_13 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__1; lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19629____closed__1; +x_15 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticSuffices____1___closed__1; lean_inc(x_12); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_12); lean_ctor_set(x_16, 1, x_15); -x_17 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_17 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; lean_inc(x_12); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_12); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_19 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_20 = lean_array_push(x_19, x_18); -x_21 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_21 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_22 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_22, 0, x_21); lean_ctor_set(x_22, 1, x_20); @@ -36633,28 +36633,28 @@ lean_inc(x_12); x_24 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_24, 0, x_12); lean_ctor_set(x_24, 1, x_23); -x_25 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_25 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_12); lean_ctor_set(x_26, 1, x_25); x_27 = lean_array_push(x_19, x_26); -x_28 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_28 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); -x_30 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_30 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_31 = lean_array_push(x_30, x_24); x_32 = lean_array_push(x_31, x_29); -x_33 = l_myMacro____x40_Init_Notation___hyg_14042____closed__20; +x_33 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__20; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); -x_35 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_35 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_36 = lean_array_push(x_35, x_16); x_37 = lean_array_push(x_36, x_9); x_38 = lean_array_push(x_37, x_22); x_39 = lean_array_push(x_38, x_34); -x_40 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19629____closed__2; +x_40 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticSuffices____1___closed__2; x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_39); @@ -36669,7 +36669,7 @@ x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_21); lean_ctor_set(x_47, 1, x_46); x_48 = lean_array_push(x_19, x_47); -x_49 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_49 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); @@ -36684,24 +36684,24 @@ x_52 = lean_ctor_get(x_10, 1); lean_inc(x_52); lean_inc(x_51); lean_dec(x_10); -x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__1; +x_53 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__1; lean_inc(x_51); x_54 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_54, 0, x_51); lean_ctor_set(x_54, 1, x_53); -x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19629____closed__1; +x_55 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticSuffices____1___closed__1; lean_inc(x_51); x_56 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_56, 0, x_51); lean_ctor_set(x_56, 1, x_55); -x_57 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_57 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; lean_inc(x_51); x_58 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_58, 0, x_51); lean_ctor_set(x_58, 1, x_57); -x_59 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_59 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_60 = lean_array_push(x_59, x_58); -x_61 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_61 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_61); lean_ctor_set(x_62, 1, x_60); @@ -36710,28 +36710,28 @@ lean_inc(x_51); x_64 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_64, 0, x_51); lean_ctor_set(x_64, 1, x_63); -x_65 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_65 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; x_66 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_66, 0, x_51); lean_ctor_set(x_66, 1, x_65); x_67 = lean_array_push(x_59, x_66); -x_68 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_68 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_69 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_69, 0, x_68); lean_ctor_set(x_69, 1, x_67); -x_70 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_70 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_71 = lean_array_push(x_70, x_64); x_72 = lean_array_push(x_71, x_69); -x_73 = l_myMacro____x40_Init_Notation___hyg_14042____closed__20; +x_73 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__20; x_74 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_74, 0, x_73); lean_ctor_set(x_74, 1, x_72); -x_75 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_75 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_76 = lean_array_push(x_75, x_56); x_77 = lean_array_push(x_76, x_9); x_78 = lean_array_push(x_77, x_62); x_79 = lean_array_push(x_78, x_74); -x_80 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19629____closed__2; +x_80 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticSuffices____1___closed__2; x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_80); lean_ctor_set(x_81, 1, x_79); @@ -36746,7 +36746,7 @@ x_87 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_87, 0, x_61); lean_ctor_set(x_87, 1, x_86); x_88 = lean_array_push(x_59, x_87); -x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_89 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_90 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_90, 0, x_89); lean_ctor_set(x_90, 1, x_88); @@ -36793,7 +36793,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_16039____closed__3; +x_2 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -36844,7 +36844,7 @@ x_1 = l_Lean_Parser_Tactic_tacticLet_____closed__7; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19773_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticLet____1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -36868,30 +36868,30 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__1; +x_13 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__1; lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); -x_15 = l_myMacro____x40_Init_Notation___hyg_16039____closed__1; +x_15 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__1; lean_inc(x_12); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_12); lean_ctor_set(x_16, 1, x_15); -x_17 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_17 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; lean_inc(x_12); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_12); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_19 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_20 = lean_array_push(x_19, x_18); -x_21 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_21 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_22 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_22, 0, x_21); lean_ctor_set(x_22, 1, x_20); @@ -36900,28 +36900,28 @@ lean_inc(x_12); x_24 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_24, 0, x_12); lean_ctor_set(x_24, 1, x_23); -x_25 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_25 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_12); lean_ctor_set(x_26, 1, x_25); x_27 = lean_array_push(x_19, x_26); -x_28 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_28 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); -x_30 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_30 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_31 = lean_array_push(x_30, x_24); x_32 = lean_array_push(x_31, x_29); -x_33 = l_myMacro____x40_Init_Notation___hyg_14042____closed__20; +x_33 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__20; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); -x_35 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_35 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_36 = lean_array_push(x_35, x_16); x_37 = lean_array_push(x_36, x_9); x_38 = lean_array_push(x_37, x_22); x_39 = lean_array_push(x_38, x_34); -x_40 = l_myMacro____x40_Init_Notation___hyg_16039____closed__2; +x_40 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__2; x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_39); @@ -36936,7 +36936,7 @@ x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_21); lean_ctor_set(x_47, 1, x_46); x_48 = lean_array_push(x_19, x_47); -x_49 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_49 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); @@ -36951,24 +36951,24 @@ x_52 = lean_ctor_get(x_10, 1); lean_inc(x_52); lean_inc(x_51); lean_dec(x_10); -x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__1; +x_53 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__1; lean_inc(x_51); x_54 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_54, 0, x_51); lean_ctor_set(x_54, 1, x_53); -x_55 = l_myMacro____x40_Init_Notation___hyg_16039____closed__1; +x_55 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__1; lean_inc(x_51); x_56 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_56, 0, x_51); lean_ctor_set(x_56, 1, x_55); -x_57 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_57 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; lean_inc(x_51); x_58 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_58, 0, x_51); lean_ctor_set(x_58, 1, x_57); -x_59 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_59 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_60 = lean_array_push(x_59, x_58); -x_61 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_61 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_61); lean_ctor_set(x_62, 1, x_60); @@ -36977,28 +36977,28 @@ lean_inc(x_51); x_64 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_64, 0, x_51); lean_ctor_set(x_64, 1, x_63); -x_65 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_65 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; x_66 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_66, 0, x_51); lean_ctor_set(x_66, 1, x_65); x_67 = lean_array_push(x_59, x_66); -x_68 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_68 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_69 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_69, 0, x_68); lean_ctor_set(x_69, 1, x_67); -x_70 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_70 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_71 = lean_array_push(x_70, x_64); x_72 = lean_array_push(x_71, x_69); -x_73 = l_myMacro____x40_Init_Notation___hyg_14042____closed__20; +x_73 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__20; x_74 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_74, 0, x_73); lean_ctor_set(x_74, 1, x_72); -x_75 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_75 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_76 = lean_array_push(x_75, x_56); x_77 = lean_array_push(x_76, x_9); x_78 = lean_array_push(x_77, x_62); x_79 = lean_array_push(x_78, x_74); -x_80 = l_myMacro____x40_Init_Notation___hyg_16039____closed__2; +x_80 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__2; x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_80); lean_ctor_set(x_81, 1, x_79); @@ -37013,7 +37013,7 @@ x_87 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_87, 0, x_61); lean_ctor_set(x_87, 1, x_86); x_88 = lean_array_push(x_59, x_87); -x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_89 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_90 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_90, 0, x_89); lean_ctor_set(x_90, 1, x_88); @@ -37099,7 +37099,7 @@ x_1 = l_Lean_Parser_Tactic_tacticShow_____closed__6; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__1() { _start: { lean_object* x_1; @@ -37107,17 +37107,17 @@ x_1 = lean_mk_string("show"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__3() { _start: { lean_object* x_1; @@ -37125,17 +37125,17 @@ x_1 = lean_mk_string("fromTerm"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__3; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__5() { _start: { lean_object* x_1; @@ -37143,7 +37143,7 @@ x_1 = lean_mk_string("from"); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -37167,23 +37167,23 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__1; +x_13 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__1; lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__1; +x_15 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__1; lean_inc(x_12); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_12); lean_ctor_set(x_16, 1, x_15); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__5; +x_17 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__5; lean_inc(x_12); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_12); @@ -37193,34 +37193,34 @@ lean_inc(x_12); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_12); lean_ctor_set(x_20, 1, x_19); -x_21 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_21 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; x_22 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_22, 0, x_12); lean_ctor_set(x_22, 1, x_21); -x_23 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_23 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_24 = lean_array_push(x_23, x_22); -x_25 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_25 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; 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_27 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_27 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); -x_30 = l_myMacro____x40_Init_Notation___hyg_14042____closed__20; +x_30 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__20; x_31 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); x_32 = lean_array_push(x_27, x_18); x_33 = lean_array_push(x_32, x_31); -x_34 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__4; +x_34 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__4; x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); -x_36 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_36 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_37 = lean_array_push(x_36, x_16); x_38 = lean_array_push(x_37, x_9); x_39 = lean_array_push(x_38, x_35); -x_40 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__2; +x_40 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__2; x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_39); @@ -37231,12 +37231,12 @@ x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_44); lean_ctor_set(x_45, 1, x_43); x_46 = lean_array_push(x_23, x_45); -x_47 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_47 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); x_49 = lean_array_push(x_23, x_48); -x_50 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_50 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_51 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_51, 0, x_50); lean_ctor_set(x_51, 1, x_49); @@ -37251,17 +37251,17 @@ x_53 = lean_ctor_get(x_10, 1); lean_inc(x_53); lean_inc(x_52); lean_dec(x_10); -x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__1; +x_54 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__1; lean_inc(x_52); x_55 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_55, 0, x_52); lean_ctor_set(x_55, 1, x_54); -x_56 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__1; +x_56 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__1; lean_inc(x_52); x_57 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_57, 0, x_52); lean_ctor_set(x_57, 1, x_56); -x_58 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__5; +x_58 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__5; lean_inc(x_52); x_59 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_59, 0, x_52); @@ -37271,34 +37271,34 @@ lean_inc(x_52); x_61 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_61, 0, x_52); lean_ctor_set(x_61, 1, x_60); -x_62 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_62 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; x_63 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_63, 0, x_52); lean_ctor_set(x_63, 1, x_62); -x_64 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_64 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_65 = lean_array_push(x_64, x_63); -x_66 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_66 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_67 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_67, 0, x_66); lean_ctor_set(x_67, 1, x_65); -x_68 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_68 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_69 = lean_array_push(x_68, x_61); x_70 = lean_array_push(x_69, x_67); -x_71 = l_myMacro____x40_Init_Notation___hyg_14042____closed__20; +x_71 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__20; x_72 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_72, 0, x_71); lean_ctor_set(x_72, 1, x_70); x_73 = lean_array_push(x_68, x_59); x_74 = lean_array_push(x_73, x_72); -x_75 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__4; +x_75 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__4; x_76 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_74); -x_77 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_77 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_78 = lean_array_push(x_77, x_57); x_79 = lean_array_push(x_78, x_9); x_80 = lean_array_push(x_79, x_76); -x_81 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__2; +x_81 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__2; x_82 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_82, 0, x_81); lean_ctor_set(x_82, 1, x_80); @@ -37309,12 +37309,12 @@ x_86 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_86, 0, x_85); lean_ctor_set(x_86, 1, x_84); x_87 = lean_array_push(x_64, x_86); -x_88 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_88 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_89 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_89, 0, x_88); lean_ctor_set(x_89, 1, x_87); x_90 = lean_array_push(x_64, x_89); -x_91 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_91 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_92 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_92, 0, x_91); lean_ctor_set(x_92, 1, x_90); @@ -37478,27 +37478,27 @@ x_1 = l_Lean_Parser_Tactic_letrec___closed__13; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20069____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__letrec__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; x_2 = l_Lean_Parser_Tactic_letrec___closed__8; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20069____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__letrec__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; x_2 = l_Lean_Parser_Tactic_letrec___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20069____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__letrec__1___closed__3() { _start: { lean_object* x_1; @@ -37506,7 +37506,7 @@ x_1 = lean_mk_string("rec"); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20069_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__letrec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -37548,7 +37548,7 @@ lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; x_14 = lean_unsigned_to_nat(1u); x_15 = l_Lean_Syntax_getArg(x_1, x_14); lean_dec(x_1); -x_16 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20069____closed__1; +x_16 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__letrec__1___closed__1; lean_inc(x_15); x_17 = l_Lean_Syntax_isOfKind(x_15, x_16); if (x_17 == 0) @@ -37565,41 +37565,41 @@ return x_19; else { lean_object* x_20; uint8_t x_21; -x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_21 = !lean_is_exclusive(x_20); if (x_21 == 0) { lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; x_22 = lean_ctor_get(x_20, 0); -x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__1; +x_23 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__1; lean_inc(x_22); x_24 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_24, 0, x_22); lean_ctor_set(x_24, 1, x_23); -x_25 = l_myMacro____x40_Init_Notation___hyg_16039____closed__1; +x_25 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__1; lean_inc(x_22); x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_22); lean_ctor_set(x_26, 1, x_25); -x_27 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20069____closed__3; +x_27 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__letrec__1___closed__3; lean_inc(x_22); x_28 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_28, 0, x_22); lean_ctor_set(x_28, 1, x_27); -x_29 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_29 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_30 = lean_array_push(x_29, x_26); x_31 = lean_array_push(x_30, x_28); x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_10); lean_ctor_set(x_32, 1, x_31); -x_33 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_33 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; lean_inc(x_22); x_34 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_34, 0, x_22); lean_ctor_set(x_34, 1, x_33); -x_35 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_35 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_36 = lean_array_push(x_35, x_34); -x_37 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_37 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_38 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_38, 0, x_37); lean_ctor_set(x_38, 1, x_36); @@ -37608,27 +37608,27 @@ lean_inc(x_22); x_40 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_40, 0, x_22); lean_ctor_set(x_40, 1, x_39); -x_41 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_41 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; x_42 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_42, 0, x_22); lean_ctor_set(x_42, 1, x_41); x_43 = lean_array_push(x_35, x_42); -x_44 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_44 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_44); lean_ctor_set(x_45, 1, x_43); x_46 = lean_array_push(x_29, x_40); x_47 = lean_array_push(x_46, x_45); -x_48 = l_myMacro____x40_Init_Notation___hyg_14042____closed__20; +x_48 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__20; x_49 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); -x_50 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_50 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_51 = lean_array_push(x_50, x_32); x_52 = lean_array_push(x_51, x_15); x_53 = lean_array_push(x_52, x_38); x_54 = lean_array_push(x_53, x_49); -x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20069____closed__2; +x_55 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__letrec__1___closed__2; x_56 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_56, 0, x_55); lean_ctor_set(x_56, 1, x_54); @@ -37649,35 +37649,35 @@ x_62 = lean_ctor_get(x_20, 1); lean_inc(x_62); lean_inc(x_61); lean_dec(x_20); -x_63 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__1; +x_63 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__1; lean_inc(x_61); x_64 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_64, 0, x_61); lean_ctor_set(x_64, 1, x_63); -x_65 = l_myMacro____x40_Init_Notation___hyg_16039____closed__1; +x_65 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__1; lean_inc(x_61); x_66 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_66, 0, x_61); lean_ctor_set(x_66, 1, x_65); -x_67 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20069____closed__3; +x_67 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__letrec__1___closed__3; lean_inc(x_61); x_68 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_68, 0, x_61); lean_ctor_set(x_68, 1, x_67); -x_69 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_69 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_70 = lean_array_push(x_69, x_66); x_71 = lean_array_push(x_70, x_68); x_72 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_72, 0, x_10); lean_ctor_set(x_72, 1, x_71); -x_73 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_73 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; lean_inc(x_61); x_74 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_74, 0, x_61); lean_ctor_set(x_74, 1, x_73); -x_75 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_75 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_76 = lean_array_push(x_75, x_74); -x_77 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_77 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_78 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_78, 0, x_77); lean_ctor_set(x_78, 1, x_76); @@ -37686,27 +37686,27 @@ lean_inc(x_61); x_80 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_80, 0, x_61); lean_ctor_set(x_80, 1, x_79); -x_81 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_81 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; x_82 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_82, 0, x_61); lean_ctor_set(x_82, 1, x_81); x_83 = lean_array_push(x_75, x_82); -x_84 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_84 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_85 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_85, 0, x_84); lean_ctor_set(x_85, 1, x_83); x_86 = lean_array_push(x_69, x_80); x_87 = lean_array_push(x_86, x_85); -x_88 = l_myMacro____x40_Init_Notation___hyg_14042____closed__20; +x_88 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__20; x_89 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_89, 0, x_88); lean_ctor_set(x_89, 1, x_87); -x_90 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_90 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_91 = lean_array_push(x_90, x_72); x_92 = lean_array_push(x_91, x_15); x_93 = lean_array_push(x_92, x_78); x_94 = lean_array_push(x_93, x_89); -x_95 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20069____closed__2; +x_95 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__letrec__1___closed__2; x_96 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_96, 0, x_95); lean_ctor_set(x_96, 1, x_94); @@ -37800,7 +37800,7 @@ x_1 = l_Lean_Parser_Tactic_tacticRefine__lift_x27_____closed__6; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20260_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift_x27____1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -37824,7 +37824,7 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { @@ -37845,15 +37845,15 @@ lean_inc(x_12); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_12); lean_ctor_set(x_18, 1, x_17); -x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083____closed__3; +x_19 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1___closed__3; lean_inc(x_12); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_12); lean_ctor_set(x_20, 1, x_19); -x_21 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_21 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_22 = lean_array_push(x_21, x_20); x_23 = lean_array_push(x_22, x_9); -x_24 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083____closed__2; +x_24 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1___closed__2; x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); @@ -37863,14 +37863,14 @@ x_28 = l_Lean_Parser_Tactic_refine_x27___closed__2; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); -x_30 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_30 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; lean_inc(x_12); x_31 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_31, 0, x_12); lean_ctor_set(x_31, 1, x_30); -x_32 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_32 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_33 = lean_array_push(x_32, x_31); -x_34 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_34 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); @@ -37886,7 +37886,7 @@ x_41 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_41, 0, x_12); lean_ctor_set(x_41, 1, x_40); x_42 = lean_array_push(x_21, x_41); -x_43 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_43 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_44 = lean_array_push(x_42, x_43); x_45 = l_Lean_Parser_Tactic_rotateRight___closed__2; x_46 = lean_alloc_ctor(1, 2, 0); @@ -37903,12 +37903,12 @@ x_52 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_52, 0, x_34); lean_ctor_set(x_52, 1, x_51); x_53 = lean_array_push(x_32, x_52); -x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__4; +x_54 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__4; x_55 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_55, 0, x_54); lean_ctor_set(x_55, 1, x_53); x_56 = lean_array_push(x_32, x_55); -x_57 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17075____closed__1; +x_57 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticNext_______x3d_x3e___xbb__1___closed__1; x_58 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); @@ -37916,7 +37916,7 @@ x_59 = l_prec_x28___x29___closed__7; x_60 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_60, 0, x_12); lean_ctor_set(x_60, 1, x_59); -x_61 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_61 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_62 = lean_array_push(x_61, x_16); x_63 = lean_array_push(x_62, x_58); x_64 = lean_array_push(x_63, x_60); @@ -37952,7 +37952,7 @@ x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_34); lean_ctor_set(x_81, 1, x_80); x_82 = lean_array_push(x_32, x_81); -x_83 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_83 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_84 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_84, 0, x_83); lean_ctor_set(x_84, 1, x_82); @@ -37982,15 +37982,15 @@ lean_inc(x_85); x_92 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_92, 0, x_85); lean_ctor_set(x_92, 1, x_91); -x_93 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083____closed__3; +x_93 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1___closed__3; lean_inc(x_85); x_94 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_94, 0, x_85); lean_ctor_set(x_94, 1, x_93); -x_95 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_95 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_96 = lean_array_push(x_95, x_94); x_97 = lean_array_push(x_96, x_9); -x_98 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083____closed__2; +x_98 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1___closed__2; x_99 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_99, 0, x_98); lean_ctor_set(x_99, 1, x_97); @@ -38000,14 +38000,14 @@ x_102 = l_Lean_Parser_Tactic_refine_x27___closed__2; x_103 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_103, 0, x_102); lean_ctor_set(x_103, 1, x_101); -x_104 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_104 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; lean_inc(x_85); x_105 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_105, 0, x_85); lean_ctor_set(x_105, 1, x_104); -x_106 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_106 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_107 = lean_array_push(x_106, x_105); -x_108 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_108 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_109 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_109, 0, x_108); lean_ctor_set(x_109, 1, x_107); @@ -38023,7 +38023,7 @@ x_115 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_115, 0, x_85); lean_ctor_set(x_115, 1, x_114); x_116 = lean_array_push(x_95, x_115); -x_117 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_117 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_118 = lean_array_push(x_116, x_117); x_119 = l_Lean_Parser_Tactic_rotateRight___closed__2; x_120 = lean_alloc_ctor(1, 2, 0); @@ -38040,12 +38040,12 @@ x_126 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_126, 0, x_108); lean_ctor_set(x_126, 1, x_125); x_127 = lean_array_push(x_106, x_126); -x_128 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__4; +x_128 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__4; x_129 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_129, 0, x_128); lean_ctor_set(x_129, 1, x_127); x_130 = lean_array_push(x_106, x_129); -x_131 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17075____closed__1; +x_131 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticNext_______x3d_x3e___xbb__1___closed__1; x_132 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_132, 0, x_131); lean_ctor_set(x_132, 1, x_130); @@ -38053,7 +38053,7 @@ x_133 = l_prec_x28___x29___closed__7; x_134 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_134, 0, x_85); lean_ctor_set(x_134, 1, x_133); -x_135 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_135 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_136 = lean_array_push(x_135, x_90); x_137 = lean_array_push(x_136, x_132); x_138 = lean_array_push(x_137, x_134); @@ -38089,7 +38089,7 @@ x_155 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_155, 0, x_108); lean_ctor_set(x_155, 1, x_154); x_156 = lean_array_push(x_106, x_155); -x_157 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_157 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_158 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_158, 0, x_157); lean_ctor_set(x_158, 1, x_156); @@ -38175,7 +38175,7 @@ x_1 = l_Lean_Parser_Tactic_tacticHave_x27_____closed__6; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20477____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave_x27____1___closed__1() { _start: { lean_object* x_1; @@ -38183,7 +38183,7 @@ x_1 = lean_mk_string("refine_lift'"); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20477_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave_x27____1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -38207,30 +38207,30 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20477____closed__1; +x_13 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave_x27____1___closed__1; lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__2; +x_15 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__2; lean_inc(x_12); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_12); lean_ctor_set(x_16, 1, x_15); -x_17 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_17 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; lean_inc(x_12); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_12); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_19 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_20 = lean_array_push(x_19, x_18); -x_21 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_21 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_22 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_22, 0, x_21); lean_ctor_set(x_22, 1, x_20); @@ -38239,28 +38239,28 @@ lean_inc(x_12); x_24 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_24, 0, x_12); lean_ctor_set(x_24, 1, x_23); -x_25 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_25 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_12); lean_ctor_set(x_26, 1, x_25); x_27 = lean_array_push(x_19, x_26); -x_28 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_28 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); -x_30 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_30 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_31 = lean_array_push(x_30, x_24); x_32 = lean_array_push(x_31, x_29); -x_33 = l_myMacro____x40_Init_Notation___hyg_14042____closed__20; +x_33 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__20; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); -x_35 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_35 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_36 = lean_array_push(x_35, x_16); x_37 = lean_array_push(x_36, x_9); x_38 = lean_array_push(x_37, x_22); x_39 = lean_array_push(x_38, x_34); -x_40 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__3; +x_40 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__3; x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_39); @@ -38275,7 +38275,7 @@ x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_21); lean_ctor_set(x_47, 1, x_46); x_48 = lean_array_push(x_19, x_47); -x_49 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_49 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); @@ -38290,24 +38290,24 @@ x_52 = lean_ctor_get(x_10, 1); lean_inc(x_52); lean_inc(x_51); lean_dec(x_10); -x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20477____closed__1; +x_53 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave_x27____1___closed__1; lean_inc(x_51); x_54 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_54, 0, x_51); lean_ctor_set(x_54, 1, x_53); -x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__2; +x_55 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__2; lean_inc(x_51); x_56 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_56, 0, x_51); lean_ctor_set(x_56, 1, x_55); -x_57 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_57 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; lean_inc(x_51); x_58 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_58, 0, x_51); lean_ctor_set(x_58, 1, x_57); -x_59 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_59 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_60 = lean_array_push(x_59, x_58); -x_61 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_61 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_61); lean_ctor_set(x_62, 1, x_60); @@ -38316,28 +38316,28 @@ lean_inc(x_51); x_64 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_64, 0, x_51); lean_ctor_set(x_64, 1, x_63); -x_65 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_65 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; x_66 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_66, 0, x_51); lean_ctor_set(x_66, 1, x_65); x_67 = lean_array_push(x_59, x_66); -x_68 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_68 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_69 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_69, 0, x_68); lean_ctor_set(x_69, 1, x_67); -x_70 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_70 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_71 = lean_array_push(x_70, x_64); x_72 = lean_array_push(x_71, x_69); -x_73 = l_myMacro____x40_Init_Notation___hyg_14042____closed__20; +x_73 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__20; x_74 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_74, 0, x_73); lean_ctor_set(x_74, 1, x_72); -x_75 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_75 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_76 = lean_array_push(x_75, x_56); x_77 = lean_array_push(x_76, x_9); x_78 = lean_array_push(x_77, x_62); x_79 = lean_array_push(x_78, x_74); -x_80 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__3; +x_80 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__3; x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_80); lean_ctor_set(x_81, 1, x_79); @@ -38352,7 +38352,7 @@ x_87 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_87, 0, x_61); lean_ctor_set(x_87, 1, x_86); x_88 = lean_array_push(x_59, x_87); -x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_89 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_90 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_90, 0, x_89); lean_ctor_set(x_90, 1, x_88); @@ -38466,7 +38466,7 @@ x_1 = l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__8; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20631_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_x27_____x3a_x3d___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -38492,7 +38492,7 @@ x_9 = l_Lean_Syntax_getArg(x_1, x_8); x_10 = lean_unsigned_to_nat(3u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -38503,33 +38503,33 @@ lean_inc(x_14); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_14); lean_ctor_set(x_16, 1, x_15); -x_17 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_17 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_18 = lean_array_push(x_17, x_9); -x_19 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_19 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_20 = lean_array_push(x_18, x_19); -x_21 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_21 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_22 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_22, 0, x_21); lean_ctor_set(x_22, 1, x_20); -x_23 = l_myMacro____x40_Init_Notation___hyg_12931____closed__21; +x_23 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__21; lean_inc(x_14); x_24 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_24, 0, x_14); lean_ctor_set(x_24, 1, x_23); -x_25 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_25 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; lean_inc(x_14); x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_14); lean_ctor_set(x_26, 1, x_25); -x_27 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_27 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_29 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); x_31 = lean_array_push(x_17, x_24); x_32 = lean_array_push(x_31, x_30); -x_33 = l_myMacro____x40_Init_Notation___hyg_12931____closed__20; +x_33 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__20; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); @@ -38537,21 +38537,21 @@ x_35 = lean_array_push(x_27, x_34); x_36 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_36, 0, x_21); lean_ctor_set(x_36, 1, x_35); -x_37 = l_myMacro____x40_Init_Notation___hyg_14042____closed__8; +x_37 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__8; x_38 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_38, 0, x_14); lean_ctor_set(x_38, 1, x_37); -x_39 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_39 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_40 = lean_array_push(x_39, x_22); x_41 = lean_array_push(x_40, x_36); x_42 = lean_array_push(x_41, x_38); x_43 = lean_array_push(x_42, x_11); -x_44 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454____closed__3; +x_44 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1___closed__3; x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_44); lean_ctor_set(x_45, 1, x_43); x_46 = lean_array_push(x_27, x_45); -x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454____closed__1; +x_47 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1___closed__1; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -38566,7 +38566,7 @@ x_54 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_54, 0, x_21); lean_ctor_set(x_54, 1, x_53); x_55 = lean_array_push(x_27, x_54); -x_56 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_56 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_57 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_57, 0, x_56); lean_ctor_set(x_57, 1, x_55); @@ -38586,33 +38586,33 @@ lean_inc(x_58); x_61 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_61, 0, x_58); lean_ctor_set(x_61, 1, x_60); -x_62 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_62 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_63 = lean_array_push(x_62, x_9); -x_64 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_64 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_65 = lean_array_push(x_63, x_64); -x_66 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_66 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_67 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_67, 0, x_66); lean_ctor_set(x_67, 1, x_65); -x_68 = l_myMacro____x40_Init_Notation___hyg_12931____closed__21; +x_68 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__21; lean_inc(x_58); x_69 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_69, 0, x_58); lean_ctor_set(x_69, 1, x_68); -x_70 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_70 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; lean_inc(x_58); x_71 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_71, 0, x_58); lean_ctor_set(x_71, 1, x_70); -x_72 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_72 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_73 = lean_array_push(x_72, x_71); -x_74 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_74 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_75 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_75, 0, x_74); lean_ctor_set(x_75, 1, x_73); x_76 = lean_array_push(x_62, x_69); x_77 = lean_array_push(x_76, x_75); -x_78 = l_myMacro____x40_Init_Notation___hyg_12931____closed__20; +x_78 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__20; x_79 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_79, 0, x_78); lean_ctor_set(x_79, 1, x_77); @@ -38620,21 +38620,21 @@ x_80 = lean_array_push(x_72, x_79); x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_66); lean_ctor_set(x_81, 1, x_80); -x_82 = l_myMacro____x40_Init_Notation___hyg_14042____closed__8; +x_82 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__8; x_83 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_83, 0, x_58); lean_ctor_set(x_83, 1, x_82); -x_84 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_84 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_85 = lean_array_push(x_84, x_67); x_86 = lean_array_push(x_85, x_81); x_87 = lean_array_push(x_86, x_83); x_88 = lean_array_push(x_87, x_11); -x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454____closed__3; +x_89 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1___closed__3; x_90 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_90, 0, x_89); lean_ctor_set(x_90, 1, x_88); x_91 = lean_array_push(x_72, x_90); -x_92 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454____closed__1; +x_92 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1___closed__1; x_93 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_93, 0, x_92); lean_ctor_set(x_93, 1, x_91); @@ -38649,7 +38649,7 @@ x_99 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_99, 0, x_66); lean_ctor_set(x_99, 1, x_98); x_100 = lean_array_push(x_72, x_99); -x_101 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_101 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_102 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_102, 0, x_101); lean_ctor_set(x_102, 1, x_100); @@ -38735,7 +38735,7 @@ x_1 = l_Lean_Parser_Tactic_tacticLet_x27_____closed__6; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20806_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticLet_x27____1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -38759,30 +38759,30 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20477____closed__1; +x_13 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave_x27____1___closed__1; lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); -x_15 = l_myMacro____x40_Init_Notation___hyg_16039____closed__1; +x_15 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__1; lean_inc(x_12); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_12); lean_ctor_set(x_16, 1, x_15); -x_17 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_17 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; lean_inc(x_12); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_12); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_19 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_20 = lean_array_push(x_19, x_18); -x_21 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_21 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_22 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_22, 0, x_21); lean_ctor_set(x_22, 1, x_20); @@ -38791,28 +38791,28 @@ lean_inc(x_12); x_24 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_24, 0, x_12); lean_ctor_set(x_24, 1, x_23); -x_25 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_25 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_12); lean_ctor_set(x_26, 1, x_25); x_27 = lean_array_push(x_19, x_26); -x_28 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_28 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); -x_30 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_30 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_31 = lean_array_push(x_30, x_24); x_32 = lean_array_push(x_31, x_29); -x_33 = l_myMacro____x40_Init_Notation___hyg_14042____closed__20; +x_33 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__20; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); -x_35 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_35 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_36 = lean_array_push(x_35, x_16); x_37 = lean_array_push(x_36, x_9); x_38 = lean_array_push(x_37, x_22); x_39 = lean_array_push(x_38, x_34); -x_40 = l_myMacro____x40_Init_Notation___hyg_16039____closed__2; +x_40 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__2; x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_39); @@ -38827,7 +38827,7 @@ x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_21); lean_ctor_set(x_47, 1, x_46); x_48 = lean_array_push(x_19, x_47); -x_49 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_49 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); @@ -38842,24 +38842,24 @@ x_52 = lean_ctor_get(x_10, 1); lean_inc(x_52); lean_inc(x_51); lean_dec(x_10); -x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20477____closed__1; +x_53 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave_x27____1___closed__1; lean_inc(x_51); x_54 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_54, 0, x_51); lean_ctor_set(x_54, 1, x_53); -x_55 = l_myMacro____x40_Init_Notation___hyg_16039____closed__1; +x_55 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__1; lean_inc(x_51); x_56 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_56, 0, x_51); lean_ctor_set(x_56, 1, x_55); -x_57 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_57 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; lean_inc(x_51); x_58 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_58, 0, x_51); lean_ctor_set(x_58, 1, x_57); -x_59 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_59 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_60 = lean_array_push(x_59, x_58); -x_61 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_61 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_61); lean_ctor_set(x_62, 1, x_60); @@ -38868,28 +38868,28 @@ lean_inc(x_51); x_64 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_64, 0, x_51); lean_ctor_set(x_64, 1, x_63); -x_65 = l_myMacro____x40_Init_Notation___hyg_12931____closed__18; +x_65 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18; x_66 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_66, 0, x_51); lean_ctor_set(x_66, 1, x_65); x_67 = lean_array_push(x_59, x_66); -x_68 = l_myMacro____x40_Init_Notation___hyg_12931____closed__17; +x_68 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17; x_69 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_69, 0, x_68); lean_ctor_set(x_69, 1, x_67); -x_70 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_70 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_71 = lean_array_push(x_70, x_64); x_72 = lean_array_push(x_71, x_69); -x_73 = l_myMacro____x40_Init_Notation___hyg_14042____closed__20; +x_73 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__20; x_74 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_74, 0, x_73); lean_ctor_set(x_74, 1, x_72); -x_75 = l_myMacro____x40_Init_Notation___hyg_1098____closed__9; +x_75 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9; x_76 = lean_array_push(x_75, x_56); x_77 = lean_array_push(x_76, x_9); x_78 = lean_array_push(x_77, x_62); x_79 = lean_array_push(x_78, x_74); -x_80 = l_myMacro____x40_Init_Notation___hyg_16039____closed__2; +x_80 = l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__2; x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_80); lean_ctor_set(x_81, 1, x_79); @@ -38904,7 +38904,7 @@ x_87 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_87, 0, x_61); lean_ctor_set(x_87, 1, x_86); x_88 = lean_array_push(x_59, x_87); -x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_89 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_90 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_90, 0, x_89); lean_ctor_set(x_90, 1, x_88); @@ -38974,7 +38974,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1300____closed__4; +x_1 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4; x_2 = l_Lean_Parser_Tactic_inductionAlt___closed__6; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -39012,7 +39012,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_1400____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__6; x_2 = l_Lean_Parser_Tactic_inductionAlt___closed__9; x_3 = l_Lean_Parser_Tactic_intros___closed__5; x_4 = lean_alloc_ctor(2, 3, 0); @@ -39069,7 +39069,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_12931____closed__16; +x_2 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__16; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -39089,7 +39089,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_Notation___hyg_14042____closed__19; +x_2 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__19; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -39108,7 +39108,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt___closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_1400____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__6; x_2 = l_Lean_Parser_Tactic_inductionAlt___closed__17; x_3 = l_Lean_Parser_Tactic_case___closed__11; x_4 = lean_alloc_ctor(2, 3, 0); @@ -39122,7 +39122,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_1400____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__6; x_2 = l_Lean_Parser_Tactic_inductionAlt___closed__15; x_3 = l_Lean_Parser_Tactic_inductionAlt___closed__18; x_4 = lean_alloc_ctor(2, 3, 0); @@ -39208,7 +39208,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1300____closed__4; +x_1 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4; x_2 = l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__7; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -39248,7 +39248,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_inductionAlts___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1098____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__6; x_2 = l_Lean_Parser_Tactic_inductionAlts___closed__7; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -39347,7 +39347,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = l_termDepIfThenElse___closed__14; -x_2 = l_myMacro____x40_Init_Notation___hyg_1400____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__7; x_3 = l_term_x5b___x5d___closed__6; x_4 = 0; x_5 = lean_alloc_ctor(11, 3, 1); @@ -39408,7 +39408,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_induction___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1300____closed__4; +x_1 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4; x_2 = l_Lean_Parser_Tactic_induction___closed__9; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -39452,7 +39452,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_induction___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1098____closed__6; +x_1 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__6; x_2 = l_termDepIfThenElse___closed__9; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -39478,7 +39478,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_induction___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1300____closed__4; +x_1 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4; x_2 = l_Lean_Parser_Tactic_induction___closed__15; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -39504,7 +39504,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_induction___closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1300____closed__4; +x_1 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4; x_2 = l_Lean_Parser_Tactic_inductionAlts; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -39596,7 +39596,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_generalizeArg___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1300____closed__4; +x_1 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4; x_2 = l_Lean_Parser_Tactic_generalizeArg___closed__4; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -39711,7 +39711,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = l_Lean_Parser_Tactic_generalizeArg; -x_2 = l_myMacro____x40_Init_Notation___hyg_1400____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__7; x_3 = l_term_x5b___x5d___closed__6; x_4 = 0; x_5 = lean_alloc_ctor(11, 3, 1); @@ -39855,7 +39855,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = l_Lean_Parser_Tactic_casesTarget; -x_2 = l_myMacro____x40_Init_Notation___hyg_1400____closed__7; +x_2 = l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__7; x_3 = l_term_x5b___x5d___closed__6; x_4 = 0; x_5 = lean_alloc_ctor(11, 3, 1); @@ -40152,7 +40152,7 @@ x_1 = l_Lean_Parser_Tactic_tacticRepeat_____closed__6; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21226____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRepeat____1___closed__1() { _start: { lean_object* x_1; @@ -40160,7 +40160,7 @@ x_1 = lean_mk_string("repeat"); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21226_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRepeat____1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -40184,7 +40184,7 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); -x_10 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17075____closed__1; +x_10 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticNext_______x3d_x3e___xbb__1___closed__1; lean_inc(x_9); x_11 = l_Lean_Syntax_isOfKind(x_9, x_10); if (x_11 == 0) @@ -40204,7 +40204,7 @@ lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; x_14 = lean_unsigned_to_nat(0u); x_15 = l_Lean_Syntax_getArg(x_9, x_14); lean_dec(x_9); -x_16 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_16 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_17 = !lean_is_exclusive(x_16); if (x_17 == 0) { @@ -40215,7 +40215,7 @@ lean_inc(x_18); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_18); lean_ctor_set(x_20, 1, x_19); -x_21 = l_myMacro____x40_Init_Notation___hyg_14726____closed__11; +x_21 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__11; lean_inc(x_18); x_22 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_22, 0, x_18); @@ -40225,7 +40225,7 @@ lean_inc(x_18); x_24 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_24, 0, x_18); lean_ctor_set(x_24, 1, x_23); -x_25 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_25 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_26 = lean_array_push(x_25, x_15); x_27 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_27, 0, x_10); @@ -40235,7 +40235,7 @@ lean_inc(x_18); x_29 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_29, 0, x_18); lean_ctor_set(x_29, 1, x_28); -x_30 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_30 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_31 = lean_array_push(x_30, x_24); lean_inc(x_27); x_32 = lean_array_push(x_31, x_27); @@ -40244,24 +40244,24 @@ x_34 = l_Lean_Parser_Tactic_paren___closed__1; x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); -x_36 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_36 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; lean_inc(x_18); x_37 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_37, 0, x_18); lean_ctor_set(x_37, 1, x_36); x_38 = lean_array_push(x_25, x_37); -x_39 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_39 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); -x_41 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_41 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_42 = lean_array_push(x_41, x_35); x_43 = lean_array_push(x_42, x_40); x_44 = l_Lean_Parser_Tactic_first___closed__8; x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_44); lean_ctor_set(x_45, 1, x_43); -x_46 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21226____closed__1; +x_46 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRepeat____1___closed__1; lean_inc(x_18); x_47 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_47, 0, x_18); @@ -40272,7 +40272,7 @@ x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_4); lean_ctor_set(x_50, 1, x_49); x_51 = lean_array_push(x_41, x_50); -x_52 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_52 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_53 = lean_array_push(x_51, x_52); x_54 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_54, 0, x_44); @@ -40283,7 +40283,7 @@ x_57 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_57, 0, x_39); lean_ctor_set(x_57, 1, x_56); x_58 = lean_array_push(x_25, x_57); -x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__4; +x_59 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__4; x_60 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_60, 0, x_59); lean_ctor_set(x_60, 1, x_58); @@ -40354,7 +40354,7 @@ lean_inc(x_89); x_92 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_92, 0, x_89); lean_ctor_set(x_92, 1, x_91); -x_93 = l_myMacro____x40_Init_Notation___hyg_14726____closed__11; +x_93 = l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__11; lean_inc(x_89); x_94 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_94, 0, x_89); @@ -40364,7 +40364,7 @@ lean_inc(x_89); x_96 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_96, 0, x_89); lean_ctor_set(x_96, 1, x_95); -x_97 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_97 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_98 = lean_array_push(x_97, x_15); x_99 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_99, 0, x_10); @@ -40374,7 +40374,7 @@ lean_inc(x_89); x_101 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_101, 0, x_89); lean_ctor_set(x_101, 1, x_100); -x_102 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_102 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_103 = lean_array_push(x_102, x_96); lean_inc(x_99); x_104 = lean_array_push(x_103, x_99); @@ -40383,24 +40383,24 @@ x_106 = l_Lean_Parser_Tactic_paren___closed__1; x_107 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_107, 0, x_106); lean_ctor_set(x_107, 1, x_105); -x_108 = l_myMacro____x40_Init_Notation___hyg_14042____closed__9; +x_108 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9; lean_inc(x_89); x_109 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_109, 0, x_89); lean_ctor_set(x_109, 1, x_108); x_110 = lean_array_push(x_97, x_109); -x_111 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_111 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_112 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_112, 0, x_111); lean_ctor_set(x_112, 1, x_110); -x_113 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_113 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_114 = lean_array_push(x_113, x_107); x_115 = lean_array_push(x_114, x_112); x_116 = l_Lean_Parser_Tactic_first___closed__8; x_117 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_117, 0, x_116); lean_ctor_set(x_117, 1, x_115); -x_118 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21226____closed__1; +x_118 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRepeat____1___closed__1; lean_inc(x_89); x_119 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_119, 0, x_89); @@ -40411,7 +40411,7 @@ x_122 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_122, 0, x_4); lean_ctor_set(x_122, 1, x_121); x_123 = lean_array_push(x_113, x_122); -x_124 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_124 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_125 = lean_array_push(x_123, x_124); x_126 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_126, 0, x_116); @@ -40422,7 +40422,7 @@ x_129 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_129, 0, x_111); lean_ctor_set(x_129, 1, x_128); x_130 = lean_array_push(x_97, x_129); -x_131 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__4; +x_131 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__4; x_132 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_132, 0, x_131); lean_ctor_set(x_132, 1, x_130); @@ -40602,7 +40602,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_split___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1300____closed__4; +x_1 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4; x_2 = l_Lean_Parser_Tactic_split___closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -40734,7 +40734,7 @@ x_1 = l_Lean_Parser_Tactic_specialize___closed__6; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21508_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -40753,7 +40753,7 @@ return x_7; else { lean_object* x_8; uint8_t x_9; -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { @@ -40763,7 +40763,7 @@ x_11 = l_Lean_Parser_Tactic_assumption___closed__1; x_12 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); -x_13 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_13 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_14 = lean_array_push(x_13, x_12); x_15 = l_Lean_Parser_Tactic_assumption___closed__2; x_16 = lean_alloc_ctor(1, 2, 0); @@ -40784,7 +40784,7 @@ x_19 = l_Lean_Parser_Tactic_assumption___closed__1; 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_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_21 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_22 = lean_array_push(x_21, x_20); x_23 = l_Lean_Parser_Tactic_assumption___closed__2; x_24 = lean_alloc_ctor(1, 2, 0); @@ -40798,7 +40798,7 @@ return x_25; } } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21576_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -40817,7 +40817,7 @@ return x_7; else { lean_object* x_8; uint8_t x_9; -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { @@ -40827,7 +40827,7 @@ x_11 = l_Lean_Parser_Tactic_tacticRfl___closed__3; x_12 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); -x_13 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_13 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_14 = lean_array_push(x_13, x_12); x_15 = l_Lean_Parser_Tactic_tacticRfl___closed__2; x_16 = lean_alloc_ctor(1, 2, 0); @@ -40848,7 +40848,7 @@ x_19 = l_Lean_Parser_Tactic_tacticRfl___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_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_21 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_22 = lean_array_push(x_21, x_20); x_23 = l_Lean_Parser_Tactic_tacticRfl___closed__2; x_24 = lean_alloc_ctor(1, 2, 0); @@ -40862,7 +40862,7 @@ return x_25; } } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21644_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -40881,7 +40881,7 @@ return x_7; else { lean_object* x_8; uint8_t x_9; -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { @@ -40891,7 +40891,7 @@ x_11 = l_Lean_Parser_Tactic_contradiction___closed__1; x_12 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); -x_13 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_13 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_14 = lean_array_push(x_13, x_12); x_15 = l_Lean_Parser_Tactic_contradiction___closed__2; x_16 = lean_alloc_ctor(1, 2, 0); @@ -40912,7 +40912,7 @@ x_19 = l_Lean_Parser_Tactic_contradiction___closed__1; 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_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_21 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_22 = lean_array_push(x_21, x_20); x_23 = l_Lean_Parser_Tactic_contradiction___closed__2; x_24 = lean_alloc_ctor(1, 2, 0); @@ -40926,7 +40926,7 @@ return x_25; } } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__1() { _start: { lean_object* x_1; @@ -40934,22 +40934,22 @@ x_1 = lean_mk_string("True.intro"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__1; +x_1 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__1; +x_1 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__2; +x_3 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -40957,7 +40957,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__4() { _start: { lean_object* x_1; @@ -40965,51 +40965,51 @@ x_1 = lean_mk_string("True"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__4; +x_2 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__5; +x_1 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__5; x_2 = l_Lean_Parser_Tactic_intro___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__6; +x_2 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__6; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__8() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__7; +x_2 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__7; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -41029,7 +41029,7 @@ else { lean_object* x_8; uint8_t x_9; lean_inc(x_2); -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { @@ -41045,16 +41045,16 @@ lean_inc(x_10); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_10); lean_ctor_set(x_14, 1, x_13); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__6; +x_15 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__6; x_16 = l_Lean_addMacroScope(x_12, x_15, x_11); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__3; -x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__8; +x_17 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__3; +x_18 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__8; x_19 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_19, 0, x_10); lean_ctor_set(x_19, 1, x_17); lean_ctor_set(x_19, 2, x_16); lean_ctor_set(x_19, 3, x_18); -x_20 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_20 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_21 = lean_array_push(x_20, x_14); x_22 = lean_array_push(x_21, x_19); x_23 = l_Lean_Parser_Tactic_apply___closed__2; @@ -41082,16 +41082,16 @@ lean_inc(x_25); x_30 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_30, 0, x_25); lean_ctor_set(x_30, 1, x_29); -x_31 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__6; +x_31 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__6; x_32 = l_Lean_addMacroScope(x_28, x_31, x_27); -x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__3; -x_34 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__8; +x_33 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__3; +x_34 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__8; x_35 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_35, 0, x_25); lean_ctor_set(x_35, 1, x_33); lean_ctor_set(x_35, 2, x_32); lean_ctor_set(x_35, 3, x_34); -x_36 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_36 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_37 = lean_array_push(x_36, x_30); x_38 = lean_array_push(x_37, x_35); x_39 = l_Lean_Parser_Tactic_apply___closed__2; @@ -41106,7 +41106,7 @@ return x_41; } } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__1() { _start: { lean_object* x_1; @@ -41114,22 +41114,22 @@ x_1 = lean_mk_string("And.intro"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__1; +x_1 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__1; +x_1 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__2; +x_3 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -41137,41 +41137,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_10303____closed__4; +x_1 = l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__4; x_2 = l_Lean_Parser_Tactic_intro___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__4; +x_2 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__4; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__5; +x_2 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__7() { _start: { lean_object* x_1; @@ -41179,7 +41179,7 @@ x_1 = lean_mk_string("<;>"); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -41199,7 +41199,7 @@ else { lean_object* x_8; uint8_t x_9; lean_inc(x_2); -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { @@ -41215,24 +41215,24 @@ lean_inc(x_10); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_10); lean_ctor_set(x_14, 1, x_13); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__4; +x_15 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__4; x_16 = l_Lean_addMacroScope(x_12, x_15, x_11); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__3; -x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__6; +x_17 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__3; +x_18 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__6; lean_inc(x_10); x_19 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_19, 0, x_10); lean_ctor_set(x_19, 1, x_17); lean_ctor_set(x_19, 2, x_16); lean_ctor_set(x_19, 3, x_18); -x_20 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_20 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_21 = lean_array_push(x_20, x_14); x_22 = lean_array_push(x_21, x_19); x_23 = l_Lean_Parser_Tactic_apply___closed__2; x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); -x_25 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__7; +x_25 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__7; lean_inc(x_10); x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_10); @@ -41241,12 +41241,12 @@ x_27 = l_Lean_Parser_Tactic_tacticTrivial___closed__3; x_28 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_28, 0, x_10); lean_ctor_set(x_28, 1, x_27); -x_29 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_29 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_30 = lean_array_push(x_29, x_28); x_31 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_31, 0, x_4); lean_ctor_set(x_31, 1, x_30); -x_32 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_32 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_33 = lean_array_push(x_32, x_24); x_34 = lean_array_push(x_33, x_26); x_35 = lean_array_push(x_34, x_31); @@ -41275,24 +41275,24 @@ lean_inc(x_38); x_43 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_43, 0, x_38); lean_ctor_set(x_43, 1, x_42); -x_44 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__4; +x_44 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__4; x_45 = l_Lean_addMacroScope(x_41, x_44, x_40); -x_46 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__3; -x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__6; +x_46 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__3; +x_47 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__6; lean_inc(x_38); x_48 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_48, 0, x_38); lean_ctor_set(x_48, 1, x_46); lean_ctor_set(x_48, 2, x_45); lean_ctor_set(x_48, 3, x_47); -x_49 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_49 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_50 = lean_array_push(x_49, x_43); x_51 = lean_array_push(x_50, x_48); x_52 = l_Lean_Parser_Tactic_apply___closed__2; x_53 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_53, 0, x_52); lean_ctor_set(x_53, 1, x_51); -x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__7; +x_54 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__7; lean_inc(x_38); x_55 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_55, 0, x_38); @@ -41301,12 +41301,12 @@ x_56 = l_Lean_Parser_Tactic_tacticTrivial___closed__3; x_57 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_57, 0, x_38); lean_ctor_set(x_57, 1, x_56); -x_58 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_58 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_59 = lean_array_push(x_58, x_57); x_60 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_60, 0, x_4); lean_ctor_set(x_60, 1, x_59); -x_61 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_61 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_62 = lean_array_push(x_61, x_53); x_63 = lean_array_push(x_62, x_55); x_64 = lean_array_push(x_63, x_60); @@ -41396,7 +41396,7 @@ x_1 = l_Lean_Parser_Tactic_tacticUnhygienic_____closed__6; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__1() { _start: { lean_object* x_1; @@ -41404,17 +41404,17 @@ x_1 = lean_mk_string("set_option"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_intro___closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__1; +x_2 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__3() { _start: { lean_object* x_1; @@ -41422,22 +41422,22 @@ x_1 = lean_mk_string("tactic.hygienic"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__3; +x_1 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__3; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__3; +x_1 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__4; +x_3 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__4; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -41445,7 +41445,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__6() { _start: { lean_object* x_1; @@ -41453,17 +41453,17 @@ x_1 = lean_mk_string("hygienic"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__6; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__6; +x_2 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__8() { +static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__8() { _start: { lean_object* x_1; @@ -41471,7 +41471,7 @@ x_1 = lean_mk_string("in"); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -41496,7 +41496,7 @@ x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); lean_inc(x_2); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { @@ -41507,48 +41507,48 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_2, 1); lean_inc(x_14); lean_dec(x_2); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__1; +x_15 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__1; lean_inc(x_12); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_12); lean_ctor_set(x_16, 1, x_15); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__7; +x_17 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__7; x_18 = l_Lean_addMacroScope(x_14, x_17, x_13); x_19 = lean_box(0); -x_20 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__5; +x_20 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__5; lean_inc(x_12); x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_12); lean_ctor_set(x_21, 1, x_20); lean_ctor_set(x_21, 2, x_18); lean_ctor_set(x_21, 3, x_19); -x_22 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__10; +x_22 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__10; lean_inc(x_12); x_23 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_23, 0, x_12); lean_ctor_set(x_23, 1, x_22); -x_24 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__8; +x_24 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__8; x_25 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_25, 0, x_12); lean_ctor_set(x_25, 1, x_24); -x_26 = l_myMacro____x40_Init_Notation___hyg_14042____closed__23; +x_26 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__23; x_27 = lean_array_push(x_26, x_16); x_28 = lean_array_push(x_27, x_21); x_29 = lean_array_push(x_28, x_23); x_30 = lean_array_push(x_29, x_25); x_31 = lean_array_push(x_30, x_9); -x_32 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__2; +x_32 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__2; x_33 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_33, 0, x_32); lean_ctor_set(x_33, 1, x_31); -x_34 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_34 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_35 = lean_array_push(x_34, x_33); -x_36 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_36 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); x_38 = lean_array_push(x_34, x_37); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_39 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); @@ -41568,48 +41568,48 @@ lean_inc(x_43); x_44 = lean_ctor_get(x_2, 1); lean_inc(x_44); lean_dec(x_2); -x_45 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__1; +x_45 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__1; lean_inc(x_41); x_46 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_46, 0, x_41); lean_ctor_set(x_46, 1, x_45); -x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__7; +x_47 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__7; x_48 = l_Lean_addMacroScope(x_44, x_47, x_43); x_49 = lean_box(0); -x_50 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__5; +x_50 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__5; lean_inc(x_41); x_51 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_51, 0, x_41); lean_ctor_set(x_51, 1, x_50); lean_ctor_set(x_51, 2, x_48); lean_ctor_set(x_51, 3, x_49); -x_52 = l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__10; +x_52 = l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__10; lean_inc(x_41); x_53 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_53, 0, x_41); lean_ctor_set(x_53, 1, x_52); -x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__8; +x_54 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__8; x_55 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_55, 0, x_41); lean_ctor_set(x_55, 1, x_54); -x_56 = l_myMacro____x40_Init_Notation___hyg_14042____closed__23; +x_56 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__23; x_57 = lean_array_push(x_56, x_46); x_58 = lean_array_push(x_57, x_51); x_59 = lean_array_push(x_58, x_53); x_60 = lean_array_push(x_59, x_55); x_61 = lean_array_push(x_60, x_9); -x_62 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__2; +x_62 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__2; x_63 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_63, 0, x_62); lean_ctor_set(x_63, 1, x_61); -x_64 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_64 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_65 = lean_array_push(x_64, x_63); -x_66 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_66 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_67 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_67, 0, x_66); lean_ctor_set(x_67, 1, x_65); x_68 = lean_array_push(x_64, x_67); -x_69 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2; +x_69 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2; x_70 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_70, 0, x_69); lean_ctor_set(x_70, 1, x_68); @@ -41679,7 +41679,7 @@ static lean_object* _init_l_Lean_Parser_Attr_simp___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_1300____closed__4; +x_1 = l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4; x_2 = l_prio_x28___x29___closed__3; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -41827,7 +41827,7 @@ x_1 = l_term_u2039___u203a___closed__9; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_22078____closed__1() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_u2039___u203a_xbb__1___closed__1() { _start: { lean_object* x_1; @@ -41835,17 +41835,17 @@ x_1 = lean_mk_string("byTactic"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_22078____closed__2() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_u2039___u203a_xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2293____closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_22078____closed__1; +x_1 = l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2; +x_2 = l___aux__Init__Notation______macroRules___xabterm_u2039___u203a_xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_22078____closed__3() { +static lean_object* _init_l___aux__Init__Notation______macroRules___xabterm_u2039___u203a_xbb__1___closed__3() { _start: { lean_object* x_1; @@ -41853,7 +41853,7 @@ x_1 = lean_mk_string("by"); return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_Notation___hyg_22078_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__Notation______macroRules___xabterm_u2039___u203a_xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -41877,7 +41877,7 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { @@ -41888,7 +41888,7 @@ lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); -x_15 = l_myMacro____x40_Init_Notation___hyg_22078____closed__3; +x_15 = l___aux__Init__Notation______macroRules___xabterm_u2039___u203a_xbb__1___closed__3; lean_inc(x_12); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_12); @@ -41898,49 +41898,49 @@ lean_inc(x_12); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_12); lean_ctor_set(x_18, 1, x_17); -x_19 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_19 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_20 = lean_array_push(x_19, x_18); x_21 = l_Lean_Parser_Tactic_assumption___closed__2; x_22 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_22, 0, x_21); lean_ctor_set(x_22, 1, x_20); -x_23 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_23 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_24 = lean_array_push(x_23, x_22); -x_25 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_25 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_26 = lean_array_push(x_24, x_25); x_27 = l_Lean_Parser_Tactic_first___closed__8; x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_26); x_29 = lean_array_push(x_19, x_28); -x_30 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_30 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_31 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); x_32 = lean_array_push(x_19, x_31); -x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__4; +x_33 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__4; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); x_35 = lean_array_push(x_19, x_34); -x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17075____closed__1; +x_36 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticNext_______x3d_x3e___xbb__1___closed__1; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); x_38 = lean_array_push(x_23, x_16); x_39 = lean_array_push(x_38, x_37); -x_40 = l_myMacro____x40_Init_Notation___hyg_22078____closed__2; +x_40 = l___aux__Init__Notation______macroRules___xabterm_u2039___u203a_xbb__1___closed__2; x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_39); -x_42 = l_myMacro____x40_Init_Notation___hyg_12931____closed__21; +x_42 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__21; lean_inc(x_12); x_43 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_43, 0, x_12); lean_ctor_set(x_43, 1, x_42); x_44 = lean_array_push(x_23, x_43); x_45 = lean_array_push(x_44, x_9); -x_46 = l_myMacro____x40_Init_Notation___hyg_15580____closed__8; +x_46 = l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__8; x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_46); lean_ctor_set(x_47, 1, x_45); @@ -41957,11 +41957,11 @@ x_53 = l_prec_x28___x29___closed__7; x_54 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_54, 0, x_12); lean_ctor_set(x_54, 1, x_53); -x_55 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_55 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_56 = lean_array_push(x_55, x_14); x_57 = lean_array_push(x_56, x_52); x_58 = lean_array_push(x_57, x_54); -x_59 = l_myMacro____x40_Init_Notation___hyg_14042____closed__22; +x_59 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__22; x_60 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_60, 0, x_59); lean_ctor_set(x_60, 1, x_58); @@ -41981,7 +41981,7 @@ lean_inc(x_61); x_64 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_64, 0, x_61); lean_ctor_set(x_64, 1, x_63); -x_65 = l_myMacro____x40_Init_Notation___hyg_22078____closed__3; +x_65 = l___aux__Init__Notation______macroRules___xabterm_u2039___u203a_xbb__1___closed__3; lean_inc(x_61); x_66 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_66, 0, x_61); @@ -41991,49 +41991,49 @@ lean_inc(x_61); x_68 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_68, 0, x_61); lean_ctor_set(x_68, 1, x_67); -x_69 = l_myMacro____x40_Init_Notation___hyg_73____closed__4; +x_69 = l___aux__Init__Notation______macroRules__precMax__1___closed__4; x_70 = lean_array_push(x_69, x_68); x_71 = l_Lean_Parser_Tactic_assumption___closed__2; x_72 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_72, 0, x_71); lean_ctor_set(x_72, 1, x_70); -x_73 = l_myMacro____x40_Init_Notation___hyg_1534____closed__10; +x_73 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10; x_74 = lean_array_push(x_73, x_72); -x_75 = l_myMacro____x40_Init_Notation___hyg_1534____closed__12; +x_75 = l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12; x_76 = lean_array_push(x_74, x_75); x_77 = l_Lean_Parser_Tactic_first___closed__8; 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 = lean_array_push(x_69, x_78); -x_80 = l_myMacro____x40_Init_Notation___hyg_1098____closed__8; +x_80 = l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8; x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_80); lean_ctor_set(x_81, 1, x_79); x_82 = lean_array_push(x_69, x_81); -x_83 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__4; +x_83 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__4; 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_array_push(x_69, x_84); -x_86 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17075____closed__1; +x_86 = l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticNext_______x3d_x3e___xbb__1___closed__1; x_87 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_87, 0, x_86); lean_ctor_set(x_87, 1, x_85); x_88 = lean_array_push(x_73, x_66); x_89 = lean_array_push(x_88, x_87); -x_90 = l_myMacro____x40_Init_Notation___hyg_22078____closed__2; +x_90 = l___aux__Init__Notation______macroRules___xabterm_u2039___u203a_xbb__1___closed__2; x_91 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_91, 0, x_90); lean_ctor_set(x_91, 1, x_89); -x_92 = l_myMacro____x40_Init_Notation___hyg_12931____closed__21; +x_92 = l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__21; lean_inc(x_61); x_93 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_93, 0, x_61); lean_ctor_set(x_93, 1, x_92); x_94 = lean_array_push(x_73, x_93); x_95 = lean_array_push(x_94, x_9); -x_96 = l_myMacro____x40_Init_Notation___hyg_15580____closed__8; +x_96 = l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__8; x_97 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_97, 0, x_96); lean_ctor_set(x_97, 1, x_95); @@ -42050,11 +42050,11 @@ x_103 = l_prec_x28___x29___closed__7; x_104 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_104, 0, x_61); lean_ctor_set(x_104, 1, x_103); -x_105 = l_unexpand____x40_Init_Notation___hyg_2276____closed__3; +x_105 = l___aux__Init__Notation______unexpand__Function__comp__1___closed__3; x_106 = lean_array_push(x_105, x_64); x_107 = lean_array_push(x_106, x_102); x_108 = lean_array_push(x_107, x_104); -x_109 = l_myMacro____x40_Init_Notation___hyg_14042____closed__22; +x_109 = l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__22; x_110 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_110, 0, x_109); lean_ctor_set(x_110, 1, x_108); @@ -42163,14 +42163,14 @@ l_precMax___closed__5 = _init_l_precMax___closed__5(); lean_mark_persistent(l_precMax___closed__5); l_precMax = _init_l_precMax(); lean_mark_persistent(l_precMax); -l_myMacro____x40_Init_Notation___hyg_73____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_73____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_73____closed__1); -l_myMacro____x40_Init_Notation___hyg_73____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_73____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_73____closed__2); -l_myMacro____x40_Init_Notation___hyg_73____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_73____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_73____closed__3); -l_myMacro____x40_Init_Notation___hyg_73____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_73____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_73____closed__4); +l___aux__Init__Notation______macroRules__precMax__1___closed__1 = _init_l___aux__Init__Notation______macroRules__precMax__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__precMax__1___closed__1); +l___aux__Init__Notation______macroRules__precMax__1___closed__2 = _init_l___aux__Init__Notation______macroRules__precMax__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__precMax__1___closed__2); +l___aux__Init__Notation______macroRules__precMax__1___closed__3 = _init_l___aux__Init__Notation______macroRules__precMax__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__precMax__1___closed__3); +l___aux__Init__Notation______macroRules__precMax__1___closed__4 = _init_l___aux__Init__Notation______macroRules__precMax__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__precMax__1___closed__4); l_precArg___closed__1 = _init_l_precArg___closed__1(); lean_mark_persistent(l_precArg___closed__1); l_precArg___closed__2 = _init_l_precArg___closed__2(); @@ -42183,8 +42183,8 @@ l_precArg___closed__5 = _init_l_precArg___closed__5(); lean_mark_persistent(l_precArg___closed__5); l_precArg = _init_l_precArg(); lean_mark_persistent(l_precArg); -l_myMacro____x40_Init_Notation___hyg_156____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_156____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_156____closed__1); +l___aux__Init__Notation______macroRules__precArg__1___closed__1 = _init_l___aux__Init__Notation______macroRules__precArg__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__precArg__1___closed__1); l_precLead___closed__1 = _init_l_precLead___closed__1(); lean_mark_persistent(l_precLead___closed__1); l_precLead___closed__2 = _init_l_precLead___closed__2(); @@ -42197,8 +42197,8 @@ l_precLead___closed__5 = _init_l_precLead___closed__5(); lean_mark_persistent(l_precLead___closed__5); l_precLead = _init_l_precLead(); lean_mark_persistent(l_precLead); -l_myMacro____x40_Init_Notation___hyg_239____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_239____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_239____closed__1); +l___aux__Init__Notation______macroRules__precLead__1___closed__1 = _init_l___aux__Init__Notation______macroRules__precLead__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__precLead__1___closed__1); l_prec_x28___x29___closed__1 = _init_l_prec_x28___x29___closed__1(); lean_mark_persistent(l_prec_x28___x29___closed__1); l_prec_x28___x29___closed__2 = _init_l_prec_x28___x29___closed__2(); @@ -42233,8 +42233,8 @@ l_precMin___closed__5 = _init_l_precMin___closed__5(); lean_mark_persistent(l_precMin___closed__5); l_precMin = _init_l_precMin(); lean_mark_persistent(l_precMin); -l_myMacro____x40_Init_Notation___hyg_402____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_402____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_402____closed__1); +l___aux__Init__Notation______macroRules__precMin__1___closed__1 = _init_l___aux__Init__Notation______macroRules__precMin__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__precMin__1___closed__1); l_precMin1___closed__1 = _init_l_precMin1___closed__1(); lean_mark_persistent(l_precMin1___closed__1); l_precMin1___closed__2 = _init_l_precMin1___closed__2(); @@ -42247,8 +42247,8 @@ l_precMin1___closed__5 = _init_l_precMin1___closed__5(); lean_mark_persistent(l_precMin1___closed__5); l_precMin1 = _init_l_precMin1(); lean_mark_persistent(l_precMin1); -l_myMacro____x40_Init_Notation___hyg_485____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_485____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_485____closed__1); +l___aux__Init__Notation______macroRules__precMin1__1___closed__1 = _init_l___aux__Init__Notation______macroRules__precMin1__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__precMin1__1___closed__1); l_termMax__prec___closed__1 = _init_l_termMax__prec___closed__1(); lean_mark_persistent(l_termMax__prec___closed__1); l_termMax__prec___closed__2 = _init_l_termMax__prec___closed__2(); @@ -42273,8 +42273,8 @@ l_prioDefault___closed__5 = _init_l_prioDefault___closed__5(); lean_mark_persistent(l_prioDefault___closed__5); l_prioDefault = _init_l_prioDefault(); lean_mark_persistent(l_prioDefault); -l_myMacro____x40_Init_Notation___hyg_650____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_650____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_650____closed__1); +l___aux__Init__Notation______macroRules__prioDefault__1___closed__1 = _init_l___aux__Init__Notation______macroRules__prioDefault__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__prioDefault__1___closed__1); l_prioLow___closed__1 = _init_l_prioLow___closed__1(); lean_mark_persistent(l_prioLow___closed__1); l_prioLow___closed__2 = _init_l_prioLow___closed__2(); @@ -42287,8 +42287,8 @@ l_prioLow___closed__5 = _init_l_prioLow___closed__5(); lean_mark_persistent(l_prioLow___closed__5); l_prioLow = _init_l_prioLow(); lean_mark_persistent(l_prioLow); -l_myMacro____x40_Init_Notation___hyg_733____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_733____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_733____closed__1); +l___aux__Init__Notation______macroRules__prioLow__1___closed__1 = _init_l___aux__Init__Notation______macroRules__prioLow__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__prioLow__1___closed__1); l_prioMid___closed__1 = _init_l_prioMid___closed__1(); lean_mark_persistent(l_prioMid___closed__1); l_prioMid___closed__2 = _init_l_prioMid___closed__2(); @@ -42313,8 +42313,8 @@ l_prioHigh___closed__5 = _init_l_prioHigh___closed__5(); lean_mark_persistent(l_prioHigh___closed__5); l_prioHigh = _init_l_prioHigh(); lean_mark_persistent(l_prioHigh); -l_myMacro____x40_Init_Notation___hyg_899____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_899____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_899____closed__1); +l___aux__Init__Notation______macroRules__prioHigh__1___closed__1 = _init_l___aux__Init__Notation______macroRules__prioHigh__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__prioHigh__1___closed__1); l_prio_x28___x29___closed__1 = _init_l_prio_x28___x29___closed__1(); lean_mark_persistent(l_prio_x28___x29___closed__1); l_prio_x28___x29___closed__2 = _init_l_prio_x28___x29___closed__2(); @@ -42385,56 +42385,56 @@ l_stx___x3c_x7c_x3e_____closed__9 = _init_l_stx___x3c_x7c_x3e_____closed__9(); lean_mark_persistent(l_stx___x3c_x7c_x3e_____closed__9); l_stx___x3c_x7c_x3e__ = _init_l_stx___x3c_x7c_x3e__(); lean_mark_persistent(l_stx___x3c_x7c_x3e__); -l_myMacro____x40_Init_Notation___hyg_1098____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_1098____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1098____closed__1); -l_myMacro____x40_Init_Notation___hyg_1098____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_1098____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1098____closed__2); -l_myMacro____x40_Init_Notation___hyg_1098____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_1098____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1098____closed__3); -l_myMacro____x40_Init_Notation___hyg_1098____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_1098____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1098____closed__4); -l_myMacro____x40_Init_Notation___hyg_1098____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_1098____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1098____closed__5); -l_myMacro____x40_Init_Notation___hyg_1098____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_1098____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1098____closed__6); -l_myMacro____x40_Init_Notation___hyg_1098____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_1098____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1098____closed__7); -l_myMacro____x40_Init_Notation___hyg_1098____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_1098____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1098____closed__8); -l_myMacro____x40_Init_Notation___hyg_1098____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_1098____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1098____closed__9); -l_myMacro____x40_Init_Notation___hyg_1199____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_1199____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1199____closed__1); -l_myMacro____x40_Init_Notation___hyg_1199____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_1199____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1199____closed__2); -l_myMacro____x40_Init_Notation___hyg_1199____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_1199____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1199____closed__3); -l_myMacro____x40_Init_Notation___hyg_1199____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_1199____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1199____closed__4); -l_myMacro____x40_Init_Notation___hyg_1300____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_1300____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1300____closed__1); -l_myMacro____x40_Init_Notation___hyg_1300____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_1300____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1300____closed__2); -l_myMacro____x40_Init_Notation___hyg_1300____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_1300____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1300____closed__3); -l_myMacro____x40_Init_Notation___hyg_1300____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_1300____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1300____closed__4); -l_myMacro____x40_Init_Notation___hyg_1400____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_1400____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1400____closed__1); -l_myMacro____x40_Init_Notation___hyg_1400____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_1400____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1400____closed__2); -l_myMacro____x40_Init_Notation___hyg_1400____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_1400____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1400____closed__3); -l_myMacro____x40_Init_Notation___hyg_1400____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_1400____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1400____closed__4); -l_myMacro____x40_Init_Notation___hyg_1400____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_1400____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1400____closed__5); -l_myMacro____x40_Init_Notation___hyg_1400____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_1400____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1400____closed__6); -l_myMacro____x40_Init_Notation___hyg_1400____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_1400____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1400____closed__7); -l_myMacro____x40_Init_Notation___hyg_1400____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_1400____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1400____closed__8); +l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2b_xbb__1___closed__9); +l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2a_xbb__1___closed__4); +l___aux__Init__Notation______macroRules__stx___x3f__1___closed__1 = _init_l___aux__Init__Notation______macroRules__stx___x3f__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__stx___x3f__1___closed__1); +l___aux__Init__Notation______macroRules__stx___x3f__1___closed__2 = _init_l___aux__Init__Notation______macroRules__stx___x3f__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__stx___x3f__1___closed__2); +l___aux__Init__Notation______macroRules__stx___x3f__1___closed__3 = _init_l___aux__Init__Notation______macroRules__stx___x3f__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__stx___x3f__1___closed__3); +l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4 = _init_l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__stx___x3f__1___closed__4); +l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x3c_x7c_x3e___xbb__1___closed__8); l_stx___x2c_x2a___closed__1 = _init_l_stx___x2c_x2a___closed__1(); lean_mark_persistent(l_stx___x2c_x2a___closed__1); l_stx___x2c_x2a___closed__2 = _init_l_stx___x2c_x2a___closed__2(); @@ -42447,32 +42447,32 @@ l_stx___x2c_x2a___closed__5 = _init_l_stx___x2c_x2a___closed__5(); lean_mark_persistent(l_stx___x2c_x2a___closed__5); l_stx___x2c_x2a = _init_l_stx___x2c_x2a(); lean_mark_persistent(l_stx___x2c_x2a); -l_myMacro____x40_Init_Notation___hyg_1534____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1534____closed__1); -l_myMacro____x40_Init_Notation___hyg_1534____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1534____closed__2); -l_myMacro____x40_Init_Notation___hyg_1534____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1534____closed__3); -l_myMacro____x40_Init_Notation___hyg_1534____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1534____closed__4); -l_myMacro____x40_Init_Notation___hyg_1534____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1534____closed__5); -l_myMacro____x40_Init_Notation___hyg_1534____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1534____closed__6); -l_myMacro____x40_Init_Notation___hyg_1534____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1534____closed__7); -l_myMacro____x40_Init_Notation___hyg_1534____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1534____closed__8); -l_myMacro____x40_Init_Notation___hyg_1534____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1534____closed__9); -l_myMacro____x40_Init_Notation___hyg_1534____closed__10 = _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__10(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1534____closed__10); -l_myMacro____x40_Init_Notation___hyg_1534____closed__11 = _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__11(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1534____closed__11); -l_myMacro____x40_Init_Notation___hyg_1534____closed__12 = _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__12(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1534____closed__12); -l_myMacro____x40_Init_Notation___hyg_1534____closed__13 = _init_l_myMacro____x40_Init_Notation___hyg_1534____closed__13(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1534____closed__13); +l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__9); +l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10 = _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__10); +l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__11 = _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__11(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__11); +l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12 = _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__12); +l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__13 = _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__13(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_xbb__1___closed__13); l_stx___x2c_x2b___closed__1 = _init_l_stx___x2c_x2b___closed__1(); lean_mark_persistent(l_stx___x2c_x2b___closed__1); l_stx___x2c_x2b___closed__2 = _init_l_stx___x2c_x2b___closed__2(); @@ -42485,12 +42485,12 @@ l_stx___x2c_x2b___closed__5 = _init_l_stx___x2c_x2b___closed__5(); lean_mark_persistent(l_stx___x2c_x2b___closed__5); l_stx___x2c_x2b = _init_l_stx___x2c_x2b(); lean_mark_persistent(l_stx___x2c_x2b); -l_myMacro____x40_Init_Notation___hyg_1685____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_1685____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1685____closed__1); -l_myMacro____x40_Init_Notation___hyg_1685____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_1685____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1685____closed__2); -l_myMacro____x40_Init_Notation___hyg_1685____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_1685____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1685____closed__3); +l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2c_x2b_xbb__1___closed__3); l_stx___x2c_x2a_x2c_x3f___closed__1 = _init_l_stx___x2c_x2a_x2c_x3f___closed__1(); lean_mark_persistent(l_stx___x2c_x2a_x2c_x3f___closed__1); l_stx___x2c_x2a_x2c_x3f___closed__2 = _init_l_stx___x2c_x2a_x2c_x3f___closed__2(); @@ -42503,8 +42503,8 @@ l_stx___x2c_x2a_x2c_x3f___closed__5 = _init_l_stx___x2c_x2a_x2c_x3f___closed__5( lean_mark_persistent(l_stx___x2c_x2a_x2c_x3f___closed__5); l_stx___x2c_x2a_x2c_x3f = _init_l_stx___x2c_x2a_x2c_x3f(); lean_mark_persistent(l_stx___x2c_x2a_x2c_x3f); -l_myMacro____x40_Init_Notation___hyg_1836____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_1836____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_1836____closed__1); +l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_x2c_x3f_xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_x2c_x3f_xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabstx___x2c_x2a_x2c_x3f_xbb__1___closed__1); l_stx___x2c_x2b_x2c_x3f___closed__1 = _init_l_stx___x2c_x2b_x2c_x3f___closed__1(); lean_mark_persistent(l_stx___x2c_x2b_x2c_x3f___closed__1); l_stx___x2c_x2b_x2c_x3f___closed__2 = _init_l_stx___x2c_x2b_x2c_x3f___closed__2(); @@ -42533,14 +42533,14 @@ l_stx_x21_____closed__7 = _init_l_stx_x21_____closed__7(); lean_mark_persistent(l_stx_x21_____closed__7); l_stx_x21__ = _init_l_stx_x21__(); lean_mark_persistent(l_stx_x21__); -l_myMacro____x40_Init_Notation___hyg_2159____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_2159____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2159____closed__1); -l_myMacro____x40_Init_Notation___hyg_2159____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_2159____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2159____closed__2); -l_myMacro____x40_Init_Notation___hyg_2159____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_2159____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2159____closed__3); -l_myMacro____x40_Init_Notation___hyg_2159____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_2159____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2159____closed__4); +l___aux__Init__Notation______macroRules__stx_x21____1___closed__1 = _init_l___aux__Init__Notation______macroRules__stx_x21____1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__stx_x21____1___closed__1); +l___aux__Init__Notation______macroRules__stx_x21____1___closed__2 = _init_l___aux__Init__Notation______macroRules__stx_x21____1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__stx_x21____1___closed__2); +l___aux__Init__Notation______macroRules__stx_x21____1___closed__3 = _init_l___aux__Init__Notation______macroRules__stx_x21____1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__stx_x21____1___closed__3); +l___aux__Init__Notation______macroRules__stx_x21____1___closed__4 = _init_l___aux__Init__Notation______macroRules__stx_x21____1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__stx_x21____1___closed__4); l_rawNatLit___closed__1 = _init_l_rawNatLit___closed__1(); lean_mark_persistent(l_rawNatLit___closed__1); l_rawNatLit___closed__2 = _init_l_rawNatLit___closed__2(); @@ -42581,40 +42581,40 @@ l_term___u2218_____closed__9 = _init_l_term___u2218_____closed__9(); lean_mark_persistent(l_term___u2218_____closed__9); l_term___u2218__ = _init_l_term___u2218__(); lean_mark_persistent(l_term___u2218__); -l_myMacro____x40_Init_Notation___hyg_2293____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2293____closed__1); -l_myMacro____x40_Init_Notation___hyg_2293____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2293____closed__2); -l_myMacro____x40_Init_Notation___hyg_2293____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2293____closed__3); -l_myMacro____x40_Init_Notation___hyg_2293____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2293____closed__4); -l_myMacro____x40_Init_Notation___hyg_2293____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2293____closed__5); -l_myMacro____x40_Init_Notation___hyg_2293____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2293____closed__6); -l_myMacro____x40_Init_Notation___hyg_2293____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2293____closed__7); -l_myMacro____x40_Init_Notation___hyg_2293____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2293____closed__8); -l_myMacro____x40_Init_Notation___hyg_2293____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2293____closed__9); -l_myMacro____x40_Init_Notation___hyg_2293____closed__10 = _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__10(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2293____closed__10); -l_myMacro____x40_Init_Notation___hyg_2293____closed__11 = _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__11(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2293____closed__11); -l_myMacro____x40_Init_Notation___hyg_2293____closed__12 = _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__12(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2293____closed__12); -l_myMacro____x40_Init_Notation___hyg_2293____closed__13 = _init_l_myMacro____x40_Init_Notation___hyg_2293____closed__13(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2293____closed__13); -l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1___closed__1 = _init_l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1___closed__1(); -lean_mark_persistent(l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1___closed__1); -l_unexpand____x40_Init_Notation___hyg_2276____closed__1 = _init_l_unexpand____x40_Init_Notation___hyg_2276____closed__1(); -lean_mark_persistent(l_unexpand____x40_Init_Notation___hyg_2276____closed__1); -l_unexpand____x40_Init_Notation___hyg_2276____closed__2 = _init_l_unexpand____x40_Init_Notation___hyg_2276____closed__2(); -lean_mark_persistent(l_unexpand____x40_Init_Notation___hyg_2276____closed__2); -l_unexpand____x40_Init_Notation___hyg_2276____closed__3 = _init_l_unexpand____x40_Init_Notation___hyg_2276____closed__3(); -lean_mark_persistent(l_unexpand____x40_Init_Notation___hyg_2276____closed__3); +l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__9); +l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__10 = _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__10(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__10); +l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__11 = _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__11(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__11); +l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__12 = _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__12(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__12); +l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__13 = _init_l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__13(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___u2218___xbb__1___closed__13); +l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1___closed__1 = _init_l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1___closed__1(); +lean_mark_persistent(l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1___closed__1); +l___aux__Init__Notation______unexpand__Function__comp__1___closed__1 = _init_l___aux__Init__Notation______unexpand__Function__comp__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______unexpand__Function__comp__1___closed__1); +l___aux__Init__Notation______unexpand__Function__comp__1___closed__2 = _init_l___aux__Init__Notation______unexpand__Function__comp__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______unexpand__Function__comp__1___closed__2); +l___aux__Init__Notation______unexpand__Function__comp__1___closed__3 = _init_l___aux__Init__Notation______unexpand__Function__comp__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______unexpand__Function__comp__1___closed__3); l_term___xd7_____closed__1 = _init_l_term___xd7_____closed__1(); lean_mark_persistent(l_term___xd7_____closed__1); l_term___xd7_____closed__2 = _init_l_term___xd7_____closed__2(); @@ -42631,18 +42631,18 @@ l_term___xd7_____closed__7 = _init_l_term___xd7_____closed__7(); lean_mark_persistent(l_term___xd7_____closed__7); l_term___xd7__ = _init_l_term___xd7__(); lean_mark_persistent(l_term___xd7__); -l_myMacro____x40_Init_Notation___hyg_2558____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_2558____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2558____closed__1); -l_myMacro____x40_Init_Notation___hyg_2558____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_2558____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2558____closed__2); -l_myMacro____x40_Init_Notation___hyg_2558____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_2558____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2558____closed__3); -l_myMacro____x40_Init_Notation___hyg_2558____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_2558____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2558____closed__4); -l_myMacro____x40_Init_Notation___hyg_2558____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_2558____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2558____closed__5); -l_myMacro____x40_Init_Notation___hyg_2558____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_2558____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2558____closed__6); +l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___xd7___xbb__1___closed__6); l_term___x7c_x7c_x7c_____closed__1 = _init_l_term___x7c_x7c_x7c_____closed__1(); lean_mark_persistent(l_term___x7c_x7c_x7c_____closed__1); l_term___x7c_x7c_x7c_____closed__2 = _init_l_term___x7c_x7c_x7c_____closed__2(); @@ -42659,24 +42659,24 @@ l_term___x7c_x7c_x7c_____closed__7 = _init_l_term___x7c_x7c_x7c_____closed__7(); lean_mark_persistent(l_term___x7c_x7c_x7c_____closed__7); l_term___x7c_x7c_x7c__ = _init_l_term___x7c_x7c_x7c__(); lean_mark_persistent(l_term___x7c_x7c_x7c__); -l_myMacro____x40_Init_Notation___hyg_2823____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_2823____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2823____closed__1); -l_myMacro____x40_Init_Notation___hyg_2823____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_2823____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2823____closed__2); -l_myMacro____x40_Init_Notation___hyg_2823____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_2823____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2823____closed__3); -l_myMacro____x40_Init_Notation___hyg_2823____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_2823____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2823____closed__4); -l_myMacro____x40_Init_Notation___hyg_2823____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_2823____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2823____closed__5); -l_myMacro____x40_Init_Notation___hyg_2823____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_2823____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2823____closed__6); -l_myMacro____x40_Init_Notation___hyg_2823____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_2823____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2823____closed__7); -l_myMacro____x40_Init_Notation___hyg_2823____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_2823____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2823____closed__8); -l_myMacro____x40_Init_Notation___hyg_2823____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_2823____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_2823____closed__9); +l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__1___closed__9); l_term___x5e_x5e_x5e_____closed__1 = _init_l_term___x5e_x5e_x5e_____closed__1(); lean_mark_persistent(l_term___x5e_x5e_x5e_____closed__1); l_term___x5e_x5e_x5e_____closed__2 = _init_l_term___x5e_x5e_x5e_____closed__2(); @@ -42693,24 +42693,24 @@ l_term___x5e_x5e_x5e_____closed__7 = _init_l_term___x5e_x5e_x5e_____closed__7(); lean_mark_persistent(l_term___x5e_x5e_x5e_____closed__7); l_term___x5e_x5e_x5e__ = _init_l_term___x5e_x5e_x5e__(); lean_mark_persistent(l_term___x5e_x5e_x5e__); -l_myMacro____x40_Init_Notation___hyg_3088____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_3088____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3088____closed__1); -l_myMacro____x40_Init_Notation___hyg_3088____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_3088____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3088____closed__2); -l_myMacro____x40_Init_Notation___hyg_3088____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_3088____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3088____closed__3); -l_myMacro____x40_Init_Notation___hyg_3088____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_3088____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3088____closed__4); -l_myMacro____x40_Init_Notation___hyg_3088____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_3088____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3088____closed__5); -l_myMacro____x40_Init_Notation___hyg_3088____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_3088____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3088____closed__6); -l_myMacro____x40_Init_Notation___hyg_3088____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_3088____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3088____closed__7); -l_myMacro____x40_Init_Notation___hyg_3088____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_3088____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3088____closed__8); -l_myMacro____x40_Init_Notation___hyg_3088____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_3088____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3088____closed__9); +l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x5e_x5e_x5e___xbb__1___closed__9); l_term___x26_x26_x26_____closed__1 = _init_l_term___x26_x26_x26_____closed__1(); lean_mark_persistent(l_term___x26_x26_x26_____closed__1); l_term___x26_x26_x26_____closed__2 = _init_l_term___x26_x26_x26_____closed__2(); @@ -42727,24 +42727,24 @@ l_term___x26_x26_x26_____closed__7 = _init_l_term___x26_x26_x26_____closed__7(); lean_mark_persistent(l_term___x26_x26_x26_____closed__7); l_term___x26_x26_x26__ = _init_l_term___x26_x26_x26__(); lean_mark_persistent(l_term___x26_x26_x26__); -l_myMacro____x40_Init_Notation___hyg_3353____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_3353____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3353____closed__1); -l_myMacro____x40_Init_Notation___hyg_3353____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_3353____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3353____closed__2); -l_myMacro____x40_Init_Notation___hyg_3353____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_3353____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3353____closed__3); -l_myMacro____x40_Init_Notation___hyg_3353____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_3353____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3353____closed__4); -l_myMacro____x40_Init_Notation___hyg_3353____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_3353____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3353____closed__5); -l_myMacro____x40_Init_Notation___hyg_3353____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_3353____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3353____closed__6); -l_myMacro____x40_Init_Notation___hyg_3353____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_3353____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3353____closed__7); -l_myMacro____x40_Init_Notation___hyg_3353____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_3353____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3353____closed__8); -l_myMacro____x40_Init_Notation___hyg_3353____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_3353____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3353____closed__9); +l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x26_x26_x26___xbb__1___closed__9); l_term___x2b_____closed__1 = _init_l_term___x2b_____closed__1(); lean_mark_persistent(l_term___x2b_____closed__1); l_term___x2b_____closed__2 = _init_l_term___x2b_____closed__2(); @@ -42757,24 +42757,24 @@ l_term___x2b_____closed__5 = _init_l_term___x2b_____closed__5(); lean_mark_persistent(l_term___x2b_____closed__5); l_term___x2b__ = _init_l_term___x2b__(); lean_mark_persistent(l_term___x2b__); -l_myMacro____x40_Init_Notation___hyg_3618____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_3618____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3618____closed__1); -l_myMacro____x40_Init_Notation___hyg_3618____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_3618____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3618____closed__2); -l_myMacro____x40_Init_Notation___hyg_3618____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_3618____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3618____closed__3); -l_myMacro____x40_Init_Notation___hyg_3618____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_3618____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3618____closed__4); -l_myMacro____x40_Init_Notation___hyg_3618____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_3618____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3618____closed__5); -l_myMacro____x40_Init_Notation___hyg_3618____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_3618____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3618____closed__6); -l_myMacro____x40_Init_Notation___hyg_3618____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_3618____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3618____closed__7); -l_myMacro____x40_Init_Notation___hyg_3618____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_3618____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3618____closed__8); -l_myMacro____x40_Init_Notation___hyg_3618____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_3618____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3618____closed__9); +l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2b___xbb__1___closed__9); l_term___x2d_____closed__1 = _init_l_term___x2d_____closed__1(); lean_mark_persistent(l_term___x2d_____closed__1); l_term___x2d_____closed__2 = _init_l_term___x2d_____closed__2(); @@ -42785,24 +42785,24 @@ l_term___x2d_____closed__4 = _init_l_term___x2d_____closed__4(); lean_mark_persistent(l_term___x2d_____closed__4); l_term___x2d__ = _init_l_term___x2d__(); lean_mark_persistent(l_term___x2d__); -l_myMacro____x40_Init_Notation___hyg_3883____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_3883____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3883____closed__1); -l_myMacro____x40_Init_Notation___hyg_3883____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_3883____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3883____closed__2); -l_myMacro____x40_Init_Notation___hyg_3883____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_3883____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3883____closed__3); -l_myMacro____x40_Init_Notation___hyg_3883____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_3883____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3883____closed__4); -l_myMacro____x40_Init_Notation___hyg_3883____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_3883____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3883____closed__5); -l_myMacro____x40_Init_Notation___hyg_3883____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_3883____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3883____closed__6); -l_myMacro____x40_Init_Notation___hyg_3883____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_3883____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3883____closed__7); -l_myMacro____x40_Init_Notation___hyg_3883____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_3883____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3883____closed__8); -l_myMacro____x40_Init_Notation___hyg_3883____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_3883____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_3883____closed__9); +l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2d___xbb__1___closed__9); l_term___x2a_____closed__1 = _init_l_term___x2a_____closed__1(); lean_mark_persistent(l_term___x2a_____closed__1); l_term___x2a_____closed__2 = _init_l_term___x2a_____closed__2(); @@ -42819,24 +42819,24 @@ l_term___x2a_____closed__7 = _init_l_term___x2a_____closed__7(); lean_mark_persistent(l_term___x2a_____closed__7); l_term___x2a__ = _init_l_term___x2a__(); lean_mark_persistent(l_term___x2a__); -l_myMacro____x40_Init_Notation___hyg_4148____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_4148____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4148____closed__1); -l_myMacro____x40_Init_Notation___hyg_4148____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_4148____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4148____closed__2); -l_myMacro____x40_Init_Notation___hyg_4148____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_4148____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4148____closed__3); -l_myMacro____x40_Init_Notation___hyg_4148____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_4148____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4148____closed__4); -l_myMacro____x40_Init_Notation___hyg_4148____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_4148____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4148____closed__5); -l_myMacro____x40_Init_Notation___hyg_4148____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_4148____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4148____closed__6); -l_myMacro____x40_Init_Notation___hyg_4148____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_4148____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4148____closed__7); -l_myMacro____x40_Init_Notation___hyg_4148____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_4148____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4148____closed__8); -l_myMacro____x40_Init_Notation___hyg_4148____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_4148____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4148____closed__9); +l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2a___xbb__1___closed__9); l_term___x2f_____closed__1 = _init_l_term___x2f_____closed__1(); lean_mark_persistent(l_term___x2f_____closed__1); l_term___x2f_____closed__2 = _init_l_term___x2f_____closed__2(); @@ -42851,24 +42851,24 @@ l_term___x2f_____closed__6 = _init_l_term___x2f_____closed__6(); lean_mark_persistent(l_term___x2f_____closed__6); l_term___x2f__ = _init_l_term___x2f__(); lean_mark_persistent(l_term___x2f__); -l_myMacro____x40_Init_Notation___hyg_4413____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_4413____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4413____closed__1); -l_myMacro____x40_Init_Notation___hyg_4413____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_4413____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4413____closed__2); -l_myMacro____x40_Init_Notation___hyg_4413____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_4413____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4413____closed__3); -l_myMacro____x40_Init_Notation___hyg_4413____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_4413____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4413____closed__4); -l_myMacro____x40_Init_Notation___hyg_4413____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_4413____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4413____closed__5); -l_myMacro____x40_Init_Notation___hyg_4413____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_4413____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4413____closed__6); -l_myMacro____x40_Init_Notation___hyg_4413____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_4413____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4413____closed__7); -l_myMacro____x40_Init_Notation___hyg_4413____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_4413____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4413____closed__8); -l_myMacro____x40_Init_Notation___hyg_4413____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_4413____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4413____closed__9); +l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2f___xbb__1___closed__9); l_term___x25_____closed__1 = _init_l_term___x25_____closed__1(); lean_mark_persistent(l_term___x25_____closed__1); l_term___x25_____closed__2 = _init_l_term___x25_____closed__2(); @@ -42883,24 +42883,24 @@ l_term___x25_____closed__6 = _init_l_term___x25_____closed__6(); lean_mark_persistent(l_term___x25_____closed__6); l_term___x25__ = _init_l_term___x25__(); lean_mark_persistent(l_term___x25__); -l_myMacro____x40_Init_Notation___hyg_4678____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_4678____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4678____closed__1); -l_myMacro____x40_Init_Notation___hyg_4678____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_4678____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4678____closed__2); -l_myMacro____x40_Init_Notation___hyg_4678____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_4678____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4678____closed__3); -l_myMacro____x40_Init_Notation___hyg_4678____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_4678____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4678____closed__4); -l_myMacro____x40_Init_Notation___hyg_4678____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_4678____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4678____closed__5); -l_myMacro____x40_Init_Notation___hyg_4678____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_4678____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4678____closed__6); -l_myMacro____x40_Init_Notation___hyg_4678____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_4678____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4678____closed__7); -l_myMacro____x40_Init_Notation___hyg_4678____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_4678____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4678____closed__8); -l_myMacro____x40_Init_Notation___hyg_4678____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_4678____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4678____closed__9); +l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x25___xbb__1___closed__9); l_term___x3c_x3c_x3c_____closed__1 = _init_l_term___x3c_x3c_x3c_____closed__1(); lean_mark_persistent(l_term___x3c_x3c_x3c_____closed__1); l_term___x3c_x3c_x3c_____closed__2 = _init_l_term___x3c_x3c_x3c_____closed__2(); @@ -42917,24 +42917,24 @@ l_term___x3c_x3c_x3c_____closed__7 = _init_l_term___x3c_x3c_x3c_____closed__7(); lean_mark_persistent(l_term___x3c_x3c_x3c_____closed__7); l_term___x3c_x3c_x3c__ = _init_l_term___x3c_x3c_x3c__(); lean_mark_persistent(l_term___x3c_x3c_x3c__); -l_myMacro____x40_Init_Notation___hyg_4943____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_4943____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4943____closed__1); -l_myMacro____x40_Init_Notation___hyg_4943____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_4943____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4943____closed__2); -l_myMacro____x40_Init_Notation___hyg_4943____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_4943____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4943____closed__3); -l_myMacro____x40_Init_Notation___hyg_4943____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_4943____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4943____closed__4); -l_myMacro____x40_Init_Notation___hyg_4943____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_4943____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4943____closed__5); -l_myMacro____x40_Init_Notation___hyg_4943____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_4943____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4943____closed__6); -l_myMacro____x40_Init_Notation___hyg_4943____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_4943____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4943____closed__7); -l_myMacro____x40_Init_Notation___hyg_4943____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_4943____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4943____closed__8); -l_myMacro____x40_Init_Notation___hyg_4943____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_4943____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_4943____closed__9); +l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x3c_x3c___xbb__1___closed__9); l_term___x3e_x3e_x3e_____closed__1 = _init_l_term___x3e_x3e_x3e_____closed__1(); lean_mark_persistent(l_term___x3e_x3e_x3e_____closed__1); l_term___x3e_x3e_x3e_____closed__2 = _init_l_term___x3e_x3e_x3e_____closed__2(); @@ -42949,24 +42949,24 @@ l_term___x3e_x3e_x3e_____closed__6 = _init_l_term___x3e_x3e_x3e_____closed__6(); lean_mark_persistent(l_term___x3e_x3e_x3e_____closed__6); l_term___x3e_x3e_x3e__ = _init_l_term___x3e_x3e_x3e__(); lean_mark_persistent(l_term___x3e_x3e_x3e__); -l_myMacro____x40_Init_Notation___hyg_5208____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_5208____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5208____closed__1); -l_myMacro____x40_Init_Notation___hyg_5208____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_5208____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5208____closed__2); -l_myMacro____x40_Init_Notation___hyg_5208____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_5208____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5208____closed__3); -l_myMacro____x40_Init_Notation___hyg_5208____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_5208____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5208____closed__4); -l_myMacro____x40_Init_Notation___hyg_5208____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_5208____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5208____closed__5); -l_myMacro____x40_Init_Notation___hyg_5208____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_5208____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5208____closed__6); -l_myMacro____x40_Init_Notation___hyg_5208____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_5208____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5208____closed__7); -l_myMacro____x40_Init_Notation___hyg_5208____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_5208____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5208____closed__8); -l_myMacro____x40_Init_Notation___hyg_5208____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_5208____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5208____closed__9); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3e___xbb__1___closed__9); l_term___x5e_____closed__1 = _init_l_term___x5e_____closed__1(); lean_mark_persistent(l_term___x5e_____closed__1); l_term___x5e_____closed__2 = _init_l_term___x5e_____closed__2(); @@ -42983,24 +42983,24 @@ l_term___x5e_____closed__7 = _init_l_term___x5e_____closed__7(); lean_mark_persistent(l_term___x5e_____closed__7); l_term___x5e__ = _init_l_term___x5e__(); lean_mark_persistent(l_term___x5e__); -l_myMacro____x40_Init_Notation___hyg_5473____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_5473____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5473____closed__1); -l_myMacro____x40_Init_Notation___hyg_5473____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_5473____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5473____closed__2); -l_myMacro____x40_Init_Notation___hyg_5473____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_5473____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5473____closed__3); -l_myMacro____x40_Init_Notation___hyg_5473____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_5473____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5473____closed__4); -l_myMacro____x40_Init_Notation___hyg_5473____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_5473____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5473____closed__5); -l_myMacro____x40_Init_Notation___hyg_5473____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_5473____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5473____closed__6); -l_myMacro____x40_Init_Notation___hyg_5473____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_5473____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5473____closed__7); -l_myMacro____x40_Init_Notation___hyg_5473____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_5473____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5473____closed__8); -l_myMacro____x40_Init_Notation___hyg_5473____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_5473____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5473____closed__9); +l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x5e___xbb__1___closed__9); l_term___x2b_x2b_____closed__1 = _init_l_term___x2b_x2b_____closed__1(); lean_mark_persistent(l_term___x2b_x2b_____closed__1); l_term___x2b_x2b_____closed__2 = _init_l_term___x2b_x2b_____closed__2(); @@ -43015,24 +43015,24 @@ l_term___x2b_x2b_____closed__6 = _init_l_term___x2b_x2b_____closed__6(); lean_mark_persistent(l_term___x2b_x2b_____closed__6); l_term___x2b_x2b__ = _init_l_term___x2b_x2b__(); lean_mark_persistent(l_term___x2b_x2b__); -l_myMacro____x40_Init_Notation___hyg_5738____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_5738____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5738____closed__1); -l_myMacro____x40_Init_Notation___hyg_5738____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_5738____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5738____closed__2); -l_myMacro____x40_Init_Notation___hyg_5738____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_5738____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5738____closed__3); -l_myMacro____x40_Init_Notation___hyg_5738____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_5738____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5738____closed__4); -l_myMacro____x40_Init_Notation___hyg_5738____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_5738____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5738____closed__5); -l_myMacro____x40_Init_Notation___hyg_5738____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_5738____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5738____closed__6); -l_myMacro____x40_Init_Notation___hyg_5738____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_5738____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5738____closed__7); -l_myMacro____x40_Init_Notation___hyg_5738____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_5738____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5738____closed__8); -l_myMacro____x40_Init_Notation___hyg_5738____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_5738____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_5738____closed__9); +l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2b_x2b___xbb__1___closed__9); l_term_x2d_____closed__1 = _init_l_term_x2d_____closed__1(); lean_mark_persistent(l_term_x2d_____closed__1); l_term_x2d_____closed__2 = _init_l_term_x2d_____closed__2(); @@ -43049,24 +43049,24 @@ l_term_x2d_____closed__7 = _init_l_term_x2d_____closed__7(); lean_mark_persistent(l_term_x2d_____closed__7); l_term_x2d__ = _init_l_term_x2d__(); lean_mark_persistent(l_term_x2d__); -l_myMacro____x40_Init_Notation___hyg_6002____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_6002____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_6002____closed__1); -l_myMacro____x40_Init_Notation___hyg_6002____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_6002____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_6002____closed__2); -l_myMacro____x40_Init_Notation___hyg_6002____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_6002____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_6002____closed__3); -l_myMacro____x40_Init_Notation___hyg_6002____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_6002____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_6002____closed__4); -l_myMacro____x40_Init_Notation___hyg_6002____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_6002____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_6002____closed__5); -l_myMacro____x40_Init_Notation___hyg_6002____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_6002____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_6002____closed__6); -l_myMacro____x40_Init_Notation___hyg_6002____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_6002____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_6002____closed__7); -l_myMacro____x40_Init_Notation___hyg_6002____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_6002____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_6002____closed__8); -l_myMacro____x40_Init_Notation___hyg_6002____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_6002____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_6002____closed__9); +l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x2d___xbb__1___closed__9); l_term_x7e_x7e_x7e_____closed__1 = _init_l_term_x7e_x7e_x7e_____closed__1(); lean_mark_persistent(l_term_x7e_x7e_x7e_____closed__1); l_term_x7e_x7e_x7e_____closed__2 = _init_l_term_x7e_x7e_x7e_____closed__2(); @@ -43081,30 +43081,30 @@ l_term_x7e_x7e_x7e_____closed__6 = _init_l_term_x7e_x7e_x7e_____closed__6(); lean_mark_persistent(l_term_x7e_x7e_x7e_____closed__6); l_term_x7e_x7e_x7e__ = _init_l_term_x7e_x7e_x7e__(); lean_mark_persistent(l_term_x7e_x7e_x7e__); -l_myMacro____x40_Init_Notation___hyg_6244____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_6244____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_6244____closed__1); -l_myMacro____x40_Init_Notation___hyg_6244____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_6244____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_6244____closed__2); -l_myMacro____x40_Init_Notation___hyg_6244____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_6244____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_6244____closed__3); -l_myMacro____x40_Init_Notation___hyg_6244____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_6244____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_6244____closed__4); -l_myMacro____x40_Init_Notation___hyg_6244____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_6244____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_6244____closed__5); -l_myMacro____x40_Init_Notation___hyg_6244____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_6244____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_6244____closed__6); -l_myMacro____x40_Init_Notation___hyg_6244____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_6244____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_6244____closed__7); -l_myMacro____x40_Init_Notation___hyg_6244____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_6244____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_6244____closed__8); -l_myMacro____x40_Init_Notation___hyg_6244____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_6244____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_6244____closed__9); -l_myMacro____x40_Init_Notation___hyg_6468____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_6468____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_6468____closed__1); -l_myMacro____x40_Init_Notation___hyg_6468____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_6468____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_6468____closed__2); -l_myMacro____x40_Init_Notation___hyg_6468____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_6468____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_6468____closed__3); +l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x7e_x7e_x7e___xbb__1___closed__9); +l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x7c_x7c_x7c___xbb__2___closed__3); l_term___x3c_x3d_____closed__1 = _init_l_term___x3c_x3d_____closed__1(); lean_mark_persistent(l_term___x3c_x3d_____closed__1); l_term___x3c_x3d_____closed__2 = _init_l_term___x3c_x3d_____closed__2(); @@ -43121,24 +43121,24 @@ l_term___x3c_x3d_____closed__7 = _init_l_term___x3c_x3d_____closed__7(); lean_mark_persistent(l_term___x3c_x3d_____closed__7); l_term___x3c_x3d__ = _init_l_term___x3c_x3d__(); lean_mark_persistent(l_term___x3c_x3d__); -l_myMacro____x40_Init_Notation___hyg_7335____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_7335____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_7335____closed__1); -l_myMacro____x40_Init_Notation___hyg_7335____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_7335____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_7335____closed__2); -l_myMacro____x40_Init_Notation___hyg_7335____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_7335____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_7335____closed__3); -l_myMacro____x40_Init_Notation___hyg_7335____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_7335____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_7335____closed__4); -l_myMacro____x40_Init_Notation___hyg_7335____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_7335____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_7335____closed__5); -l_myMacro____x40_Init_Notation___hyg_7335____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_7335____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_7335____closed__6); -l_myMacro____x40_Init_Notation___hyg_7335____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_7335____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_7335____closed__7); -l_myMacro____x40_Init_Notation___hyg_7335____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_7335____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_7335____closed__8); -l_myMacro____x40_Init_Notation___hyg_7335____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_7335____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_7335____closed__9); +l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__1___closed__9); l_term___u2264_____closed__1 = _init_l_term___u2264_____closed__1(); lean_mark_persistent(l_term___u2264_____closed__1); l_term___u2264_____closed__2 = _init_l_term___u2264_____closed__2(); @@ -43167,24 +43167,24 @@ l_term___x3c_____closed__6 = _init_l_term___x3c_____closed__6(); lean_mark_persistent(l_term___x3c_____closed__6); l_term___x3c__ = _init_l_term___x3c__(); lean_mark_persistent(l_term___x3c__); -l_myMacro____x40_Init_Notation___hyg_7865____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_7865____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_7865____closed__1); -l_myMacro____x40_Init_Notation___hyg_7865____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_7865____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_7865____closed__2); -l_myMacro____x40_Init_Notation___hyg_7865____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_7865____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_7865____closed__3); -l_myMacro____x40_Init_Notation___hyg_7865____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_7865____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_7865____closed__4); -l_myMacro____x40_Init_Notation___hyg_7865____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_7865____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_7865____closed__5); -l_myMacro____x40_Init_Notation___hyg_7865____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_7865____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_7865____closed__6); -l_myMacro____x40_Init_Notation___hyg_7865____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_7865____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_7865____closed__7); -l_myMacro____x40_Init_Notation___hyg_7865____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_7865____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_7865____closed__8); -l_myMacro____x40_Init_Notation___hyg_7865____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_7865____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_7865____closed__9); +l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c___xbb__1___closed__9); l_term___x3e_x3d_____closed__1 = _init_l_term___x3e_x3d_____closed__1(); lean_mark_persistent(l_term___x3e_x3d_____closed__1); l_term___x3e_x3d_____closed__2 = _init_l_term___x3e_x3d_____closed__2(); @@ -43199,24 +43199,24 @@ l_term___x3e_x3d_____closed__6 = _init_l_term___x3e_x3d_____closed__6(); lean_mark_persistent(l_term___x3e_x3d_____closed__6); l_term___x3e_x3d__ = _init_l_term___x3e_x3d__(); lean_mark_persistent(l_term___x3e_x3d__); -l_myMacro____x40_Init_Notation___hyg_8130____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_8130____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_8130____closed__1); -l_myMacro____x40_Init_Notation___hyg_8130____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_8130____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_8130____closed__2); -l_myMacro____x40_Init_Notation___hyg_8130____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_8130____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_8130____closed__3); -l_myMacro____x40_Init_Notation___hyg_8130____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_8130____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_8130____closed__4); -l_myMacro____x40_Init_Notation___hyg_8130____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_8130____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_8130____closed__5); -l_myMacro____x40_Init_Notation___hyg_8130____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_8130____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_8130____closed__6); -l_myMacro____x40_Init_Notation___hyg_8130____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_8130____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_8130____closed__7); -l_myMacro____x40_Init_Notation___hyg_8130____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_8130____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_8130____closed__8); -l_myMacro____x40_Init_Notation___hyg_8130____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_8130____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_8130____closed__9); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3d___xbb__1___closed__9); l_term___u2265_____closed__1 = _init_l_term___u2265_____closed__1(); lean_mark_persistent(l_term___u2265_____closed__1); l_term___u2265_____closed__2 = _init_l_term___u2265_____closed__2(); @@ -43245,24 +43245,24 @@ l_term___x3e_____closed__6 = _init_l_term___x3e_____closed__6(); lean_mark_persistent(l_term___x3e_____closed__6); l_term___x3e__ = _init_l_term___x3e__(); lean_mark_persistent(l_term___x3e__); -l_myMacro____x40_Init_Notation___hyg_8660____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_8660____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_8660____closed__1); -l_myMacro____x40_Init_Notation___hyg_8660____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_8660____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_8660____closed__2); -l_myMacro____x40_Init_Notation___hyg_8660____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_8660____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_8660____closed__3); -l_myMacro____x40_Init_Notation___hyg_8660____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_8660____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_8660____closed__4); -l_myMacro____x40_Init_Notation___hyg_8660____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_8660____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_8660____closed__5); -l_myMacro____x40_Init_Notation___hyg_8660____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_8660____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_8660____closed__6); -l_myMacro____x40_Init_Notation___hyg_8660____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_8660____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_8660____closed__7); -l_myMacro____x40_Init_Notation___hyg_8660____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_8660____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_8660____closed__8); -l_myMacro____x40_Init_Notation___hyg_8660____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_8660____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_8660____closed__9); +l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e___xbb__1___closed__9); l_term___x3d_____closed__1 = _init_l_term___x3d_____closed__1(); lean_mark_persistent(l_term___x3d_____closed__1); l_term___x3d_____closed__2 = _init_l_term___x3d_____closed__2(); @@ -43277,18 +43277,18 @@ l_term___x3d_____closed__6 = _init_l_term___x3d_____closed__6(); lean_mark_persistent(l_term___x3d_____closed__6); l_term___x3d__ = _init_l_term___x3d__(); lean_mark_persistent(l_term___x3d__); -l_myMacro____x40_Init_Notation___hyg_8925____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_8925____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_8925____closed__1); -l_myMacro____x40_Init_Notation___hyg_8925____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_8925____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_8925____closed__2); -l_myMacro____x40_Init_Notation___hyg_8925____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_8925____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_8925____closed__3); -l_myMacro____x40_Init_Notation___hyg_8925____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_8925____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_8925____closed__4); -l_myMacro____x40_Init_Notation___hyg_8925____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_8925____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_8925____closed__5); -l_myMacro____x40_Init_Notation___hyg_8925____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_8925____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_8925____closed__6); +l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3d___xbb__1___closed__6); l_term___x3d_x3d_____closed__1 = _init_l_term___x3d_x3d_____closed__1(); lean_mark_persistent(l_term___x3d_x3d_____closed__1); l_term___x3d_x3d_____closed__2 = _init_l_term___x3d_x3d_____closed__2(); @@ -43303,30 +43303,30 @@ l_term___x3d_x3d_____closed__6 = _init_l_term___x3d_x3d_____closed__6(); lean_mark_persistent(l_term___x3d_x3d_____closed__6); l_term___x3d_x3d__ = _init_l_term___x3d_x3d__(); lean_mark_persistent(l_term___x3d_x3d__); -l_myMacro____x40_Init_Notation___hyg_9190____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_9190____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_9190____closed__1); -l_myMacro____x40_Init_Notation___hyg_9190____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_9190____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_9190____closed__2); -l_myMacro____x40_Init_Notation___hyg_9190____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_9190____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_9190____closed__3); -l_myMacro____x40_Init_Notation___hyg_9190____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_9190____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_9190____closed__4); -l_myMacro____x40_Init_Notation___hyg_9190____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_9190____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_9190____closed__5); -l_myMacro____x40_Init_Notation___hyg_9190____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_9190____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_9190____closed__6); -l_myMacro____x40_Init_Notation___hyg_9190____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_9190____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_9190____closed__7); -l_myMacro____x40_Init_Notation___hyg_9190____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_9190____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_9190____closed__8); -l_myMacro____x40_Init_Notation___hyg_9190____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_9190____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_9190____closed__9); -l_myMacro____x40_Init_Notation___hyg_9436____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_9436____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_9436____closed__1); -l_myMacro____x40_Init_Notation___hyg_9436____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_9436____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_9436____closed__2); -l_myMacro____x40_Init_Notation___hyg_9436____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_9436____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_9436____closed__3); +l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3d_x3d___xbb__1___closed__9); +l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x3d___xbb__2___closed__3); l_term___x2f_x5c_____closed__1 = _init_l_term___x2f_x5c_____closed__1(); lean_mark_persistent(l_term___x2f_x5c_____closed__1); l_term___x2f_x5c_____closed__2 = _init_l_term___x2f_x5c_____closed__2(); @@ -43341,18 +43341,18 @@ l_term___x2f_x5c_____closed__6 = _init_l_term___x2f_x5c_____closed__6(); lean_mark_persistent(l_term___x2f_x5c_____closed__6); l_term___x2f_x5c__ = _init_l_term___x2f_x5c__(); lean_mark_persistent(l_term___x2f_x5c__); -l_myMacro____x40_Init_Notation___hyg_10303____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_10303____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_10303____closed__1); -l_myMacro____x40_Init_Notation___hyg_10303____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_10303____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_10303____closed__2); -l_myMacro____x40_Init_Notation___hyg_10303____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_10303____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_10303____closed__3); -l_myMacro____x40_Init_Notation___hyg_10303____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_10303____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_10303____closed__4); -l_myMacro____x40_Init_Notation___hyg_10303____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_10303____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_10303____closed__5); -l_myMacro____x40_Init_Notation___hyg_10303____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_10303____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_10303____closed__6); +l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2f_x5c___xbb__1___closed__6); l_term___u2227_____closed__1 = _init_l_term___u2227_____closed__1(); lean_mark_persistent(l_term___u2227_____closed__1); l_term___u2227_____closed__2 = _init_l_term___u2227_____closed__2(); @@ -43383,18 +43383,18 @@ l_term___x5c_x2f_____closed__7 = _init_l_term___x5c_x2f_____closed__7(); lean_mark_persistent(l_term___x5c_x2f_____closed__7); l_term___x5c_x2f__ = _init_l_term___x5c_x2f__(); lean_mark_persistent(l_term___x5c_x2f__); -l_myMacro____x40_Init_Notation___hyg_10833____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_10833____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_10833____closed__1); -l_myMacro____x40_Init_Notation___hyg_10833____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_10833____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_10833____closed__2); -l_myMacro____x40_Init_Notation___hyg_10833____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_10833____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_10833____closed__3); -l_myMacro____x40_Init_Notation___hyg_10833____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_10833____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_10833____closed__4); -l_myMacro____x40_Init_Notation___hyg_10833____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_10833____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_10833____closed__5); -l_myMacro____x40_Init_Notation___hyg_10833____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_10833____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_10833____closed__6); +l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x5c_x2f___xbb__1___closed__6); l_term___u2228_____closed__1 = _init_l_term___u2228_____closed__1(); lean_mark_persistent(l_term___u2228_____closed__1); l_term___u2228_____closed__2 = _init_l_term___u2228_____closed__2(); @@ -43425,18 +43425,18 @@ l_term_xac_____closed__7 = _init_l_term_xac_____closed__7(); lean_mark_persistent(l_term_xac_____closed__7); l_term_xac__ = _init_l_term_xac__(); lean_mark_persistent(l_term_xac__); -l_myMacro____x40_Init_Notation___hyg_11361____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_11361____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_11361____closed__1); -l_myMacro____x40_Init_Notation___hyg_11361____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_11361____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_11361____closed__2); -l_myMacro____x40_Init_Notation___hyg_11361____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_11361____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_11361____closed__3); -l_myMacro____x40_Init_Notation___hyg_11361____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_11361____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_11361____closed__4); -l_myMacro____x40_Init_Notation___hyg_11361____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_11361____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_11361____closed__5); -l_myMacro____x40_Init_Notation___hyg_11361____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_11361____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_11361____closed__6); +l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_xac___xbb__1___closed__6); l_term___x26_x26_____closed__1 = _init_l_term___x26_x26_____closed__1(); lean_mark_persistent(l_term___x26_x26_____closed__1); l_term___x26_x26_____closed__2 = _init_l_term___x26_x26_____closed__2(); @@ -43453,18 +43453,18 @@ l_term___x26_x26_____closed__7 = _init_l_term___x26_x26_____closed__7(); lean_mark_persistent(l_term___x26_x26_____closed__7); l_term___x26_x26__ = _init_l_term___x26_x26__(); lean_mark_persistent(l_term___x26_x26__); -l_myMacro____x40_Init_Notation___hyg_11604____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_11604____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_11604____closed__1); -l_myMacro____x40_Init_Notation___hyg_11604____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_11604____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_11604____closed__2); -l_myMacro____x40_Init_Notation___hyg_11604____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_11604____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_11604____closed__3); -l_myMacro____x40_Init_Notation___hyg_11604____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_11604____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_11604____closed__4); -l_myMacro____x40_Init_Notation___hyg_11604____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_11604____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_11604____closed__5); -l_myMacro____x40_Init_Notation___hyg_11604____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_11604____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_11604____closed__6); +l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x26_x26___xbb__1___closed__6); l_term___x7c_x7c_____closed__1 = _init_l_term___x7c_x7c_____closed__1(); lean_mark_persistent(l_term___x7c_x7c_____closed__1); l_term___x7c_x7c_____closed__2 = _init_l_term___x7c_x7c_____closed__2(); @@ -43481,18 +43481,18 @@ l_term___x7c_x7c_____closed__7 = _init_l_term___x7c_x7c_____closed__7(); lean_mark_persistent(l_term___x7c_x7c_____closed__7); l_term___x7c_x7c__ = _init_l_term___x7c_x7c__(); lean_mark_persistent(l_term___x7c_x7c__); -l_myMacro____x40_Init_Notation___hyg_11869____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_11869____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_11869____closed__1); -l_myMacro____x40_Init_Notation___hyg_11869____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_11869____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_11869____closed__2); -l_myMacro____x40_Init_Notation___hyg_11869____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_11869____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_11869____closed__3); -l_myMacro____x40_Init_Notation___hyg_11869____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_11869____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_11869____closed__4); -l_myMacro____x40_Init_Notation___hyg_11869____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_11869____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_11869____closed__5); -l_myMacro____x40_Init_Notation___hyg_11869____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_11869____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_11869____closed__6); +l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x7c_x7c___xbb__1___closed__6); l_term_x21_____closed__1 = _init_l_term_x21_____closed__1(); lean_mark_persistent(l_term_x21_____closed__1); l_term_x21_____closed__2 = _init_l_term_x21_____closed__2(); @@ -43505,18 +43505,18 @@ l_term_x21_____closed__5 = _init_l_term_x21_____closed__5(); lean_mark_persistent(l_term_x21_____closed__5); l_term_x21__ = _init_l_term_x21__(); lean_mark_persistent(l_term_x21__); -l_myMacro____x40_Init_Notation___hyg_12132____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_12132____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12132____closed__1); -l_myMacro____x40_Init_Notation___hyg_12132____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_12132____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12132____closed__2); -l_myMacro____x40_Init_Notation___hyg_12132____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_12132____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12132____closed__3); -l_myMacro____x40_Init_Notation___hyg_12132____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_12132____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12132____closed__4); -l_myMacro____x40_Init_Notation___hyg_12132____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_12132____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12132____closed__5); -l_myMacro____x40_Init_Notation___hyg_12132____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_12132____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12132____closed__6); +l___aux__Init__Notation______macroRules__term_x21____1___closed__1 = _init_l___aux__Init__Notation______macroRules__term_x21____1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__term_x21____1___closed__1); +l___aux__Init__Notation______macroRules__term_x21____1___closed__2 = _init_l___aux__Init__Notation______macroRules__term_x21____1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__term_x21____1___closed__2); +l___aux__Init__Notation______macroRules__term_x21____1___closed__3 = _init_l___aux__Init__Notation______macroRules__term_x21____1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__term_x21____1___closed__3); +l___aux__Init__Notation______macroRules__term_x21____1___closed__4 = _init_l___aux__Init__Notation______macroRules__term_x21____1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__term_x21____1___closed__4); +l___aux__Init__Notation______macroRules__term_x21____1___closed__5 = _init_l___aux__Init__Notation______macroRules__term_x21____1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__term_x21____1___closed__5); +l___aux__Init__Notation______macroRules__term_x21____1___closed__6 = _init_l___aux__Init__Notation______macroRules__term_x21____1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__term_x21____1___closed__6); l_term___x3a_x3a_____closed__1 = _init_l_term___x3a_x3a_____closed__1(); lean_mark_persistent(l_term___x3a_x3a_____closed__1); l_term___x3a_x3a_____closed__2 = _init_l_term___x3a_x3a_____closed__2(); @@ -43533,24 +43533,24 @@ l_term___x3a_x3a_____closed__7 = _init_l_term___x3a_x3a_____closed__7(); lean_mark_persistent(l_term___x3a_x3a_____closed__7); l_term___x3a_x3a__ = _init_l_term___x3a_x3a__(); lean_mark_persistent(l_term___x3a_x3a__); -l_myMacro____x40_Init_Notation___hyg_12375____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_12375____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12375____closed__1); -l_myMacro____x40_Init_Notation___hyg_12375____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_12375____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12375____closed__2); -l_myMacro____x40_Init_Notation___hyg_12375____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_12375____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12375____closed__3); -l_myMacro____x40_Init_Notation___hyg_12375____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_12375____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12375____closed__4); -l_myMacro____x40_Init_Notation___hyg_12375____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_12375____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12375____closed__5); -l_myMacro____x40_Init_Notation___hyg_12375____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_12375____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12375____closed__6); -l_myMacro____x40_Init_Notation___hyg_12375____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_12375____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12375____closed__7); -l_myMacro____x40_Init_Notation___hyg_12375____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_12375____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12375____closed__8); -l_myMacro____x40_Init_Notation___hyg_12375____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_12375____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12375____closed__9); +l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3a_x3a___xbb__1___closed__9); l_term___x3c_x7c_x3e_____closed__1 = _init_l_term___x3c_x7c_x3e_____closed__1(); lean_mark_persistent(l_term___x3c_x7c_x3e_____closed__1); l_term___x3c_x7c_x3e_____closed__2 = _init_l_term___x3c_x7c_x3e_____closed__2(); @@ -43593,24 +43593,24 @@ l_term___x3e_x3e_x3d_____closed__6 = _init_l_term___x3e_x3e_x3d_____closed__6(); lean_mark_persistent(l_term___x3e_x3e_x3d_____closed__6); l_term___x3e_x3e_x3d__ = _init_l_term___x3e_x3e_x3d__(); lean_mark_persistent(l_term___x3e_x3e_x3d__); -l_myMacro____x40_Init_Notation___hyg_12668____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_12668____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12668____closed__1); -l_myMacro____x40_Init_Notation___hyg_12668____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_12668____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12668____closed__2); -l_myMacro____x40_Init_Notation___hyg_12668____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_12668____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12668____closed__3); -l_myMacro____x40_Init_Notation___hyg_12668____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_12668____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12668____closed__4); -l_myMacro____x40_Init_Notation___hyg_12668____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_12668____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12668____closed__5); -l_myMacro____x40_Init_Notation___hyg_12668____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_12668____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12668____closed__6); -l_myMacro____x40_Init_Notation___hyg_12668____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_12668____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12668____closed__7); -l_myMacro____x40_Init_Notation___hyg_12668____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_12668____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12668____closed__8); -l_myMacro____x40_Init_Notation___hyg_12668____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_12668____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12668____closed__9); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e_x3d___xbb__1___closed__9); l_term___x3c_x2a_x3e_____closed__1 = _init_l_term___x3c_x2a_x3e_____closed__1(); lean_mark_persistent(l_term___x3c_x2a_x3e_____closed__1); l_term___x3c_x2a_x3e_____closed__2 = _init_l_term___x3c_x2a_x3e_____closed__2(); @@ -43625,62 +43625,62 @@ l_term___x3c_x2a_x3e_____closed__6 = _init_l_term___x3c_x2a_x3e_____closed__6(); lean_mark_persistent(l_term___x3c_x2a_x3e_____closed__6); l_term___x3c_x2a_x3e__ = _init_l_term___x3c_x2a_x3e__(); lean_mark_persistent(l_term___x3c_x2a_x3e__); -l_myMacro____x40_Init_Notation___hyg_12931____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__1); -l_myMacro____x40_Init_Notation___hyg_12931____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__2); -l_myMacro____x40_Init_Notation___hyg_12931____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__3); -l_myMacro____x40_Init_Notation___hyg_12931____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__4); -l_myMacro____x40_Init_Notation___hyg_12931____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__5); -l_myMacro____x40_Init_Notation___hyg_12931____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__6); -l_myMacro____x40_Init_Notation___hyg_12931____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__7); -l_myMacro____x40_Init_Notation___hyg_12931____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__8); -l_myMacro____x40_Init_Notation___hyg_12931____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__9); -l_myMacro____x40_Init_Notation___hyg_12931____closed__10 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__10(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__10); -l_myMacro____x40_Init_Notation___hyg_12931____closed__11 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__11(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__11); -l_myMacro____x40_Init_Notation___hyg_12931____closed__12 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__12(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__12); -l_myMacro____x40_Init_Notation___hyg_12931____closed__13 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__13(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__13); -l_myMacro____x40_Init_Notation___hyg_12931____closed__14 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__14(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__14); -l_myMacro____x40_Init_Notation___hyg_12931____closed__15 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__15(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__15); -l_myMacro____x40_Init_Notation___hyg_12931____closed__16 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__16(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__16); -l_myMacro____x40_Init_Notation___hyg_12931____closed__17 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__17(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__17); -l_myMacro____x40_Init_Notation___hyg_12931____closed__18 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__18(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__18); -l_myMacro____x40_Init_Notation___hyg_12931____closed__19 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__19(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__19); -l_myMacro____x40_Init_Notation___hyg_12931____closed__20 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__20(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__20); -l_myMacro____x40_Init_Notation___hyg_12931____closed__21 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__21(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__21); -l_myMacro____x40_Init_Notation___hyg_12931____closed__22 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__22(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__22); -l_myMacro____x40_Init_Notation___hyg_12931____closed__23 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__23(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__23); -l_myMacro____x40_Init_Notation___hyg_12931____closed__24 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__24(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__24); -l_myMacro____x40_Init_Notation___hyg_12931____closed__25 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__25(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__25); -l_myMacro____x40_Init_Notation___hyg_12931____closed__26 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__26(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__26); -l_myMacro____x40_Init_Notation___hyg_12931____closed__27 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__27(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__27); -l_myMacro____x40_Init_Notation___hyg_12931____closed__28 = _init_l_myMacro____x40_Init_Notation___hyg_12931____closed__28(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_12931____closed__28); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__9); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__10 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__10(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__10); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__11 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__11(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__11); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__12 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__12(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__12); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__13 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__13(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__13); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__14 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__14(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__14); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__15 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__15(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__15); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__16 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__16(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__16); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__17); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__18); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__19 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__19(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__19); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__20 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__20(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__20); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__21 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__21(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__21); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__22 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__22(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__22); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__23 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__23(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__23); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__24 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__24(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__24); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__25 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__25(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__25); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__26 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__26(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__26); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__27 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__27(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__27); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__28 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__28(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a_x3e___xbb__1___closed__28); l_term___x3c_x2a_____closed__1 = _init_l_term___x3c_x2a_____closed__1(); lean_mark_persistent(l_term___x3c_x2a_____closed__1); l_term___x3c_x2a_____closed__2 = _init_l_term___x3c_x2a_____closed__2(); @@ -43695,24 +43695,24 @@ l_term___x3c_x2a_____closed__6 = _init_l_term___x3c_x2a_____closed__6(); lean_mark_persistent(l_term___x3c_x2a_____closed__6); l_term___x3c_x2a__ = _init_l_term___x3c_x2a__(); lean_mark_persistent(l_term___x3c_x2a__); -l_myMacro____x40_Init_Notation___hyg_13129____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_13129____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13129____closed__1); -l_myMacro____x40_Init_Notation___hyg_13129____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_13129____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13129____closed__2); -l_myMacro____x40_Init_Notation___hyg_13129____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_13129____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13129____closed__3); -l_myMacro____x40_Init_Notation___hyg_13129____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_13129____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13129____closed__4); -l_myMacro____x40_Init_Notation___hyg_13129____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_13129____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13129____closed__5); -l_myMacro____x40_Init_Notation___hyg_13129____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_13129____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13129____closed__6); -l_myMacro____x40_Init_Notation___hyg_13129____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_13129____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13129____closed__7); -l_myMacro____x40_Init_Notation___hyg_13129____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_13129____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13129____closed__8); -l_myMacro____x40_Init_Notation___hyg_13129____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_13129____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13129____closed__9); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x2a___xbb__1___closed__9); l_term___x2a_x3e_____closed__1 = _init_l_term___x2a_x3e_____closed__1(); lean_mark_persistent(l_term___x2a_x3e_____closed__1); l_term___x2a_x3e_____closed__2 = _init_l_term___x2a_x3e_____closed__2(); @@ -43727,24 +43727,24 @@ l_term___x2a_x3e_____closed__6 = _init_l_term___x2a_x3e_____closed__6(); lean_mark_persistent(l_term___x2a_x3e_____closed__6); l_term___x2a_x3e__ = _init_l_term___x2a_x3e__(); lean_mark_persistent(l_term___x2a_x3e__); -l_myMacro____x40_Init_Notation___hyg_13327____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_13327____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13327____closed__1); -l_myMacro____x40_Init_Notation___hyg_13327____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_13327____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13327____closed__2); -l_myMacro____x40_Init_Notation___hyg_13327____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_13327____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13327____closed__3); -l_myMacro____x40_Init_Notation___hyg_13327____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_13327____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13327____closed__4); -l_myMacro____x40_Init_Notation___hyg_13327____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_13327____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13327____closed__5); -l_myMacro____x40_Init_Notation___hyg_13327____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_13327____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13327____closed__6); -l_myMacro____x40_Init_Notation___hyg_13327____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_13327____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13327____closed__7); -l_myMacro____x40_Init_Notation___hyg_13327____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_13327____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13327____closed__8); -l_myMacro____x40_Init_Notation___hyg_13327____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_13327____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13327____closed__9); +l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x2a_x3e___xbb__1___closed__9); l_term___x3c_x24_x3e_____closed__1 = _init_l_term___x3c_x24_x3e_____closed__1(); lean_mark_persistent(l_term___x3c_x24_x3e_____closed__1); l_term___x3c_x24_x3e_____closed__2 = _init_l_term___x3c_x24_x3e_____closed__2(); @@ -43759,66 +43759,66 @@ l_term___x3c_x24_x3e_____closed__6 = _init_l_term___x3c_x24_x3e_____closed__6(); lean_mark_persistent(l_term___x3c_x24_x3e_____closed__6); l_term___x3c_x24_x3e__ = _init_l_term___x3c_x24_x3e__(); lean_mark_persistent(l_term___x3c_x24_x3e__); -l_myMacro____x40_Init_Notation___hyg_13527____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_13527____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13527____closed__1); -l_myMacro____x40_Init_Notation___hyg_13527____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_13527____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13527____closed__2); -l_myMacro____x40_Init_Notation___hyg_13527____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_13527____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13527____closed__3); -l_myMacro____x40_Init_Notation___hyg_13527____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_13527____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13527____closed__4); -l_myMacro____x40_Init_Notation___hyg_13527____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_13527____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13527____closed__5); -l_myMacro____x40_Init_Notation___hyg_13527____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_13527____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13527____closed__6); -l_myMacro____x40_Init_Notation___hyg_13527____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_13527____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13527____closed__7); -l_myMacro____x40_Init_Notation___hyg_13527____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_13527____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13527____closed__8); -l_myMacro____x40_Init_Notation___hyg_13527____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_13527____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13527____closed__9); -l_myMacro____x40_Init_Notation___hyg_13773____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_13773____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13773____closed__1); -l_myMacro____x40_Init_Notation___hyg_13773____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_13773____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13773____closed__2); -l_myMacro____x40_Init_Notation___hyg_13773____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_13773____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13773____closed__3); -l_myMacro____x40_Init_Notation___hyg_13773____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_13773____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13773____closed__4); -l_myMacro____x40_Init_Notation___hyg_13773____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_13773____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13773____closed__5); -l_myMacro____x40_Init_Notation___hyg_13773____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_13773____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13773____closed__6); -l_myMacro____x40_Init_Notation___hyg_13773____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_13773____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13773____closed__7); -l_myMacro____x40_Init_Notation___hyg_13773____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_13773____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13773____closed__8); -l_myMacro____x40_Init_Notation___hyg_13773____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_13773____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13773____closed__9); -l_myMacro____x40_Init_Notation___hyg_13773____closed__10 = _init_l_myMacro____x40_Init_Notation___hyg_13773____closed__10(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13773____closed__10); -l_myMacro____x40_Init_Notation___hyg_13773____closed__11 = _init_l_myMacro____x40_Init_Notation___hyg_13773____closed__11(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13773____closed__11); -l_myMacro____x40_Init_Notation___hyg_13773____closed__12 = _init_l_myMacro____x40_Init_Notation___hyg_13773____closed__12(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13773____closed__12); -l_myMacro____x40_Init_Notation___hyg_13879____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_13879____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13879____closed__1); -l_myMacro____x40_Init_Notation___hyg_13879____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_13879____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13879____closed__2); -l_myMacro____x40_Init_Notation___hyg_13879____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_13879____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13879____closed__3); -l_myMacro____x40_Init_Notation___hyg_13879____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_13879____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13879____closed__4); -l_myMacro____x40_Init_Notation___hyg_13879____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_13879____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13879____closed__5); -l_myMacro____x40_Init_Notation___hyg_13879____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_13879____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13879____closed__6); -l_myMacro____x40_Init_Notation___hyg_13879____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_13879____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13879____closed__7); -l_myMacro____x40_Init_Notation___hyg_13879____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_13879____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13879____closed__8); -l_myMacro____x40_Init_Notation___hyg_13879____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_13879____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_13879____closed__9); +l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x24_x3e___xbb__1___closed__9); +l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__9); +l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__10 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__10(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__10); +l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__11 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__11(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__11); +l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__12 = _init_l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__12(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3c_x7c_x3e___xbb__1___closed__12); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm___x3e_x3e___xbb__1___closed__9); l_termDepIfThenElse___closed__1 = _init_l_termDepIfThenElse___closed__1(); lean_mark_persistent(l_termDepIfThenElse___closed__1); l_termDepIfThenElse___closed__2 = _init_l_termDepIfThenElse___closed__2(); @@ -43887,52 +43887,52 @@ l_termDepIfThenElse___closed__33 = _init_l_termDepIfThenElse___closed__33(); lean_mark_persistent(l_termDepIfThenElse___closed__33); l_termDepIfThenElse = _init_l_termDepIfThenElse(); lean_mark_persistent(l_termDepIfThenElse); -l_myMacro____x40_Init_Notation___hyg_14042____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14042____closed__1); -l_myMacro____x40_Init_Notation___hyg_14042____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14042____closed__2); -l_myMacro____x40_Init_Notation___hyg_14042____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14042____closed__3); -l_myMacro____x40_Init_Notation___hyg_14042____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14042____closed__4); -l_myMacro____x40_Init_Notation___hyg_14042____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14042____closed__5); -l_myMacro____x40_Init_Notation___hyg_14042____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14042____closed__6); -l_myMacro____x40_Init_Notation___hyg_14042____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14042____closed__7); -l_myMacro____x40_Init_Notation___hyg_14042____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14042____closed__8); -l_myMacro____x40_Init_Notation___hyg_14042____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14042____closed__9); -l_myMacro____x40_Init_Notation___hyg_14042____closed__10 = _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__10(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14042____closed__10); -l_myMacro____x40_Init_Notation___hyg_14042____closed__11 = _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__11(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14042____closed__11); -l_myMacro____x40_Init_Notation___hyg_14042____closed__12 = _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__12(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14042____closed__12); -l_myMacro____x40_Init_Notation___hyg_14042____closed__13 = _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__13(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14042____closed__13); -l_myMacro____x40_Init_Notation___hyg_14042____closed__14 = _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__14(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14042____closed__14); -l_myMacro____x40_Init_Notation___hyg_14042____closed__15 = _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__15(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14042____closed__15); -l_myMacro____x40_Init_Notation___hyg_14042____closed__16 = _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__16(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14042____closed__16); -l_myMacro____x40_Init_Notation___hyg_14042____closed__17 = _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__17(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14042____closed__17); -l_myMacro____x40_Init_Notation___hyg_14042____closed__18 = _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__18(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14042____closed__18); -l_myMacro____x40_Init_Notation___hyg_14042____closed__19 = _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__19(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14042____closed__19); -l_myMacro____x40_Init_Notation___hyg_14042____closed__20 = _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__20(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14042____closed__20); -l_myMacro____x40_Init_Notation___hyg_14042____closed__21 = _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__21(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14042____closed__21); -l_myMacro____x40_Init_Notation___hyg_14042____closed__22 = _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__22(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14042____closed__22); -l_myMacro____x40_Init_Notation___hyg_14042____closed__23 = _init_l_myMacro____x40_Init_Notation___hyg_14042____closed__23(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14042____closed__23); +l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__1 = _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__1); +l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__2 = _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__2); +l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__3 = _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__3); +l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__4 = _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__4); +l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__5 = _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__5); +l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__6 = _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__6); +l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__7 = _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__7); +l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__8 = _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__8); +l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9 = _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__9); +l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__10 = _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__10(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__10); +l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__11 = _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__11(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__11); +l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__12 = _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__12(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__12); +l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__13 = _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__13(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__13); +l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__14 = _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__14(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__14); +l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__15 = _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__15(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__15); +l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__16 = _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__16(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__16); +l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__17 = _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__17(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__17); +l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__18 = _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__18(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__18); +l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__19 = _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__19(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__19); +l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__20 = _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__20(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__20); +l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__21 = _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__21(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__21); +l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__22 = _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__22(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__22); +l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__23 = _init_l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__23(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termDepIfThenElse__1___closed__23); l_termIfThenElse___closed__1 = _init_l_termIfThenElse___closed__1(); lean_mark_persistent(l_termIfThenElse___closed__1); l_termIfThenElse___closed__2 = _init_l_termIfThenElse___closed__2(); @@ -43959,18 +43959,18 @@ l_termIfThenElse___closed__12 = _init_l_termIfThenElse___closed__12(); lean_mark_persistent(l_termIfThenElse___closed__12); l_termIfThenElse = _init_l_termIfThenElse(); lean_mark_persistent(l_termIfThenElse); -l_myMacro____x40_Init_Notation___hyg_14466____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_14466____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14466____closed__1); -l_myMacro____x40_Init_Notation___hyg_14466____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_14466____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14466____closed__2); -l_myMacro____x40_Init_Notation___hyg_14466____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_14466____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14466____closed__3); -l_myMacro____x40_Init_Notation___hyg_14466____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_14466____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14466____closed__4); -l_myMacro____x40_Init_Notation___hyg_14466____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_14466____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14466____closed__5); -l_myMacro____x40_Init_Notation___hyg_14466____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_14466____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14466____closed__6); +l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__1 = _init_l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__1); +l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__2 = _init_l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__2); +l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__3 = _init_l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__3); +l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__4 = _init_l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__4); +l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__5 = _init_l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__5); +l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__6 = _init_l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termIfThenElse__1___closed__6); l_termIfLet___x3a_x3d__Then__Else_____closed__1 = _init_l_termIfLet___x3a_x3d__Then__Else_____closed__1(); lean_mark_persistent(l_termIfLet___x3a_x3d__Then__Else_____closed__1); l_termIfLet___x3a_x3d__Then__Else_____closed__2 = _init_l_termIfLet___x3a_x3d__Then__Else_____closed__2(); @@ -44011,28 +44011,28 @@ l_termIfLet___x3a_x3d__Then__Else_____closed__19 = _init_l_termIfLet___x3a_x3d__ lean_mark_persistent(l_termIfLet___x3a_x3d__Then__Else_____closed__19); l_termIfLet___x3a_x3d__Then__Else__ = _init_l_termIfLet___x3a_x3d__Then__Else__(); lean_mark_persistent(l_termIfLet___x3a_x3d__Then__Else__); -l_myMacro____x40_Init_Notation___hyg_14726____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_14726____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14726____closed__1); -l_myMacro____x40_Init_Notation___hyg_14726____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_14726____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14726____closed__2); -l_myMacro____x40_Init_Notation___hyg_14726____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_14726____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14726____closed__3); -l_myMacro____x40_Init_Notation___hyg_14726____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_14726____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14726____closed__4); -l_myMacro____x40_Init_Notation___hyg_14726____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_14726____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14726____closed__5); -l_myMacro____x40_Init_Notation___hyg_14726____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_14726____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14726____closed__6); -l_myMacro____x40_Init_Notation___hyg_14726____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_14726____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14726____closed__7); -l_myMacro____x40_Init_Notation___hyg_14726____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_14726____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14726____closed__8); -l_myMacro____x40_Init_Notation___hyg_14726____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_14726____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14726____closed__9); -l_myMacro____x40_Init_Notation___hyg_14726____closed__10 = _init_l_myMacro____x40_Init_Notation___hyg_14726____closed__10(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14726____closed__10); -l_myMacro____x40_Init_Notation___hyg_14726____closed__11 = _init_l_myMacro____x40_Init_Notation___hyg_14726____closed__11(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_14726____closed__11); +l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__8); +l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__9 = _init_l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__9); +l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__10 = _init_l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__10(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__10); +l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__11 = _init_l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__11(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabtermIfLet___x3a_x3d__Then__Else___xbb__1___closed__11); l_term___x3c_x7c_____closed__1 = _init_l_term___x3c_x7c_____closed__1(); lean_mark_persistent(l_term___x3c_x7c_____closed__1); l_term___x3c_x7c_____closed__2 = _init_l_term___x3c_x7c_____closed__2(); @@ -44127,22 +44127,22 @@ l_term_x7b_____x3a___x2f_x2f___x7d___closed__16 = _init_l_term_x7b_____x3a___x2f lean_mark_persistent(l_term_x7b_____x3a___x2f_x2f___x7d___closed__16); l_term_x7b_____x3a___x2f_x2f___x7d = _init_l_term_x7b_____x3a___x2f_x2f___x7d(); lean_mark_persistent(l_term_x7b_____x3a___x2f_x2f___x7d); -l_myMacro____x40_Init_Notation___hyg_15580____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_15580____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_15580____closed__1); -l_myMacro____x40_Init_Notation___hyg_15580____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_15580____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_15580____closed__2); -l_myMacro____x40_Init_Notation___hyg_15580____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_15580____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_15580____closed__3); -l_myMacro____x40_Init_Notation___hyg_15580____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_15580____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_15580____closed__4); -l_myMacro____x40_Init_Notation___hyg_15580____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_15580____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_15580____closed__5); -l_myMacro____x40_Init_Notation___hyg_15580____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_15580____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_15580____closed__6); -l_myMacro____x40_Init_Notation___hyg_15580____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_15580____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_15580____closed__7); -l_myMacro____x40_Init_Notation___hyg_15580____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_15580____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_15580____closed__8); +l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__3); +l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__4 = _init_l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__4); +l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__5 = _init_l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__5); +l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__6 = _init_l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__6); +l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__7 = _init_l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__7); +l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__8 = _init_l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_x7b_____x3a___x2f_x2f___x7d_xbb__1___closed__8); l_termWithout__expected__type_____closed__1 = _init_l_termWithout__expected__type_____closed__1(); lean_mark_persistent(l_termWithout__expected__type_____closed__1); l_termWithout__expected__type_____closed__2 = _init_l_termWithout__expected__type_____closed__2(); @@ -44157,26 +44157,26 @@ l_termWithout__expected__type_____closed__6 = _init_l_termWithout__expected__typ lean_mark_persistent(l_termWithout__expected__type_____closed__6); l_termWithout__expected__type__ = _init_l_termWithout__expected__type__(); lean_mark_persistent(l_termWithout__expected__type__); -l_myMacro____x40_Init_Notation___hyg_16039____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_16039____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_16039____closed__1); -l_myMacro____x40_Init_Notation___hyg_16039____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_16039____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_16039____closed__2); -l_myMacro____x40_Init_Notation___hyg_16039____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_16039____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_16039____closed__3); -l_myMacro____x40_Init_Notation___hyg_16039____closed__4 = _init_l_myMacro____x40_Init_Notation___hyg_16039____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_16039____closed__4); -l_myMacro____x40_Init_Notation___hyg_16039____closed__5 = _init_l_myMacro____x40_Init_Notation___hyg_16039____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_16039____closed__5); -l_myMacro____x40_Init_Notation___hyg_16039____closed__6 = _init_l_myMacro____x40_Init_Notation___hyg_16039____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_16039____closed__6); -l_myMacro____x40_Init_Notation___hyg_16039____closed__7 = _init_l_myMacro____x40_Init_Notation___hyg_16039____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_16039____closed__7); -l_myMacro____x40_Init_Notation___hyg_16039____closed__8 = _init_l_myMacro____x40_Init_Notation___hyg_16039____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_16039____closed__8); -l_myMacro____x40_Init_Notation___hyg_16039____closed__9 = _init_l_myMacro____x40_Init_Notation___hyg_16039____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_16039____closed__9); -l_myMacro____x40_Init_Notation___hyg_16039____closed__10 = _init_l_myMacro____x40_Init_Notation___hyg_16039____closed__10(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_16039____closed__10); +l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__1 = _init_l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__1); +l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__2 = _init_l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__2); +l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__3 = _init_l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__3); +l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__4 = _init_l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__4(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__4); +l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__5 = _init_l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__5(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__5); +l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__6 = _init_l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__6(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__6); +l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__7 = _init_l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__7(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__7); +l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__8 = _init_l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__8(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__8); +l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__9 = _init_l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__9(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__9); +l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__10 = _init_l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__10(); +lean_mark_persistent(l___aux__Init__Notation______macroRules__termWithout__expected__type____1___closed__10); l_term_x5b___x5d___closed__1 = _init_l_term_x5b___x5d___closed__1(); lean_mark_persistent(l_term_x5b___x5d___closed__1); l_term_x5b___x5d___closed__2 = _init_l_term_x5b___x5d___closed__2(); @@ -44225,20 +44225,20 @@ l_term_x25_x5b___x7c___x5d___closed__10 = _init_l_term_x25_x5b___x7c___x5d___clo lean_mark_persistent(l_term_x25_x5b___x7c___x5d___closed__10); l_term_x25_x5b___x7c___x5d = _init_l_term_x25_x5b___x7c___x5d(); lean_mark_persistent(l_term_x25_x5b___x7c___x5d); -l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__1 = _init_l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__1(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__1); -l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__2 = _init_l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__2(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__2); -l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__3 = _init_l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__3(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__3); -l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__4 = _init_l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__4(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__4); -l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__5 = _init_l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__5(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__5); -l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__6 = _init_l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__6(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__6); -l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__7 = _init_l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__7(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Notation___hyg_16234____closed__7); +l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__1 = _init_l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__1(); +lean_mark_persistent(l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__1); +l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__2 = _init_l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__2(); +lean_mark_persistent(l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__2); +l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__3 = _init_l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__3(); +lean_mark_persistent(l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__3); +l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__4 = _init_l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__4(); +lean_mark_persistent(l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__4); +l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__5 = _init_l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__5(); +lean_mark_persistent(l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__5); +l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__6 = _init_l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__6(); +lean_mark_persistent(l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__6); +l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__7 = _init_l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__7(); +lean_mark_persistent(l_Lean___aux__Init__Notation______macroRules___xabterm_x5b___x5d_xbb__1___closed__7); l_Lean_term__Matches_____closed__1 = _init_l_Lean_term__Matches_____closed__1(); lean_mark_persistent(l_Lean_term__Matches_____closed__1); l_Lean_term__Matches_____closed__2 = _init_l_Lean_term__Matches_____closed__2(); @@ -44253,38 +44253,38 @@ l_Lean_term__Matches_____closed__6 = _init_l_Lean_term__Matches_____closed__6(); lean_mark_persistent(l_Lean_term__Matches_____closed__6); l_Lean_term__Matches__ = _init_l_Lean_term__Matches__(); lean_mark_persistent(l_Lean_term__Matches__); -l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__1 = _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__1(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__1); -l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__2 = _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__2(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__2); -l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__3 = _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__3(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__3); -l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__4 = _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__4(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__4); -l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__5 = _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__5(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__5); -l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__6 = _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__6(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__6); -l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__7 = _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__7(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__7); -l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__8 = _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__8(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__8); -l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__9 = _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__9(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__9); -l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__10 = _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__10(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__10); -l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__11 = _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__11(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__11); -l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__12 = _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__12(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__12); -l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__13 = _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__13(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__13); -l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__14 = _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__14(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__14); -l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__15 = _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__15(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__15); -l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__16 = _init_l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__16(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_Notation___hyg_16578____closed__16); +l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__1 = _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__1(); +lean_mark_persistent(l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__1); +l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__2 = _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__2(); +lean_mark_persistent(l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__2); +l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__3 = _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__3(); +lean_mark_persistent(l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__3); +l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__4 = _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__4(); +lean_mark_persistent(l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__4); +l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__5 = _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__5(); +lean_mark_persistent(l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__5); +l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__6 = _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__6(); +lean_mark_persistent(l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__6); +l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__7 = _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__7(); +lean_mark_persistent(l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__7); +l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__8 = _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__8(); +lean_mark_persistent(l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__8); +l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__9 = _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__9(); +lean_mark_persistent(l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__9); +l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__10 = _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__10(); +lean_mark_persistent(l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__10); +l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__11 = _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__11(); +lean_mark_persistent(l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__11); +l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__12 = _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__12(); +lean_mark_persistent(l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__12); +l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__13 = _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__13(); +lean_mark_persistent(l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__13); +l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__14 = _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__14(); +lean_mark_persistent(l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__14); +l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__15 = _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__15(); +lean_mark_persistent(l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__15); +l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__16 = _init_l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__16(); +lean_mark_persistent(l_Lean___aux__Init__Notation______macroRules__Lean__term__Matches____1___closed__16); l_Lean_Parser_Tactic_intro___closed__1 = _init_l_Lean_Parser_Tactic_intro___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_intro___closed__1); l_Lean_Parser_Tactic_intro___closed__2 = _init_l_Lean_Parser_Tactic_intro___closed__2(); @@ -44543,8 +44543,8 @@ l_Lean_Parser_Tactic_tacticNext_______x3d_x3e_____closed__9 = _init_l_Lean_Parse lean_mark_persistent(l_Lean_Parser_Tactic_tacticNext_______x3d_x3e_____closed__9); l_Lean_Parser_Tactic_tacticNext_______x3d_x3e__ = _init_l_Lean_Parser_Tactic_tacticNext_______x3d_x3e__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticNext_______x3d_x3e__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17075____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17075____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17075____closed__1); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticNext_______x3d_x3e___xbb__1___closed__1 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticNext_______x3d_x3e___xbb__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticNext_______x3d_x3e___xbb__1___closed__1); l_Lean_Parser_Tactic_allGoals___closed__1 = _init_l_Lean_Parser_Tactic_allGoals___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_allGoals___closed__1); l_Lean_Parser_Tactic_allGoals___closed__2 = _init_l_Lean_Parser_Tactic_allGoals___closed__2(); @@ -44753,14 +44753,14 @@ l_Lean_Parser_Tactic_tacticTry_____closed__6 = _init_l_Lean_Parser_Tactic_tactic lean_mark_persistent(l_Lean_Parser_Tactic_tacticTry_____closed__6); l_Lean_Parser_Tactic_tacticTry__ = _init_l_Lean_Parser_Tactic_tacticTry__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticTry__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17393____closed__4); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__1 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__1); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__2); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__3 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__3); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__4 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTry____1___closed__4); l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__1 = _init_l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__1); l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__2 = _init_l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__2(); @@ -44781,8 +44781,8 @@ l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__9 = _init_l_Lean_Parser_Ta lean_mark_persistent(l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__9); l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e__ = _init_l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e__(); lean_mark_persistent(l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17564____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17564____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17564____closed__1); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic___x3c_x3b_x3e___xbb__1___closed__1 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic___x3c_x3b_x3e___xbb__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic___x3c_x3b_x3e___xbb__1___closed__1); l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__1 = _init_l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__1); l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__2 = _init_l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__2(); @@ -44803,14 +44803,14 @@ l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__9 = _init_l_Lean_Parser_Tactic_t lean_mark_persistent(l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__9); l_Lean_Parser_Tactic_tactic_xb7_x2e__ = _init_l_Lean_Parser_Tactic_tactic_xb7_x2e__(); lean_mark_persistent(l_Lean_Parser_Tactic_tactic_xb7_x2e__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17788____closed__4); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__1 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__1); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__2 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__2); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__3 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__3); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__4 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtactic_xb7_x2e___xbb__1___closed__4); l_Lean_Parser_Tactic_tacticRfl___closed__1 = _init_l_Lean_Parser_Tactic_tacticRfl___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticRfl___closed__1); l_Lean_Parser_Tactic_tacticRfl___closed__2 = _init_l_Lean_Parser_Tactic_tacticRfl___closed__2(); @@ -44823,16 +44823,16 @@ l_Lean_Parser_Tactic_tacticRfl___closed__5 = _init_l_Lean_Parser_Tactic_tacticRf lean_mark_persistent(l_Lean_Parser_Tactic_tacticRfl___closed__5); l_Lean_Parser_Tactic_tacticRfl = _init_l_Lean_Parser_Tactic_tacticRfl(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticRfl); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17921____closed__5); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__1 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__1); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__2 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__2); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__3 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__3); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__4 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__4); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__5 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRfl__1___closed__5); l_Lean_Parser_Tactic_tacticAdmit___closed__1 = _init_l_Lean_Parser_Tactic_tacticAdmit___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticAdmit___closed__1); l_Lean_Parser_Tactic_tacticAdmit___closed__2 = _init_l_Lean_Parser_Tactic_tacticAdmit___closed__2(); @@ -44845,10 +44845,10 @@ l_Lean_Parser_Tactic_tacticAdmit___closed__5 = _init_l_Lean_Parser_Tactic_tactic lean_mark_persistent(l_Lean_Parser_Tactic_tacticAdmit___closed__5); l_Lean_Parser_Tactic_tacticAdmit = _init_l_Lean_Parser_Tactic_tacticAdmit(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticAdmit); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18030____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18030____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18030____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18030____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18030____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18030____closed__2); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticAdmit__1___closed__1 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticAdmit__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticAdmit__1___closed__1); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticAdmit__1___closed__2 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticAdmit__1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticAdmit__1___closed__2); l_Lean_Parser_Tactic_tacticSorry___closed__1 = _init_l_Lean_Parser_Tactic_tacticSorry___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticSorry___closed__1); l_Lean_Parser_Tactic_tacticSorry___closed__2 = _init_l_Lean_Parser_Tactic_tacticSorry___closed__2(); @@ -44871,18 +44871,18 @@ l_Lean_Parser_Tactic_tacticInfer__instance___closed__5 = _init_l_Lean_Parser_Tac lean_mark_persistent(l_Lean_Parser_Tactic_tacticInfer__instance___closed__5); l_Lean_Parser_Tactic_tacticInfer__instance = _init_l_Lean_Parser_Tactic_tacticInfer__instance(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticInfer__instance); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__5); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18234____closed__6); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__1 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__1); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__2 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__2); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__3 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__3); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__4 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__4); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__5 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__5); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__6 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticInfer__instance__1___closed__6); l_Lean_Parser_Tactic_config___closed__1 = _init_l_Lean_Parser_Tactic_config___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_config___closed__1); l_Lean_Parser_Tactic_config___closed__2 = _init_l_Lean_Parser_Tactic_config___closed__2(); @@ -45295,12 +45295,12 @@ l_Lean_Parser_Tactic_tacticRefine__lift_____closed__6 = _init_l_Lean_Parser_Tact lean_mark_persistent(l_Lean_Parser_Tactic_tacticRefine__lift_____closed__6); l_Lean_Parser_Tactic_tacticRefine__lift__ = _init_l_Lean_Parser_Tactic_tacticRefine__lift__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticRefine__lift__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19083____closed__3); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1___closed__1 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1___closed__1); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1___closed__2 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1___closed__2); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1___closed__3 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRefine__lift____1___closed__3); l_Lean_Parser_Tactic_tacticHave_____closed__1 = _init_l_Lean_Parser_Tactic_tacticHave_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_____closed__1); l_Lean_Parser_Tactic_tacticHave_____closed__2 = _init_l_Lean_Parser_Tactic_tacticHave_____closed__2(); @@ -45321,12 +45321,12 @@ l_Lean_Parser_Tactic_tacticHave_____closed__9 = _init_l_Lean_Parser_Tactic_tacti lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_____closed__9); l_Lean_Parser_Tactic_tacticHave__ = _init_l_Lean_Parser_Tactic_tacticHave__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19300____closed__3); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__1 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__1); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__2 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__2); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__3 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave____1___closed__3); l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__1 = _init_l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__1); l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__2 = _init_l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__2(); @@ -45343,12 +45343,12 @@ l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__7 = _init_l_Lean_Parser_ lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__7); l_Lean_Parser_Tactic_tacticHave_____x3a_x3d__ = _init_l_Lean_Parser_Tactic_tacticHave_____x3a_x3d__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_____x3a_x3d__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19454____closed__3); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1___closed__1 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1___closed__1); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1___closed__2 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1___closed__2); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1___closed__3 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic___xabtacticHave_____x3a_x3d___xbb__1___closed__3); l_Lean_Parser_Tactic_tacticSuffices_____closed__1 = _init_l_Lean_Parser_Tactic_tacticSuffices_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticSuffices_____closed__1); l_Lean_Parser_Tactic_tacticSuffices_____closed__2 = _init_l_Lean_Parser_Tactic_tacticSuffices_____closed__2(); @@ -45369,10 +45369,10 @@ l_Lean_Parser_Tactic_tacticSuffices_____closed__9 = _init_l_Lean_Parser_Tactic_t lean_mark_persistent(l_Lean_Parser_Tactic_tacticSuffices_____closed__9); l_Lean_Parser_Tactic_tacticSuffices__ = _init_l_Lean_Parser_Tactic_tacticSuffices__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticSuffices__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19629____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19629____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19629____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19629____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19629____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19629____closed__2); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticSuffices____1___closed__1 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticSuffices____1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticSuffices____1___closed__1); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticSuffices____1___closed__2 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticSuffices____1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticSuffices____1___closed__2); l_Lean_Parser_Tactic_tacticLet_____closed__1 = _init_l_Lean_Parser_Tactic_tacticLet_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticLet_____closed__1); l_Lean_Parser_Tactic_tacticLet_____closed__2 = _init_l_Lean_Parser_Tactic_tacticLet_____closed__2(); @@ -45403,16 +45403,16 @@ l_Lean_Parser_Tactic_tacticShow_____closed__6 = _init_l_Lean_Parser_Tactic_tacti lean_mark_persistent(l_Lean_Parser_Tactic_tacticShow_____closed__6); l_Lean_Parser_Tactic_tacticShow__ = _init_l_Lean_Parser_Tactic_tacticShow__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticShow__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19918____closed__5); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__1 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__1); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__2 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__2); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__3 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__3); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__4 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__4); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__5 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticShow____1___closed__5); l_Lean_Parser_Tactic_letrec___closed__1 = _init_l_Lean_Parser_Tactic_letrec___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_letrec___closed__1); l_Lean_Parser_Tactic_letrec___closed__2 = _init_l_Lean_Parser_Tactic_letrec___closed__2(); @@ -45441,12 +45441,12 @@ l_Lean_Parser_Tactic_letrec___closed__13 = _init_l_Lean_Parser_Tactic_letrec___c lean_mark_persistent(l_Lean_Parser_Tactic_letrec___closed__13); l_Lean_Parser_Tactic_letrec = _init_l_Lean_Parser_Tactic_letrec(); lean_mark_persistent(l_Lean_Parser_Tactic_letrec); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20069____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20069____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20069____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20069____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20069____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20069____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20069____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20069____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20069____closed__3); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__letrec__1___closed__1 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__letrec__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__letrec__1___closed__1); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__letrec__1___closed__2 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__letrec__1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__letrec__1___closed__2); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__letrec__1___closed__3 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__letrec__1___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__letrec__1___closed__3); l_Lean_Parser_Tactic_tacticRefine__lift_x27_____closed__1 = _init_l_Lean_Parser_Tactic_tacticRefine__lift_x27_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticRefine__lift_x27_____closed__1); l_Lean_Parser_Tactic_tacticRefine__lift_x27_____closed__2 = _init_l_Lean_Parser_Tactic_tacticRefine__lift_x27_____closed__2(); @@ -45475,8 +45475,8 @@ l_Lean_Parser_Tactic_tacticHave_x27_____closed__6 = _init_l_Lean_Parser_Tactic_t lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_x27_____closed__6); l_Lean_Parser_Tactic_tacticHave_x27__ = _init_l_Lean_Parser_Tactic_tacticHave_x27__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_x27__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20477____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20477____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20477____closed__1); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave_x27____1___closed__1 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave_x27____1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticHave_x27____1___closed__1); l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__1 = _init_l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__1); l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__2 = _init_l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__2(); @@ -45727,8 +45727,8 @@ l_Lean_Parser_Tactic_tacticRepeat_____closed__6 = _init_l_Lean_Parser_Tactic_tac lean_mark_persistent(l_Lean_Parser_Tactic_tacticRepeat_____closed__6); l_Lean_Parser_Tactic_tacticRepeat__ = _init_l_Lean_Parser_Tactic_tacticRepeat__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticRepeat__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21226____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21226____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21226____closed__1); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRepeat____1___closed__1 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRepeat____1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticRepeat____1___closed__1); l_Lean_Parser_Tactic_tacticTrivial___closed__1 = _init_l_Lean_Parser_Tactic_tacticTrivial___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticTrivial___closed__1); l_Lean_Parser_Tactic_tacticTrivial___closed__2 = _init_l_Lean_Parser_Tactic_tacticTrivial___closed__2(); @@ -45775,36 +45775,36 @@ l_Lean_Parser_Tactic_specialize___closed__6 = _init_l_Lean_Parser_Tactic_special lean_mark_persistent(l_Lean_Parser_Tactic_specialize___closed__6); l_Lean_Parser_Tactic_specialize = _init_l_Lean_Parser_Tactic_specialize(); lean_mark_persistent(l_Lean_Parser_Tactic_specialize); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__5); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__6); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__7); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__8 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21712____closed__8); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__5); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__6); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21796____closed__7); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__1 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__1); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__2 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__2); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__3 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__3); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__4 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__4); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__5 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__5); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__6 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__6); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__7 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__7); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__8 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__4___closed__8); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__1 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__1); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__2 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__2); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__3 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__3); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__4 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__4); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__5 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__5); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__6 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__6); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__7 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticTrivial__5___closed__7); l_Lean_Parser_Tactic_tacticUnhygienic_____closed__1 = _init_l_Lean_Parser_Tactic_tacticUnhygienic_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticUnhygienic_____closed__1); l_Lean_Parser_Tactic_tacticUnhygienic_____closed__2 = _init_l_Lean_Parser_Tactic_tacticUnhygienic_____closed__2(); @@ -45819,22 +45819,22 @@ l_Lean_Parser_Tactic_tacticUnhygienic_____closed__6 = _init_l_Lean_Parser_Tactic lean_mark_persistent(l_Lean_Parser_Tactic_tacticUnhygienic_____closed__6); l_Lean_Parser_Tactic_tacticUnhygienic__ = _init_l_Lean_Parser_Tactic_tacticUnhygienic__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticUnhygienic__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__5); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__6); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__7); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__8 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21914____closed__8); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__1 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__1); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__2 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__2); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__3 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__3); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__4 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__4); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__5 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__5); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__6 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__6); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__7 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__7); +l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__8 = _init_l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic___aux__Init__Notation______macroRules__Lean__Parser__Tactic__tacticUnhygienic____1___closed__8); l_Lean_Parser_Attr_simp___closed__1 = _init_l_Lean_Parser_Attr_simp___closed__1(); lean_mark_persistent(l_Lean_Parser_Attr_simp___closed__1); l_Lean_Parser_Attr_simp___closed__2 = _init_l_Lean_Parser_Attr_simp___closed__2(); @@ -45873,12 +45873,12 @@ l_term_u2039___u203a___closed__9 = _init_l_term_u2039___u203a___closed__9(); lean_mark_persistent(l_term_u2039___u203a___closed__9); l_term_u2039___u203a = _init_l_term_u2039___u203a(); lean_mark_persistent(l_term_u2039___u203a); -l_myMacro____x40_Init_Notation___hyg_22078____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_22078____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_22078____closed__1); -l_myMacro____x40_Init_Notation___hyg_22078____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_22078____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_22078____closed__2); -l_myMacro____x40_Init_Notation___hyg_22078____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_22078____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_22078____closed__3); +l___aux__Init__Notation______macroRules___xabterm_u2039___u203a_xbb__1___closed__1 = _init_l___aux__Init__Notation______macroRules___xabterm_u2039___u203a_xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_u2039___u203a_xbb__1___closed__1); +l___aux__Init__Notation______macroRules___xabterm_u2039___u203a_xbb__1___closed__2 = _init_l___aux__Init__Notation______macroRules___xabterm_u2039___u203a_xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_u2039___u203a_xbb__1___closed__2); +l___aux__Init__Notation______macroRules___xabterm_u2039___u203a_xbb__1___closed__3 = _init_l___aux__Init__Notation______macroRules___xabterm_u2039___u203a_xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__Notation______macroRules___xabterm_u2039___u203a_xbb__1___closed__3); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/NotationExtra.c b/stage0/stdlib/Init/NotationExtra.c index fe3f523f3a..0391e323f8 100644 --- a/stage0/stdlib/Init/NotationExtra.c +++ b/stage0/stdlib/Init/NotationExtra.c @@ -13,42 +13,42 @@ #ifdef __cplusplus extern "C" { #endif +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__17; +static lean_object* l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__4; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__13; static lean_object* l_calcStep___closed__7; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__27; static lean_object* l_Lean_unbracketedExplicitBinders___closed__4; +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_u03a3___x2c___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__4; -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__21; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__38; static lean_object* l_unexpandListCons___closed__1; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__12; -static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__2; LEAN_EXPORT lean_object* l_term_u03a3_x27___x2c__; static lean_object* l_termExists___x2c_____closed__2; LEAN_EXPORT lean_object* l_unexpandSigma(lean_object*, lean_object*); lean_object* l_Lean_extractMacroScopes(lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__10; +LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__17; size_t lean_usize_add(size_t, size_t); +static lean_object* l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__8; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__8; LEAN_EXPORT lean_object* l_calcStep; +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___lambda__1(lean_object*); static lean_object* l_term_u03a3___x2c_____closed__6; static lean_object* l_Lean_unbracketedExplicitBinders___closed__1; +static lean_object* l___aux__Init__NotationExtra______macroRules__solve__1___closed__6; static lean_object* l_Lean_unifConstraint___closed__1; static lean_object* l_Lean_expandExplicitBindersAux_loop___closed__5; static lean_object* l_term_u03a3_x27___x2c_____closed__4; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__23; lean_object* lean_erase_macro_scopes(lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_8177____spec__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_unexpandIte___closed__4; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__19; static lean_object* l_unexpandListNil___rarg___closed__2; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__24; -LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_term_u03a3___x2c__; lean_object* lean_mk_empty_array_with_capacity(lean_object*); static lean_object* l_term___xd7____1___closed__7; lean_object* lean_nat_div(lean_object*, lean_object*); +static lean_object* l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__9; LEAN_EXPORT lean_object* l_unexpandSorryAx(lean_object*, lean_object*); static lean_object* l_termExists___x2c_____closed__5; static lean_object* l_Lean_explicitBinders___closed__4; @@ -57,48 +57,68 @@ static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__9; static lean_object* l_unexpandSubtype___closed__4; static lean_object* l_Lean_unbracketedExplicitBinders___closed__2; extern lean_object* l_Lean_nullKind; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_u2203___x2c___xbb__1___closed__2; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__1; static lean_object* l_Lean_unifConstraint___closed__8; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__11; static lean_object* l_calc___closed__12; static lean_object* l_Lean_unifConstraint___closed__2; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_8177____lambda__1___closed__1; static lean_object* l_Lean_binderIdent___closed__6; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__20; lean_object* lean_name_mk_string(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_expandExplicitBinders___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); static lean_object* l_Lean_explicitBinders___closed__3; static lean_object* l_termExists___x2c_____closed__1; +LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_expandExplicitBinders___closed__1; +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules__solve__1___lambda__1(lean_object*); static lean_object* l_Lean_unifConstraint___closed__3; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__16; lean_object* l_Array_append___rarg(lean_object*, lean_object*); +static lean_object* l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__2; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__12; +static lean_object* l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__1; static lean_object* l_term_u2203___x2c_____closed__7; static lean_object* l_tacticFunext_______closed__7; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__42; LEAN_EXPORT lean_object* l_Lean_expandExplicitBindersAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__2(lean_object*); +LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_term_u03a3_x27___x2c_____closed__1; +static lean_object* l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__2; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_u2203___x2c___xbb__1___closed__1; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_u03a3___x2c___xbb__1___closed__2; +static lean_object* l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__6; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__37; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__16; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__20; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__31; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); static lean_object* l_unexpandIte___closed__1; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_calc___closed__10; LEAN_EXPORT lean_object* l_tacticCalc__; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__30; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__18; static lean_object* l_unexpandSubtype___closed__2; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__25; +LEAN_EXPORT lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1(lean_object*, lean_object*, lean_object*); size_t lean_usize_sub(size_t, size_t); static lean_object* l_Lean_expandExplicitBindersAux_loop___closed__12; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22; static lean_object* l_tacticFunext_______closed__2; static lean_object* l_Lean_explicitBinders___closed__2; +static lean_object* l___aux__Init__NotationExtra______macroRules__solve__1___lambda__1___closed__1; +static lean_object* l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__1; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__24; static lean_object* l_term_u03a3_x27___x2c_____closed__2; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__10; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__2; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__3; static lean_object* l_unexpandExists___closed__3; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__25; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__15; +LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_bracketedExplicitBinders___closed__7; static lean_object* l_unexpandIte___closed__2; -static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__1; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__7; uint8_t lean_name_eq(lean_object*, lean_object*); static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__31; static lean_object* l_Lean_binderIdent___closed__3; @@ -107,30 +127,32 @@ static lean_object* l_tacticFunext_______closed__1; static lean_object* l_Lean_binderIdent___closed__5; LEAN_EXPORT lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d__; lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__6; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__32; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__10; +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); +static lean_object* l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__5; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__31; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__6; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__6; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__11; lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_unifConstraintElem; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); +static lean_object* l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__7; LEAN_EXPORT lean_object* l_Lean_expandExplicitBindersAux_loop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_unexpandListToArray(lean_object*, lean_object*); static lean_object* l_tacticFunext_______closed__3; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__33; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__17; static lean_object* l_Lean_bracketedExplicitBinders___closed__3; static lean_object* l_unexpandListToArray___closed__1; static lean_object* l_Lean_explicitBinders___closed__1; static lean_object* l_Lean_binderIdent___closed__7; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__26; LEAN_EXPORT lean_object* l_Lean_expandExplicitBindersAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__22; -static lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_8177____spec__1___closed__1; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__14; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2308____closed__2; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__21; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__29; static lean_object* l_term_u03a3___x2c_____closed__3; lean_object* lean_string_utf8_byte_size(lean_object*); static lean_object* l_Lean_bracketedExplicitBinders___closed__5; @@ -141,444 +163,422 @@ LEAN_EXPORT lean_object* l_calc; static lean_object* l_tacticFunext_______closed__5; LEAN_EXPORT lean_object* l___private_Init_NotationExtra_0__Lean_mkHintBody(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_unexpandListToArray___closed__2; +static lean_object* l___aux__Init__NotationExtra______macroRules__solve__1___closed__2; static lean_object* l_Lean_unifConstraint___closed__6; -static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__4; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__29; uint8_t lean_usize_dec_lt(size_t, size_t); +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__13; extern lean_object* l_Lean_nameLitKind; static lean_object* l_term_u03a3_x27___x2c_____closed__8; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__25; LEAN_EXPORT lean_object* l_unexpandListNil___boxed(lean_object*); static lean_object* l_Lean_unbracketedExplicitBinders___closed__3; -static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__8; static lean_object* l_termExists___x2c_____closed__7; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__33; +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_u2203___x2c___xbb__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__24; static lean_object* l_term___xd7_x27_____closed__1; lean_object* lean_nat_add(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30_(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__10; static lean_object* l_calcStep___closed__6; +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules__solve__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__12; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__3; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__11; static lean_object* l_solve___closed__11; static lean_object* l_calc___closed__11; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__26; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__11; +static lean_object* l___aux__Init__NotationExtra______macroRules__solve__1___closed__7; LEAN_EXPORT lean_object* l_Lean_expandBrackedBindersAux_loop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_term_u03a3___x2c_____closed__7; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__19; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2308____closed__1; +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabterm___xd7____1_xbb__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__7; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__14; LEAN_EXPORT lean_object* l_Lean_expandBrackedBindersAux_loop___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_expandBrackedBindersAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_unexpandSorryAx___closed__1; static lean_object* l_term___xd7_x27_____closed__2; +static lean_object* l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__8; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__22; static lean_object* l_Lean_expandExplicitBindersAux_loop___closed__10; static lean_object* l_solve___closed__2; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__11; static lean_object* l_unexpandEqNDRec___closed__3; static lean_object* l_calc___closed__4; LEAN_EXPORT lean_object* l_Lean_binderIdent; static lean_object* l_unexpandProdMk___closed__1; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__11; static lean_object* l_tacticCalc_____closed__5; uint8_t l_Lean_Name_hasMacroScopes(lean_object*); LEAN_EXPORT lean_object* l_Lean_expandBrackedBinders(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_term___xd7_x27_____closed__4; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__25; static lean_object* l_solve___closed__1; +static lean_object* l___aux__Init__NotationExtra______macroRules__solve__1___closed__5; static lean_object* l_unexpandSorryAx___closed__2; -static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__7; lean_object* lean_array_fget(lean_object*, lean_object*); +static lean_object* l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__10; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__33; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__22; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__6; -LEAN_EXPORT lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(lean_object*, lean_object*); static lean_object* l_Lean_unbracketedExplicitBinders___closed__9; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__34; static lean_object* l_tacticFunext_______closed__6; static lean_object* l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1___closed__2; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules__solve__1___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_unexpandExists___closed__4; static lean_object* l_Lean_unifConstraintElem___closed__9; static lean_object* l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1___closed__1; lean_object* l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(lean_object*, lean_object*); +static lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__1; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__21; static lean_object* l_solve___closed__8; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__12; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__38; static lean_object* l_tacticCalc_____closed__3; -static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__3; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__32; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__10; static lean_object* l_Lean_unifConstraint___closed__9; static lean_object* l_Lean_unbracketedExplicitBinders___closed__11; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__29; static lean_object* l_Lean_unifConstraintElem___closed__4; lean_object* lean_nat_sub(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(lean_object*); static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__29; LEAN_EXPORT lean_object* l_unexpandIte(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_solve; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__42; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__13; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__8; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__37; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__11; -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_termExists___x2c_____closed__4; static lean_object* l_calc___closed__9; static lean_object* l_term___xd7____1___closed__1; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__9; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__27; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__2; +static lean_object* l___aux__Init__NotationExtra______macroRules__solve__1___closed__1; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__11; +static lean_object* l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__1; static lean_object* l_Lean_unifConstraintElem___closed__8; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__10; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__19; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__4; static lean_object* l_Lean_bracketedExplicitBinders___closed__6; static lean_object* l_tacticCalc_____closed__1; static lean_object* l_tacticCalc_____closed__2; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__9; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); static lean_object* l_solve___closed__6; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__17; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__10; LEAN_EXPORT lean_object* l_term___xd7____1; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__32; static lean_object* l_Lean_explicitBinders___closed__5; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__10; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__2; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__2; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_expandExplicitBinders___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__7; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__7; static lean_object* l_termExists___x2c_____closed__8; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__20; static lean_object* l_Lean_expandExplicitBindersAux_loop___closed__7; static lean_object* l_Lean_unbracketedExplicitBinders___closed__8; static lean_object* l_Lean_unifConstraintElem___closed__1; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__16; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_u03a3___x2c___xbb__1___closed__1; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__6; static lean_object* l_term_u2203___x2c_____closed__4; +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabterm___xd7_x27___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__7; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__40; LEAN_EXPORT lean_object* l_Lean_expandExplicitBinders(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_unifConstraintElem___closed__2; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__24; static lean_object* l_term___xd7____1___closed__2; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__1; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__10; static lean_object* l_tacticCalc_____closed__4; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__4; +LEAN_EXPORT lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_unexpandExists___closed__2; static lean_object* l_Lean_unifConstraint___closed__4; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__17; -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__2(lean_object*); static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__16; static lean_object* l_Lean_unifConstraintElem___closed__11; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__8; lean_object* l_Lean_Syntax_getId(lean_object*); lean_object* l___private_Init_Meta_0__Lean_quoteNameMk(lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__9; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__5; -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__1(lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__41; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__8; +static lean_object* l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__3; static lean_object* l_unexpandProdMk___closed__2; static lean_object* l_termExists___x2c_____closed__6; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__13; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2026____closed__1; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__17; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__13; static lean_object* l_Lean_unbracketedExplicitBinders___closed__6; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2026____closed__2; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__41; static lean_object* l_solve___closed__13; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__4; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__23; static lean_object* l_Lean_unbracketedExplicitBinders___closed__13; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__3; LEAN_EXPORT lean_object* l_Lean_bracketedExplicitBinders; LEAN_EXPORT lean_object* l_unexpandEqRec(lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__1; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__1; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__27; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__4; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__13; +static lean_object* l___aux__Init__NotationExtra______macroRules__solve__1___closed__3; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules__solve__1___spec__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_Lean_unifConstraint___closed__10; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__16; static lean_object* l_Lean_bracketedExplicitBinders___closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1___closed__3; static lean_object* l_calcStep___closed__9; LEAN_EXPORT lean_object* l_term___xd7_x27__; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__12; static lean_object* l_Lean_expandExplicitBindersAux_loop___closed__11; LEAN_EXPORT lean_object* l_unexpandEqNDRec(lean_object*, lean_object*); static lean_object* l_termExists___x2c_____closed__3; static lean_object* l___private_Init_NotationExtra_0__Lean_mkHintBody___closed__2; lean_object* l_Array_reverse___rarg(lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__1; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__7; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__6; +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules__tacticCalc____1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_expandExplicitBinders___spec__1(lean_object*, lean_object*, size_t, size_t); extern lean_object* l_Lean_instInhabitedSyntax; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__2; static lean_object* l_Lean_unifConstraintElem___closed__5; LEAN_EXPORT lean_object* l_unexpandUnit(lean_object*); +static lean_object* l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__7; static lean_object* l_tacticCalc_____closed__6; lean_object* l_Lean_mkSepArray(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__5; static lean_object* l_calcStep___closed__1; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__3; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__20; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__9; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__24; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__2; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__2; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__15; +static lean_object* l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules__solve__1___spec__1___closed__1; LEAN_EXPORT lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2__; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__14; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__4; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__28; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__8; static lean_object* l_tacticFunext_______closed__8; static lean_object* l_term___xd7____1___closed__8; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__34; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__4; size_t lean_usize_of_nat(lean_object*); static lean_object* l_Lean_unifConstraintElem___closed__6; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__3; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__4; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__15; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__17; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__18; static lean_object* l_term_u03a3___x2c_____closed__2; static lean_object* l_term___xd7____1___closed__4; -static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__6; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); static lean_object* l_term_u2203___x2c_____closed__8; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__1; static lean_object* l_Lean_unbracketedExplicitBinders___closed__12; LEAN_EXPORT lean_object* l_tacticFunext____; static lean_object* l_term___xd7_x27_____closed__6; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__9; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__39; static lean_object* l_Lean_bracketedExplicitBinders___closed__1; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__4; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__3; static lean_object* l_Lean_bracketedExplicitBinders___closed__8; static lean_object* l_calc___closed__8; static lean_object* l_unexpandListNil___rarg___closed__3; LEAN_EXPORT lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__35; static lean_object* l_calc___closed__2; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__2; static lean_object* l_Lean_bracketedExplicitBinders___closed__9; static lean_object* l_tacticFunext_______closed__9; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__8; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22; static lean_object* l_unexpandPSigma___closed__1; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__17; LEAN_EXPORT lean_object* l_unexpandPSigma(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__9; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__16; static lean_object* l_solve___closed__12; static lean_object* l_unexpandSigma___closed__1; uint8_t l_Lean_Syntax_isNodeOf(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__4; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__34; +static lean_object* l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__5; static lean_object* l_Lean_bracketedExplicitBinders___closed__4; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__7; -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___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___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__33; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__19; LEAN_EXPORT lean_object* l_unexpandUnit___rarg(lean_object*); static lean_object* l_unexpandListNil___rarg___closed__1; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__1; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2214____closed__1; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__30; static lean_object* l_calcStep___closed__3; -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(lean_object*); -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__31; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__20; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__9; lean_object* l_String_intercalate(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__7; static lean_object* l_calc___closed__6; lean_object* l_Lean_Macro_throwError___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__23; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__18; +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__1(lean_object*, lean_object*); static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__13; LEAN_EXPORT lean_object* l_unexpandListNil___rarg(lean_object*); static lean_object* l_calcStep___closed__5; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__26; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__22; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__12; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__12; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__21; static lean_object* l_solve___closed__7; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__5; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_unexpandSubtype(lean_object*, lean_object*); static lean_object* l_calcStep___closed__4; -LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__40; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__6; -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__1___boxed(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__25; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__2; static lean_object* l_unexpandListToArray___closed__3; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__33; static lean_object* l_Lean_expandExplicitBindersAux_loop___closed__6; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__22; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__5; static lean_object* l_term_u2203___x2c_____closed__1; -LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__6; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__6; +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_u03a3_x27___x2c___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__14; uint8_t lean_nat_dec_le(lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__18; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__28; static lean_object* l_tacticFunext_______closed__4; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__11; static lean_object* l_term_u03a3_x27___x2c_____closed__7; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__15; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__5; static lean_object* l_term_u2203___x2c_____closed__2; -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); static lean_object* l_term_u03a3_x27___x2c_____closed__3; static lean_object* l_Lean_unbracketedExplicitBinders___closed__10; -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(size_t, size_t, lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); +static lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_u03a3_x27___x2c___xbb__1___closed__2; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_u03a3_x27___x2c___xbb__1___closed__1; lean_object* l_Lean_MacroScopesView_review(lean_object*); -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__13; static lean_object* l_tacticFunext_______closed__11; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__36; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__25; LEAN_EXPORT lean_object* l_unexpandProdMk(lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__31; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__11; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__8; static lean_object* l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1___closed__4; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2214____closed__2; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__15; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__3; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__3; +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabtermExists___x2c___xbb__1(lean_object*, lean_object*, lean_object*); static lean_object* l_solve___closed__3; static lean_object* l_tacticFunext_______closed__10; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__3; -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7135____lambda__1(lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__5; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__6; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__12; lean_object* l_Array_ofSubarray___rarg(lean_object*); static lean_object* l_solve___closed__15; -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2026_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2214_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2308_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2120_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6893_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7135_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2398_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2479_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2605_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7584_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_8177_(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__1; -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_8177____spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__9; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__5; static lean_object* l_calc___closed__5; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__18; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__28; static lean_object* l_solve___closed__14; -LEAN_EXPORT lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1___boxed(lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__15; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__28; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__14; +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__14; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__14; +static lean_object* l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__2; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__18; LEAN_EXPORT lean_object* l_unexpandUnit___boxed(lean_object*); -static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__5; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__15; static lean_object* l_solve___closed__5; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__6; static lean_object* l_calc___closed__3; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__3; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__30; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__1; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__4; uint8_t l_Lean_Syntax_isNone(lean_object*); +static lean_object* l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__6; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__11; static lean_object* l_term___xd7_x27_____closed__7; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__5; LEAN_EXPORT lean_object* l_Lean_expandBrackedBindersAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__13; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__11; static lean_object* l_tacticCalc_____closed__7; static lean_object* l_term_u2203___x2c_____closed__5; static lean_object* l_Lean_binderIdent___closed__8; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__4; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__23; static lean_object* l_term___xd7____1___closed__6; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__9; LEAN_EXPORT lean_object* l_unexpandExists(lean_object*, lean_object*); static lean_object* l_unexpandIte___closed__5; static lean_object* l_Lean_binderIdent___closed__4; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__12; static lean_object* l_solve___closed__10; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__12; LEAN_EXPORT lean_object* l_unexpandListNil(lean_object*); static lean_object* l_term_u2203___x2c_____closed__3; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__5; static lean_object* l_unexpandExists___closed__1; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__12; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); static lean_object* l_unexpandSubtype___closed__3; +static lean_object* l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__4; static lean_object* l_Lean_expandExplicitBindersAux_loop___closed__1; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__36; LEAN_EXPORT lean_object* l_termExists___x2c__; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__23; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__2; static lean_object* l_Lean_unifConstraintElem___closed__7; LEAN_EXPORT lean_object* l_Lean_expandExplicitBindersAux_loop___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__21; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__13; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__31; static lean_object* l_term_u2203___x2c_____closed__6; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__3; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27; static lean_object* l_Lean_expandExplicitBindersAux_loop___closed__9; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__5; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__23; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__2; -static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__9; LEAN_EXPORT lean_object* l_Lean_unbracketedExplicitBinders; static lean_object* l_term_u03a3___x2c_____closed__1; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__3; static lean_object* l_tacticFunext_______closed__12; static lean_object* l_Lean_unbracketedExplicitBinders___closed__5; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__26; +static lean_object* l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__7; static lean_object* l_Lean_expandExplicitBindersAux_loop___closed__8; static lean_object* l_term_u03a3_x27___x2c_____closed__5; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__16; static lean_object* l_Lean_binderIdent___closed__2; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); static lean_object* l_Lean_binderIdent___closed__1; LEAN_EXPORT lean_object* l_unexpandListCons(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_unifConstraint; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__39; LEAN_EXPORT lean_object* l_term_u2203___x2c__; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__8; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__8; static lean_object* l_term_u03a3___x2c_____closed__8; static lean_object* l_solve___closed__4; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__6; static lean_object* l_Lean_expandExplicitBindersAux_loop___closed__2; static lean_object* l_term_u03a3___x2c_____closed__4; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__35; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__14; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__32; +static lean_object* l___aux__Init__NotationExtra______macroRules__solve__1___closed__4; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__8; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__18; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__8; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__10; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__5; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__14; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__7; static lean_object* l_Lean_expandExplicitBindersAux_loop___closed__4; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__6; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__2; static lean_object* l_solve___closed__9; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__30; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__20; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__5; +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules__tacticFunext______1(lean_object*, lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); static lean_object* l_calc___closed__7; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__13; +LEAN_EXPORT lean_object* l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(lean_object*, lean_object*); static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__21; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__15; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__34; +static lean_object* l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__3; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__8; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__17; +static lean_object* l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__3; static lean_object* l_unexpandSubtype___closed__5; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__7; -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_8177____lambda__1(lean_object*); static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__2; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__32; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__10; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__1; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__7; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__24; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__21; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(size_t, size_t, lean_object*); +static lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__10; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__9; +static lean_object* l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__5; static lean_object* l_Lean_unifConstraintElem___closed__10; +static lean_object* l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__5; static lean_object* l_term_u03a3_x27___x2c_____closed__6; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__6; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__4; +static lean_object* l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__4; +LEAN_EXPORT lean_object* l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1___boxed(lean_object*, lean_object*); static lean_object* l_term___xd7_x27_____closed__5; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__16; static lean_object* l_term___xd7_x27_____closed__3; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__27; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__1; +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_NotationExtra_0__Lean_mkHintBody___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__4; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__3; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__2; -static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__20; static lean_object* l_unexpandIte___closed__3; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__15; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__1; static lean_object* l_term___xd7____1___closed__5; +static lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__18; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(lean_object*, size_t, size_t, lean_object*); static lean_object* l_calcStep___closed__8; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__23; static lean_object* l_Lean_unifConstraint___closed__5; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__18; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__5; +static lean_object* l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__11; +static lean_object* l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__6; +static lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__16; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__3; +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__1___boxed(lean_object*, lean_object*); static lean_object* l___private_Init_NotationExtra_0__Lean_mkHintBody___closed__1; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__1; static lean_object* l_unexpandSubtype___closed__1; @@ -587,11 +587,11 @@ static lean_object* l_unexpandEqNDRec___closed__2; static lean_object* l_Lean_expandExplicitBindersAux_loop___closed__3; static lean_object* l_term___xd7____1___closed__3; static lean_object* l_Lean_unifConstraint___closed__7; +static lean_object* l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__9; static lean_object* l_calcStep___closed__2; lean_object* l_Lean_Syntax_mkLit(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); static lean_object* l_unexpandEqNDRec___closed__1; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__7; uint8_t l_Lean_Syntax_isIdent(lean_object*); LEAN_EXPORT lean_object* l_Lean_explicitBinders; static lean_object* l_calc___closed__1; @@ -837,7 +837,7 @@ x_1 = l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__23; return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__1() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -845,17 +845,17 @@ x_1 = lean_mk_string("Parser"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__2() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__2; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__1; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__3() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__3() { _start: { lean_object* x_1; @@ -863,17 +863,17 @@ x_1 = lean_mk_string("Term"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__4() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__2; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__3; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__2; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__5() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__5() { _start: { lean_object* x_1; @@ -881,17 +881,17 @@ x_1 = lean_mk_string("app"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__6() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__4; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__5; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__4; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__7() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__7() { _start: { lean_object* x_1; @@ -899,22 +899,22 @@ x_1 = lean_mk_string("Macro.trace"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__8() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__7; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__7; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__9() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__7; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__7; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__8; +x_3 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__8; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -922,7 +922,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__10() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__10() { _start: { lean_object* x_1; @@ -930,17 +930,17 @@ x_1 = lean_mk_string("Macro"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__11() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__10; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__10; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__12() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__12() { _start: { lean_object* x_1; @@ -948,61 +948,61 @@ x_1 = lean_mk_string("trace"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__13() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__11; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__12; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__11; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__12; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__14() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__2; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__10; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__10; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__15() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__14; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__12; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__14; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__12; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__16() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__15; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__15; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__17() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__16; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__16; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__18() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__18() { _start: { lean_object* x_1; @@ -1010,17 +1010,17 @@ x_1 = lean_mk_string("null"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__18; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__18; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__20() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__20() { _start: { lean_object* x_1; @@ -1028,17 +1028,17 @@ x_1 = lean_mk_string("paren"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__21() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__4; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__20; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__4; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__20; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22() { _start: { lean_object* x_1; @@ -1046,7 +1046,7 @@ x_1 = lean_mk_string("("); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__23() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__23() { _start: { lean_object* x_1; @@ -1054,17 +1054,17 @@ x_1 = lean_mk_string("termS!_"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__24() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__23; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__23; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__25() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__25() { _start: { lean_object* x_1; @@ -1072,7 +1072,7 @@ x_1 = lean_mk_string("s!"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26() { _start: { lean_object* x_1; lean_object* x_2; @@ -1081,7 +1081,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27() { _start: { lean_object* x_1; lean_object* x_2; @@ -1090,19 +1090,19 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29() { _start: { lean_object* x_1; @@ -1110,7 +1110,7 @@ x_1 = lean_mk_string(")"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30() { _start: { lean_object* x_1; lean_object* x_2; @@ -1119,7 +1119,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__31() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__31() { _start: { lean_object* x_1; @@ -1127,17 +1127,17 @@ x_1 = lean_mk_string("quotedName"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__32() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__32() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__4; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__31; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__4; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__31; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__33() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__33() { _start: { lean_object* x_1; @@ -1145,7 +1145,7 @@ x_1 = lean_mk_string("."); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__34() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__34() { _start: { lean_object* x_1; @@ -1153,7 +1153,7 @@ x_1 = lean_mk_string("`"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35() { _start: { lean_object* x_1; lean_object* x_2; @@ -1162,7 +1162,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_30_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -1189,7 +1189,7 @@ x_10 = lean_unsigned_to_nat(3u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -1200,11 +1200,11 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__13; +x_17 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__13; x_18 = l_Lean_addMacroScope(x_16, x_17, x_15); x_19 = lean_box(0); -x_20 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__9; -x_21 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__17; +x_20 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__9; +x_21 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__17; lean_inc(x_14); x_22 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_22, 0, x_14); @@ -1216,39 +1216,39 @@ lean_dec(x_9); x_24 = lean_erase_macro_scopes(x_23); lean_inc(x_24); x_25 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_19, x_24); -x_26 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22; +x_26 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22; lean_inc(x_14); x_27 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_27, 0, x_14); lean_ctor_set(x_27, 1, x_26); -x_28 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__25; +x_28 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__25; lean_inc(x_14); x_29 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_29, 0, x_14); lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_30 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_31 = lean_array_push(x_30, x_29); x_32 = lean_array_push(x_31, x_11); -x_33 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__24; +x_33 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__24; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); x_35 = lean_array_push(x_30, x_34); -x_36 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_36 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_37 = lean_array_push(x_35, x_36); -x_38 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_38 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_39 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_39, 0, x_38); lean_ctor_set(x_39, 1, x_37); -x_40 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29; +x_40 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29; x_41 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_41, 0, x_14); lean_ctor_set(x_41, 1, x_40); -x_42 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_42 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_43 = lean_array_push(x_42, x_27); x_44 = lean_array_push(x_43, x_39); x_45 = lean_array_push(x_44, x_41); -x_46 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__21; +x_46 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__21; x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_46); lean_ctor_set(x_47, 1, x_45); @@ -1263,7 +1263,7 @@ x_52 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_52, 0, x_38); lean_ctor_set(x_52, 1, x_51); x_53 = lean_array_push(x_48, x_52); -x_54 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__6; +x_54 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__6; x_55 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_55, 0, x_54); lean_ctor_set(x_55, 1, x_53); @@ -1277,17 +1277,17 @@ lean_dec(x_24); x_56 = lean_ctor_get(x_25, 0); lean_inc(x_56); lean_dec(x_25); -x_57 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__33; +x_57 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__33; x_58 = l_String_intercalate(x_57, x_56); -x_59 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__34; +x_59 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__34; x_60 = lean_string_append(x_59, x_58); lean_dec(x_58); x_61 = l_Lean_nameLitKind; x_62 = lean_box(2); x_63 = l_Lean_Syntax_mkLit(x_61, x_60, x_62); -x_64 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_64 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_65 = lean_array_push(x_64, x_63); -x_66 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__32; +x_66 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__32; x_67 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_67, 0, x_66); lean_ctor_set(x_67, 1, x_65); @@ -1297,7 +1297,7 @@ x_70 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_70, 0, x_38); lean_ctor_set(x_70, 1, x_69); x_71 = lean_array_push(x_48, x_70); -x_72 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__6; +x_72 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__6; x_73 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_73, 0, x_72); lean_ctor_set(x_73, 1, x_71); @@ -1318,11 +1318,11 @@ lean_inc(x_76); x_77 = lean_ctor_get(x_2, 1); lean_inc(x_77); lean_dec(x_2); -x_78 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__13; +x_78 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__13; x_79 = l_Lean_addMacroScope(x_77, x_78, x_76); x_80 = lean_box(0); -x_81 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__9; -x_82 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__17; +x_81 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__9; +x_82 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__17; lean_inc(x_74); x_83 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_83, 0, x_74); @@ -1334,39 +1334,39 @@ lean_dec(x_9); x_85 = lean_erase_macro_scopes(x_84); lean_inc(x_85); x_86 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_80, x_85); -x_87 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22; +x_87 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22; lean_inc(x_74); x_88 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_88, 0, x_74); lean_ctor_set(x_88, 1, x_87); -x_89 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__25; +x_89 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__25; lean_inc(x_74); x_90 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_90, 0, x_74); lean_ctor_set(x_90, 1, x_89); -x_91 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_91 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_92 = lean_array_push(x_91, x_90); x_93 = lean_array_push(x_92, x_11); -x_94 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__24; +x_94 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__24; x_95 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_95, 0, x_94); lean_ctor_set(x_95, 1, x_93); x_96 = lean_array_push(x_91, x_95); -x_97 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_97 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_98 = lean_array_push(x_96, x_97); -x_99 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_99 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_100 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_100, 0, x_99); lean_ctor_set(x_100, 1, x_98); -x_101 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29; +x_101 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29; x_102 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_102, 0, x_74); lean_ctor_set(x_102, 1, x_101); -x_103 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_103 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_104 = lean_array_push(x_103, x_88); x_105 = lean_array_push(x_104, x_100); x_106 = lean_array_push(x_105, x_102); -x_107 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__21; +x_107 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__21; x_108 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_108, 0, x_107); lean_ctor_set(x_108, 1, x_106); @@ -1381,7 +1381,7 @@ x_113 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_113, 0, x_99); lean_ctor_set(x_113, 1, x_112); x_114 = lean_array_push(x_109, x_113); -x_115 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__6; +x_115 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__6; x_116 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_116, 0, x_115); lean_ctor_set(x_116, 1, x_114); @@ -1397,17 +1397,17 @@ lean_dec(x_85); x_118 = lean_ctor_get(x_86, 0); lean_inc(x_118); lean_dec(x_86); -x_119 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__33; +x_119 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__33; x_120 = l_String_intercalate(x_119, x_118); -x_121 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__34; +x_121 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__34; x_122 = lean_string_append(x_121, x_120); lean_dec(x_120); x_123 = l_Lean_nameLitKind; x_124 = lean_box(2); x_125 = l_Lean_Syntax_mkLit(x_123, x_122, x_124); -x_126 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_126 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_127 = lean_array_push(x_126, x_125); -x_128 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__32; +x_128 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__32; x_129 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_129, 0, x_128); lean_ctor_set(x_129, 1, x_127); @@ -1417,7 +1417,7 @@ x_132 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_132, 0, x_99); lean_ctor_set(x_132, 1, x_131); x_133 = lean_array_push(x_109, x_132); -x_134 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__6; +x_134 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__6; x_135 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_135, 0, x_134); lean_ctor_set(x_135, 1, x_133); @@ -1688,7 +1688,7 @@ static lean_object* _init_l_Lean_bracketedExplicitBinders___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22; x_2 = lean_alloc_ctor(5, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -1740,7 +1740,7 @@ static lean_object* _init_l_Lean_bracketedExplicitBinders___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29; x_2 = lean_alloc_ctor(5, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -1860,7 +1860,7 @@ static lean_object* _init_l_Lean_expandExplicitBindersAux_loop___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__4; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__4; x_2 = l_Lean_expandExplicitBindersAux_loop___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -1878,7 +1878,7 @@ static lean_object* _init_l_Lean_expandExplicitBindersAux_loop___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__4; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__4; x_2 = l_Lean_expandExplicitBindersAux_loop___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -1896,7 +1896,7 @@ static lean_object* _init_l_Lean_expandExplicitBindersAux_loop___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__4; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__4; x_2 = l_Lean_expandExplicitBindersAux_loop___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -1922,7 +1922,7 @@ static lean_object* _init_l_Lean_expandExplicitBindersAux_loop___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__4; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__4; x_2 = l_Lean_expandExplicitBindersAux_loop___closed__8; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -1940,7 +1940,7 @@ static lean_object* _init_l_Lean_expandExplicitBindersAux_loop___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__4; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__4; x_2 = l_Lean_expandExplicitBindersAux_loop___closed__10; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -1978,7 +1978,7 @@ if (lean_obj_tag(x_3) == 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; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_inc(x_6); -x_16 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_6, x_7); +x_16 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_6, x_7); x_17 = lean_ctor_get(x_16, 0); lean_inc(x_17); x_18 = lean_ctor_get(x_16, 1); @@ -1994,14 +1994,14 @@ lean_inc(x_17); x_22 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_22, 0, x_17); lean_ctor_set(x_22, 1, x_21); -x_23 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_23 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_24 = lean_array_push(x_23, x_22); x_25 = l_Lean_expandExplicitBindersAux_loop___closed__6; 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_27 = lean_array_push(x_23, x_26); -x_28 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_28 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); @@ -2009,7 +2009,7 @@ x_30 = l_Lean_expandExplicitBindersAux_loop___closed__7; x_31 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_31, 0, x_17); lean_ctor_set(x_31, 1, x_30); -x_32 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_32 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_33 = lean_array_push(x_32, x_29); x_34 = lean_array_push(x_33, x_31); x_35 = lean_array_push(x_34, x_5); @@ -2017,7 +2017,7 @@ x_36 = l_Lean_expandExplicitBindersAux_loop___closed__4; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); -x_38 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_38 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_39 = lean_array_push(x_38, x_20); x_40 = lean_array_push(x_39, x_37); x_41 = l_Lean_expandExplicitBindersAux_loop___closed__2; @@ -2031,7 +2031,7 @@ lean_ctor_set(x_44, 1, x_43); lean_inc(x_1); x_45 = lean_array_push(x_38, x_1); x_46 = lean_array_push(x_45, x_44); -x_47 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__6; +x_47 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__6; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -2046,7 +2046,7 @@ lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean x_50 = lean_ctor_get(x_3, 0); lean_inc(x_50); lean_inc(x_6); -x_51 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_6, x_7); +x_51 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_6, x_7); x_52 = lean_ctor_get(x_51, 0); lean_inc(x_52); x_53 = lean_ctor_get(x_51, 1); @@ -2062,14 +2062,14 @@ lean_inc(x_52); x_57 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_57, 0, x_52); lean_ctor_set(x_57, 1, x_56); -x_58 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_58 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_59 = lean_array_push(x_58, x_57); x_60 = l_Lean_expandExplicitBindersAux_loop___closed__6; x_61 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_61, 0, x_60); lean_ctor_set(x_61, 1, x_59); x_62 = lean_array_push(x_58, x_61); -x_63 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_63 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_64 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_64, 0, x_63); lean_ctor_set(x_64, 1, x_62); @@ -2078,7 +2078,7 @@ lean_inc(x_52); x_66 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_66, 0, x_52); lean_ctor_set(x_66, 1, x_65); -x_67 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_67 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_68 = lean_array_push(x_67, x_66); x_69 = lean_array_push(x_68, x_50); x_70 = l_Lean_expandExplicitBindersAux_loop___closed__11; @@ -2103,7 +2103,7 @@ x_80 = l_Lean_expandExplicitBindersAux_loop___closed__7; x_81 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_81, 0, x_52); lean_ctor_set(x_81, 1, x_80); -x_82 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_82 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_83 = lean_array_push(x_82, x_79); x_84 = lean_array_push(x_83, x_81); x_85 = lean_array_push(x_84, x_5); @@ -2124,7 +2124,7 @@ lean_ctor_set(x_93, 1, x_92); lean_inc(x_1); x_94 = lean_array_push(x_67, x_1); x_95 = lean_array_push(x_94, x_93); -x_96 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__6; +x_96 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__6; x_97 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_97, 0, x_96); lean_ctor_set(x_97, 1, x_95); @@ -2140,7 +2140,7 @@ if (lean_obj_tag(x_3) == 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; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_inc(x_6); -x_99 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_6, x_7); +x_99 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_6, x_7); x_100 = lean_ctor_get(x_99, 0); lean_inc(x_100); x_101 = lean_ctor_get(x_99, 1); @@ -2151,9 +2151,9 @@ lean_inc(x_100); x_103 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_103, 0, x_100); lean_ctor_set(x_103, 1, x_102); -x_104 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_104 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_105 = lean_array_push(x_104, x_14); -x_106 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_106 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_107 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_107, 0, x_106); lean_ctor_set(x_107, 1, x_105); @@ -2161,7 +2161,7 @@ x_108 = l_Lean_expandExplicitBindersAux_loop___closed__7; x_109 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_109, 0, x_100); lean_ctor_set(x_109, 1, x_108); -x_110 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_110 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_111 = lean_array_push(x_110, x_107); x_112 = lean_array_push(x_111, x_109); x_113 = lean_array_push(x_112, x_5); @@ -2169,7 +2169,7 @@ x_114 = l_Lean_expandExplicitBindersAux_loop___closed__4; x_115 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_115, 0, x_114); lean_ctor_set(x_115, 1, x_113); -x_116 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_116 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_117 = lean_array_push(x_116, x_103); x_118 = lean_array_push(x_117, x_115); x_119 = l_Lean_expandExplicitBindersAux_loop___closed__2; @@ -2183,7 +2183,7 @@ lean_ctor_set(x_122, 1, x_121); lean_inc(x_1); x_123 = lean_array_push(x_116, x_1); x_124 = lean_array_push(x_123, x_122); -x_125 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__6; +x_125 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__6; x_126 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_126, 0, x_125); lean_ctor_set(x_126, 1, x_124); @@ -2198,7 +2198,7 @@ lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; x_128 = lean_ctor_get(x_3, 0); lean_inc(x_128); lean_inc(x_6); -x_129 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_6, x_7); +x_129 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_6, x_7); x_130 = lean_ctor_get(x_129, 0); lean_inc(x_130); x_131 = lean_ctor_get(x_129, 1); @@ -2209,9 +2209,9 @@ lean_inc(x_130); x_133 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_133, 0, x_130); lean_ctor_set(x_133, 1, x_132); -x_134 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_134 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_135 = lean_array_push(x_134, x_14); -x_136 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_136 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_137 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_137, 0, x_136); lean_ctor_set(x_137, 1, x_135); @@ -2220,7 +2220,7 @@ lean_inc(x_130); x_139 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_139, 0, x_130); lean_ctor_set(x_139, 1, x_138); -x_140 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_140 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_141 = lean_array_push(x_140, x_139); x_142 = lean_array_push(x_141, x_128); x_143 = l_Lean_expandExplicitBindersAux_loop___closed__11; @@ -2245,7 +2245,7 @@ x_153 = l_Lean_expandExplicitBindersAux_loop___closed__7; x_154 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_154, 0, x_130); lean_ctor_set(x_154, 1, x_153); -x_155 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_155 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_156 = lean_array_push(x_155, x_152); x_157 = lean_array_push(x_156, x_154); x_158 = lean_array_push(x_157, x_5); @@ -2266,7 +2266,7 @@ lean_ctor_set(x_166, 1, x_165); lean_inc(x_1); x_167 = lean_array_push(x_140, x_1); x_168 = lean_array_push(x_167, x_166); -x_169 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__6; +x_169 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__6; x_170 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_170, 0, x_169); lean_ctor_set(x_170, 1, x_168); @@ -2576,7 +2576,7 @@ lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_obj x_6 = lean_ctor_get(x_4, 5); lean_inc(x_6); x_7 = l_Lean_mkIdentFrom(x_6, x_1); -x_8 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_8 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_9 = lean_array_push(x_8, x_2); x_10 = l_Lean_expandBrackedBindersAux(x_7, x_9, x_3, x_4, x_5); lean_dec(x_9); @@ -3203,7 +3203,7 @@ static lean_object* _init_l_Array_forInUnsafe_loop___at___private_Init_NotationE _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__4; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__4; x_2 = l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -3246,7 +3246,7 @@ else lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; size_t x_33; size_t x_34; x_11 = lean_array_uget(x_3, x_5); lean_inc(x_7); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_7, x_8); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_7, x_8); x_13 = lean_ctor_get(x_12, 0); lean_inc(x_13); x_14 = lean_ctor_get(x_12, 1); @@ -3316,7 +3316,7 @@ _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; size_t x_22; size_t x_23; lean_object* x_24; uint8_t x_25; lean_inc(x_3); -x_5 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_3, x_4); +x_5 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_3, x_4); x_6 = lean_ctor_get(x_5, 0); lean_inc(x_6); x_7 = lean_ctor_get(x_5, 1); @@ -3330,7 +3330,7 @@ lean_ctor_set(x_11, 0, x_6); lean_ctor_set(x_11, 1, x_10); x_12 = lean_unsigned_to_nat(2u); x_13 = l_Lean_Syntax_getArg(x_2, x_12); -x_14 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_14 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_15 = lean_array_push(x_14, x_9); x_16 = lean_array_push(x_15, x_11); x_17 = lean_array_push(x_16, x_13); @@ -3387,17 +3387,17 @@ lean_dec(x_2); return x_5; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__1() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__4; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__4; x_2 = l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__2() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__2() { _start: { lean_object* x_1; @@ -3405,17 +3405,17 @@ x_1 = lean_mk_string("Command"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__3() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__2; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__2; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__2; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__2; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__4() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__4() { _start: { lean_object* x_1; @@ -3423,17 +3423,17 @@ x_1 = lean_mk_string("declaration"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__5() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__3; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__4; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__3; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__6() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__6() { _start: { lean_object* x_1; @@ -3441,17 +3441,17 @@ x_1 = lean_mk_string("declModifiers"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__7() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__3; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__6; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__3; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__8() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__8() { _start: { lean_object* x_1; @@ -3459,17 +3459,17 @@ x_1 = lean_mk_string("attributes"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__9() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__4; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__8; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__4; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__8; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__10() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__10() { _start: { lean_object* x_1; @@ -3477,7 +3477,7 @@ x_1 = lean_mk_string("@["); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__11() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__11() { _start: { lean_object* x_1; @@ -3485,17 +3485,17 @@ x_1 = lean_mk_string("attrInstance"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__12() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__4; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__11; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__4; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__11; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__13() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__13() { _start: { lean_object* x_1; @@ -3503,17 +3503,17 @@ x_1 = lean_mk_string("Attr"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__14() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__2; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__13; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__2; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__13; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__15() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__15() { _start: { lean_object* x_1; @@ -3521,17 +3521,17 @@ x_1 = lean_mk_string("simple"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__16() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__14; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__15; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__14; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__15; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__17() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__17() { _start: { lean_object* x_1; @@ -3539,22 +3539,22 @@ x_1 = lean_mk_string("unificationHint"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__18() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__18() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__17; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__17; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__19() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__17; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__17; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__18; +x_3 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__18; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -3562,17 +3562,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__20() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__17; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__17; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__21() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__21() { _start: { lean_object* x_1; lean_object* x_2; @@ -3581,17 +3581,17 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__22() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__21; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__21; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__23() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__23() { _start: { lean_object* x_1; @@ -3599,17 +3599,17 @@ x_1 = lean_mk_string("def"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__24() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__3; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__23; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__3; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__23; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__25() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__25() { _start: { lean_object* x_1; @@ -3617,17 +3617,17 @@ x_1 = lean_mk_string("declId"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__26() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__3; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__25; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__3; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__25; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__27() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__27() { _start: { lean_object* x_1; @@ -3635,17 +3635,17 @@ x_1 = lean_mk_string("optDeclSig"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__28() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__3; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__27; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__3; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__27; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__29() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__29() { _start: { lean_object* x_1; @@ -3653,17 +3653,17 @@ x_1 = lean_mk_string("sort"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__30() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__30() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__4; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__29; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__4; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__29; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__31() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__31() { _start: { lean_object* x_1; @@ -3671,7 +3671,7 @@ x_1 = lean_mk_string("Sort"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__32() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__32() { _start: { lean_object* x_1; @@ -3679,27 +3679,27 @@ x_1 = lean_mk_string("Level"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__33() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__2; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__32; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__2; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__32; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__34() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__34() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__33; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__33; x_2 = l_Lean_expandExplicitBindersAux_loop___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__35() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__35() { _start: { lean_object* x_1; @@ -3707,17 +3707,17 @@ x_1 = lean_mk_string("declValSimple"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__36() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__36() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__3; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__35; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__3; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__35; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__37() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__37() { _start: { lean_object* x_1; @@ -3725,7 +3725,7 @@ x_1 = lean_mk_string(":="); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__38() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__38() { _start: { lean_object* x_1; lean_object* x_2; @@ -3734,7 +3734,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__39() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__39() { _start: { lean_object* x_1; @@ -3742,22 +3742,22 @@ x_1 = lean_mk_string("hint"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__40() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__40() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__39; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__39; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__41() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__41() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__39; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__39; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__40; +x_3 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__40; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -3765,17 +3765,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__42() { +static lean_object* _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__42() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__39; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__39; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -3798,7 +3798,7 @@ else lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(0u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); -x_10 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__1; +x_10 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__1; lean_inc(x_9); x_11 = l_Lean_Syntax_isOfKind(x_9, x_10); if (x_11 == 0) @@ -3884,7 +3884,7 @@ x_37 = lean_ctor_get(x_35, 1); lean_inc(x_37); lean_dec(x_35); lean_inc(x_2); -x_38 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_37); +x_38 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_37); x_39 = !lean_is_exclusive(x_38); if (x_39 == 0) { @@ -3895,38 +3895,38 @@ lean_inc(x_41); x_42 = lean_ctor_get(x_2, 1); lean_inc(x_42); lean_dec(x_2); -x_43 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__10; +x_43 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__10; lean_inc(x_40); x_44 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_44, 0, x_40); lean_ctor_set(x_44, 1, x_43); -x_45 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__20; +x_45 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__20; x_46 = l_Lean_addMacroScope(x_42, x_45, x_41); x_47 = lean_box(0); -x_48 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__19; +x_48 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__19; lean_inc(x_40); x_49 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_49, 0, x_40); lean_ctor_set(x_49, 1, x_48); lean_ctor_set(x_49, 2, x_46); lean_ctor_set(x_49, 3, x_47); -x_50 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_50 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_51 = lean_array_push(x_50, x_49); -x_52 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_52 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_53 = lean_array_push(x_51, x_52); -x_54 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__16; +x_54 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__16; x_55 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_55, 0, x_54); lean_ctor_set(x_55, 1, x_53); x_56 = lean_array_push(x_50, x_9); x_57 = lean_array_push(x_56, x_55); -x_58 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__12; +x_58 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__12; x_59 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_59, 0, x_58); lean_ctor_set(x_59, 1, x_57); -x_60 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_60 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_61 = lean_array_push(x_60, x_59); -x_62 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_62 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_63 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_63, 0, x_62); lean_ctor_set(x_63, 1, x_61); @@ -3935,11 +3935,11 @@ lean_inc(x_40); x_65 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_65, 0, x_40); lean_ctor_set(x_65, 1, x_64); -x_66 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_66 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_67 = lean_array_push(x_66, x_44); x_68 = lean_array_push(x_67, x_63); x_69 = lean_array_push(x_68, x_65); -x_70 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__9; +x_70 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__9; x_71 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_71, 0, x_70); lean_ctor_set(x_71, 1, x_69); @@ -3947,28 +3947,28 @@ x_72 = lean_array_push(x_60, x_71); x_73 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_73, 0, x_62); lean_ctor_set(x_73, 1, x_72); -x_74 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__22; +x_74 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__22; x_75 = lean_array_push(x_74, x_73); x_76 = lean_array_push(x_75, x_52); x_77 = lean_array_push(x_76, x_52); x_78 = lean_array_push(x_77, x_52); x_79 = lean_array_push(x_78, x_52); -x_80 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__7; +x_80 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__7; x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_80); lean_ctor_set(x_81, 1, x_79); -x_82 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__23; +x_82 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__23; lean_inc(x_40); x_83 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_83, 0, x_40); lean_ctor_set(x_83, 1, x_82); x_84 = lean_array_push(x_50, x_22); x_85 = lean_array_push(x_84, x_52); -x_86 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__26; +x_86 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__26; x_87 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_87, 0, x_86); lean_ctor_set(x_87, 1, x_85); -x_88 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27; +x_88 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27; x_89 = l_Array_append___rarg(x_88, x_34); x_90 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_90, 0, x_62); @@ -3978,7 +3978,7 @@ lean_inc(x_40); x_92 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_92, 0, x_40); lean_ctor_set(x_92, 1, x_91); -x_93 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__31; +x_93 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__31; lean_inc(x_40); x_94 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_94, 0, x_40); @@ -3989,7 +3989,7 @@ x_96 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_96, 0, x_40); lean_ctor_set(x_96, 1, x_95); x_97 = lean_array_push(x_60, x_96); -x_98 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__34; +x_98 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__34; x_99 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_99, 0, x_98); lean_ctor_set(x_99, 1, x_97); @@ -3999,7 +3999,7 @@ lean_ctor_set(x_101, 0, x_62); lean_ctor_set(x_101, 1, x_100); x_102 = lean_array_push(x_50, x_94); x_103 = lean_array_push(x_102, x_101); -x_104 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__30; +x_104 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__30; x_105 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_105, 0, x_104); lean_ctor_set(x_105, 1, x_103); @@ -4015,22 +4015,22 @@ lean_ctor_set(x_111, 0, x_62); lean_ctor_set(x_111, 1, x_110); x_112 = lean_array_push(x_50, x_90); x_113 = lean_array_push(x_112, x_111); -x_114 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__28; +x_114 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__28; x_115 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_115, 0, x_114); lean_ctor_set(x_115, 1, x_113); -x_116 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__37; +x_116 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__37; x_117 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_117, 0, x_40); lean_ctor_set(x_117, 1, x_116); x_118 = lean_array_push(x_66, x_117); x_119 = lean_array_push(x_118, x_36); x_120 = lean_array_push(x_119, x_52); -x_121 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__36; +x_121 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__36; x_122 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_122, 0, x_121); lean_ctor_set(x_122, 1, x_120); -x_123 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__38; +x_123 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__38; x_124 = lean_array_push(x_123, x_83); x_125 = lean_array_push(x_124, x_87); x_126 = lean_array_push(x_125, x_115); @@ -4038,13 +4038,13 @@ x_127 = lean_array_push(x_126, x_122); x_128 = lean_array_push(x_127, x_52); x_129 = lean_array_push(x_128, x_52); x_130 = lean_array_push(x_129, x_52); -x_131 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__24; +x_131 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__24; x_132 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_132, 0, x_131); lean_ctor_set(x_132, 1, x_130); x_133 = lean_array_push(x_50, x_81); x_134 = lean_array_push(x_133, x_132); -x_135 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__5; +x_135 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__5; x_136 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_136, 0, x_135); lean_ctor_set(x_136, 1, x_134); @@ -4064,38 +4064,38 @@ lean_inc(x_139); x_140 = lean_ctor_get(x_2, 1); lean_inc(x_140); lean_dec(x_2); -x_141 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__10; +x_141 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__10; lean_inc(x_137); x_142 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_142, 0, x_137); lean_ctor_set(x_142, 1, x_141); -x_143 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__20; +x_143 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__20; x_144 = l_Lean_addMacroScope(x_140, x_143, x_139); x_145 = lean_box(0); -x_146 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__19; +x_146 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__19; lean_inc(x_137); x_147 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_147, 0, x_137); lean_ctor_set(x_147, 1, x_146); lean_ctor_set(x_147, 2, x_144); lean_ctor_set(x_147, 3, x_145); -x_148 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_148 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_149 = lean_array_push(x_148, x_147); -x_150 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_150 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_151 = lean_array_push(x_149, x_150); -x_152 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__16; +x_152 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__16; x_153 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_153, 0, x_152); lean_ctor_set(x_153, 1, x_151); x_154 = lean_array_push(x_148, x_9); x_155 = lean_array_push(x_154, x_153); -x_156 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__12; +x_156 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__12; x_157 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_157, 0, x_156); lean_ctor_set(x_157, 1, x_155); -x_158 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_158 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_159 = lean_array_push(x_158, x_157); -x_160 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_160 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_161 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_161, 0, x_160); lean_ctor_set(x_161, 1, x_159); @@ -4104,11 +4104,11 @@ lean_inc(x_137); x_163 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_163, 0, x_137); lean_ctor_set(x_163, 1, x_162); -x_164 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_164 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_165 = lean_array_push(x_164, x_142); x_166 = lean_array_push(x_165, x_161); x_167 = lean_array_push(x_166, x_163); -x_168 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__9; +x_168 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__9; x_169 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_169, 0, x_168); lean_ctor_set(x_169, 1, x_167); @@ -4116,28 +4116,28 @@ x_170 = lean_array_push(x_158, x_169); x_171 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_171, 0, x_160); lean_ctor_set(x_171, 1, x_170); -x_172 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__22; +x_172 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__22; x_173 = lean_array_push(x_172, x_171); x_174 = lean_array_push(x_173, x_150); x_175 = lean_array_push(x_174, x_150); x_176 = lean_array_push(x_175, x_150); x_177 = lean_array_push(x_176, x_150); -x_178 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__7; +x_178 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__7; 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_myMacro____x40_Init_NotationExtra___hyg_1225____closed__23; +x_180 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__23; lean_inc(x_137); x_181 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_181, 0, x_137); lean_ctor_set(x_181, 1, x_180); x_182 = lean_array_push(x_148, x_22); x_183 = lean_array_push(x_182, x_150); -x_184 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__26; +x_184 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__26; x_185 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_185, 0, x_184); lean_ctor_set(x_185, 1, x_183); -x_186 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27; +x_186 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27; x_187 = l_Array_append___rarg(x_186, x_34); x_188 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_188, 0, x_160); @@ -4147,7 +4147,7 @@ lean_inc(x_137); x_190 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_190, 0, x_137); lean_ctor_set(x_190, 1, x_189); -x_191 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__31; +x_191 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__31; lean_inc(x_137); x_192 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_192, 0, x_137); @@ -4158,7 +4158,7 @@ x_194 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_194, 0, x_137); lean_ctor_set(x_194, 1, x_193); x_195 = lean_array_push(x_158, x_194); -x_196 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__34; +x_196 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__34; x_197 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_197, 0, x_196); lean_ctor_set(x_197, 1, x_195); @@ -4168,7 +4168,7 @@ lean_ctor_set(x_199, 0, x_160); lean_ctor_set(x_199, 1, x_198); x_200 = lean_array_push(x_148, x_192); x_201 = lean_array_push(x_200, x_199); -x_202 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__30; +x_202 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__30; x_203 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_203, 0, x_202); lean_ctor_set(x_203, 1, x_201); @@ -4184,22 +4184,22 @@ lean_ctor_set(x_209, 0, x_160); lean_ctor_set(x_209, 1, x_208); x_210 = lean_array_push(x_148, x_188); x_211 = lean_array_push(x_210, x_209); -x_212 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__28; +x_212 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__28; x_213 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_213, 0, x_212); lean_ctor_set(x_213, 1, x_211); -x_214 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__37; +x_214 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__37; x_215 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_215, 0, x_137); lean_ctor_set(x_215, 1, x_214); x_216 = lean_array_push(x_164, x_215); x_217 = lean_array_push(x_216, x_36); x_218 = lean_array_push(x_217, x_150); -x_219 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__36; +x_219 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__36; x_220 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_220, 0, x_219); lean_ctor_set(x_220, 1, x_218); -x_221 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__38; +x_221 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__38; x_222 = lean_array_push(x_221, x_181); x_223 = lean_array_push(x_222, x_185); x_224 = lean_array_push(x_223, x_213); @@ -4207,13 +4207,13 @@ x_225 = lean_array_push(x_224, x_220); x_226 = lean_array_push(x_225, x_150); x_227 = lean_array_push(x_226, x_150); x_228 = lean_array_push(x_227, x_150); -x_229 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__24; +x_229 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__24; x_230 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_230, 0, x_229); lean_ctor_set(x_230, 1, x_228); x_231 = lean_array_push(x_148, x_179); x_232 = lean_array_push(x_231, x_230); -x_233 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__5; +x_233 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__5; x_234 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_234, 0, x_233); lean_ctor_set(x_234, 1, x_232); @@ -4249,7 +4249,7 @@ x_246 = lean_ctor_get(x_244, 1); lean_inc(x_246); lean_dec(x_244); lean_inc(x_2); -x_247 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_246); +x_247 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_246); x_248 = !lean_is_exclusive(x_247); if (x_248 == 0) { @@ -4260,40 +4260,40 @@ lean_inc(x_250); x_251 = lean_ctor_get(x_2, 1); lean_inc(x_251); lean_dec(x_2); -x_252 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__10; +x_252 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__10; lean_inc(x_249); x_253 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_253, 0, x_249); lean_ctor_set(x_253, 1, x_252); -x_254 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__20; +x_254 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__20; lean_inc(x_250); lean_inc(x_251); x_255 = l_Lean_addMacroScope(x_251, x_254, x_250); x_256 = lean_box(0); -x_257 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__19; +x_257 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__19; lean_inc(x_249); x_258 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_258, 0, x_249); lean_ctor_set(x_258, 1, x_257); lean_ctor_set(x_258, 2, x_255); lean_ctor_set(x_258, 3, x_256); -x_259 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_259 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_260 = lean_array_push(x_259, x_258); -x_261 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_261 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_262 = lean_array_push(x_260, x_261); -x_263 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__16; +x_263 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__16; 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 = lean_array_push(x_259, x_9); x_266 = lean_array_push(x_265, x_264); -x_267 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__12; +x_267 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__12; x_268 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_268, 0, x_267); lean_ctor_set(x_268, 1, x_266); -x_269 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_269 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_270 = lean_array_push(x_269, x_268); -x_271 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_271 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_272 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_272, 0, x_271); lean_ctor_set(x_272, 1, x_270); @@ -4302,11 +4302,11 @@ lean_inc(x_249); x_274 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_274, 0, x_249); lean_ctor_set(x_274, 1, x_273); -x_275 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_275 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_276 = lean_array_push(x_275, x_253); x_277 = lean_array_push(x_276, x_272); x_278 = lean_array_push(x_277, x_274); -x_279 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__9; +x_279 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__9; x_280 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_280, 0, x_279); lean_ctor_set(x_280, 1, x_278); @@ -4314,24 +4314,24 @@ x_281 = lean_array_push(x_269, x_280); x_282 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_282, 0, x_271); lean_ctor_set(x_282, 1, x_281); -x_283 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__22; +x_283 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__22; x_284 = lean_array_push(x_283, x_282); x_285 = lean_array_push(x_284, x_261); x_286 = lean_array_push(x_285, x_261); x_287 = lean_array_push(x_286, x_261); x_288 = lean_array_push(x_287, x_261); -x_289 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__7; +x_289 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__7; 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 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__23; +x_291 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__23; lean_inc(x_249); x_292 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_292, 0, x_249); lean_ctor_set(x_292, 1, x_291); -x_293 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__42; +x_293 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__42; x_294 = l_Lean_addMacroScope(x_251, x_293, x_250); -x_295 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__41; +x_295 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__41; lean_inc(x_249); x_296 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_296, 0, x_249); @@ -4340,11 +4340,11 @@ lean_ctor_set(x_296, 2, x_294); lean_ctor_set(x_296, 3, x_256); x_297 = lean_array_push(x_259, x_296); x_298 = lean_array_push(x_297, x_261); -x_299 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__26; +x_299 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__26; 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_myMacro____x40_Init_NotationExtra___hyg_30____closed__27; +x_301 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27; x_302 = l_Array_append___rarg(x_301, x_243); x_303 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_303, 0, x_271); @@ -4354,7 +4354,7 @@ lean_inc(x_249); x_305 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_305, 0, x_249); lean_ctor_set(x_305, 1, x_304); -x_306 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__31; +x_306 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__31; lean_inc(x_249); x_307 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_307, 0, x_249); @@ -4365,7 +4365,7 @@ x_309 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_309, 0, x_249); lean_ctor_set(x_309, 1, x_308); x_310 = lean_array_push(x_269, x_309); -x_311 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__34; +x_311 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__34; x_312 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_312, 0, x_311); lean_ctor_set(x_312, 1, x_310); @@ -4375,7 +4375,7 @@ lean_ctor_set(x_314, 0, x_271); lean_ctor_set(x_314, 1, x_313); x_315 = lean_array_push(x_259, x_307); x_316 = lean_array_push(x_315, x_314); -x_317 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__30; +x_317 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__30; x_318 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_318, 0, x_317); lean_ctor_set(x_318, 1, x_316); @@ -4391,22 +4391,22 @@ lean_ctor_set(x_324, 0, x_271); lean_ctor_set(x_324, 1, x_323); x_325 = lean_array_push(x_259, x_303); x_326 = lean_array_push(x_325, x_324); -x_327 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__28; +x_327 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__28; x_328 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_328, 0, x_327); lean_ctor_set(x_328, 1, x_326); -x_329 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__37; +x_329 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__37; x_330 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_330, 0, x_249); lean_ctor_set(x_330, 1, x_329); x_331 = lean_array_push(x_275, x_330); x_332 = lean_array_push(x_331, x_245); x_333 = lean_array_push(x_332, x_261); -x_334 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__36; +x_334 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__36; x_335 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_335, 0, x_334); lean_ctor_set(x_335, 1, x_333); -x_336 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__38; +x_336 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__38; x_337 = lean_array_push(x_336, x_292); x_338 = lean_array_push(x_337, x_300); x_339 = lean_array_push(x_338, x_328); @@ -4414,13 +4414,13 @@ x_340 = lean_array_push(x_339, x_335); x_341 = lean_array_push(x_340, x_261); x_342 = lean_array_push(x_341, x_261); x_343 = lean_array_push(x_342, x_261); -x_344 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__24; +x_344 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__24; x_345 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_345, 0, x_344); lean_ctor_set(x_345, 1, x_343); x_346 = lean_array_push(x_259, x_290); x_347 = lean_array_push(x_346, x_345); -x_348 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__5; +x_348 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__5; x_349 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_349, 0, x_348); lean_ctor_set(x_349, 1, x_347); @@ -4440,40 +4440,40 @@ lean_inc(x_352); x_353 = lean_ctor_get(x_2, 1); lean_inc(x_353); lean_dec(x_2); -x_354 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__10; +x_354 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__10; lean_inc(x_350); x_355 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_355, 0, x_350); lean_ctor_set(x_355, 1, x_354); -x_356 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__20; +x_356 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__20; lean_inc(x_352); lean_inc(x_353); x_357 = l_Lean_addMacroScope(x_353, x_356, x_352); x_358 = lean_box(0); -x_359 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__19; +x_359 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__19; lean_inc(x_350); x_360 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_360, 0, x_350); lean_ctor_set(x_360, 1, x_359); lean_ctor_set(x_360, 2, x_357); lean_ctor_set(x_360, 3, x_358); -x_361 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_361 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_362 = lean_array_push(x_361, x_360); -x_363 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_363 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_364 = lean_array_push(x_362, x_363); -x_365 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__16; +x_365 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__16; 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 = lean_array_push(x_361, x_9); x_368 = lean_array_push(x_367, x_366); -x_369 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__12; +x_369 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__12; x_370 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_370, 0, x_369); lean_ctor_set(x_370, 1, x_368); -x_371 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_371 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_372 = lean_array_push(x_371, x_370); -x_373 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_373 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_374 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_374, 0, x_373); lean_ctor_set(x_374, 1, x_372); @@ -4482,11 +4482,11 @@ lean_inc(x_350); x_376 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_376, 0, x_350); lean_ctor_set(x_376, 1, x_375); -x_377 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_377 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_378 = lean_array_push(x_377, x_355); x_379 = lean_array_push(x_378, x_374); x_380 = lean_array_push(x_379, x_376); -x_381 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__9; +x_381 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__9; x_382 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_382, 0, x_381); lean_ctor_set(x_382, 1, x_380); @@ -4494,24 +4494,24 @@ x_383 = lean_array_push(x_371, x_382); x_384 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_384, 0, x_373); lean_ctor_set(x_384, 1, x_383); -x_385 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__22; +x_385 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__22; x_386 = lean_array_push(x_385, x_384); x_387 = lean_array_push(x_386, x_363); x_388 = lean_array_push(x_387, x_363); x_389 = lean_array_push(x_388, x_363); x_390 = lean_array_push(x_389, x_363); -x_391 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__7; +x_391 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__7; x_392 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_392, 0, x_391); lean_ctor_set(x_392, 1, x_390); -x_393 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__23; +x_393 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__23; lean_inc(x_350); x_394 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_394, 0, x_350); lean_ctor_set(x_394, 1, x_393); -x_395 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__42; +x_395 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__42; x_396 = l_Lean_addMacroScope(x_353, x_395, x_352); -x_397 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__41; +x_397 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__41; lean_inc(x_350); x_398 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_398, 0, x_350); @@ -4520,11 +4520,11 @@ lean_ctor_set(x_398, 2, x_396); lean_ctor_set(x_398, 3, x_358); x_399 = lean_array_push(x_361, x_398); x_400 = lean_array_push(x_399, x_363); -x_401 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__26; +x_401 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__26; 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_myMacro____x40_Init_NotationExtra___hyg_30____closed__27; +x_403 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27; x_404 = l_Array_append___rarg(x_403, x_243); x_405 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_405, 0, x_373); @@ -4534,7 +4534,7 @@ lean_inc(x_350); x_407 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_407, 0, x_350); lean_ctor_set(x_407, 1, x_406); -x_408 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__31; +x_408 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__31; lean_inc(x_350); x_409 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_409, 0, x_350); @@ -4545,7 +4545,7 @@ x_411 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_411, 0, x_350); lean_ctor_set(x_411, 1, x_410); x_412 = lean_array_push(x_371, x_411); -x_413 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__34; +x_413 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__34; x_414 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_414, 0, x_413); lean_ctor_set(x_414, 1, x_412); @@ -4555,7 +4555,7 @@ lean_ctor_set(x_416, 0, x_373); lean_ctor_set(x_416, 1, x_415); x_417 = lean_array_push(x_361, x_409); x_418 = lean_array_push(x_417, x_416); -x_419 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__30; +x_419 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__30; x_420 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_420, 0, x_419); lean_ctor_set(x_420, 1, x_418); @@ -4571,22 +4571,22 @@ lean_ctor_set(x_426, 0, x_373); lean_ctor_set(x_426, 1, x_425); x_427 = lean_array_push(x_361, x_405); x_428 = lean_array_push(x_427, x_426); -x_429 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__28; +x_429 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__28; x_430 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_430, 0, x_429); lean_ctor_set(x_430, 1, x_428); -x_431 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__37; +x_431 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__37; x_432 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_432, 0, x_350); lean_ctor_set(x_432, 1, x_431); x_433 = lean_array_push(x_377, x_432); x_434 = lean_array_push(x_433, x_245); x_435 = lean_array_push(x_434, x_363); -x_436 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__36; +x_436 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__36; x_437 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_437, 0, x_436); lean_ctor_set(x_437, 1, x_435); -x_438 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__38; +x_438 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__38; x_439 = lean_array_push(x_438, x_394); x_440 = lean_array_push(x_439, x_402); x_441 = lean_array_push(x_440, x_430); @@ -4594,13 +4594,13 @@ x_442 = lean_array_push(x_441, x_437); x_443 = lean_array_push(x_442, x_363); x_444 = lean_array_push(x_443, x_363); x_445 = lean_array_push(x_444, x_363); -x_446 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__24; +x_446 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__24; x_447 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_447, 0, x_446); lean_ctor_set(x_447, 1, x_445); x_448 = lean_array_push(x_361, x_392); x_449 = lean_array_push(x_448, x_447); -x_450 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__5; +x_450 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__5; x_451 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_451, 0, x_450); lean_ctor_set(x_451, 1, x_449); @@ -4714,7 +4714,7 @@ x_1 = l_term_u2203___x2c_____closed__8; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_2026____closed__1() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabterm_u2203___x2c___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -4722,17 +4722,17 @@ x_1 = lean_mk_string("Exists"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_2026____closed__2() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabterm_u2203___x2c___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_2026____closed__1; +x_2 = l___aux__Init__NotationExtra______macroRules___xabterm_u2203___x2c___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2026_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_u2203___x2c___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -4758,7 +4758,7 @@ x_9 = l_Lean_Syntax_getArg(x_1, x_8); x_10 = lean_unsigned_to_nat(3u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); -x_12 = l_myMacro____x40_Init_NotationExtra___hyg_2026____closed__2; +x_12 = l___aux__Init__NotationExtra______macroRules___xabterm_u2203___x2c___xbb__1___closed__2; x_13 = l_Lean_expandExplicitBinders(x_12, x_9, x_11, x_2, x_3); lean_dec(x_9); return x_13; @@ -4865,7 +4865,7 @@ x_1 = l_termExists___x2c_____closed__8; return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2120_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabtermExists___x2c___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -4891,7 +4891,7 @@ x_9 = l_Lean_Syntax_getArg(x_1, x_8); x_10 = lean_unsigned_to_nat(3u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); -x_12 = l_myMacro____x40_Init_NotationExtra___hyg_2026____closed__2; +x_12 = l___aux__Init__NotationExtra______macroRules___xabterm_u2203___x2c___xbb__1___closed__2; x_13 = l_Lean_expandExplicitBinders(x_12, x_9, x_11, x_2, x_3); lean_dec(x_9); return x_13; @@ -4998,7 +4998,7 @@ x_1 = l_term_u03a3___x2c_____closed__8; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_2214____closed__1() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabterm_u03a3___x2c___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -5006,17 +5006,17 @@ x_1 = lean_mk_string("Sigma"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_2214____closed__2() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabterm_u03a3___x2c___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_2214____closed__1; +x_2 = l___aux__Init__NotationExtra______macroRules___xabterm_u03a3___x2c___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2214_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_u03a3___x2c___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -5042,7 +5042,7 @@ x_9 = l_Lean_Syntax_getArg(x_1, x_8); x_10 = lean_unsigned_to_nat(3u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); -x_12 = l_myMacro____x40_Init_NotationExtra___hyg_2214____closed__2; +x_12 = l___aux__Init__NotationExtra______macroRules___xabterm_u03a3___x2c___xbb__1___closed__2; x_13 = l_Lean_expandExplicitBinders(x_12, x_9, x_11, x_2, x_3); lean_dec(x_9); return x_13; @@ -5149,7 +5149,7 @@ x_1 = l_term_u03a3_x27___x2c_____closed__8; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_2308____closed__1() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabterm_u03a3_x27___x2c___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -5157,17 +5157,17 @@ x_1 = lean_mk_string("PSigma"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_2308____closed__2() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabterm_u03a3_x27___x2c___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_2308____closed__1; +x_2 = l___aux__Init__NotationExtra______macroRules___xabterm_u03a3_x27___x2c___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2308_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_u03a3_x27___x2c___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -5193,7 +5193,7 @@ x_9 = l_Lean_Syntax_getArg(x_1, x_8); x_10 = lean_unsigned_to_nat(3u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); -x_12 = l_myMacro____x40_Init_NotationExtra___hyg_2308____closed__2; +x_12 = l___aux__Init__NotationExtra______macroRules___xabterm_u03a3_x27___x2c___xbb__1___closed__2; x_13 = l_Lean_expandExplicitBinders(x_12, x_9, x_11, x_2, x_3); lean_dec(x_9); return x_13; @@ -5298,7 +5298,7 @@ x_1 = l_term___xd7____1___closed__8; return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2398_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabterm___xd7____1_xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -5324,7 +5324,7 @@ x_9 = l_Lean_Syntax_getArg(x_1, x_8); x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); -x_12 = l_myMacro____x40_Init_NotationExtra___hyg_2214____closed__2; +x_12 = l___aux__Init__NotationExtra______macroRules___xabterm_u03a3___x2c___xbb__1___closed__2; x_13 = l_Lean_expandBrackedBinders(x_12, x_9, x_11, x_2, x_3); return x_13; } @@ -5416,7 +5416,7 @@ x_1 = l_term___xd7_x27_____closed__7; return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2479_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabterm___xd7_x27___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -5442,7 +5442,7 @@ x_9 = l_Lean_Syntax_getArg(x_1, x_8); x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); -x_12 = l_myMacro____x40_Init_NotationExtra___hyg_2308____closed__2; +x_12 = l___aux__Init__NotationExtra______macroRules___xabterm_u03a3_x27___x2c___xbb__1___closed__2; x_13 = l_Lean_expandBrackedBinders(x_12, x_9, x_11, x_2, x_3); return x_13; } @@ -5788,7 +5788,7 @@ x_1 = l_tacticCalc_____closed__7; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__1() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__1() { _start: { lean_object* x_1; @@ -5796,17 +5796,17 @@ x_1 = lean_mk_string("Tactic"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__2() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__2; -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__1; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__2; +x_2 = l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__3() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__3() { _start: { lean_object* x_1; @@ -5814,17 +5814,17 @@ x_1 = lean_mk_string("seq1"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__4() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__2; -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__3; +x_1 = l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__2; +x_2 = l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__5() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__5() { _start: { lean_object* x_1; @@ -5832,17 +5832,17 @@ x_1 = lean_mk_string("exact"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__6() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__2; -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__5; +x_1 = l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__2; +x_2 = l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2605_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules__tacticCalc____1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -5866,13 +5866,13 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__5; +x_13 = l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__5; lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); @@ -5883,13 +5883,13 @@ lean_ctor_set(x_16, 0, x_12); lean_ctor_set(x_16, 1, x_15); x_17 = l_Lean_Syntax_getArgs(x_9); lean_dec(x_9); -x_18 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27; +x_18 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27; x_19 = l_Array_append___rarg(x_18, x_17); -x_20 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_20 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_21 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); -x_22 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_22 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_23 = lean_array_push(x_22, x_16); x_24 = lean_array_push(x_23, x_21); x_25 = l_calc___closed__2; @@ -5898,17 +5898,17 @@ lean_ctor_set(x_26, 0, x_25); lean_ctor_set(x_26, 1, x_24); x_27 = lean_array_push(x_22, x_14); x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__6; +x_29 = l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__6; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); -x_31 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_31 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_32 = lean_array_push(x_31, x_30); x_33 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_33, 0, x_20); lean_ctor_set(x_33, 1, x_32); x_34 = lean_array_push(x_31, x_33); -x_35 = l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__4; +x_35 = l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__4; x_36 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_36, 0, x_35); lean_ctor_set(x_36, 1, x_34); @@ -5923,7 +5923,7 @@ x_38 = lean_ctor_get(x_10, 1); lean_inc(x_38); lean_inc(x_37); lean_dec(x_10); -x_39 = l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__5; +x_39 = l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__5; lean_inc(x_37); x_40 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_40, 0, x_37); @@ -5934,13 +5934,13 @@ lean_ctor_set(x_42, 0, x_37); lean_ctor_set(x_42, 1, x_41); x_43 = l_Lean_Syntax_getArgs(x_9); lean_dec(x_9); -x_44 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27; +x_44 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27; x_45 = l_Array_append___rarg(x_44, x_43); -x_46 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_46 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_46); lean_ctor_set(x_47, 1, x_45); -x_48 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_48 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_49 = lean_array_push(x_48, x_42); x_50 = lean_array_push(x_49, x_47); x_51 = l_calc___closed__2; @@ -5949,17 +5949,17 @@ lean_ctor_set(x_52, 0, x_51); lean_ctor_set(x_52, 1, x_50); x_53 = lean_array_push(x_48, x_40); x_54 = lean_array_push(x_53, x_52); -x_55 = l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__6; +x_55 = l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__6; x_56 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_56, 0, x_55); lean_ctor_set(x_56, 1, x_54); -x_57 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_57 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_58 = lean_array_push(x_57, x_56); x_59 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_59, 0, x_46); lean_ctor_set(x_59, 1, x_58); x_60 = lean_array_push(x_57, x_59); -x_61 = l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__4; +x_61 = l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__4; x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_61); lean_ctor_set(x_62, 1, x_60); @@ -5975,27 +5975,27 @@ LEAN_EXPORT lean_object* l_unexpandUnit___rarg(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; -x_2 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_1); +x_2 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_1); x_3 = !lean_is_exclusive(x_2); if (x_3 == 0) { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; x_4 = lean_ctor_get(x_2, 0); -x_5 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22; +x_5 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22; lean_inc(x_4); x_6 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_6, 0, x_4); lean_ctor_set(x_6, 1, x_5); -x_7 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29; +x_7 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29; x_8 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_8, 0, x_4); lean_ctor_set(x_8, 1, x_7); -x_9 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_9 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_10 = lean_array_push(x_9, x_6); -x_11 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_11 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_12 = lean_array_push(x_10, x_11); x_13 = lean_array_push(x_12, x_8); -x_14 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__21; +x_14 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__21; x_15 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_15, 0, x_14); lean_ctor_set(x_15, 1, x_13); @@ -6010,21 +6010,21 @@ x_17 = lean_ctor_get(x_2, 1); lean_inc(x_17); lean_inc(x_16); lean_dec(x_2); -x_18 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22; +x_18 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22; lean_inc(x_16); x_19 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_19, 0, x_16); lean_ctor_set(x_19, 1, x_18); -x_20 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29; +x_20 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29; x_21 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_21, 0, x_16); lean_ctor_set(x_21, 1, x_20); -x_22 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_22 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_23 = lean_array_push(x_22, x_19); -x_24 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_24 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_25 = lean_array_push(x_23, x_24); x_26 = lean_array_push(x_25, x_21); -x_27 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__21; +x_27 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__21; x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_26); @@ -6082,7 +6082,7 @@ LEAN_EXPORT lean_object* l_unexpandListNil___rarg(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; -x_2 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_1); +x_2 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_1); x_3 = !lean_is_exclusive(x_2); if (x_3 == 0) { @@ -6097,9 +6097,9 @@ x_7 = l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__13; x_8 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_8, 0, x_4); lean_ctor_set(x_8, 1, x_7); -x_9 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_9 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_10 = lean_array_push(x_9, x_6); -x_11 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_11 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_12 = lean_array_push(x_10, x_11); x_13 = lean_array_push(x_12, x_8); x_14 = l_unexpandListNil___rarg___closed__2; @@ -6126,9 +6126,9 @@ x_20 = l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__13; x_21 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_21, 0, x_16); lean_ctor_set(x_21, 1, x_20); -x_22 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_22 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_23 = lean_array_push(x_22, x_19); -x_24 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_24 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_25 = lean_array_push(x_23, x_24); x_26 = lean_array_push(x_25, x_21); x_27 = l_unexpandListNil___rarg___closed__2; @@ -6171,7 +6171,7 @@ LEAN_EXPORT lean_object* l_unexpandListCons(lean_object* x_1, lean_object* x_2) _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__6; +x_3 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__6; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -6237,7 +6237,7 @@ if (x_22 == 0) lean_object* x_23; lean_object* x_24; uint8_t x_25; x_23 = l_Lean_Syntax_getArgs(x_21); lean_dec(x_21); -x_24 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_24 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_25 = !lean_is_exclusive(x_24); if (x_25 == 0) { @@ -6253,11 +6253,11 @@ lean_inc(x_26); x_30 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_30, 0, x_26); lean_ctor_set(x_30, 1, x_29); -x_31 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_31 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_32 = lean_array_push(x_31, x_15); x_33 = lean_array_push(x_32, x_30); x_34 = l_Array_append___rarg(x_33, x_23); -x_35 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_35 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_36 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_36, 0, x_35); lean_ctor_set(x_36, 1, x_34); @@ -6265,7 +6265,7 @@ x_37 = l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__13; x_38 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_38, 0, x_26); lean_ctor_set(x_38, 1, x_37); -x_39 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_39 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_40 = lean_array_push(x_39, x_28); x_41 = lean_array_push(x_40, x_36); x_42 = lean_array_push(x_41, x_38); @@ -6293,11 +6293,11 @@ lean_inc(x_44); x_49 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_49, 0, x_44); lean_ctor_set(x_49, 1, x_48); -x_50 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_50 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_51 = lean_array_push(x_50, x_15); x_52 = lean_array_push(x_51, x_49); x_53 = l_Array_append___rarg(x_52, x_23); -x_54 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_54 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_55 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_55, 0, x_54); lean_ctor_set(x_55, 1, x_53); @@ -6305,7 +6305,7 @@ x_56 = l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__13; x_57 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_57, 0, x_44); lean_ctor_set(x_57, 1, x_56); -x_58 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_58 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_59 = lean_array_push(x_58, x_47); x_60 = lean_array_push(x_59, x_55); x_61 = lean_array_push(x_60, x_57); @@ -6322,7 +6322,7 @@ else { lean_object* x_64; uint8_t x_65; lean_dec(x_21); -x_64 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_64 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_65 = !lean_is_exclusive(x_64); if (x_65 == 0) { @@ -6333,9 +6333,9 @@ lean_inc(x_66); x_68 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_68, 0, x_66); lean_ctor_set(x_68, 1, x_67); -x_69 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_69 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_70 = lean_array_push(x_69, x_15); -x_71 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_71 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_72 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_72, 0, x_71); lean_ctor_set(x_72, 1, x_70); @@ -6343,7 +6343,7 @@ x_73 = l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__13; x_74 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_74, 0, x_66); lean_ctor_set(x_74, 1, x_73); -x_75 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_75 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_76 = lean_array_push(x_75, x_68); x_77 = lean_array_push(x_76, x_72); x_78 = lean_array_push(x_77, x_74); @@ -6366,9 +6366,9 @@ lean_inc(x_80); x_83 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_83, 0, x_80); lean_ctor_set(x_83, 1, x_82); -x_84 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_84 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_85 = lean_array_push(x_84, x_15); -x_86 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_86 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_87 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_87, 0, x_86); lean_ctor_set(x_87, 1, x_85); @@ -6376,7 +6376,7 @@ x_88 = l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__13; x_89 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_89, 0, x_80); lean_ctor_set(x_89, 1, x_88); -x_90 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_90 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_91 = lean_array_push(x_90, x_83); x_92 = lean_array_push(x_91, x_87); x_93 = lean_array_push(x_92, x_89); @@ -6424,7 +6424,7 @@ LEAN_EXPORT lean_object* l_unexpandListToArray(lean_object* x_1, lean_object* x_ _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__6; +x_3 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__6; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -6482,7 +6482,7 @@ x_19 = l_Lean_Syntax_getArg(x_14, x_7); lean_dec(x_14); x_20 = l_Lean_Syntax_getArgs(x_19); lean_dec(x_19); -x_21 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_21 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_22 = !lean_is_exclusive(x_21); if (x_22 == 0) { @@ -6493,9 +6493,9 @@ lean_inc(x_23); x_25 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_25, 0, x_23); lean_ctor_set(x_25, 1, x_24); -x_26 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27; +x_26 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27; x_27 = l_Array_append___rarg(x_26, x_20); -x_28 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_28 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); @@ -6503,7 +6503,7 @@ x_30 = l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__13; x_31 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_31, 0, x_23); lean_ctor_set(x_31, 1, x_30); -x_32 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_32 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_33 = lean_array_push(x_32, x_25); x_34 = lean_array_push(x_33, x_29); x_35 = lean_array_push(x_34, x_31); @@ -6527,9 +6527,9 @@ lean_inc(x_38); x_41 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_41, 0, x_38); lean_ctor_set(x_41, 1, x_40); -x_42 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27; +x_42 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27; x_43 = l_Array_append___rarg(x_42, x_20); -x_44 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_44 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_44); lean_ctor_set(x_45, 1, x_43); @@ -6537,7 +6537,7 @@ x_46 = l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__13; x_47 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_47, 0, x_38); lean_ctor_set(x_47, 1, x_46); -x_48 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_48 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_49 = lean_array_push(x_48, x_41); x_50 = lean_array_push(x_49, x_45); x_51 = lean_array_push(x_50, x_47); @@ -6567,7 +6567,7 @@ static lean_object* _init_l_unexpandProdMk___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__4; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__4; x_2 = l_unexpandProdMk___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -6577,7 +6577,7 @@ LEAN_EXPORT lean_object* l_unexpandProdMk(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__6; +x_3 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__6; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -6617,19 +6617,19 @@ x_14 = lean_unsigned_to_nat(0u); x_15 = l_Lean_Syntax_getArg(x_8, x_14); x_16 = l_Lean_Syntax_getArg(x_8, x_7); lean_dec(x_8); -x_17 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__21; +x_17 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__21; lean_inc(x_16); x_18 = l_Lean_Syntax_isOfKind(x_16, x_17); if (x_18 == 0) { lean_object* x_19; uint8_t x_20; -x_19 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_19 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_20 = !lean_is_exclusive(x_19); if (x_20 == 0) { lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; x_21 = lean_ctor_get(x_19, 0); -x_22 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22; +x_22 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22; lean_inc(x_21); x_23 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_23, 0, x_21); @@ -6639,13 +6639,13 @@ lean_inc(x_21); x_25 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_25, 0, x_21); lean_ctor_set(x_25, 1, x_24); -x_26 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_26 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_27 = lean_array_push(x_26, x_16); -x_28 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_28 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); -x_30 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_30 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_31 = lean_array_push(x_30, x_25); x_32 = lean_array_push(x_31, x_29); x_33 = l_unexpandProdMk___closed__2; @@ -6661,11 +6661,11 @@ x_38 = lean_array_push(x_37, x_36); x_39 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_39, 0, x_28); lean_ctor_set(x_39, 1, x_38); -x_40 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29; +x_40 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29; x_41 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_41, 0, x_21); lean_ctor_set(x_41, 1, x_40); -x_42 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_42 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_43 = lean_array_push(x_42, x_23); x_44 = lean_array_push(x_43, x_39); x_45 = lean_array_push(x_44, x_41); @@ -6683,7 +6683,7 @@ x_48 = lean_ctor_get(x_19, 1); lean_inc(x_48); lean_inc(x_47); lean_dec(x_19); -x_49 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22; +x_49 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22; lean_inc(x_47); x_50 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_50, 0, x_47); @@ -6693,13 +6693,13 @@ lean_inc(x_47); x_52 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_52, 0, x_47); lean_ctor_set(x_52, 1, x_51); -x_53 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_53 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_54 = lean_array_push(x_53, x_16); -x_55 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_55 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_56 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_56, 0, x_55); lean_ctor_set(x_56, 1, x_54); -x_57 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_57 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_58 = lean_array_push(x_57, x_52); x_59 = lean_array_push(x_58, x_56); x_60 = l_unexpandProdMk___closed__2; @@ -6715,11 +6715,11 @@ x_65 = lean_array_push(x_64, x_63); x_66 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_66, 0, x_55); lean_ctor_set(x_66, 1, x_65); -x_67 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29; +x_67 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29; x_68 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_68, 0, x_47); lean_ctor_set(x_68, 1, x_67); -x_69 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_69 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_70 = lean_array_push(x_69, x_50); x_71 = lean_array_push(x_70, x_66); x_72 = lean_array_push(x_71, x_68); @@ -6742,13 +6742,13 @@ if (x_76 == 0) { lean_object* x_77; uint8_t x_78; lean_dec(x_75); -x_77 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_77 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_78 = !lean_is_exclusive(x_77); if (x_78 == 0) { lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; x_79 = lean_ctor_get(x_77, 0); -x_80 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22; +x_80 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22; lean_inc(x_79); x_81 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_81, 0, x_79); @@ -6758,13 +6758,13 @@ lean_inc(x_79); x_83 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_83, 0, x_79); lean_ctor_set(x_83, 1, x_82); -x_84 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_84 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_85 = lean_array_push(x_84, x_16); -x_86 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_86 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_87 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_87, 0, x_86); lean_ctor_set(x_87, 1, x_85); -x_88 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_88 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_89 = lean_array_push(x_88, x_83); x_90 = lean_array_push(x_89, x_87); x_91 = l_unexpandProdMk___closed__2; @@ -6780,11 +6780,11 @@ x_96 = lean_array_push(x_95, x_94); x_97 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_97, 0, x_86); lean_ctor_set(x_97, 1, x_96); -x_98 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29; +x_98 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29; x_99 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_99, 0, x_79); lean_ctor_set(x_99, 1, x_98); -x_100 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_100 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_101 = lean_array_push(x_100, x_81); x_102 = lean_array_push(x_101, x_97); x_103 = lean_array_push(x_102, x_99); @@ -6802,7 +6802,7 @@ x_106 = lean_ctor_get(x_77, 1); lean_inc(x_106); lean_inc(x_105); lean_dec(x_77); -x_107 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22; +x_107 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22; lean_inc(x_105); x_108 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_108, 0, x_105); @@ -6812,13 +6812,13 @@ lean_inc(x_105); x_110 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_110, 0, x_105); lean_ctor_set(x_110, 1, x_109); -x_111 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_111 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_112 = lean_array_push(x_111, x_16); -x_113 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_113 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_114 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_114, 0, x_113); lean_ctor_set(x_114, 1, x_112); -x_115 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_115 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_116 = lean_array_push(x_115, x_110); x_117 = lean_array_push(x_116, x_114); x_118 = l_unexpandProdMk___closed__2; @@ -6834,11 +6834,11 @@ x_123 = lean_array_push(x_122, x_121); x_124 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_124, 0, x_113); lean_ctor_set(x_124, 1, x_123); -x_125 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29; +x_125 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29; x_126 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_126, 0, x_105); lean_ctor_set(x_126, 1, x_125); -x_127 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_127 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_128 = lean_array_push(x_127, x_108); x_129 = lean_array_push(x_128, x_124); x_130 = lean_array_push(x_129, x_126); @@ -6864,13 +6864,13 @@ if (x_135 == 0) lean_object* x_136; uint8_t x_137; lean_dec(x_134); lean_dec(x_133); -x_136 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_136 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_137 = !lean_is_exclusive(x_136); if (x_137 == 0) { lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; x_138 = lean_ctor_get(x_136, 0); -x_139 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22; +x_139 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22; lean_inc(x_138); x_140 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_140, 0, x_138); @@ -6880,13 +6880,13 @@ lean_inc(x_138); x_142 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_142, 0, x_138); lean_ctor_set(x_142, 1, x_141); -x_143 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_143 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_144 = lean_array_push(x_143, x_16); -x_145 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_145 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_146 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_146, 0, x_145); lean_ctor_set(x_146, 1, x_144); -x_147 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_147 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_148 = lean_array_push(x_147, x_142); x_149 = lean_array_push(x_148, x_146); x_150 = l_unexpandProdMk___closed__2; @@ -6902,11 +6902,11 @@ x_155 = lean_array_push(x_154, x_153); x_156 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_156, 0, x_145); lean_ctor_set(x_156, 1, x_155); -x_157 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29; +x_157 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29; x_158 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_158, 0, x_138); lean_ctor_set(x_158, 1, x_157); -x_159 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_159 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_160 = lean_array_push(x_159, x_140); x_161 = lean_array_push(x_160, x_156); x_162 = lean_array_push(x_161, x_158); @@ -6924,7 +6924,7 @@ x_165 = lean_ctor_get(x_136, 1); lean_inc(x_165); lean_inc(x_164); lean_dec(x_136); -x_166 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22; +x_166 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22; lean_inc(x_164); x_167 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_167, 0, x_164); @@ -6934,13 +6934,13 @@ lean_inc(x_164); x_169 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_169, 0, x_164); lean_ctor_set(x_169, 1, x_168); -x_170 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_170 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_171 = lean_array_push(x_170, x_16); -x_172 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_172 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_173 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_173, 0, x_172); lean_ctor_set(x_173, 1, x_171); -x_174 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_174 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_175 = lean_array_push(x_174, x_169); x_176 = lean_array_push(x_175, x_173); x_177 = l_unexpandProdMk___closed__2; @@ -6956,11 +6956,11 @@ x_182 = lean_array_push(x_181, x_180); x_183 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_183, 0, x_172); lean_ctor_set(x_183, 1, x_182); -x_184 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29; +x_184 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29; x_185 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_185, 0, x_164); lean_ctor_set(x_185, 1, x_184); -x_186 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_186 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_187 = lean_array_push(x_186, x_167); x_188 = lean_array_push(x_187, x_183); x_189 = lean_array_push(x_188, x_185); @@ -6986,13 +6986,13 @@ if (x_194 == 0) lean_object* x_195; uint8_t x_196; lean_dec(x_192); lean_dec(x_133); -x_195 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_195 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_196 = !lean_is_exclusive(x_195); if (x_196 == 0) { lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; x_197 = lean_ctor_get(x_195, 0); -x_198 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22; +x_198 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22; lean_inc(x_197); x_199 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_199, 0, x_197); @@ -7002,13 +7002,13 @@ lean_inc(x_197); x_201 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_201, 0, x_197); lean_ctor_set(x_201, 1, x_200); -x_202 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_202 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_203 = lean_array_push(x_202, x_16); -x_204 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_204 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_205 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_205, 0, x_204); lean_ctor_set(x_205, 1, x_203); -x_206 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_206 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_207 = lean_array_push(x_206, x_201); x_208 = lean_array_push(x_207, x_205); x_209 = lean_alloc_ctor(1, 2, 0); @@ -7023,11 +7023,11 @@ x_213 = lean_array_push(x_212, x_211); x_214 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_214, 0, x_204); lean_ctor_set(x_214, 1, x_213); -x_215 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29; +x_215 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29; x_216 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_216, 0, x_197); lean_ctor_set(x_216, 1, x_215); -x_217 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_217 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_218 = lean_array_push(x_217, x_199); x_219 = lean_array_push(x_218, x_214); x_220 = lean_array_push(x_219, x_216); @@ -7045,7 +7045,7 @@ x_223 = lean_ctor_get(x_195, 1); lean_inc(x_223); lean_inc(x_222); lean_dec(x_195); -x_224 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22; +x_224 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22; lean_inc(x_222); x_225 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_225, 0, x_222); @@ -7055,13 +7055,13 @@ lean_inc(x_222); x_227 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_227, 0, x_222); lean_ctor_set(x_227, 1, x_226); -x_228 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_228 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_229 = lean_array_push(x_228, x_16); -x_230 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_230 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_231 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_231, 0, x_230); lean_ctor_set(x_231, 1, x_229); -x_232 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_232 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_233 = lean_array_push(x_232, x_227); x_234 = lean_array_push(x_233, x_231); x_235 = lean_alloc_ctor(1, 2, 0); @@ -7076,11 +7076,11 @@ x_239 = lean_array_push(x_238, x_237); x_240 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_240, 0, x_230); lean_ctor_set(x_240, 1, x_239); -x_241 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29; +x_241 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29; x_242 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_242, 0, x_222); lean_ctor_set(x_242, 1, x_241); -x_243 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_243 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_244 = lean_array_push(x_243, x_225); x_245 = lean_array_push(x_244, x_240); x_246 = lean_array_push(x_245, x_242); @@ -7101,13 +7101,13 @@ x_249 = l_Lean_Syntax_getArg(x_192, x_7); lean_dec(x_192); x_250 = l_Lean_Syntax_getArgs(x_249); lean_dec(x_249); -x_251 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_251 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_252 = !lean_is_exclusive(x_251); if (x_252 == 0) { lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; x_253 = lean_ctor_get(x_251, 0); -x_254 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22; +x_254 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22; lean_inc(x_253); x_255 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_255, 0, x_253); @@ -7117,12 +7117,12 @@ lean_inc(x_253); x_257 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_257, 0, x_253); lean_ctor_set(x_257, 1, x_256); -x_258 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_258 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_259 = lean_array_push(x_258, x_133); lean_inc(x_257); x_260 = lean_array_push(x_259, x_257); x_261 = l_Array_append___rarg(x_260, x_250); -x_262 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_262 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_263 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_263, 0, x_262); lean_ctor_set(x_263, 1, x_261); @@ -7131,7 +7131,7 @@ x_265 = lean_array_push(x_264, x_263); x_266 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_266, 0, x_193); lean_ctor_set(x_266, 1, x_265); -x_267 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_267 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_268 = lean_array_push(x_267, x_266); x_269 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_269, 0, x_262); @@ -7141,11 +7141,11 @@ x_271 = lean_array_push(x_270, x_269); x_272 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_272, 0, x_262); lean_ctor_set(x_272, 1, x_271); -x_273 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29; +x_273 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29; x_274 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_274, 0, x_253); lean_ctor_set(x_274, 1, x_273); -x_275 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_275 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_276 = lean_array_push(x_275, x_255); x_277 = lean_array_push(x_276, x_272); x_278 = lean_array_push(x_277, x_274); @@ -7163,7 +7163,7 @@ x_281 = lean_ctor_get(x_251, 1); lean_inc(x_281); lean_inc(x_280); lean_dec(x_251); -x_282 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22; +x_282 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22; lean_inc(x_280); x_283 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_283, 0, x_280); @@ -7173,12 +7173,12 @@ lean_inc(x_280); x_285 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_285, 0, x_280); lean_ctor_set(x_285, 1, x_284); -x_286 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_286 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_287 = lean_array_push(x_286, x_133); lean_inc(x_285); x_288 = lean_array_push(x_287, x_285); x_289 = l_Array_append___rarg(x_288, x_250); -x_290 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_290 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_291 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_291, 0, x_290); lean_ctor_set(x_291, 1, x_289); @@ -7187,7 +7187,7 @@ x_293 = lean_array_push(x_292, x_291); x_294 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_294, 0, x_193); lean_ctor_set(x_294, 1, x_293); -x_295 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_295 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_296 = lean_array_push(x_295, x_294); x_297 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_297, 0, x_290); @@ -7197,11 +7197,11 @@ x_299 = lean_array_push(x_298, x_297); x_300 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_300, 0, x_290); lean_ctor_set(x_300, 1, x_299); -x_301 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29; +x_301 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29; x_302 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_302, 0, x_280); lean_ctor_set(x_302, 1, x_301); -x_303 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_303 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_304 = lean_array_push(x_303, x_283); x_305 = lean_array_push(x_304, x_300); x_306 = lean_array_push(x_305, x_302); @@ -7267,7 +7267,7 @@ LEAN_EXPORT lean_object* l_unexpandIte(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__6; +x_3 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__6; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -7309,7 +7309,7 @@ x_16 = l_Lean_Syntax_getArg(x_8, x_7); x_17 = lean_unsigned_to_nat(2u); x_18 = l_Lean_Syntax_getArg(x_8, x_17); lean_dec(x_8); -x_19 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_19 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_20 = !lean_is_exclusive(x_19); if (x_20 == 0) { @@ -7329,7 +7329,7 @@ x_26 = l_unexpandIte___closed__5; x_27 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_27, 0, x_21); lean_ctor_set(x_27, 1, x_26); -x_28 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__21; +x_28 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__21; x_29 = lean_array_push(x_28, x_23); x_30 = lean_array_push(x_29, x_15); x_31 = lean_array_push(x_30, x_25); @@ -7365,7 +7365,7 @@ x_43 = l_unexpandIte___closed__5; x_44 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_44, 0, x_37); lean_ctor_set(x_44, 1, x_43); -x_45 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__21; +x_45 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__21; x_46 = lean_array_push(x_45, x_40); x_47 = lean_array_push(x_46, x_15); x_48 = lean_array_push(x_47, x_42); @@ -7397,7 +7397,7 @@ static lean_object* _init_l_unexpandSorryAx___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__4; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__4; x_2 = l_unexpandSorryAx___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -7407,7 +7407,7 @@ LEAN_EXPORT lean_object* l_unexpandSorryAx(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__6; +x_3 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__6; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -7480,7 +7480,7 @@ return x_24; else { lean_object* x_25; uint8_t x_26; -x_25 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_25 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_26 = !lean_is_exclusive(x_25); if (x_26 == 0) { @@ -7490,7 +7490,7 @@ x_28 = l_unexpandSorryAx___closed__1; x_29 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_29, 0, x_27); lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_30 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_31 = lean_array_push(x_30, x_29); x_32 = l_unexpandSorryAx___closed__2; x_33 = lean_alloc_ctor(1, 2, 0); @@ -7511,7 +7511,7 @@ x_36 = l_unexpandSorryAx___closed__1; x_37 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_37, 0, x_34); lean_ctor_set(x_37, 1, x_36); -x_38 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_38 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_39 = lean_array_push(x_38, x_37); x_40 = l_unexpandSorryAx___closed__2; x_41 = lean_alloc_ctor(1, 2, 0); @@ -7546,7 +7546,7 @@ return x_48; else { lean_object* x_49; uint8_t x_50; -x_49 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_49 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_50 = !lean_is_exclusive(x_49); if (x_50 == 0) { @@ -7556,7 +7556,7 @@ x_52 = l_unexpandSorryAx___closed__1; x_53 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_53, 0, x_51); lean_ctor_set(x_53, 1, x_52); -x_54 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_54 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_55 = lean_array_push(x_54, x_53); x_56 = l_unexpandSorryAx___closed__2; x_57 = lean_alloc_ctor(1, 2, 0); @@ -7577,7 +7577,7 @@ x_60 = l_unexpandSorryAx___closed__1; x_61 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_61, 0, x_58); lean_ctor_set(x_61, 1, x_60); -x_62 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_62 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_63 = lean_array_push(x_62, x_61); x_64 = l_unexpandSorryAx___closed__2; x_65 = lean_alloc_ctor(1, 2, 0); @@ -7605,7 +7605,7 @@ static lean_object* _init_l_unexpandEqNDRec___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__4; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__4; x_2 = l_unexpandEqNDRec___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -7623,7 +7623,7 @@ LEAN_EXPORT lean_object* l_unexpandEqNDRec(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__6; +x_3 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__6; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -7663,7 +7663,7 @@ x_14 = lean_unsigned_to_nat(0u); x_15 = l_Lean_Syntax_getArg(x_8, x_14); x_16 = l_Lean_Syntax_getArg(x_8, x_7); lean_dec(x_8); -x_17 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_17 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_18 = !lean_is_exclusive(x_17); if (x_18 == 0) { @@ -7673,13 +7673,13 @@ x_20 = l_unexpandEqNDRec___closed__3; x_21 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_21, 0, x_19); lean_ctor_set(x_21, 1, x_20); -x_22 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_22 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_23 = lean_array_push(x_22, x_15); -x_24 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_24 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); -x_26 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_26 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_27 = lean_array_push(x_26, x_16); x_28 = lean_array_push(x_27, x_21); x_29 = lean_array_push(x_28, x_25); @@ -7702,13 +7702,13 @@ x_34 = l_unexpandEqNDRec___closed__3; x_35 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_35, 0, x_32); lean_ctor_set(x_35, 1, x_34); -x_36 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_36 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_37 = lean_array_push(x_36, x_15); -x_38 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_38 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_39 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_39, 0, x_38); lean_ctor_set(x_39, 1, x_37); -x_40 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_40 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_41 = lean_array_push(x_40, x_16); x_42 = lean_array_push(x_41, x_35); x_43 = lean_array_push(x_42, x_39); @@ -7729,7 +7729,7 @@ LEAN_EXPORT lean_object* l_unexpandEqRec(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__6; +x_3 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__6; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -7769,7 +7769,7 @@ x_14 = lean_unsigned_to_nat(0u); x_15 = l_Lean_Syntax_getArg(x_8, x_14); x_16 = l_Lean_Syntax_getArg(x_8, x_7); lean_dec(x_8); -x_17 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_17 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_18 = !lean_is_exclusive(x_17); if (x_18 == 0) { @@ -7779,13 +7779,13 @@ x_20 = l_unexpandEqNDRec___closed__3; x_21 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_21, 0, x_19); lean_ctor_set(x_21, 1, x_20); -x_22 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_22 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_23 = lean_array_push(x_22, x_15); -x_24 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_24 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); -x_26 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_26 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_27 = lean_array_push(x_26, x_16); x_28 = lean_array_push(x_27, x_21); x_29 = lean_array_push(x_28, x_25); @@ -7808,13 +7808,13 @@ x_34 = l_unexpandEqNDRec___closed__3; x_35 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_35, 0, x_32); lean_ctor_set(x_35, 1, x_34); -x_36 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_36 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_37 = lean_array_push(x_36, x_15); -x_38 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_38 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_39 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_39, 0, x_38); lean_ctor_set(x_39, 1, x_37); -x_40 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_40 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_41 = lean_array_push(x_40, x_16); x_42 = lean_array_push(x_41, x_35); x_43 = lean_array_push(x_42, x_39); @@ -7843,7 +7843,7 @@ static lean_object* _init_l_unexpandExists___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__4; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__4; x_2 = l_unexpandExists___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -7879,7 +7879,7 @@ LEAN_EXPORT lean_object* l_unexpandExists(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__6; +x_3 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__6; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -7976,7 +7976,7 @@ x_30 = l_Lean_Syntax_isOfKind(x_28, x_29); if (x_30 == 0) { lean_object* x_31; uint8_t x_32; -x_31 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__21; +x_31 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__21; lean_inc(x_28); x_32 = l_Lean_Syntax_isOfKind(x_28, x_31); if (x_32 == 0) @@ -8073,7 +8073,7 @@ x_53 = l_Lean_Syntax_getArg(x_48, x_7); lean_dec(x_48); x_54 = l_Lean_Syntax_getArg(x_19, x_36); lean_dec(x_19); -x_55 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_55 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_56 = !lean_is_exclusive(x_55); if (x_56 == 0) { @@ -8084,19 +8084,19 @@ lean_inc(x_57); x_59 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_59, 0, x_57); lean_ctor_set(x_59, 1, x_58); -x_60 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22; +x_60 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22; lean_inc(x_57); x_61 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_61, 0, x_57); lean_ctor_set(x_61, 1, x_60); -x_62 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_62 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_63 = lean_array_push(x_62, x_40); x_64 = l_Lean_binderIdent___closed__2; x_65 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_65, 0, x_64); lean_ctor_set(x_65, 1, x_63); x_66 = lean_array_push(x_62, x_65); -x_67 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_67 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_68 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_68, 0, x_67); lean_ctor_set(x_68, 1, x_66); @@ -8105,7 +8105,7 @@ lean_inc(x_57); x_70 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_70, 0, x_57); lean_ctor_set(x_70, 1, x_69); -x_71 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29; +x_71 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29; lean_inc(x_57); x_72 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_72, 0, x_57); @@ -8158,19 +8158,19 @@ lean_inc(x_95); x_98 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_98, 0, x_95); lean_ctor_set(x_98, 1, x_97); -x_99 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22; +x_99 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22; lean_inc(x_95); x_100 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_100, 0, x_95); lean_ctor_set(x_100, 1, x_99); -x_101 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_101 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_102 = lean_array_push(x_101, x_40); x_103 = l_Lean_binderIdent___closed__2; x_104 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_104, 0, x_103); lean_ctor_set(x_104, 1, x_102); x_105 = lean_array_push(x_101, x_104); -x_106 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_106 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_107 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_107, 0, x_106); lean_ctor_set(x_107, 1, x_105); @@ -8179,7 +8179,7 @@ lean_inc(x_95); x_109 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_109, 0, x_95); lean_ctor_set(x_109, 1, x_108); -x_110 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29; +x_110 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29; lean_inc(x_95); x_111 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_111, 0, x_95); @@ -8239,7 +8239,7 @@ x_138 = l_Lean_Syntax_isOfKind(x_136, x_137); if (x_138 == 0) { lean_object* x_139; uint8_t x_140; -x_139 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_139 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_140 = !lean_is_exclusive(x_139); if (x_140 == 0) { @@ -8250,20 +8250,20 @@ lean_inc(x_141); x_143 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_143, 0, x_141); lean_ctor_set(x_143, 1, x_142); -x_144 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_144 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_145 = lean_array_push(x_144, x_28); x_146 = l_Lean_binderIdent___closed__2; x_147 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_147, 0, x_146); lean_ctor_set(x_147, 1, x_145); x_148 = lean_array_push(x_144, x_147); -x_149 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_149 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; 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_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_151 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_152 = lean_array_push(x_151, x_150); -x_153 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_153 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_154 = lean_array_push(x_152, x_153); x_155 = l_Lean_unbracketedExplicitBinders___closed__2; x_156 = lean_alloc_ctor(1, 2, 0); @@ -8302,20 +8302,20 @@ lean_inc(x_168); x_171 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_171, 0, x_168); lean_ctor_set(x_171, 1, x_170); -x_172 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_172 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_173 = lean_array_push(x_172, x_28); x_174 = l_Lean_binderIdent___closed__2; x_175 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_175, 0, x_174); lean_ctor_set(x_175, 1, x_173); x_176 = lean_array_push(x_172, x_175); -x_177 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_177 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; 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_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_179 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_180 = lean_array_push(x_179, x_178); -x_181 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_181 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_182 = lean_array_push(x_180, x_181); x_183 = l_Lean_unbracketedExplicitBinders___closed__2; x_184 = lean_alloc_ctor(1, 2, 0); @@ -8355,7 +8355,7 @@ if (x_199 == 0) { lean_object* x_200; uint8_t x_201; lean_dec(x_197); -x_200 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_200 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_201 = !lean_is_exclusive(x_200); if (x_201 == 0) { @@ -8366,20 +8366,20 @@ lean_inc(x_202); x_204 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_204, 0, x_202); lean_ctor_set(x_204, 1, x_203); -x_205 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_205 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_206 = lean_array_push(x_205, x_28); x_207 = l_Lean_binderIdent___closed__2; x_208 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_208, 0, x_207); lean_ctor_set(x_208, 1, x_206); x_209 = lean_array_push(x_205, x_208); -x_210 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_210 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_211 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_211, 0, x_210); lean_ctor_set(x_211, 1, x_209); -x_212 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_212 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_213 = lean_array_push(x_212, x_211); -x_214 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_214 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_215 = lean_array_push(x_213, x_214); x_216 = l_Lean_unbracketedExplicitBinders___closed__2; x_217 = lean_alloc_ctor(1, 2, 0); @@ -8417,20 +8417,20 @@ lean_inc(x_228); x_231 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_231, 0, x_228); lean_ctor_set(x_231, 1, x_230); -x_232 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_232 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_233 = lean_array_push(x_232, x_28); x_234 = l_Lean_binderIdent___closed__2; x_235 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_235, 0, x_234); lean_ctor_set(x_235, 1, x_233); x_236 = lean_array_push(x_232, x_235); -x_237 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_237 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_238 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_238, 0, x_237); lean_ctor_set(x_238, 1, x_236); -x_239 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_239 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_240 = lean_array_push(x_239, x_238); -x_241 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_241 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_242 = lean_array_push(x_240, x_241); x_243 = l_Lean_unbracketedExplicitBinders___closed__2; x_244 = lean_alloc_ctor(1, 2, 0); @@ -8470,7 +8470,7 @@ if (x_258 == 0) { lean_object* x_259; uint8_t x_260; lean_dec(x_256); -x_259 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_259 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_260 = !lean_is_exclusive(x_259); if (x_260 == 0) { @@ -8481,20 +8481,20 @@ lean_inc(x_261); x_263 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_263, 0, x_261); lean_ctor_set(x_263, 1, x_262); -x_264 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_264 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_265 = lean_array_push(x_264, x_28); x_266 = l_Lean_binderIdent___closed__2; x_267 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_267, 0, x_266); lean_ctor_set(x_267, 1, x_265); x_268 = lean_array_push(x_264, x_267); -x_269 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_269 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_270 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_270, 0, x_269); lean_ctor_set(x_270, 1, x_268); -x_271 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_271 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_272 = lean_array_push(x_271, x_270); -x_273 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_273 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_274 = lean_array_push(x_272, x_273); x_275 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_275, 0, x_257); @@ -8531,20 +8531,20 @@ lean_inc(x_286); x_289 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_289, 0, x_286); lean_ctor_set(x_289, 1, x_288); -x_290 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_290 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_291 = lean_array_push(x_290, x_28); x_292 = l_Lean_binderIdent___closed__2; x_293 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_293, 0, x_292); lean_ctor_set(x_293, 1, x_291); x_294 = lean_array_push(x_290, x_293); -x_295 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_295 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_296 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_296, 0, x_295); lean_ctor_set(x_296, 1, x_294); -x_297 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_297 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_298 = lean_array_push(x_297, x_296); -x_299 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_299 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_300 = lean_array_push(x_298, x_299); x_301 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_301, 0, x_257); @@ -8582,7 +8582,7 @@ if (x_315 == 0) { lean_object* x_316; uint8_t x_317; lean_dec(x_313); -x_316 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_316 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_317 = !lean_is_exclusive(x_316); if (x_317 == 0) { @@ -8593,20 +8593,20 @@ lean_inc(x_318); x_320 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_320, 0, x_318); lean_ctor_set(x_320, 1, x_319); -x_321 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_321 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_322 = lean_array_push(x_321, x_28); x_323 = l_Lean_binderIdent___closed__2; x_324 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_324, 0, x_323); lean_ctor_set(x_324, 1, x_322); x_325 = lean_array_push(x_321, x_324); -x_326 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_326 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_327 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_327, 0, x_326); lean_ctor_set(x_327, 1, x_325); -x_328 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_328 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_329 = lean_array_push(x_328, x_327); -x_330 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_330 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_331 = lean_array_push(x_329, x_330); x_332 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_332, 0, x_257); @@ -8643,20 +8643,20 @@ lean_inc(x_343); x_346 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_346, 0, x_343); lean_ctor_set(x_346, 1, x_345); -x_347 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_347 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_348 = lean_array_push(x_347, x_28); x_349 = l_Lean_binderIdent___closed__2; x_350 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_350, 0, x_349); lean_ctor_set(x_350, 1, x_348); x_351 = lean_array_push(x_347, x_350); -x_352 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_352 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_353 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_353, 0, x_352); lean_ctor_set(x_353, 1, x_351); -x_354 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_354 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_355 = lean_array_push(x_354, x_353); -x_356 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_356 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_357 = lean_array_push(x_355, x_356); x_358 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_358, 0, x_257); @@ -8691,7 +8691,7 @@ x_371 = l_Lean_Syntax_getArg(x_136, x_370); lean_dec(x_136); x_372 = l_Lean_Syntax_getArgs(x_313); lean_dec(x_313); -x_373 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_373 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_374 = !lean_is_exclusive(x_373); if (x_374 == 0) { @@ -8702,7 +8702,7 @@ lean_inc(x_375); x_377 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_377, 0, x_375); lean_ctor_set(x_377, 1, x_376); -x_378 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_378 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_379 = lean_array_push(x_378, x_28); x_380 = l_Lean_binderIdent___closed__2; x_381 = lean_alloc_ctor(1, 2, 0); @@ -8710,13 +8710,13 @@ lean_ctor_set(x_381, 0, x_380); lean_ctor_set(x_381, 1, x_379); x_382 = lean_array_push(x_378, x_381); x_383 = l_Array_append___rarg(x_382, x_372); -x_384 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_384 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_385 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_385, 0, x_384); lean_ctor_set(x_385, 1, x_383); -x_386 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_386 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_387 = lean_array_push(x_386, x_385); -x_388 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_388 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_389 = lean_array_push(x_387, x_388); x_390 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_390, 0, x_257); @@ -8753,7 +8753,7 @@ lean_inc(x_401); x_404 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_404, 0, x_401); lean_ctor_set(x_404, 1, x_403); -x_405 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_405 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_406 = lean_array_push(x_405, x_28); x_407 = l_Lean_binderIdent___closed__2; x_408 = lean_alloc_ctor(1, 2, 0); @@ -8761,13 +8761,13 @@ lean_ctor_set(x_408, 0, x_407); lean_ctor_set(x_408, 1, x_406); x_409 = lean_array_push(x_405, x_408); x_410 = l_Array_append___rarg(x_409, x_372); -x_411 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_411 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_412 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_412, 0, x_411); lean_ctor_set(x_412, 1, x_410); -x_413 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_413 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_414 = lean_array_push(x_413, x_412); -x_415 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_415 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_416 = lean_array_push(x_414, x_415); x_417 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_417, 0, x_257); @@ -8817,7 +8817,7 @@ LEAN_EXPORT lean_object* l_unexpandSigma(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__6; +x_3 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__6; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -8908,7 +8908,7 @@ else lean_object* x_28; lean_object* x_29; uint8_t x_30; x_28 = l_Lean_Syntax_getArg(x_24, x_13); lean_dec(x_24); -x_29 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__21; +x_29 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__21; lean_inc(x_28); x_30 = l_Lean_Syntax_isOfKind(x_28, x_29); if (x_30 == 0) @@ -9006,25 +9006,25 @@ x_52 = l_Lean_Syntax_getArg(x_47, x_7); lean_dec(x_47); x_53 = l_Lean_Syntax_getArg(x_19, x_34); lean_dec(x_19); -x_54 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_54 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_55 = !lean_is_exclusive(x_54); if (x_55 == 0) { lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; x_56 = lean_ctor_get(x_54, 0); -x_57 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22; +x_57 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22; lean_inc(x_56); x_58 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_58, 0, x_56); lean_ctor_set(x_58, 1, x_57); -x_59 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_59 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_60 = lean_array_push(x_59, x_38); x_61 = l_Lean_binderIdent___closed__2; x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_61); lean_ctor_set(x_62, 1, x_60); x_63 = lean_array_push(x_59, x_62); -x_64 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_64 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_65 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_65, 0, x_64); lean_ctor_set(x_65, 1, x_63); @@ -9033,7 +9033,7 @@ lean_inc(x_56); x_67 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_67, 0, x_56); lean_ctor_set(x_67, 1, x_66); -x_68 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29; +x_68 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29; lean_inc(x_56); x_69 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_69, 0, x_56); @@ -9052,7 +9052,7 @@ x_78 = l_unexpandSigma___closed__1; x_79 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_79, 0, x_56); lean_ctor_set(x_79, 1, x_78); -x_80 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_80 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_81 = lean_array_push(x_80, x_77); x_82 = lean_array_push(x_81, x_79); x_83 = lean_array_push(x_82, x_53); @@ -9071,19 +9071,19 @@ x_87 = lean_ctor_get(x_54, 1); lean_inc(x_87); lean_inc(x_86); lean_dec(x_54); -x_88 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22; +x_88 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22; lean_inc(x_86); x_89 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_89, 0, x_86); lean_ctor_set(x_89, 1, x_88); -x_90 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_90 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_91 = lean_array_push(x_90, x_38); x_92 = l_Lean_binderIdent___closed__2; x_93 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_93, 0, x_92); lean_ctor_set(x_93, 1, x_91); x_94 = lean_array_push(x_90, x_93); -x_95 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_95 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_96 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_96, 0, x_95); lean_ctor_set(x_96, 1, x_94); @@ -9092,7 +9092,7 @@ lean_inc(x_86); x_98 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_98, 0, x_86); lean_ctor_set(x_98, 1, x_97); -x_99 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29; +x_99 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29; lean_inc(x_86); x_100 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_100, 0, x_86); @@ -9111,7 +9111,7 @@ x_109 = l_unexpandSigma___closed__1; x_110 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_110, 0, x_86); lean_ctor_set(x_110, 1, x_109); -x_111 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_111 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_112 = lean_array_push(x_111, x_108); x_113 = lean_array_push(x_112, x_110); x_114 = lean_array_push(x_113, x_53); @@ -9148,7 +9148,7 @@ LEAN_EXPORT lean_object* l_unexpandPSigma(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__6; +x_3 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__6; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -9239,7 +9239,7 @@ else lean_object* x_28; lean_object* x_29; uint8_t x_30; x_28 = l_Lean_Syntax_getArg(x_24, x_13); lean_dec(x_24); -x_29 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__21; +x_29 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__21; lean_inc(x_28); x_30 = l_Lean_Syntax_isOfKind(x_28, x_29); if (x_30 == 0) @@ -9337,25 +9337,25 @@ x_52 = l_Lean_Syntax_getArg(x_47, x_7); lean_dec(x_47); x_53 = l_Lean_Syntax_getArg(x_19, x_34); lean_dec(x_19); -x_54 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_54 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_55 = !lean_is_exclusive(x_54); if (x_55 == 0) { lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; x_56 = lean_ctor_get(x_54, 0); -x_57 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22; +x_57 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22; lean_inc(x_56); x_58 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_58, 0, x_56); lean_ctor_set(x_58, 1, x_57); -x_59 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_59 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_60 = lean_array_push(x_59, x_38); x_61 = l_Lean_binderIdent___closed__2; x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_61); lean_ctor_set(x_62, 1, x_60); x_63 = lean_array_push(x_59, x_62); -x_64 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_64 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_65 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_65, 0, x_64); lean_ctor_set(x_65, 1, x_63); @@ -9364,7 +9364,7 @@ lean_inc(x_56); x_67 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_67, 0, x_56); lean_ctor_set(x_67, 1, x_66); -x_68 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29; +x_68 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29; lean_inc(x_56); x_69 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_69, 0, x_56); @@ -9383,7 +9383,7 @@ x_78 = l_unexpandPSigma___closed__1; x_79 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_79, 0, x_56); lean_ctor_set(x_79, 1, x_78); -x_80 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_80 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_81 = lean_array_push(x_80, x_77); x_82 = lean_array_push(x_81, x_79); x_83 = lean_array_push(x_82, x_53); @@ -9402,19 +9402,19 @@ x_87 = lean_ctor_get(x_54, 1); lean_inc(x_87); lean_inc(x_86); lean_dec(x_54); -x_88 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22; +x_88 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22; lean_inc(x_86); x_89 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_89, 0, x_86); lean_ctor_set(x_89, 1, x_88); -x_90 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_90 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_91 = lean_array_push(x_90, x_38); x_92 = l_Lean_binderIdent___closed__2; x_93 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_93, 0, x_92); lean_ctor_set(x_93, 1, x_91); x_94 = lean_array_push(x_90, x_93); -x_95 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_95 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_96 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_96, 0, x_95); lean_ctor_set(x_96, 1, x_94); @@ -9423,7 +9423,7 @@ lean_inc(x_86); x_98 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_98, 0, x_86); lean_ctor_set(x_98, 1, x_97); -x_99 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29; +x_99 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29; lean_inc(x_86); x_100 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_100, 0, x_86); @@ -9442,7 +9442,7 @@ x_109 = l_unexpandPSigma___closed__1; x_110 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_110, 0, x_86); lean_ctor_set(x_110, 1, x_109); -x_111 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_111 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_112 = lean_array_push(x_111, x_108); x_113 = lean_array_push(x_112, x_110); x_114 = lean_array_push(x_113, x_53); @@ -9513,7 +9513,7 @@ LEAN_EXPORT lean_object* l_unexpandSubtype(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__6; +x_3 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__6; lean_inc(x_1); x_4 = l_Lean_Syntax_isOfKind(x_1, x_3); if (x_4 == 0) @@ -9604,7 +9604,7 @@ else lean_object* x_28; lean_object* x_29; uint8_t x_30; x_28 = l_Lean_Syntax_getArg(x_24, x_13); lean_dec(x_24); -x_29 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__21; +x_29 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__21; lean_inc(x_28); x_30 = l_Lean_Syntax_isOfKind(x_28, x_29); if (x_30 == 0) @@ -9630,7 +9630,7 @@ lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; x_35 = lean_unsigned_to_nat(2u); x_36 = l_Lean_Syntax_getArg(x_19, x_35); lean_dec(x_19); -x_37 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_37 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_38 = !lean_is_exclusive(x_37); if (x_38 == 0) { @@ -9650,10 +9650,10 @@ x_44 = l_unexpandSubtype___closed__5; x_45 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_45, 0, x_39); lean_ctor_set(x_45, 1, x_44); -x_46 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__21; +x_46 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__21; x_47 = lean_array_push(x_46, x_41); x_48 = lean_array_push(x_47, x_28); -x_49 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_49 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_50 = lean_array_push(x_48, x_49); x_51 = lean_array_push(x_50, x_43); x_52 = lean_array_push(x_51, x_36); @@ -9687,10 +9687,10 @@ x_62 = l_unexpandSubtype___closed__5; x_63 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_63, 0, x_56); lean_ctor_set(x_63, 1, x_62); -x_64 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__21; +x_64 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__21; x_65 = lean_array_push(x_64, x_59); x_66 = lean_array_push(x_65, x_28); -x_67 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_67 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_68 = lean_array_push(x_66, x_67); x_69 = lean_array_push(x_68, x_61); x_70 = lean_array_push(x_69, x_36); @@ -9790,7 +9790,7 @@ x_94 = l_Lean_Syntax_getArg(x_89, x_7); lean_dec(x_89); x_95 = l_Lean_Syntax_getArg(x_19, x_76); lean_dec(x_19); -x_96 = l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2276____spec__1(x_2); +x_96 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______unexpand__Function__comp__1___spec__1(x_2); x_97 = !lean_is_exclusive(x_96); if (x_97 == 0) { @@ -9806,10 +9806,10 @@ lean_inc(x_98); x_102 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_102, 0, x_98); lean_ctor_set(x_102, 1, x_101); -x_103 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_103 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_104 = lean_array_push(x_103, x_102); x_105 = lean_array_push(x_104, x_94); -x_106 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_106 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_107 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_107, 0, x_106); lean_ctor_set(x_107, 1, x_105); @@ -9822,7 +9822,7 @@ x_110 = l_unexpandSubtype___closed__5; x_111 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_111, 0, x_98); lean_ctor_set(x_111, 1, x_110); -x_112 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__21; +x_112 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__21; x_113 = lean_array_push(x_112, x_100); x_114 = lean_array_push(x_113, x_80); x_115 = lean_array_push(x_114, x_107); @@ -9854,10 +9854,10 @@ lean_inc(x_121); x_126 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_126, 0, x_121); lean_ctor_set(x_126, 1, x_125); -x_127 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_127 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_128 = lean_array_push(x_127, x_126); x_129 = lean_array_push(x_128, x_94); -x_130 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_130 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_131 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_131, 0, x_130); lean_ctor_set(x_131, 1, x_129); @@ -9870,7 +9870,7 @@ x_134 = l_unexpandSubtype___closed__5; x_135 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_135, 0, x_121); lean_ctor_set(x_135, 1, x_134); -x_136 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__21; +x_136 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__21; x_137 = lean_array_push(x_136, x_124); x_138 = lean_array_push(x_137, x_80); x_139 = lean_array_push(x_138, x_131); @@ -10038,7 +10038,7 @@ x_1 = l_tacticFunext_______closed__12; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__1() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__1() { _start: { lean_object* x_1; @@ -10046,17 +10046,17 @@ x_1 = lean_mk_string("apply"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__2() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__2; -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__1; +x_1 = l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__2; +x_2 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__3() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__3() { _start: { lean_object* x_1; @@ -10064,22 +10064,22 @@ x_1 = lean_mk_string("funext"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__4() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__3; +x_1 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__3; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__5() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__3; +x_1 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__4; +x_3 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__4; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -10087,41 +10087,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__6() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__3; +x_2 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__7() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__6; +x_2 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__6; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__8() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__7; +x_2 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__7; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__9() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__9() { _start: { lean_object* x_1; @@ -10129,7 +10129,7 @@ x_1 = lean_mk_string(";"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__10() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__10() { _start: { lean_object* x_1; @@ -10137,17 +10137,17 @@ x_1 = lean_mk_string("intro"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__11() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__2; -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__10; +x_1 = l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__2; +x_2 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__10; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6893_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules__tacticFunext______1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -10180,7 +10180,7 @@ if (x_12 == 0) { lean_object* x_13; uint8_t x_14; lean_inc(x_2); -x_13 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_13 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_14 = !lean_is_exclusive(x_13); if (x_14 == 0) { @@ -10191,34 +10191,34 @@ lean_inc(x_16); x_17 = lean_ctor_get(x_2, 1); lean_inc(x_17); lean_dec(x_2); -x_18 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__1; +x_18 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__1; lean_inc(x_15); x_19 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_19, 0, x_15); lean_ctor_set(x_19, 1, x_18); -x_20 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__6; +x_20 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__6; x_21 = l_Lean_addMacroScope(x_17, x_20, x_16); -x_22 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__5; -x_23 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__8; +x_22 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__5; +x_23 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__8; lean_inc(x_15); x_24 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_24, 0, x_15); lean_ctor_set(x_24, 1, x_22); lean_ctor_set(x_24, 2, x_21); lean_ctor_set(x_24, 3, x_23); -x_25 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_25 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_26 = lean_array_push(x_25, x_19); x_27 = lean_array_push(x_26, x_24); -x_28 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__2; +x_28 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__2; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); -x_30 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__9; +x_30 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__9; lean_inc(x_15); x_31 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_31, 0, x_15); lean_ctor_set(x_31, 1, x_30); -x_32 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__10; +x_32 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__10; lean_inc(x_15); x_33 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_33, 0, x_15); @@ -10226,26 +10226,26 @@ lean_ctor_set(x_33, 1, x_32); x_34 = l_Lean_instInhabitedSyntax; x_35 = lean_unsigned_to_nat(0u); x_36 = lean_array_get(x_34, x_10, x_35); -x_37 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_37 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_38 = lean_array_push(x_37, x_36); -x_39 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_39 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); x_41 = lean_array_push(x_25, x_33); x_42 = lean_array_push(x_41, x_40); -x_43 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__11; +x_43 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__11; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); -x_45 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__3; +x_45 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__3; x_46 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_46, 0, x_15); lean_ctor_set(x_46, 1, x_45); x_47 = lean_array_get_size(x_10); x_48 = l_Array_toSubarray___rarg(x_10, x_8, x_47); x_49 = l_Array_ofSubarray___rarg(x_48); -x_50 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27; +x_50 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27; x_51 = l_Array_append___rarg(x_50, x_49); x_52 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_52, 0, x_39); @@ -10266,7 +10266,7 @@ x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_39); lean_ctor_set(x_62, 1, x_61); x_63 = lean_array_push(x_37, x_62); -x_64 = l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__4; +x_64 = l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__4; x_65 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_65, 0, x_64); lean_ctor_set(x_65, 1, x_63); @@ -10286,34 +10286,34 @@ lean_inc(x_68); x_69 = lean_ctor_get(x_2, 1); lean_inc(x_69); lean_dec(x_2); -x_70 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__1; +x_70 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__1; lean_inc(x_66); x_71 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_71, 0, x_66); lean_ctor_set(x_71, 1, x_70); -x_72 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__6; +x_72 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__6; x_73 = l_Lean_addMacroScope(x_69, x_72, x_68); -x_74 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__5; -x_75 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__8; +x_74 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__5; +x_75 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__8; lean_inc(x_66); x_76 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_76, 0, x_66); lean_ctor_set(x_76, 1, x_74); lean_ctor_set(x_76, 2, x_73); lean_ctor_set(x_76, 3, x_75); -x_77 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_77 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_78 = lean_array_push(x_77, x_71); x_79 = lean_array_push(x_78, x_76); -x_80 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__2; +x_80 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__2; x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_80); lean_ctor_set(x_81, 1, x_79); -x_82 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__9; +x_82 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__9; lean_inc(x_66); x_83 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_83, 0, x_66); lean_ctor_set(x_83, 1, x_82); -x_84 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__10; +x_84 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__10; lean_inc(x_66); x_85 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_85, 0, x_66); @@ -10321,26 +10321,26 @@ lean_ctor_set(x_85, 1, x_84); x_86 = l_Lean_instInhabitedSyntax; x_87 = lean_unsigned_to_nat(0u); x_88 = lean_array_get(x_86, x_10, x_87); -x_89 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_89 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_90 = lean_array_push(x_89, x_88); -x_91 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_91 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_92 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_92, 0, x_91); lean_ctor_set(x_92, 1, x_90); x_93 = lean_array_push(x_77, x_85); x_94 = lean_array_push(x_93, x_92); -x_95 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__11; +x_95 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__11; x_96 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_96, 0, x_95); lean_ctor_set(x_96, 1, x_94); -x_97 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__3; +x_97 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__3; x_98 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_98, 0, x_66); lean_ctor_set(x_98, 1, x_97); x_99 = lean_array_get_size(x_10); x_100 = l_Array_toSubarray___rarg(x_10, x_8, x_99); x_101 = l_Array_ofSubarray___rarg(x_100); -x_102 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27; +x_102 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27; x_103 = l_Array_append___rarg(x_102, x_101); x_104 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_104, 0, x_91); @@ -10361,7 +10361,7 @@ x_114 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_114, 0, x_91); lean_ctor_set(x_114, 1, x_113); x_115 = lean_array_push(x_89, x_114); -x_116 = l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__4; +x_116 = l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__4; x_117 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_117, 0, x_116); lean_ctor_set(x_117, 1, x_115); @@ -10375,7 +10375,7 @@ else { lean_object* x_119; uint8_t x_120; lean_inc(x_2); -x_119 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_119 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_120 = !lean_is_exclusive(x_119); if (x_120 == 0) { @@ -10386,34 +10386,34 @@ lean_inc(x_122); x_123 = lean_ctor_get(x_2, 1); lean_inc(x_123); lean_dec(x_2); -x_124 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__1; +x_124 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__1; lean_inc(x_121); x_125 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_125, 0, x_121); lean_ctor_set(x_125, 1, x_124); -x_126 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__6; +x_126 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__6; x_127 = l_Lean_addMacroScope(x_123, x_126, x_122); -x_128 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__5; -x_129 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__8; +x_128 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__5; +x_129 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__8; lean_inc(x_121); x_130 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_130, 0, x_121); lean_ctor_set(x_130, 1, x_128); lean_ctor_set(x_130, 2, x_127); lean_ctor_set(x_130, 3, x_129); -x_131 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_131 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_132 = lean_array_push(x_131, x_125); x_133 = lean_array_push(x_132, x_130); -x_134 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__2; +x_134 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__2; x_135 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_135, 0, x_134); lean_ctor_set(x_135, 1, x_133); -x_136 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__9; +x_136 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__9; lean_inc(x_121); x_137 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_137, 0, x_121); lean_ctor_set(x_137, 1, x_136); -x_138 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__10; +x_138 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__10; x_139 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_139, 0, x_121); lean_ctor_set(x_139, 1, x_138); @@ -10421,19 +10421,19 @@ x_140 = l_Lean_instInhabitedSyntax; x_141 = lean_unsigned_to_nat(0u); x_142 = lean_array_get(x_140, x_10, x_141); lean_dec(x_10); -x_143 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_143 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_144 = lean_array_push(x_143, x_142); -x_145 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_145 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_146 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_146, 0, x_145); lean_ctor_set(x_146, 1, x_144); x_147 = lean_array_push(x_131, x_139); x_148 = lean_array_push(x_147, x_146); -x_149 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__11; +x_149 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___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_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_151 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_152 = lean_array_push(x_151, x_135); x_153 = lean_array_push(x_152, x_137); x_154 = lean_array_push(x_153, x_150); @@ -10441,7 +10441,7 @@ x_155 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_155, 0, x_145); lean_ctor_set(x_155, 1, x_154); x_156 = lean_array_push(x_143, x_155); -x_157 = l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__4; +x_157 = l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__4; x_158 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_158, 0, x_157); lean_ctor_set(x_158, 1, x_156); @@ -10461,34 +10461,34 @@ lean_inc(x_161); x_162 = lean_ctor_get(x_2, 1); lean_inc(x_162); lean_dec(x_2); -x_163 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__1; +x_163 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__1; lean_inc(x_159); x_164 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_164, 0, x_159); lean_ctor_set(x_164, 1, x_163); -x_165 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__6; +x_165 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__6; x_166 = l_Lean_addMacroScope(x_162, x_165, x_161); -x_167 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__5; -x_168 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__8; +x_167 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__5; +x_168 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__8; lean_inc(x_159); x_169 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_169, 0, x_159); lean_ctor_set(x_169, 1, x_167); lean_ctor_set(x_169, 2, x_166); lean_ctor_set(x_169, 3, x_168); -x_170 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_170 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_171 = lean_array_push(x_170, x_164); x_172 = lean_array_push(x_171, x_169); -x_173 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__2; +x_173 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__2; x_174 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_174, 0, x_173); lean_ctor_set(x_174, 1, x_172); -x_175 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__9; +x_175 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__9; lean_inc(x_159); x_176 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_176, 0, x_159); lean_ctor_set(x_176, 1, x_175); -x_177 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__10; +x_177 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__10; x_178 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_178, 0, x_159); lean_ctor_set(x_178, 1, x_177); @@ -10496,19 +10496,19 @@ x_179 = l_Lean_instInhabitedSyntax; x_180 = lean_unsigned_to_nat(0u); x_181 = lean_array_get(x_179, x_10, x_180); lean_dec(x_10); -x_182 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_182 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_183 = lean_array_push(x_182, x_181); -x_184 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_184 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_185 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_185, 0, x_184); lean_ctor_set(x_185, 1, x_183); x_186 = lean_array_push(x_170, x_178); x_187 = lean_array_push(x_186, x_185); -x_188 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__11; +x_188 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__11; x_189 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_189, 0, x_188); lean_ctor_set(x_189, 1, x_187); -x_190 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_190 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_191 = lean_array_push(x_190, x_174); x_192 = lean_array_push(x_191, x_176); x_193 = lean_array_push(x_192, x_189); @@ -10516,7 +10516,7 @@ x_194 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_194, 0, x_184); lean_ctor_set(x_194, 1, x_193); x_195 = lean_array_push(x_182, x_194); -x_196 = l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__4; +x_196 = l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__4; x_197 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_197, 0, x_196); lean_ctor_set(x_197, 1, x_195); @@ -10529,7 +10529,7 @@ return x_198; } } } -LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___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; uint8_t x_7; @@ -10598,18 +10598,18 @@ return x_20; } } } -LEAN_EXPORT lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_3 = lean_array_get_size(x_1); x_4 = lean_unsigned_to_nat(0u); -x_5 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27; -x_6 = l_Array_sequenceMap_loop___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__2(x_1, x_2, x_3, x_4, x_5); +x_5 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27; +x_6 = l_Array_sequenceMap_loop___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__2(x_1, x_2, x_3, x_4, x_5); return x_6; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(size_t x_1, size_t x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(size_t x_1, size_t x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -10637,7 +10637,7 @@ goto _start; } } } -static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__1() { +static lean_object* _init_l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__1() { _start: { lean_object* x_1; @@ -10645,22 +10645,22 @@ x_1 = lean_mk_string("List.cons"); return x_1; } } -static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__2() { +static lean_object* _init_l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__1; +x_1 = l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__3() { +static lean_object* _init_l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__1; +x_1 = l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__2; +x_3 = l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -10668,7 +10668,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__4() { +static lean_object* _init_l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__4() { _start: { lean_object* x_1; @@ -10676,17 +10676,17 @@ x_1 = lean_mk_string("List"); return x_1; } } -static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__5() { +static lean_object* _init_l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__4; +x_2 = l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__6() { +static lean_object* _init_l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__6() { _start: { lean_object* x_1; @@ -10694,41 +10694,41 @@ x_1 = lean_mk_string("cons"); return x_1; } } -static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__7() { +static lean_object* _init_l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__5; -x_2 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__6; +x_1 = l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__5; +x_2 = l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__8() { +static lean_object* _init_l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__7; +x_2 = l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__9() { +static lean_object* _init_l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__8; +x_2 = l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4(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_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { uint8_t x_7; @@ -10740,7 +10740,7 @@ x_8 = 1; x_9 = lean_usize_sub(x_2, x_8); x_10 = lean_array_uget(x_1, x_9); lean_inc(x_5); -x_11 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_6); +x_11 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_6); x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); x_13 = lean_ctor_get(x_11, 1); @@ -10750,25 +10750,25 @@ x_14 = lean_ctor_get(x_5, 2); lean_inc(x_14); x_15 = lean_ctor_get(x_5, 1); lean_inc(x_15); -x_16 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__7; +x_16 = l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__7; x_17 = l_Lean_addMacroScope(x_15, x_16, x_14); -x_18 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__3; -x_19 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__9; +x_18 = l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__3; +x_19 = l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__9; x_20 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_20, 0, x_12); lean_ctor_set(x_20, 1, x_18); lean_ctor_set(x_20, 2, x_17); lean_ctor_set(x_20, 3, x_19); -x_21 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_21 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_22 = lean_array_push(x_21, x_10); x_23 = lean_array_push(x_22, x_4); -x_24 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_24 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); x_26 = lean_array_push(x_21, x_20); x_27 = lean_array_push(x_26, x_25); -x_28 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__6; +x_28 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__6; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); @@ -10788,7 +10788,7 @@ return x_31; } } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7135____lambda__1(lean_object* x_1) { +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___lambda__1(lean_object* x_1) { _start: { lean_object* x_2; @@ -10797,7 +10797,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__1() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__1() { _start: { lean_object* x_1; @@ -10805,22 +10805,22 @@ x_1 = lean_mk_string("term%[_|_]"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__2() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__1; +x_2 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__3() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__3() { _start: { uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = 1; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27; x_3 = lean_box(x_1); x_4 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_4, 0, x_3); @@ -10828,15 +10828,15 @@ lean_ctor_set(x_4, 1, x_2); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__4() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__4() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_myMacro____x40_Init_NotationExtra___hyg_7135____lambda__1), 1, 0); +x_1 = lean_alloc_closure((void*)(l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___lambda__1), 1, 0); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__5() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__5() { _start: { lean_object* x_1; @@ -10844,17 +10844,17 @@ x_1 = lean_mk_string("let"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__6() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__4; -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__5; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__4; +x_2 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__7() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__7() { _start: { lean_object* x_1; @@ -10862,17 +10862,17 @@ x_1 = lean_mk_string("letDecl"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__8() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__4; -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__7; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__4; +x_2 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__9() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__9() { _start: { lean_object* x_1; @@ -10880,17 +10880,17 @@ x_1 = lean_mk_string("letIdDecl"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__10() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__4; -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__9; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__4; +x_2 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__9; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__11() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__11() { _start: { lean_object* x_1; @@ -10898,22 +10898,22 @@ x_1 = lean_mk_string("y"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__12() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__11; +x_1 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__11; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__13() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__11; +x_1 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__11; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__12; +x_3 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__12; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -10921,29 +10921,29 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__14() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__11; +x_2 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__11; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__15() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__16() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__16() { _start: { lean_object* x_1; @@ -10951,7 +10951,7 @@ x_1 = lean_mk_string("%["); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__17() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -10963,7 +10963,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__18() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__18() { _start: { lean_object* x_1; @@ -10971,11 +10971,11 @@ x_1 = lean_mk_string("|"); return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7135_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; -x_4 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__2; +x_4 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__2; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -11004,7 +11004,7 @@ if (x_13 == 0) lean_object* x_182; lean_dec(x_11); lean_dec(x_10); -x_182 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27; +x_182 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27; x_14 = x_182; goto block_181; } @@ -11017,7 +11017,7 @@ if (x_183 == 0) lean_object* x_184; lean_dec(x_11); lean_dec(x_10); -x_184 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27; +x_184 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27; x_14 = x_184; goto block_181; } @@ -11027,7 +11027,7 @@ size_t x_185; size_t x_186; lean_object* x_187; lean_object* x_188; lean_object* x_185 = 0; x_186 = lean_usize_of_nat(x_11); lean_dec(x_11); -x_187 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__3; +x_187 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__3; x_188 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_10, x_185, x_186, x_187); lean_dec(x_10); x_189 = lean_ctor_get(x_188, 1); @@ -11040,8 +11040,8 @@ goto block_181; block_181: { lean_object* x_15; lean_object* x_16; -x_15 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__4; -x_16 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(x_14, x_15); +x_15 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__4; +x_16 = l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(x_14, x_15); lean_dec(x_14); if (lean_obj_tag(x_16) == 0) { @@ -11078,7 +11078,7 @@ lean_inc(x_19); x_28 = l_Array_toSubarray___rarg(x_19, x_26, x_27); x_29 = l_Array_toSubarray___rarg(x_19, x_12, x_26); lean_inc(x_2); -x_30 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_30 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_31 = !lean_is_exclusive(x_30); if (x_31 == 0) { @@ -11089,27 +11089,27 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__5; +x_35 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__5; lean_inc(x_32); x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_32); lean_ctor_set(x_36, 1, x_35); -x_37 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__14; +x_37 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__14; x_38 = l_Lean_addMacroScope(x_34, x_37, x_33); x_39 = lean_box(0); -x_40 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__13; +x_40 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__13; lean_inc(x_32); x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_32); lean_ctor_set(x_41, 1, x_40); lean_ctor_set(x_41, 2, x_38); lean_ctor_set(x_41, 3, x_39); -x_42 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__37; +x_42 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__37; lean_inc(x_32); x_43 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_43, 0, x_32); lean_ctor_set(x_43, 1, x_42); -x_44 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__16; +x_44 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__16; lean_inc(x_32); x_45 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_45, 0, x_32); @@ -11120,18 +11120,18 @@ x_48 = lean_usize_of_nat(x_47); lean_dec(x_47); x_49 = 0; x_50 = x_46; -x_51 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_48, x_49, x_50); +x_51 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_48, x_49, x_50); x_52 = x_51; -x_53 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__17; +x_53 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__17; x_54 = l_Lean_mkSepArray(x_52, x_53); lean_dec(x_52); -x_55 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27; +x_55 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27; x_56 = l_Array_append___rarg(x_55, x_54); -x_57 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_57 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_58 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); -x_59 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__18; +x_59 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__18; lean_inc(x_32); x_60 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_60, 0, x_32); @@ -11154,18 +11154,18 @@ lean_ctor_set(x_69, 0, x_4); lean_ctor_set(x_69, 1, x_68); lean_inc(x_41); x_70 = lean_array_push(x_63, x_41); -x_71 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__15; +x_71 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__15; x_72 = lean_array_push(x_70, x_71); x_73 = lean_array_push(x_72, x_71); x_74 = lean_array_push(x_73, x_43); x_75 = lean_array_push(x_74, x_69); -x_76 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__10; +x_76 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__10; x_77 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_77, 0, x_76); lean_ctor_set(x_77, 1, x_75); -x_78 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_78 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_79 = lean_array_push(x_78, x_77); -x_80 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__8; +x_80 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__8; x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_80); lean_ctor_set(x_81, 1, x_79); @@ -11174,7 +11174,7 @@ x_83 = lean_array_get_size(x_82); x_84 = lean_usize_of_nat(x_83); lean_dec(x_83); x_85 = x_82; -x_86 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_84, x_49, x_85); +x_86 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_84, x_49, x_85); x_87 = x_86; x_88 = l_Lean_mkSepArray(x_87, x_53); lean_dec(x_87); @@ -11194,7 +11194,7 @@ x_97 = lean_array_push(x_96, x_36); x_98 = lean_array_push(x_97, x_81); x_99 = lean_array_push(x_98, x_71); x_100 = lean_array_push(x_99, x_95); -x_101 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__6; +x_101 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__6; x_102 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_102, 0, x_101); lean_ctor_set(x_102, 1, x_100); @@ -11214,27 +11214,27 @@ lean_inc(x_105); x_106 = lean_ctor_get(x_2, 1); lean_inc(x_106); lean_dec(x_2); -x_107 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__5; +x_107 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__5; lean_inc(x_103); x_108 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_108, 0, x_103); lean_ctor_set(x_108, 1, x_107); -x_109 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__14; +x_109 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__14; x_110 = l_Lean_addMacroScope(x_106, x_109, x_105); x_111 = lean_box(0); -x_112 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__13; +x_112 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__13; lean_inc(x_103); x_113 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_113, 0, x_103); lean_ctor_set(x_113, 1, x_112); lean_ctor_set(x_113, 2, x_110); lean_ctor_set(x_113, 3, x_111); -x_114 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__37; +x_114 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__37; lean_inc(x_103); x_115 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_115, 0, x_103); lean_ctor_set(x_115, 1, x_114); -x_116 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__16; +x_116 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__16; lean_inc(x_103); x_117 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_117, 0, x_103); @@ -11245,18 +11245,18 @@ x_120 = lean_usize_of_nat(x_119); lean_dec(x_119); x_121 = 0; x_122 = x_118; -x_123 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_120, x_121, x_122); +x_123 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_120, x_121, x_122); x_124 = x_123; -x_125 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__17; +x_125 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__17; x_126 = l_Lean_mkSepArray(x_124, x_125); lean_dec(x_124); -x_127 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27; +x_127 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27; x_128 = l_Array_append___rarg(x_127, x_126); -x_129 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_129 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; 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_myMacro____x40_Init_NotationExtra___hyg_7135____closed__18; +x_131 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__18; lean_inc(x_103); x_132 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_132, 0, x_103); @@ -11279,18 +11279,18 @@ lean_ctor_set(x_141, 0, x_4); lean_ctor_set(x_141, 1, x_140); lean_inc(x_113); x_142 = lean_array_push(x_135, x_113); -x_143 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__15; +x_143 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__15; x_144 = lean_array_push(x_142, x_143); x_145 = lean_array_push(x_144, x_143); x_146 = lean_array_push(x_145, x_115); x_147 = lean_array_push(x_146, x_141); -x_148 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__10; +x_148 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__10; x_149 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_149, 0, x_148); lean_ctor_set(x_149, 1, x_147); -x_150 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_150 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_151 = lean_array_push(x_150, x_149); -x_152 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__8; +x_152 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__8; x_153 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_153, 0, x_152); lean_ctor_set(x_153, 1, x_151); @@ -11299,7 +11299,7 @@ x_155 = lean_array_get_size(x_154); x_156 = lean_usize_of_nat(x_155); lean_dec(x_155); x_157 = x_154; -x_158 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_156, x_121, x_157); +x_158 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_156, x_121, x_157); x_159 = x_158; x_160 = l_Lean_mkSepArray(x_159, x_125); lean_dec(x_159); @@ -11319,7 +11319,7 @@ x_169 = lean_array_push(x_168, x_108); x_170 = lean_array_push(x_169, x_153); x_171 = lean_array_push(x_170, x_143); x_172 = lean_array_push(x_171, x_167); -x_173 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__6; +x_173 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__6; x_174 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_174, 0, x_173); lean_ctor_set(x_174, 1, x_172); @@ -11350,7 +11350,7 @@ size_t x_178; size_t x_179; lean_object* x_180; x_178 = lean_usize_of_nat(x_22); lean_dec(x_22); x_179 = 0; -x_180 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4(x_19, x_178, x_179, x_21, x_2, x_3); +x_180 = l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4(x_19, x_178, x_179, x_21, x_2, x_3); lean_dec(x_19); return x_180; } @@ -11360,25 +11360,25 @@ return x_180; } } } -LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___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_Array_sequenceMap_loop___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__2(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_sequenceMap_loop___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__2(x_1, x_2, x_3, x_4, x_5); lean_dec(x_1); return x_6; } } -LEAN_EXPORT lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(x_1, x_2); +x_3 = l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(x_1, x_2); lean_dec(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { size_t x_4; size_t x_5; lean_object* x_6; @@ -11386,11 +11386,11 @@ x_4 = lean_unbox_usize(x_1); lean_dec(x_1); x_5 = lean_unbox_usize(x_2); lean_dec(x_2); -x_6 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_4, x_5, x_3); +x_6 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_4, x_5, x_3); return x_6; } } -LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { size_t x_7; size_t x_8; lean_object* x_9; @@ -11398,7 +11398,7 @@ x_7 = lean_unbox_usize(x_2); lean_dec(x_2); x_8 = lean_unbox_usize(x_3); lean_dec(x_3); -x_9 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4(x_1, x_7, x_8, x_4, x_5, x_6); +x_9 = l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4(x_1, x_7, x_8, x_4, x_5, x_6); lean_dec(x_1); return x_9; } @@ -11426,7 +11426,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__6; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -11510,7 +11510,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__25; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__25; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -11607,7 +11607,7 @@ static lean_object* _init_l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___clo _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__37; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__37; x_2 = lean_alloc_ctor(5, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -11767,7 +11767,7 @@ x_1 = l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__31; return x_1; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__1(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; @@ -11776,7 +11776,7 @@ lean_ctor_set(x_3, 0, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__2(lean_object* x_1) { +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__2(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; @@ -11830,15 +11830,15 @@ return x_14; } } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__1() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__2), 1, 0); +x_1 = lean_alloc_closure((void*)(l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__2), 1, 0); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__2() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__2() { _start: { lean_object* x_1; @@ -11846,7 +11846,7 @@ x_1 = lean_mk_string("structure"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__3() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__3() { _start: { lean_object* x_1; @@ -11854,7 +11854,7 @@ x_1 = lean_mk_string("classTk"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__4() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__4() { _start: { lean_object* x_1; @@ -11862,7 +11862,7 @@ x_1 = lean_mk_string("class"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__5() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__5() { _start: { lean_object* x_1; @@ -11870,7 +11870,7 @@ x_1 = lean_mk_string("extends"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__6() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__6() { _start: { lean_object* x_1; @@ -11878,17 +11878,17 @@ x_1 = lean_mk_string("optDeriving"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__7() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; -x_2 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; +x_2 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__8() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__8() { _start: { lean_object* x_1; @@ -11896,7 +11896,7 @@ x_1 = lean_mk_string("attribute"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__9() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__9() { _start: { lean_object* x_1; @@ -11904,28 +11904,28 @@ x_1 = lean_mk_string("instance"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__10() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27; x_2 = l_Array_append___rarg(x_1, x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__11() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__10; +x_1 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; +x_2 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__10; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__12() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__12() { _start: { lean_object* x_1; @@ -11933,17 +11933,17 @@ x_1 = lean_mk_string("mk"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__13() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__12; +x_2 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__12; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7584____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, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___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, 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; @@ -11951,8 +11951,8 @@ x_11 = lean_unsigned_to_nat(7u); x_12 = l_Lean_Syntax_getArg(x_1, x_11); x_13 = l_Lean_Syntax_getArgs(x_12); lean_dec(x_12); -x_14 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__1; -x_15 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(x_13, x_14); +x_14 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__1; +x_15 = l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(x_13, x_14); lean_dec(x_13); if (lean_obj_tag(x_15) == 0) { @@ -11983,7 +11983,7 @@ x_23 = l_Lean_Name_hasMacroScopes(x_22); if (x_23 == 0) { lean_object* x_256; lean_object* x_257; -x_256 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__13; +x_256 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__13; x_257 = l_Lean_Name_append(x_22, x_256); lean_dec(x_22); x_24 = x_257; @@ -11998,7 +11998,7 @@ if (x_259 == 0) { lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; x_260 = lean_ctor_get(x_258, 0); -x_261 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__13; +x_261 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__13; x_262 = l_Lean_Name_append(x_260, x_261); lean_dec(x_260); lean_ctor_set(x_258, 0, x_262); @@ -12018,7 +12018,7 @@ lean_inc(x_266); lean_inc(x_265); lean_inc(x_264); lean_dec(x_258); -x_268 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__13; +x_268 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__13; x_269 = l_Lean_Name_append(x_264, x_268); lean_dec(x_264); x_270 = lean_alloc_ctor(0, 4, 0); @@ -12035,38 +12035,38 @@ block_255: { lean_object* x_25; lean_object* x_26; uint8_t x_27; x_25 = l_Lean_mkIdentFrom(x_21, x_24); -x_26 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_9, x_10); +x_26 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_9, x_10); x_27 = !lean_is_exclusive(x_26); if (x_27 == 0) { lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; size_t x_48; size_t x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; x_28 = lean_ctor_get(x_26, 0); -x_29 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__4; +x_29 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__4; lean_inc(x_4); x_30 = lean_name_mk_string(x_4, x_29); -x_31 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__2; +x_31 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__2; lean_inc(x_4); x_32 = lean_name_mk_string(x_4, x_31); -x_33 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__3; +x_33 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__3; lean_inc(x_4); x_34 = lean_name_mk_string(x_4, x_33); -x_35 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__4; +x_35 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__4; lean_inc(x_28); x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_28); lean_ctor_set(x_36, 1, x_35); -x_37 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_37 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_38 = lean_array_push(x_37, x_36); x_39 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_39, 0, x_34); lean_ctor_set(x_39, 1, x_38); -x_40 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27; +x_40 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27; x_41 = l_Array_append___rarg(x_40, x_19); -x_42 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_42 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_43 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_43, 0, x_42); lean_ctor_set(x_43, 1, x_41); -x_44 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__5; +x_44 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__5; lean_inc(x_4); x_45 = lean_name_mk_string(x_4, x_44); lean_inc(x_28); @@ -12078,16 +12078,16 @@ x_48 = lean_usize_of_nat(x_47); lean_dec(x_47); x_49 = 0; x_50 = x_18; -x_51 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_48, x_49, x_50); +x_51 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_48, x_49, x_50); x_52 = x_51; -x_53 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__17; +x_53 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__17; x_54 = l_Lean_mkSepArray(x_52, x_53); lean_dec(x_52); x_55 = l_Array_append___rarg(x_40, x_54); x_56 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_56, 0, x_42); lean_ctor_set(x_56, 1, x_55); -x_57 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_57 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_58 = lean_array_push(x_57, x_46); x_59 = lean_array_push(x_58, x_56); x_60 = lean_alloc_ctor(1, 2, 0); @@ -12097,20 +12097,20 @@ x_61 = lean_array_push(x_37, x_60); x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_42); lean_ctor_set(x_62, 1, x_61); -x_63 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__6; +x_63 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__6; lean_inc(x_4); x_64 = lean_name_mk_string(x_4, x_63); -x_65 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__7; +x_65 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__7; x_66 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_66, 0, x_64); lean_ctor_set(x_66, 1, x_65); -x_67 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__38; +x_67 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__38; x_68 = lean_array_push(x_67, x_39); x_69 = lean_array_push(x_68, x_3); x_70 = lean_array_push(x_69, x_43); x_71 = lean_array_push(x_70, x_62); x_72 = lean_array_push(x_57, x_5); -x_73 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__8; +x_73 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__8; x_74 = lean_name_mk_string(x_4, x_73); lean_inc(x_28); x_75 = lean_alloc_ctor(2, 2, 0); @@ -12121,10 +12121,10 @@ lean_inc(x_28); x_77 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_77, 0, x_28); lean_ctor_set(x_77, 1, x_76); -x_78 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__3; +x_78 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__3; lean_inc(x_6); x_79 = lean_name_mk_string(x_6, x_78); -x_80 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__11; +x_80 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__11; lean_inc(x_79); x_81 = lean_name_mk_string(x_79, x_80); x_82 = l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__3; @@ -12133,16 +12133,16 @@ x_83 = lean_name_mk_string(x_79, x_82); x_84 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_84, 0, x_83); lean_ctor_set(x_84, 1, x_65); -x_85 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__13; +x_85 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__13; x_86 = lean_name_mk_string(x_6, x_85); -x_87 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__9; +x_87 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__9; x_88 = lean_name_mk_string(x_86, x_87); lean_inc(x_28); x_89 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_89, 0, x_28); lean_ctor_set(x_89, 1, x_87); x_90 = lean_array_push(x_57, x_89); -x_91 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_91 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_92 = lean_array_push(x_90, x_91); x_93 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_93, 0, x_88); @@ -12179,7 +12179,7 @@ if (lean_obj_tag(x_8) == 0) lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_dec(x_79); lean_dec(x_28); -x_110 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__11; +x_110 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__11; x_111 = lean_array_push(x_71, x_110); x_112 = lean_array_push(x_111, x_91); x_113 = lean_array_push(x_112, x_66); @@ -12247,32 +12247,32 @@ x_141 = lean_ctor_get(x_26, 1); lean_inc(x_141); lean_inc(x_140); lean_dec(x_26); -x_142 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__4; +x_142 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__4; lean_inc(x_4); x_143 = lean_name_mk_string(x_4, x_142); -x_144 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__2; +x_144 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__2; lean_inc(x_4); x_145 = lean_name_mk_string(x_4, x_144); -x_146 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__3; +x_146 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__3; lean_inc(x_4); x_147 = lean_name_mk_string(x_4, x_146); -x_148 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__4; +x_148 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__4; lean_inc(x_140); x_149 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_149, 0, x_140); lean_ctor_set(x_149, 1, x_148); -x_150 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_150 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_151 = lean_array_push(x_150, x_149); x_152 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_152, 0, x_147); lean_ctor_set(x_152, 1, x_151); -x_153 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27; +x_153 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27; x_154 = l_Array_append___rarg(x_153, x_19); -x_155 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_155 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_156 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_156, 0, x_155); lean_ctor_set(x_156, 1, x_154); -x_157 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__5; +x_157 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__5; lean_inc(x_4); x_158 = lean_name_mk_string(x_4, x_157); lean_inc(x_140); @@ -12284,16 +12284,16 @@ x_161 = lean_usize_of_nat(x_160); lean_dec(x_160); x_162 = 0; x_163 = x_18; -x_164 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_161, x_162, x_163); +x_164 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_161, x_162, x_163); x_165 = x_164; -x_166 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__17; +x_166 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__17; x_167 = l_Lean_mkSepArray(x_165, x_166); lean_dec(x_165); x_168 = l_Array_append___rarg(x_153, x_167); x_169 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_169, 0, x_155); lean_ctor_set(x_169, 1, x_168); -x_170 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_170 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_171 = lean_array_push(x_170, x_159); x_172 = lean_array_push(x_171, x_169); x_173 = lean_alloc_ctor(1, 2, 0); @@ -12303,20 +12303,20 @@ x_174 = lean_array_push(x_150, x_173); x_175 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_175, 0, x_155); lean_ctor_set(x_175, 1, x_174); -x_176 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__6; +x_176 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__6; lean_inc(x_4); x_177 = lean_name_mk_string(x_4, x_176); -x_178 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__7; +x_178 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__7; x_179 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_179, 0, x_177); lean_ctor_set(x_179, 1, x_178); -x_180 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__38; +x_180 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__38; x_181 = lean_array_push(x_180, x_152); x_182 = lean_array_push(x_181, x_3); x_183 = lean_array_push(x_182, x_156); x_184 = lean_array_push(x_183, x_175); x_185 = lean_array_push(x_170, x_5); -x_186 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__8; +x_186 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__8; x_187 = lean_name_mk_string(x_4, x_186); lean_inc(x_140); x_188 = lean_alloc_ctor(2, 2, 0); @@ -12327,10 +12327,10 @@ lean_inc(x_140); x_190 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_190, 0, x_140); lean_ctor_set(x_190, 1, x_189); -x_191 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__3; +x_191 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__3; lean_inc(x_6); x_192 = lean_name_mk_string(x_6, x_191); -x_193 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__11; +x_193 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__11; lean_inc(x_192); x_194 = lean_name_mk_string(x_192, x_193); x_195 = l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__3; @@ -12339,16 +12339,16 @@ x_196 = lean_name_mk_string(x_192, x_195); x_197 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_197, 0, x_196); lean_ctor_set(x_197, 1, x_178); -x_198 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__13; +x_198 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__13; x_199 = lean_name_mk_string(x_6, x_198); -x_200 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__9; +x_200 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__9; x_201 = lean_name_mk_string(x_199, x_200); lean_inc(x_140); x_202 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_202, 0, x_140); lean_ctor_set(x_202, 1, x_200); x_203 = lean_array_push(x_170, x_202); -x_204 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_204 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_205 = lean_array_push(x_203, x_204); x_206 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_206, 0, x_201); @@ -12385,7 +12385,7 @@ if (lean_obj_tag(x_8) == 0) 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_dec(x_192); lean_dec(x_140); -x_223 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__11; +x_223 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__11; x_224 = lean_array_push(x_184, x_223); x_225 = lean_array_push(x_224, x_204); x_226 = lean_array_push(x_225, x_179); @@ -12453,7 +12453,7 @@ return x_254; } } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7584_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -12476,7 +12476,7 @@ else lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(0u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); -x_10 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__7; +x_10 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__7; lean_inc(x_9); x_11 = l_Lean_Syntax_isOfKind(x_9, x_10); if (x_11 == 0) @@ -12531,10 +12531,10 @@ x_27 = l_Lean_Syntax_getArg(x_19, x_26); lean_dec(x_19); x_28 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_28, 0, x_27); -x_29 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__3; -x_30 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__2; +x_29 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__3; +x_30 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__2; x_31 = lean_box(0); -x_32 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3(x_1, x_17, x_15, x_29, x_9, x_30, x_31, x_28, x_2, x_3); +x_32 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3(x_1, x_17, x_15, x_29, x_9, x_30, x_31, x_28, x_2, x_3); lean_dec(x_17); lean_dec(x_1); return x_32; @@ -12545,10 +12545,10 @@ else lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_dec(x_19); x_33 = lean_box(0); -x_34 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__3; -x_35 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__2; +x_34 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__3; +x_35 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__2; x_36 = lean_box(0); -x_37 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3(x_1, x_17, x_15, x_34, x_9, x_35, x_36, x_33, x_2, x_3); +x_37 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3(x_1, x_17, x_15, x_34, x_9, x_35, x_36, x_33, x_2, x_3); lean_dec(x_17); lean_dec(x_1); return x_37; @@ -12557,20 +12557,20 @@ return x_37; } } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__1___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__1(x_1, x_2); +x_3 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__1(x_1, x_2); lean_dec(x_2); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); @@ -12619,7 +12619,7 @@ static lean_object* _init_l_solve___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__18; +x_1 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__18; x_2 = lean_alloc_ctor(5, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -12753,7 +12753,7 @@ x_1 = l_solve___closed__15; return x_1; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_8177____spec__1___closed__1() { +static lean_object* _init_l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules__solve__1___spec__1___closed__1() { _start: { lean_object* x_1; @@ -12761,7 +12761,7 @@ x_1 = lean_mk_string("done"); return x_1; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_8177____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, size_t x_8, size_t x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules__solve__1___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, size_t x_8, size_t x_9, lean_object* x_10) { _start: { uint8_t x_11; @@ -12786,38 +12786,38 @@ x_13 = lean_array_uget(x_10, x_9); x_14 = lean_unsigned_to_nat(0u); x_15 = lean_array_uset(x_10, x_9, x_14); x_16 = x_13; -x_17 = l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__18; +x_17 = l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__18; lean_inc(x_1); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_1); lean_ctor_set(x_18, 1, x_17); -x_19 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__20; +x_19 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__20; lean_inc(x_2); x_20 = lean_name_mk_string(x_2, x_19); -x_21 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22; +x_21 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22; lean_inc(x_1); x_22 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_22, 0, x_1); lean_ctor_set(x_22, 1, x_21); -x_23 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_23 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_24 = lean_array_push(x_23, x_16); lean_inc(x_3); x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_3); lean_ctor_set(x_25, 1, x_24); -x_26 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29; +x_26 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29; lean_inc(x_1); x_27 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_27, 0, x_1); lean_ctor_set(x_27, 1, x_26); -x_28 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30; +x_28 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30; x_29 = lean_array_push(x_28, x_22); x_30 = lean_array_push(x_29, x_25); x_31 = lean_array_push(x_30, x_27); x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_20); lean_ctor_set(x_32, 1, x_31); -x_33 = l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__9; +x_33 = l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__9; lean_inc(x_1); x_34 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_34, 0, x_1); @@ -12827,14 +12827,14 @@ lean_inc(x_5); x_36 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_36, 0, x_5); lean_ctor_set(x_36, 1, x_35); -x_37 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_37 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_38 = lean_array_push(x_37, x_32); x_39 = lean_array_push(x_38, x_36); lean_inc(x_6); x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_6); lean_ctor_set(x_40, 1, x_39); -x_41 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_8177____spec__1___closed__1; +x_41 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules__solve__1___spec__1___closed__1; lean_inc(x_2); x_42 = lean_name_mk_string(x_2, x_41); lean_inc(x_1); @@ -12888,17 +12888,17 @@ goto _start; } } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_8177____lambda__1___closed__1() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules__solve__1___lambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__2; +x_1 = l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__2; x_2 = l_solve___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_8177____lambda__1(lean_object* x_1) { +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules__solve__1___lambda__1(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; @@ -12918,7 +12918,7 @@ lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_5 = lean_unsigned_to_nat(1u); x_6 = l_Lean_Syntax_getArg(x_1, x_5); lean_dec(x_1); -x_7 = l_myMacro____x40_Init_NotationExtra___hyg_8177____lambda__1___closed__1; +x_7 = l___aux__Init__NotationExtra______macroRules__solve__1___lambda__1___closed__1; lean_inc(x_6); x_8 = l_Lean_Syntax_isOfKind(x_6, x_7); if (x_8 == 0) @@ -12941,15 +12941,15 @@ return x_12; } } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__1() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules__solve__1___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_myMacro____x40_Init_NotationExtra___hyg_8177____lambda__1), 1, 0); +x_1 = lean_alloc_closure((void*)(l___aux__Init__NotationExtra______macroRules__solve__1___lambda__1), 1, 0); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__2() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules__solve__1___closed__2() { _start: { lean_object* x_1; @@ -12957,17 +12957,17 @@ x_1 = lean_mk_string("focus"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__3() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules__solve__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__2; -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__2; +x_1 = l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__2; +x_2 = l___aux__Init__NotationExtra______macroRules__solve__1___closed__2; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__4() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules__solve__1___closed__4() { _start: { lean_object* x_1; @@ -12975,17 +12975,17 @@ x_1 = lean_mk_string("tacticSeq1Indented"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__5() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules__solve__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__2; -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__4; +x_1 = l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__2; +x_2 = l___aux__Init__NotationExtra______macroRules__solve__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__6() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules__solve__1___closed__6() { _start: { lean_object* x_1; @@ -12993,17 +12993,17 @@ x_1 = lean_mk_string("first"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__7() { +static lean_object* _init_l___aux__Init__NotationExtra______macroRules__solve__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__2; -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__6; +x_1 = l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__2; +x_2 = l___aux__Init__NotationExtra______macroRules__solve__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_NotationExtra___hyg_8177_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__NotationExtra______macroRules__solve__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -13029,8 +13029,8 @@ x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); x_10 = l_Lean_Syntax_getArgs(x_9); lean_dec(x_9); -x_11 = l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__1; -x_12 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(x_10, x_11); +x_11 = l___aux__Init__NotationExtra______macroRules__solve__1___closed__1; +x_12 = l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(x_10, x_11); lean_dec(x_10); if (lean_obj_tag(x_12) == 0) { @@ -13048,18 +13048,18 @@ lean_object* x_15; lean_object* x_16; uint8_t x_17; x_15 = lean_ctor_get(x_12, 0); lean_inc(x_15); lean_dec(x_12); -x_16 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_16 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_17 = !lean_is_exclusive(x_16); if (x_17 == 0) { lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; size_t x_24; size_t x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; x_18 = lean_ctor_get(x_16, 0); -x_19 = l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__2; +x_19 = l___aux__Init__NotationExtra______macroRules__solve__1___closed__2; lean_inc(x_18); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_18); lean_ctor_set(x_20, 1, x_19); -x_21 = l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__6; +x_21 = l___aux__Init__NotationExtra______macroRules__solve__1___closed__6; lean_inc(x_18); x_22 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_22, 0, x_18); @@ -13069,32 +13069,32 @@ x_24 = lean_usize_of_nat(x_23); lean_dec(x_23); x_25 = 0; x_26 = x_15; -x_27 = l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__2; -x_28 = l_myMacro____x40_Init_NotationExtra___hyg_8177____lambda__1___closed__1; -x_29 = l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__5; -x_30 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_27 = l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__2; +x_28 = l___aux__Init__NotationExtra______macroRules__solve__1___lambda__1___closed__1; +x_29 = l___aux__Init__NotationExtra______macroRules__solve__1___closed__5; +x_30 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_31 = l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__22; -x_32 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27; -x_33 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_8177____spec__1(x_18, x_27, x_28, x_29, x_30, x_31, x_32, x_24, x_25, x_26); +x_32 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27; +x_33 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules__solve__1___spec__1(x_18, x_27, x_28, x_29, x_30, x_31, x_32, x_24, x_25, x_26); x_34 = x_33; x_35 = l_Array_append___rarg(x_32, x_34); x_36 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_36, 0, x_30); lean_ctor_set(x_36, 1, x_35); -x_37 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_37 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_38 = lean_array_push(x_37, x_22); x_39 = lean_array_push(x_38, x_36); -x_40 = l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__7; +x_40 = l___aux__Init__NotationExtra______macroRules__solve__1___closed__7; x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_39); x_42 = lean_array_push(x_37, x_41); -x_43 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_43 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_44 = lean_array_push(x_42, x_43); x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_31); lean_ctor_set(x_45, 1, x_44); -x_46 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_46 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_47 = lean_array_push(x_46, x_45); x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_30); @@ -13109,7 +13109,7 @@ lean_ctor_set(x_52, 0, x_28); lean_ctor_set(x_52, 1, x_51); x_53 = lean_array_push(x_37, x_20); x_54 = lean_array_push(x_53, x_52); -x_55 = l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__3; +x_55 = l___aux__Init__NotationExtra______macroRules__solve__1___closed__3; x_56 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_56, 0, x_55); lean_ctor_set(x_56, 1, x_54); @@ -13124,12 +13124,12 @@ x_58 = lean_ctor_get(x_16, 1); lean_inc(x_58); lean_inc(x_57); lean_dec(x_16); -x_59 = l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__2; +x_59 = l___aux__Init__NotationExtra______macroRules__solve__1___closed__2; lean_inc(x_57); x_60 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_60, 0, x_57); lean_ctor_set(x_60, 1, x_59); -x_61 = l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__6; +x_61 = l___aux__Init__NotationExtra______macroRules__solve__1___closed__6; lean_inc(x_57); x_62 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_62, 0, x_57); @@ -13139,32 +13139,32 @@ x_64 = lean_usize_of_nat(x_63); lean_dec(x_63); x_65 = 0; x_66 = x_15; -x_67 = l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__2; -x_68 = l_myMacro____x40_Init_NotationExtra___hyg_8177____lambda__1___closed__1; -x_69 = l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__5; -x_70 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19; +x_67 = l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__2; +x_68 = l___aux__Init__NotationExtra______macroRules__solve__1___lambda__1___closed__1; +x_69 = l___aux__Init__NotationExtra______macroRules__solve__1___closed__5; +x_70 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19; x_71 = l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__22; -x_72 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27; -x_73 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_8177____spec__1(x_57, x_67, x_68, x_69, x_70, x_71, x_72, x_64, x_65, x_66); +x_72 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27; +x_73 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules__solve__1___spec__1(x_57, x_67, x_68, x_69, x_70, x_71, x_72, x_64, x_65, x_66); x_74 = x_73; x_75 = l_Array_append___rarg(x_72, x_74); x_76 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_76, 0, x_70); lean_ctor_set(x_76, 1, x_75); -x_77 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26; +x_77 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26; x_78 = lean_array_push(x_77, x_62); x_79 = lean_array_push(x_78, x_76); -x_80 = l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__7; +x_80 = l___aux__Init__NotationExtra______macroRules__solve__1___closed__7; x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_80); lean_ctor_set(x_81, 1, x_79); x_82 = lean_array_push(x_77, x_81); -x_83 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28; +x_83 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28; x_84 = lean_array_push(x_82, x_83); x_85 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_85, 0, x_71); lean_ctor_set(x_85, 1, x_84); -x_86 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35; +x_86 = l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35; x_87 = lean_array_push(x_86, x_85); x_88 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_88, 0, x_70); @@ -13179,7 +13179,7 @@ lean_ctor_set(x_92, 0, x_68); lean_ctor_set(x_92, 1, x_91); x_93 = lean_array_push(x_77, x_60); x_94 = lean_array_push(x_93, x_92); -x_95 = l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__3; +x_95 = l___aux__Init__NotationExtra______macroRules__solve__1___closed__3; x_96 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_96, 0, x_95); lean_ctor_set(x_96, 1, x_94); @@ -13192,7 +13192,7 @@ return x_97; } } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_8177____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* x_10) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules__solve__1___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* x_10) { _start: { size_t x_11; size_t x_12; lean_object* x_13; @@ -13200,7 +13200,7 @@ x_11 = lean_unbox_usize(x_8); lean_dec(x_8); x_12 = lean_unbox_usize(x_9); lean_dec(x_9); -x_13 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_8177____spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_11, x_12, x_10); +x_13 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules__solve__1___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_11, x_12, x_10); return x_13; } } @@ -13269,76 +13269,76 @@ l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__23 = _init_l_Lean_termMacro_x2 lean_mark_persistent(l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__23); l_Lean_termMacro_x2etrace_x5b_____x5d__ = _init_l_Lean_termMacro_x2etrace_x5b_____x5d__(); lean_mark_persistent(l_Lean_termMacro_x2etrace_x5b_____x5d__); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__1 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__1(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__1); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__2 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__2(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__2); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__3 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__3(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__3); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__4 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__4(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__4); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__5 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__5(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__5); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__6 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__6(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__6); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__7 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__7(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__7); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__8 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__8(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__8); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__9 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__9(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__9); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__10 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__10(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__10); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__11 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__11(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__11); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__12 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__12(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__12); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__13 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__13(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__13); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__14 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__14(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__14); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__15 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__15(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__15); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__16 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__16(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__16); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__17 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__17(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__17); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__18 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__18(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__18); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__19); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__20 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__20(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__20); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__21 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__21(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__21); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__22); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__23 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__23(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__23); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__24 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__24(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__24); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__25 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__25(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__25); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__26); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__27); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__28); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__29); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__30); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__31 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__31(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__31); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__32 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__32(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__32); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__33 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__33(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__33); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__34 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__34(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__34); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_30____closed__35); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__1 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__1(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__1); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__2 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__2(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__2); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__3 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__3(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__3); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__4 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__4(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__4); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__5 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__5(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__5); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__6 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__6(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__6); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__7 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__7(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__7); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__8 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__8(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__8); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__9 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__9(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__9); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__10 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__10(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__10); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__11 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__11(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__11); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__12 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__12(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__12); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__13 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__13(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__13); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__14 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__14(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__14); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__15 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__15(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__15); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__16 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__16(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__16); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__17 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__17(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__17); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__18 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__18(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__18); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__19); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__20 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__20(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__20); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__21 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__21(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__21); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__22); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__23 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__23(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__23); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__24 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__24(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__24); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__25 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__25(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__25); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__26); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__27); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__28); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__29); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__30); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__31 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__31(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__31); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__32 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__32(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__32); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__33 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__33(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__33); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__34 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__34(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__34); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabtermMacro_x2etrace_x5b_____x5d___xbb__1___closed__35); l_Lean_binderIdent___closed__1 = _init_l_Lean_binderIdent___closed__1(); lean_mark_persistent(l_Lean_binderIdent___closed__1); l_Lean_binderIdent___closed__2 = _init_l_Lean_binderIdent___closed__2(); @@ -13569,90 +13569,90 @@ l___private_Init_NotationExtra_0__Lean_mkHintBody___closed__1 = _init_l___privat lean_mark_persistent(l___private_Init_NotationExtra_0__Lean_mkHintBody___closed__1); l___private_Init_NotationExtra_0__Lean_mkHintBody___closed__2 = _init_l___private_Init_NotationExtra_0__Lean_mkHintBody___closed__2(); lean_mark_persistent(l___private_Init_NotationExtra_0__Lean_mkHintBody___closed__2); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__1 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__1(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__1); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__2 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__2(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__2); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__3 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__3(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__3); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__4 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__4(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__4); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__5 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__5(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__5); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__6 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__6(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__6); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__7 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__7(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__7); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__8 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__8(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__8); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__9 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__9(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__9); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__10 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__10(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__10); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__11 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__11(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__11); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__12 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__12(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__12); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__13 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__13(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__13); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__14 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__14(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__14); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__15 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__15(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__15); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__16 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__16(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__16); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__17 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__17(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__17); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__18 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__18(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__18); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__19 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__19(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__19); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__20 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__20(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__20); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__21 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__21(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__21); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__22 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__22(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__22); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__23 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__23(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__23); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__24 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__24(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__24); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__25 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__25(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__25); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__26 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__26(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__26); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__27 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__27(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__27); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__28 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__28(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__28); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__29 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__29(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__29); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__30 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__30(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__30); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__31 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__31(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__31); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__32 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__32(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__32); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__33 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__33(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__33); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__34 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__34(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__34); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__35 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__35(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__35); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__36 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__36(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__36); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__37 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__37(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__37); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__38 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__38(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__38); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__39 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__39(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__39); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__40 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__40(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__40); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__41 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__41(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__41); -l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__42 = _init_l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__42(); -lean_mark_persistent(l_Lean_myMacro____x40_Init_NotationExtra___hyg_1225____closed__42); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__1 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__1(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__1); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__2 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__2(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__2); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__3 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__3(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__3); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__4 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__4(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__4); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__5 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__5(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__5); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__6 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__6(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__6); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__7 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__7(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__7); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__8 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__8(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__8); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__9 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__9(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__9); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__10 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__10(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__10); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__11 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__11(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__11); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__12 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__12(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__12); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__13 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__13(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__13); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__14 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__14(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__14); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__15 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__15(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__15); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__16 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__16(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__16); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__17 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__17(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__17); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__18 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__18(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__18); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__19 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__19(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__19); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__20 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__20(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__20); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__21 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__21(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__21); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__22 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__22(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__22); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__23 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__23(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__23); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__24 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__24(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__24); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__25 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__25(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__25); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__26 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__26(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__26); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__27 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__27(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__27); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__28 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__28(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__28); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__29 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__29(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__29); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__30 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__30(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__30); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__31 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__31(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__31); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__32 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__32(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__32); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__33 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__33(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__33); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__34 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__34(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__34); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__35 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__35(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__35); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__36 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__36(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__36); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__37 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__37(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__37); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__38 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__38(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__38); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__39 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__39(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__39); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__40 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__40(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__40); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__41 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__41(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__41); +l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__42 = _init_l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__42(); +lean_mark_persistent(l_Lean___aux__Init__NotationExtra______macroRules__Lean___xabcommand__Unif__hint______Where___x7c_x2d_u22a2___xbb__1___closed__42); l_term_u2203___x2c_____closed__1 = _init_l_term_u2203___x2c_____closed__1(); lean_mark_persistent(l_term_u2203___x2c_____closed__1); l_term_u2203___x2c_____closed__2 = _init_l_term_u2203___x2c_____closed__2(); @@ -13671,10 +13671,10 @@ l_term_u2203___x2c_____closed__8 = _init_l_term_u2203___x2c_____closed__8(); lean_mark_persistent(l_term_u2203___x2c_____closed__8); l_term_u2203___x2c__ = _init_l_term_u2203___x2c__(); lean_mark_persistent(l_term_u2203___x2c__); -l_myMacro____x40_Init_NotationExtra___hyg_2026____closed__1 = _init_l_myMacro____x40_Init_NotationExtra___hyg_2026____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_2026____closed__1); -l_myMacro____x40_Init_NotationExtra___hyg_2026____closed__2 = _init_l_myMacro____x40_Init_NotationExtra___hyg_2026____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_2026____closed__2); +l___aux__Init__NotationExtra______macroRules___xabterm_u2203___x2c___xbb__1___closed__1 = _init_l___aux__Init__NotationExtra______macroRules___xabterm_u2203___x2c___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabterm_u2203___x2c___xbb__1___closed__1); +l___aux__Init__NotationExtra______macroRules___xabterm_u2203___x2c___xbb__1___closed__2 = _init_l___aux__Init__NotationExtra______macroRules___xabterm_u2203___x2c___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabterm_u2203___x2c___xbb__1___closed__2); l_termExists___x2c_____closed__1 = _init_l_termExists___x2c_____closed__1(); lean_mark_persistent(l_termExists___x2c_____closed__1); l_termExists___x2c_____closed__2 = _init_l_termExists___x2c_____closed__2(); @@ -13711,10 +13711,10 @@ l_term_u03a3___x2c_____closed__8 = _init_l_term_u03a3___x2c_____closed__8(); lean_mark_persistent(l_term_u03a3___x2c_____closed__8); l_term_u03a3___x2c__ = _init_l_term_u03a3___x2c__(); lean_mark_persistent(l_term_u03a3___x2c__); -l_myMacro____x40_Init_NotationExtra___hyg_2214____closed__1 = _init_l_myMacro____x40_Init_NotationExtra___hyg_2214____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_2214____closed__1); -l_myMacro____x40_Init_NotationExtra___hyg_2214____closed__2 = _init_l_myMacro____x40_Init_NotationExtra___hyg_2214____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_2214____closed__2); +l___aux__Init__NotationExtra______macroRules___xabterm_u03a3___x2c___xbb__1___closed__1 = _init_l___aux__Init__NotationExtra______macroRules___xabterm_u03a3___x2c___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabterm_u03a3___x2c___xbb__1___closed__1); +l___aux__Init__NotationExtra______macroRules___xabterm_u03a3___x2c___xbb__1___closed__2 = _init_l___aux__Init__NotationExtra______macroRules___xabterm_u03a3___x2c___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabterm_u03a3___x2c___xbb__1___closed__2); l_term_u03a3_x27___x2c_____closed__1 = _init_l_term_u03a3_x27___x2c_____closed__1(); lean_mark_persistent(l_term_u03a3_x27___x2c_____closed__1); l_term_u03a3_x27___x2c_____closed__2 = _init_l_term_u03a3_x27___x2c_____closed__2(); @@ -13733,10 +13733,10 @@ l_term_u03a3_x27___x2c_____closed__8 = _init_l_term_u03a3_x27___x2c_____closed__ lean_mark_persistent(l_term_u03a3_x27___x2c_____closed__8); l_term_u03a3_x27___x2c__ = _init_l_term_u03a3_x27___x2c__(); lean_mark_persistent(l_term_u03a3_x27___x2c__); -l_myMacro____x40_Init_NotationExtra___hyg_2308____closed__1 = _init_l_myMacro____x40_Init_NotationExtra___hyg_2308____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_2308____closed__1); -l_myMacro____x40_Init_NotationExtra___hyg_2308____closed__2 = _init_l_myMacro____x40_Init_NotationExtra___hyg_2308____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_2308____closed__2); +l___aux__Init__NotationExtra______macroRules___xabterm_u03a3_x27___x2c___xbb__1___closed__1 = _init_l___aux__Init__NotationExtra______macroRules___xabterm_u03a3_x27___x2c___xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabterm_u03a3_x27___x2c___xbb__1___closed__1); +l___aux__Init__NotationExtra______macroRules___xabterm_u03a3_x27___x2c___xbb__1___closed__2 = _init_l___aux__Init__NotationExtra______macroRules___xabterm_u03a3_x27___x2c___xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabterm_u03a3_x27___x2c___xbb__1___closed__2); l_term___xd7____1___closed__1 = _init_l_term___xd7____1___closed__1(); lean_mark_persistent(l_term___xd7____1___closed__1); l_term___xd7____1___closed__2 = _init_l_term___xd7____1___closed__2(); @@ -13833,18 +13833,18 @@ l_tacticCalc_____closed__7 = _init_l_tacticCalc_____closed__7(); lean_mark_persistent(l_tacticCalc_____closed__7); l_tacticCalc__ = _init_l_tacticCalc__(); lean_mark_persistent(l_tacticCalc__); -l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__1 = _init_l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__1); -l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__2 = _init_l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__2); -l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__3 = _init_l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__3); -l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__4 = _init_l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__4); -l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__5 = _init_l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__5); -l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__6 = _init_l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_2605____closed__6); +l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__1 = _init_l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__1(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__1); +l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__2 = _init_l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__2(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__2); +l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__3 = _init_l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__3(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__3); +l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__4 = _init_l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__4(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__4); +l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__5 = _init_l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__5(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__5); +l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__6 = _init_l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__6(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules__tacticCalc____1___closed__6); l_unexpandListNil___rarg___closed__1 = _init_l_unexpandListNil___rarg___closed__1(); lean_mark_persistent(l_unexpandListNil___rarg___closed__1); l_unexpandListNil___rarg___closed__2 = _init_l_unexpandListNil___rarg___closed__2(); @@ -13933,82 +13933,82 @@ l_tacticFunext_______closed__12 = _init_l_tacticFunext_______closed__12(); lean_mark_persistent(l_tacticFunext_______closed__12); l_tacticFunext____ = _init_l_tacticFunext____(); lean_mark_persistent(l_tacticFunext____); -l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__1 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__1); -l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__2 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__2); -l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__3 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__3); -l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__4 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__4); -l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__5 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__5); -l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__6 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__6); -l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__7 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__7); -l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__8 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__8); -l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__9 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__9); -l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__10 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__10(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__10); -l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__11 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__11(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6893____closed__11); -l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__1 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__1(); -lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__1); -l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__2 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__2(); -lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__2); -l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__3 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__3(); -lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__3); -l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__4 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__4(); -lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__4); -l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__5 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__5(); -lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__5); -l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__6 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__6(); -lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__6); -l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__7 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__7(); -lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__7); -l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__8 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__8(); -lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__8); -l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__9 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__9(); -lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__4___closed__9); -l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__1 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__1); -l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__2 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__2); -l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__3 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__3); -l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__4 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__4); -l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__5 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__5); -l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__6 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__6); -l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__7 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__7); -l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__8 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__8); -l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__9 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__9); -l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__10 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__10(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__10); -l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__11 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__11(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__11); -l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__12 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__12(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__12); -l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__13 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__13(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__13); -l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__14 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__14(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__14); -l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__15 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__15(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__15); -l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__16 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__16(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__16); -l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__17 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__17(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__17); -l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__18 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__18(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7135____closed__18); +l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__1 = _init_l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__1(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__1); +l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__2 = _init_l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__2(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__2); +l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__3 = _init_l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__3(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__3); +l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__4 = _init_l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__4(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__4); +l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__5 = _init_l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__5(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__5); +l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__6 = _init_l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__6(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__6); +l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__7 = _init_l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__7(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__7); +l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__8 = _init_l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__8(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__8); +l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__9 = _init_l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__9(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__9); +l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__10 = _init_l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__10(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__10); +l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__11 = _init_l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__11(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules__tacticFunext______1___closed__11); +l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__1 = _init_l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__1(); +lean_mark_persistent(l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__1); +l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__2 = _init_l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__2(); +lean_mark_persistent(l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__2); +l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__3 = _init_l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__3(); +lean_mark_persistent(l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__3); +l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__4 = _init_l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__4(); +lean_mark_persistent(l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__4); +l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__5 = _init_l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__5(); +lean_mark_persistent(l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__5); +l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__6 = _init_l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__6(); +lean_mark_persistent(l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__6); +l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__7 = _init_l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__7(); +lean_mark_persistent(l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__7); +l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__8 = _init_l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__8(); +lean_mark_persistent(l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__8); +l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__9 = _init_l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__9(); +lean_mark_persistent(l_Array_foldrMUnsafe_fold___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__4___closed__9); +l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__1 = _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__1(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__1); +l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__2 = _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__2(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__2); +l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__3 = _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__3(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__3); +l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__4 = _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__4(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__4); +l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__5 = _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__5(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__5); +l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__6 = _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__6(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__6); +l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__7 = _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__7(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__7); +l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__8 = _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__8(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__8); +l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__9 = _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__9(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__9); +l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__10 = _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__10(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__10); +l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__11 = _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__11(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__11); +l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__12 = _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__12(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__12); +l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__13 = _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__13(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__13); +l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__14 = _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__14(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__14); +l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__15 = _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__15(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__15); +l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__16 = _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__16(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__16); +l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__17 = _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__17(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__17); +l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__18 = _init_l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__18(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___closed__18); l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__1 = _init_l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__1(); lean_mark_persistent(l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__1); l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__2 = _init_l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__2(); @@ -14073,32 +14073,32 @@ l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__31 = _init_l_command_ lean_mark_persistent(l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__31); l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c = _init_l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c(); lean_mark_persistent(l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c); -l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__1 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__1); -l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__2 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__2); -l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__3 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__3); -l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__4 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__4); -l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__5 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__5); -l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__6 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__6); -l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__7 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__7); -l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__8 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__8); -l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__9 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__9); -l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__10 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__10(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__10); -l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__11 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__11(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__11); -l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__12 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__12(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__12); -l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__13 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__13(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7584____lambda__3___closed__13); +l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__1 = _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__1(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__1); +l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__2 = _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__2(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__2); +l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__3 = _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__3(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__3); +l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__4 = _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__4(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__4); +l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__5 = _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__5(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__5); +l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__6 = _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__6(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__6); +l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__7 = _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__7(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__7); +l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__8 = _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__8(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__8); +l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__9 = _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__9(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__9); +l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__10 = _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__10(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__10); +l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__11 = _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__11(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__11); +l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__12 = _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__12(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__12); +l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__13 = _init_l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__13(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules___xabcommand__ClassAbbrev_____x3a___x3a_x3d_____x2c_xbb__1___lambda__3___closed__13); l_solve___closed__1 = _init_l_solve___closed__1(); lean_mark_persistent(l_solve___closed__1); l_solve___closed__2 = _init_l_solve___closed__2(); @@ -14131,24 +14131,24 @@ l_solve___closed__15 = _init_l_solve___closed__15(); lean_mark_persistent(l_solve___closed__15); l_solve = _init_l_solve(); lean_mark_persistent(l_solve); -l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_8177____spec__1___closed__1 = _init_l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_8177____spec__1___closed__1(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_8177____spec__1___closed__1); -l_myMacro____x40_Init_NotationExtra___hyg_8177____lambda__1___closed__1 = _init_l_myMacro____x40_Init_NotationExtra___hyg_8177____lambda__1___closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_8177____lambda__1___closed__1); -l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__1 = _init_l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__1); -l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__2 = _init_l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__2); -l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__3 = _init_l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__3); -l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__4 = _init_l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__4); -l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__5 = _init_l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__5); -l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__6 = _init_l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__6); -l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__7 = _init_l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_8177____closed__7); +l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules__solve__1___spec__1___closed__1 = _init_l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules__solve__1___spec__1___closed__1(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules__solve__1___spec__1___closed__1); +l___aux__Init__NotationExtra______macroRules__solve__1___lambda__1___closed__1 = _init_l___aux__Init__NotationExtra______macroRules__solve__1___lambda__1___closed__1(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules__solve__1___lambda__1___closed__1); +l___aux__Init__NotationExtra______macroRules__solve__1___closed__1 = _init_l___aux__Init__NotationExtra______macroRules__solve__1___closed__1(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules__solve__1___closed__1); +l___aux__Init__NotationExtra______macroRules__solve__1___closed__2 = _init_l___aux__Init__NotationExtra______macroRules__solve__1___closed__2(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules__solve__1___closed__2); +l___aux__Init__NotationExtra______macroRules__solve__1___closed__3 = _init_l___aux__Init__NotationExtra______macroRules__solve__1___closed__3(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules__solve__1___closed__3); +l___aux__Init__NotationExtra______macroRules__solve__1___closed__4 = _init_l___aux__Init__NotationExtra______macroRules__solve__1___closed__4(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules__solve__1___closed__4); +l___aux__Init__NotationExtra______macroRules__solve__1___closed__5 = _init_l___aux__Init__NotationExtra______macroRules__solve__1___closed__5(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules__solve__1___closed__5); +l___aux__Init__NotationExtra______macroRules__solve__1___closed__6 = _init_l___aux__Init__NotationExtra______macroRules__solve__1___closed__6(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules__solve__1___closed__6); +l___aux__Init__NotationExtra______macroRules__solve__1___closed__7 = _init_l___aux__Init__NotationExtra______macroRules__solve__1___closed__7(); +lean_mark_persistent(l___aux__Init__NotationExtra______macroRules__solve__1___closed__7); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/System/IO.c b/stage0/stdlib/Init/System/IO.c index 9297850afe..5c594c9630 100644 --- a/stage0/stdlib/Init/System/IO.c +++ b/stage0/stdlib/Init/System/IO.c @@ -15,24 +15,21 @@ extern "C" { #endif lean_object* l_List_reverse___rarg(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_readBinToEnd_loop___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__12; static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_1907____closed__9; static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_1438____closed__5; lean_object* lean_string_push(lean_object*, uint32_t); -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_cancel___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Stream_Buffer_pos___default; static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_1438____closed__18; -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__23; LEAN_EXPORT lean_object* l_IO_FS_FileType_noConfusion(lean_object*); static lean_object* l_IO_FS_instReprMetadata___closed__1; LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_ordSystemTime____x40_Init_System_IO___hyg_1779____boxed(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__41; size_t lean_usize_add(size_t, size_t); static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_1438____closed__13; lean_object* lean_get_stdout(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Mode_noConfusion___rarg___lambda__1(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_removeFile___boxed(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__13; LEAN_EXPORT lean_object* l_EStateM_tryCatch___at_Lean_runEval___spec__2(lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_1438____closed__15; lean_object* lean_io_get_num_heartbeats(lean_object*); @@ -43,7 +40,6 @@ LEAN_EXPORT lean_object* l_IO_FS_removeDir___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_allocprof___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instEvalUnit___rarg(uint8_t, lean_object*); LEAN_EXPORT lean_object* l_System_FilePath_isDir___boxed(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__34; extern uint8_t l_System_Platform_isWindows; lean_object* lean_mk_empty_array_with_capacity(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___at_Lean_runEval___spec__1___lambda__1(lean_object*, lean_object*); @@ -54,9 +50,8 @@ lean_object* lean_io_timeit(lean_object*, lean_object*, lean_object*); lean_object* l_System_FilePath_join(lean_object*, lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_1493____closed__3; static lean_object* l___private_Init_System_IO_0__IO_FS_Handle_fopenFlags___closed__7; -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__38; -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__21; LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_beqSystemTime____x40_Init_System_IO___hyg_1710____boxed(lean_object*, lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__26; lean_object* lean_chmod(lean_object*, uint32_t, lean_object*); LEAN_EXPORT lean_object* l_IO_Process_exit___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instMonadEIO(lean_object*); @@ -91,6 +86,7 @@ LEAN_EXPORT lean_object* l_IO_Process_Stdio_noConfusion___rarg___boxed(lean_obje LEAN_EXPORT lean_object* l_IO_FS_realPath___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_waitAny___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_IO_FileRight_user___default___closed__1; +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__31; static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_1438____closed__14; LEAN_EXPORT lean_object* l_Lean_instEval___rarg(lean_object*, lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_IO_toEIO(lean_object*, lean_object*); @@ -98,7 +94,6 @@ LEAN_EXPORT lean_object* l_IO_Process_Stdio_noConfusion___rarg(uint8_t, uint8_t, LEAN_EXPORT lean_object* l_IO_setStdin___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_mk___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_putStrLn___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__25; LEAN_EXPORT lean_object* l_Lean_instEvalIO___rarg(lean_object*, lean_object*, uint8_t, lean_object*); static lean_object* l_Lean_instEvalUnit___rarg___closed__1; lean_object* lean_st_ref_get(lean_object*, lean_object*); @@ -109,19 +104,22 @@ uint32_t lean_uint32_shift_left(uint32_t, uint32_t); uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* lean_io_prim_handle_write(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_Handle_fopenFlags___closed__3; -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__6; +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__11; LEAN_EXPORT lean_object* l_IO_print(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer___elambda__5(lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_1907____closed__8; +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__19; LEAN_EXPORT lean_object* l_Lean_instEvalUnit(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_instInhabitedSystemTime; LEAN_EXPORT lean_object* l_Lean_instEvalUnit___rarg___boxed(lean_object*, lean_object*); +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_Handle_fopenFlags___closed__14; LEAN_EXPORT lean_object* l_IO_withStdin___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_readToEnd(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FileRight_user___default; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); +LEAN_EXPORT lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_lines_read___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_termPrintln_x21_______closed__6; static lean_object* l___private_Init_System_IO_0__IO_FS_Handle_fopenFlags___closed__5; @@ -132,9 +130,9 @@ LEAN_EXPORT lean_object* l_IO_Process_SpawnArgs_args___default; static uint32_t l_IO_AccessRight_flags___closed__6; LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___at_Lean_runEval___spec__1___lambda__2(lean_object*, lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_1493____closed__18; -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__31; LEAN_EXPORT lean_object* l_IO_setStderr___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_Process_Stdio_toCtorIdx(uint8_t); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__39; LEAN_EXPORT lean_object* l_IO_sleep(uint32_t, lean_object*); LEAN_EXPORT lean_object* l_IO_monoMsNow___boxed(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_readBinFile(lean_object*, lean_object*); @@ -143,7 +141,6 @@ LEAN_EXPORT lean_object* l_IO_FS_Handle_putStr___boxed(lean_object*, lean_object LEAN_EXPORT lean_object* l_IO_getRandomBytes___boxed(lean_object*, lean_object*); lean_object* lean_string_utf8_byte_size(lean_object*); LEAN_EXPORT lean_object* l_Lean_instEval(lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__11; lean_object* lean_io_process_spawn(lean_object*, lean_object*); static uint32_t l_IO_AccessRight_flags___closed__13; static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_1438____closed__9; @@ -151,6 +148,7 @@ static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init LEAN_EXPORT lean_object* l_IO_Process_SpawnArgs_cwd___default; LEAN_EXPORT lean_object* l_Lean_instEvalUnit___boxed(lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_1493____closed__14; +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__36; static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_1493____closed__15; LEAN_EXPORT lean_object* l_Lean_instEval__1(lean_object*); uint8_t lean_usize_dec_lt(size_t, size_t); @@ -159,18 +157,19 @@ static lean_object* l_Lean_instEvalUnit___rarg___closed__2; static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_1493____closed__2; lean_object* lean_get_set_stdout(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_withStdin(lean_object*, lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__35; lean_object* lean_io_map_task(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_EStateM_tryCatch___at_Lean_runEval___spec__2___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_createDirAll___lambda__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_eprintln(lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer___lambda__1(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__3; LEAN_EXPORT lean_object* l_IO_FS_Stream_ofHandle___elambda__5(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_instMonadLiftSTRealWorldEIO(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_readToEnd_loop___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__5; +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__7; +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__24; LEAN_EXPORT lean_object* l_IO_FS_Stream_ofHandle___elambda__4___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_get_set_stderr(lean_object*, lean_object*); static lean_object* l_termPrintln_x21_______closed__14; @@ -181,7 +180,6 @@ LEAN_EXPORT lean_object* l_System_FilePath_pathExists(lean_object*, lean_object* LEAN_EXPORT lean_object* l_IO_FS_instReprMetadata; static lean_object* l_termPrintln_x21_______closed__5; LEAN_EXPORT lean_object* l_IO_eprint___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__42; static uint32_t l_IO_AccessRight_flags___closed__8; static lean_object* l_IO_FS_instInhabitedSystemTime___closed__3; lean_object* l_Int_repr(lean_object*); @@ -189,7 +187,6 @@ static lean_object* l___private_Init_System_IO_0__IO_FS_Handle_fopenFlags___clos LEAN_EXPORT lean_object* l_IO_FS_createDirAll(lean_object*, lean_object*); static lean_object* l_termPrintln_x21_______closed__3; LEAN_EXPORT lean_object* l_IO_lazyPure___rarg(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__37; static lean_object* l_termPrintln_x21_______closed__15; static lean_object* l_IO_FS_withIsolatedStreams___rarg___closed__2; LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___rarg___lambda__1(lean_object*, lean_object*); @@ -197,9 +194,8 @@ static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init lean_object* lean_io_as_task(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_AccessRight_flags___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_Handle_fopenFlags(uint8_t, uint8_t); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__18; LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer___elambda__2___boxed(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__15; +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__16; static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_1493____closed__13; extern lean_object* l_ByteArray_empty; LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_1907_(lean_object*, lean_object*); @@ -221,8 +217,6 @@ LEAN_EXPORT lean_object* l_IO_Process_SpawnArgs_env___default; LEAN_EXPORT lean_object* l_IO_FS_instLTSystemTime; LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_1493_(uint8_t, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__7; -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__24; static lean_object* l_IO_FS_withIsolatedStreams___at_Lean_runEval___spec__1___closed__2; LEAN_EXPORT lean_object* l_IO_mapTasks___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_EStateM_bind___rarg(lean_object*, lean_object*, lean_object*); @@ -232,6 +226,8 @@ LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer___lambda__1___boxed(lean_object LEAN_EXPORT lean_object* l_MonadExcept_orElse___at_instOrElseEIO___spec__1___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_createDirAll___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* lean_io_read_dir(lean_object*, lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__10; +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__32; static uint32_t l_IO_AccessRight_flags___closed__4; static uint32_t l_IO_FS_instInhabitedSystemTime___closed__2; LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer___elambda__1___boxed(lean_object*, lean_object*, lean_object*); @@ -239,13 +235,13 @@ lean_object* lean_io_realpath(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_Process_Stdio_toCtorIdx___boxed(lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_1669____closed__4; LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_1493____boxed(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__16; static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_1907____closed__10; lean_object* l_ByteArray_extract(lean_object*, lean_object*, lean_object*); lean_object* lean_string_from_utf8_unchecked(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___at_Lean_runEval___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instMonadExceptOfEIO(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_removeDirAll___boxed(lean_object*, lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__43; static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_1493____closed__1; LEAN_EXPORT lean_object* l_IO_Process_run___lambda__1(lean_object*, lean_object*, lean_object*); static lean_object* l_termPrintln_x21_______closed__7; @@ -259,7 +255,6 @@ LEAN_EXPORT lean_object* l_System_FilePath_readDir___boxed(lean_object*, lean_ob LEAN_EXPORT lean_object* l_IO_withStdin___rarg___lambda__1___boxed(lean_object*, lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_1493____closed__8; static lean_object* l_termPrintln_x21_______closed__16; -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__1; lean_object* lean_dbg_sleep(uint32_t, lean_object*); lean_object* lean_io_remove_dir(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_FileType_noConfusion___rarg(uint8_t, uint8_t, lean_object*); @@ -274,7 +269,6 @@ LEAN_EXPORT lean_object* l_IO_FS_writeFile(lean_object*, lean_object*, lean_obje LEAN_EXPORT lean_object* l_IO_withStdin___rarg___lambda__2___boxed(lean_object*); LEAN_EXPORT lean_object* l_IO_Process_Stdio_noConfusion(lean_object*); static lean_object* l_IO_FS_instBEqSystemTime___closed__1; -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__2; uint32_t l_String_back(lean_object*); lean_object* lean_io_allocprof(lean_object*, lean_object*, lean_object*); lean_object* lean_st_mk_ref(lean_object*, lean_object*); @@ -291,6 +285,7 @@ lean_object* l_EStateM_instMonadFinallyEStateM(lean_object*, lean_object*, lean_ LEAN_EXPORT lean_object* l_IO_FS_Stream_ofHandle___elambda__2___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_beqFileType____x40_Init_System_IO___hyg_1634____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_initializing___boxed(lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__20; LEAN_EXPORT lean_object* l_IO_FS_Mode_toCtorIdx___boxed(lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_1438____closed__6; LEAN_EXPORT lean_object* lean_stream_of_handle(lean_object*); @@ -312,11 +307,12 @@ LEAN_EXPORT lean_object* l_IO_println___rarg(lean_object*, lean_object*, lean_ob static lean_object* l___private_Init_System_IO_0__IO_FS_Handle_fopenFlags___closed__4; static lean_object* l___private_Init_System_IO_0__IO_FS_Handle_fopenFlags___closed__8; LEAN_EXPORT lean_object* l_IO_Process_spawn___boxed(lean_object*, lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__6; LEAN_EXPORT lean_object* l_IO_FS_Stream_ofHandle___elambda__5___boxed(lean_object*, lean_object*); uint8_t l_ByteArray_isEmpty(lean_object*); static lean_object* l_instMonadExceptOfEIO___closed__1; -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__43; static lean_object* l___private_Init_System_IO_0__IO_FS_Handle_fopenFlags___closed__9; +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__29; LEAN_EXPORT uint8_t l___private_Init_System_IO_0__IO_FS_beqFileType____x40_Init_System_IO___hyg_1634_(uint8_t, uint8_t); lean_object* lean_io_prim_handle_is_eof(lean_object*, lean_object*); static lean_object* l_IO_Process_run___closed__2; @@ -327,6 +323,7 @@ lean_object* lean_io_exit(uint8_t, lean_object*); LEAN_EXPORT lean_object* l_IO_FileRight_flags___boxed(lean_object*); LEAN_EXPORT lean_object* l_instInhabitedEIO(lean_object*, lean_object*); static uint32_t l_IO_AccessRight_flags___closed__11; +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__25; LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___rarg___lambda__3(lean_object*, lean_object*, lean_object*); lean_object* lean_io_prim_handle_read(lean_object*, size_t, lean_object*); lean_object* lean_io_has_finished(lean_object*, lean_object*); @@ -350,14 +347,15 @@ static lean_object* l_termPrintln_x21_______closed__13; static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_1493____closed__24; LEAN_EXPORT lean_object* l_IO_ofExcept___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_1438____closed__11; -LEAN_EXPORT lean_object* l_myMacro____x40_Init_System_IO___hyg_3969_(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_IO_Process_StdioConfig_stdout___default; +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__33; LEAN_EXPORT lean_object* l_IO_mapTasks_go(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_readFile___boxed(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__12; +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__22; static lean_object* l_IO_FS_withIsolatedStreams___rarg___closed__1; LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer___elambda__3___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_ofExcept(lean_object*, lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__18; static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_1493____closed__10; static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_1438____closed__16; lean_object* l_EStateM_nonBacktrackable(lean_object*); @@ -366,7 +364,7 @@ lean_object* lean_io_check_canceled(lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_1493____closed__20; LEAN_EXPORT lean_object* l_IO_FS_Stream_ofHandle___elambda__4(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer___elambda__4(lean_object*, size_t, lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__26; +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__30; lean_object* lean_io_current_dir(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_writeBinFile(lean_object*, lean_object*, lean_object*); lean_object* lean_io_prim_handle_put_str(lean_object*, lean_object*, lean_object*); @@ -374,12 +372,15 @@ LEAN_EXPORT lean_object* l_IO_Prim_setAccessRights___boxed(lean_object*, lean_ob uint8_t l_String_isEmpty(lean_object*); LEAN_EXPORT lean_object* l_IO_getStdin___boxed(lean_object*); lean_object* lean_io_getenv(lean_object*, lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__14; +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__28; LEAN_EXPORT lean_object* l_Lean_instEvalIO___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_sleep___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Stream_ofHandle___elambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_unsafeEIO___rarg(lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_1669____closed__6; static lean_object* l_termPrintln_x21_______closed__12; +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__15; lean_object* lean_string_to_utf8(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_readBinToEnd___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_instOrdSystemTime; @@ -390,13 +391,14 @@ static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init uint8_t lean_nat_dec_le(lean_object*, lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_Handle_fopenFlags___closed__11; lean_object* l_String_quote(lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__3; +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__5; static lean_object* l_IO_withStdin___rarg___lambda__3___closed__1; LEAN_EXPORT lean_object* l_IO_lazyPure(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Mode_toCtorIdx(uint8_t); LEAN_EXPORT lean_object* l_IO_wait___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_IO_FS_instBEqFileType___closed__1; lean_object* l_Lean_Syntax_getKind(lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__22; static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_1493____closed__19; LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer___elambda__3(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_FileType_noConfusion___rarg___boxed(lean_object*, lean_object*, lean_object*); @@ -404,8 +406,8 @@ static lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_In LEAN_EXPORT lean_object* l_IO_FS_Handle_write___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_IO_FS_removeDirAll___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Stream_ofHandle___elambda__3(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__29; lean_object* l_EStateM_instMonadExceptOfEStateM___rarg(lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__42; uint8_t lean_int_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_System_FilePath_pathExists___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_withStdout___at_Lean_runEval___spec__4(lean_object*, lean_object*, lean_object*); @@ -417,31 +419,30 @@ LEAN_EXPORT lean_object* l_IO_FS_instReprFileType; static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_1907____closed__6; LEAN_EXPORT lean_object* l_IO_Process_Child_takeStdin___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_1438____closed__7; -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__28; -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__14; static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_1493____closed__11; static lean_object* l_instMonadFinallyEIO___closed__1; LEAN_EXPORT lean_object* l_IO_FileRight_other___default; LEAN_EXPORT lean_object* l_IO_FS_FileType_toCtorIdx(uint8_t); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__30; LEAN_EXPORT lean_object* l_IO_FS_createDir___boxed(lean_object*, lean_object*); LEAN_EXPORT uint32_t l_IO_AccessRight_flags(lean_object*); LEAN_EXPORT lean_object* l_unsafeIO(lean_object*); LEAN_EXPORT lean_object* l_System_FilePath_metadata___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___rarg___lambda__2(lean_object*, lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__37; LEAN_EXPORT lean_object* l_IO_iterate___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__33; LEAN_EXPORT lean_object* l_IO_getEnv___boxed(lean_object*, lean_object*); static lean_object* l_IO_FS_instOrdSystemTime___closed__1; LEAN_EXPORT lean_object* l_System_FilePath_isDir(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_withStdin___rarg___lambda__1(lean_object*, lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__9; LEAN_EXPORT lean_object* l_IO_checkCanceled___boxed(lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__27; LEAN_EXPORT lean_object* l_IO_FS_Mode_noConfusion___rarg___lambda__1___boxed(lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__40; LEAN_EXPORT lean_object* l_IO_FS_instLESystemTime; LEAN_EXPORT lean_object* l_IO_FileRight_group___default; LEAN_EXPORT lean_object* l_IO_withStdin___at_Lean_runEval___spec__5(lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__19; LEAN_EXPORT lean_object* l_IO_toEIO___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_putStrLn(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_1669____closed__3; @@ -452,15 +453,16 @@ LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___rarg___lambda__5(lean_obj LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_println___at_Lean_instEval__1___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instInhabitedEIO___rarg(lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__39; +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__17; +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__8; lean_object* l_EStateM_instInhabitedEStateM___rarg(lean_object*, lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_Handle_fopenFlags___closed__6; LEAN_EXPORT lean_object* l_instOrElseEIO(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_eprint___at_IO_eprintln___spec__1(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__35; lean_object* lean_io_get_random_bytes(size_t, lean_object*); LEAN_EXPORT lean_object* l_unsafeEIO(lean_object*, lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_1669____closed__5; +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__4; lean_object* lean_uint64_to_nat(uint64_t); static uint32_t l_IO_AccessRight_flags___closed__10; static lean_object* l_IO_appDir___closed__2; @@ -472,6 +474,7 @@ static lean_object* l_instMonadEIO___closed__1; static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_1438____closed__2; uint32_t lean_uint32_lor(uint32_t, uint32_t); lean_object* lean_io_app_path(lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__1; static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_1493____closed__25; lean_object* lean_io_initializing(lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_1907____closed__3; @@ -480,6 +483,7 @@ lean_object* lean_io_metadata(lean_object*, lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_1438____closed__1; LEAN_EXPORT lean_object* l_IO_FS_Handle_readToEnd___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_withStderr(lean_object*, lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__41; LEAN_EXPORT lean_object* l_IO_FS_readFile(lean_object*, lean_object*); static lean_object* l_IO_FS_Handle_readToEnd___closed__1; lean_object* lean_string_length(lean_object*); @@ -491,21 +495,17 @@ LEAN_EXPORT lean_object* l_IO_mkRef(lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Mode_noConfusion___rarg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_IO_Process_StdioConfig_stderr___default; uint8_t lean_byte_array_get(lean_object*, lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__2; LEAN_EXPORT lean_object* l_IO_FS_Handle_readBinToEnd_loop(lean_object*, lean_object*, lean_object*); lean_object* lean_get_stderr(lean_object*); LEAN_EXPORT lean_object* l_IO_println___at_Lean_instEval___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_isEof___boxed(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_IO_Process_StdioConfig_stdin___default; lean_object* l_System_FilePath_parent(lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__40; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__9; LEAN_EXPORT lean_object* l_IO_withStdout(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__36; -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__27; LEAN_EXPORT lean_object* l_timeit___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_1493____closed__7; -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__4; lean_object* lean_io_prim_handle_flush(lean_object*, lean_object*); static uint32_t l_IO_AccessRight_flags___closed__12; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_IO_FS_removeDirAll___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -518,12 +518,13 @@ LEAN_EXPORT lean_object* l_IO_mapTask___boxed(lean_object*, lean_object*, lean_o static lean_object* l_IO_FS_lines___closed__1; LEAN_EXPORT lean_object* l_IO_FS_Stream_ofHandle___elambda__6(lean_object*, lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_1907____closed__5; +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__21; +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__38; LEAN_EXPORT lean_object* l_IO_FS_Handle_readToEnd_loop(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_1493____closed__22; LEAN_EXPORT lean_object* l_IO_Process_run___lambda__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_iterate(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_getStderr___boxed(lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__8; LEAN_EXPORT lean_object* l_IO_FS_withFile___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instEval__1___rarg(lean_object*, lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_IO_withStdin___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -532,6 +533,7 @@ LEAN_EXPORT lean_object* l_IO_FS_lines___boxed(lean_object*, lean_object*); lean_object* lean_usize_to_nat(size_t); static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_1438____closed__12; LEAN_EXPORT lean_object* l_Lean_instEval__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__13; uint8_t lean_int_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_lines(lean_object*, lean_object*); uint32_t lean_uint32_of_nat(lean_object*); @@ -541,15 +543,14 @@ LEAN_EXPORT lean_object* l_IO_FS_Handle_flush___boxed(lean_object*, lean_object* LEAN_EXPORT lean_object* l_Lean_runEval___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_withStderr___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_print___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__17; LEAN_EXPORT lean_object* l_IO_FS_writeFile___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_termPrintln_x21_______closed__4; LEAN_EXPORT lean_object* l_IO_FS_createDirAll___boxed(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_IO_AccessRight_execution___default; +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__23; LEAN_EXPORT lean_object* l_Lean_instEvalIO(lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init_System_IO___hyg_1438____closed__8; LEAN_EXPORT lean_object* l_IO_withStdout___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__20; lean_object* lean_uint32_to_nat(uint32_t); static uint32_t l_IO_AccessRight_flags___closed__5; LEAN_EXPORT lean_object* l_IO_withStdout___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -557,6 +558,7 @@ LEAN_EXPORT lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40 static lean_object* l_IO_FS_Stream_ofBuffer___closed__1; LEAN_EXPORT lean_object* l_IO_withStdin___rarg___lambda__2(lean_object*); lean_object* lean_nat_to_int(lean_object*); +static lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__34; LEAN_EXPORT lean_object* l_IO_FS_instReprDirEntry; static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_1907____closed__4; static lean_object* l_termPrintln_x21_______closed__8; @@ -579,8 +581,6 @@ lean_object* lean_io_create_dir(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_setStdout___boxed(lean_object*, lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_Handle_fopenFlags___closed__2; -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__32; -static lean_object* l_myMacro____x40_Init_System_IO___hyg_3969____closed__10; LEAN_EXPORT uint8_t l_IO_AccessRight_read___default; lean_object* l_Repr_addAppParen(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_EIO_catchExceptions___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { @@ -8709,7 +8709,7 @@ x_1 = l_termPrintln_x21_______closed__17; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__1() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__1() { _start: { lean_object* x_1; @@ -8717,17 +8717,17 @@ x_1 = lean_mk_string("Lean"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__2() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__1; +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__3() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__3() { _start: { lean_object* x_1; @@ -8735,17 +8735,17 @@ x_1 = lean_mk_string("Parser"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__4() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__2; -x_2 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__3; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__2; +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__5() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__5() { _start: { lean_object* x_1; @@ -8753,17 +8753,17 @@ x_1 = lean_mk_string("Term"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__6() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__4; -x_2 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__5; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__4; +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__7() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__7() { _start: { lean_object* x_1; @@ -8771,17 +8771,17 @@ x_1 = lean_mk_string("paren"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__8() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__6; -x_2 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__7; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__6; +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__9() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__9() { _start: { lean_object* x_1; @@ -8789,7 +8789,7 @@ x_1 = lean_mk_string("("); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__10() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__10() { _start: { lean_object* x_1; @@ -8797,17 +8797,17 @@ x_1 = lean_mk_string("null"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__11() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__10; +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__10; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__12() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__12() { _start: { lean_object* x_1; @@ -8815,17 +8815,17 @@ x_1 = lean_mk_string("app"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__13() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__6; -x_2 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__12; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__6; +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__12; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__14() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__14() { _start: { lean_object* x_1; @@ -8833,22 +8833,22 @@ x_1 = lean_mk_string("IO.println"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__15() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__15() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__14; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__14; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__16() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__14; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__14; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__15; +x_3 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__15; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -8856,7 +8856,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__17() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__17() { _start: { lean_object* x_1; @@ -8864,17 +8864,17 @@ x_1 = lean_mk_string("IO"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__18() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__17; +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__17; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__19() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__19() { _start: { lean_object* x_1; @@ -8882,41 +8882,41 @@ x_1 = lean_mk_string("println"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__20() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__18; -x_2 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__19; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__18; +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__19; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__21() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__20; +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__20; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__22() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__21; +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__21; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__23() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__23() { _start: { lean_object* x_1; lean_object* x_2; @@ -8925,7 +8925,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__24() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__24() { _start: { lean_object* x_1; lean_object* x_2; @@ -8934,7 +8934,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__25() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__25() { _start: { lean_object* x_1; @@ -8942,17 +8942,17 @@ x_1 = lean_mk_string("typeAscription"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__26() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__6; -x_2 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__25; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__6; +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__25; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__27() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__27() { _start: { lean_object* x_1; @@ -8960,22 +8960,22 @@ x_1 = lean_mk_string(":"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__28() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__28() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__17; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__17; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__29() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__29() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__17; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__17; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__28; +x_3 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__28; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -8983,31 +8983,31 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__30() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__30() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__18; +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__18; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__31() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__31() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__30; +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__30; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__32() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__32() { _start: { lean_object* x_1; @@ -9015,22 +9015,22 @@ x_1 = lean_mk_string("Unit"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__33() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__33() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__32; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__32; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__34() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__34() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__32; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__32; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__33; +x_3 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__33; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -9038,41 +9038,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__35() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__35() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__32; +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__32; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__36() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__36() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__35; +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__35; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__37() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__37() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__36; +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__36; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__38() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__38() { _start: { lean_object* x_1; @@ -9080,7 +9080,7 @@ x_1 = lean_mk_string(")"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__39() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__39() { _start: { lean_object* x_1; lean_object* x_2; @@ -9089,7 +9089,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__40() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__40() { _start: { lean_object* x_1; @@ -9097,17 +9097,17 @@ x_1 = lean_mk_string("termS!_"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__41() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__41() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__40; +x_2 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__40; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__42() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__42() { _start: { lean_object* x_1; @@ -9115,11 +9115,11 @@ x_1 = lean_mk_string("s!"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__43() { +static lean_object* _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__43() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__11; +x_1 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__11; x_2 = l_IO_FS_lines___closed__1; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -9127,7 +9127,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_myMacro____x40_Init_System_IO___hyg_3969_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l___aux__Init__System__IO______macroRules__termPrintln_x21______1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -9160,7 +9160,7 @@ if (x_12 == 0) { lean_object* x_13; uint8_t x_14; lean_inc(x_2); -x_13 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_13 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_14 = !lean_is_exclusive(x_13); if (x_14 == 0) { @@ -9171,57 +9171,57 @@ lean_inc(x_16); x_17 = lean_ctor_get(x_2, 1); lean_inc(x_17); lean_dec(x_2); -x_18 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__9; +x_18 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__9; lean_inc(x_15); x_19 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_19, 0, x_15); lean_ctor_set(x_19, 1, x_18); -x_20 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__20; +x_20 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__20; lean_inc(x_16); lean_inc(x_17); x_21 = l_Lean_addMacroScope(x_17, x_20, x_16); -x_22 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__16; -x_23 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__22; +x_22 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__16; +x_23 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__22; lean_inc(x_15); x_24 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_24, 0, x_15); lean_ctor_set(x_24, 1, x_22); lean_ctor_set(x_24, 2, x_21); lean_ctor_set(x_24, 3, x_23); -x_25 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__23; +x_25 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__23; x_26 = lean_array_push(x_25, x_9); -x_27 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__11; +x_27 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__11; x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_26); -x_29 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__24; +x_29 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__24; x_30 = lean_array_push(x_29, x_24); x_31 = lean_array_push(x_30, x_28); -x_32 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__13; +x_32 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__13; x_33 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_33, 0, x_32); lean_ctor_set(x_33, 1, x_31); -x_34 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__27; +x_34 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__27; lean_inc(x_15); x_35 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_35, 0, x_15); lean_ctor_set(x_35, 1, x_34); -x_36 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__18; +x_36 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__18; lean_inc(x_16); lean_inc(x_17); x_37 = l_Lean_addMacroScope(x_17, x_36, x_16); -x_38 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__29; -x_39 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__31; +x_38 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__29; +x_39 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__31; lean_inc(x_15); x_40 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_40, 0, x_15); lean_ctor_set(x_40, 1, x_38); lean_ctor_set(x_40, 2, x_37); lean_ctor_set(x_40, 3, x_39); -x_41 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__35; +x_41 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__35; x_42 = l_Lean_addMacroScope(x_17, x_41, x_16); -x_43 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__34; -x_44 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__37; +x_43 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__34; +x_44 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__37; lean_inc(x_15); x_45 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_45, 0, x_15); @@ -9239,7 +9239,7 @@ lean_ctor_set(x_50, 0, x_32); lean_ctor_set(x_50, 1, x_49); x_51 = lean_array_push(x_29, x_35); x_52 = lean_array_push(x_51, x_50); -x_53 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__26; +x_53 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__26; x_54 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_54, 0, x_53); lean_ctor_set(x_54, 1, x_52); @@ -9252,15 +9252,15 @@ x_58 = lean_array_push(x_57, x_56); x_59 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_59, 0, x_27); lean_ctor_set(x_59, 1, x_58); -x_60 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__38; +x_60 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__38; x_61 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_61, 0, x_15); lean_ctor_set(x_61, 1, x_60); -x_62 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__39; +x_62 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__39; x_63 = lean_array_push(x_62, x_19); x_64 = lean_array_push(x_63, x_59); x_65 = lean_array_push(x_64, x_61); -x_66 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__8; +x_66 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__8; x_67 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_67, 0, x_66); lean_ctor_set(x_67, 1, x_65); @@ -9280,57 +9280,57 @@ lean_inc(x_70); x_71 = lean_ctor_get(x_2, 1); lean_inc(x_71); lean_dec(x_2); -x_72 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__9; +x_72 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__9; lean_inc(x_68); x_73 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_73, 0, x_68); lean_ctor_set(x_73, 1, x_72); -x_74 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__20; +x_74 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__20; lean_inc(x_70); lean_inc(x_71); x_75 = l_Lean_addMacroScope(x_71, x_74, x_70); -x_76 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__16; -x_77 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__22; +x_76 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__16; +x_77 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__22; lean_inc(x_68); x_78 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_78, 0, x_68); lean_ctor_set(x_78, 1, x_76); lean_ctor_set(x_78, 2, x_75); lean_ctor_set(x_78, 3, x_77); -x_79 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__23; +x_79 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__23; x_80 = lean_array_push(x_79, x_9); -x_81 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__11; +x_81 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__11; x_82 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_82, 0, x_81); lean_ctor_set(x_82, 1, x_80); -x_83 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__24; +x_83 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__24; x_84 = lean_array_push(x_83, x_78); x_85 = lean_array_push(x_84, x_82); -x_86 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__13; +x_86 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__13; x_87 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_87, 0, x_86); lean_ctor_set(x_87, 1, x_85); -x_88 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__27; +x_88 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__27; lean_inc(x_68); x_89 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_89, 0, x_68); lean_ctor_set(x_89, 1, x_88); -x_90 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__18; +x_90 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__18; lean_inc(x_70); lean_inc(x_71); x_91 = l_Lean_addMacroScope(x_71, x_90, x_70); -x_92 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__29; -x_93 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__31; +x_92 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__29; +x_93 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__31; lean_inc(x_68); x_94 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_94, 0, x_68); lean_ctor_set(x_94, 1, x_92); lean_ctor_set(x_94, 2, x_91); lean_ctor_set(x_94, 3, x_93); -x_95 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__35; +x_95 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__35; x_96 = l_Lean_addMacroScope(x_71, x_95, x_70); -x_97 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__34; -x_98 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__37; +x_97 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__34; +x_98 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__37; lean_inc(x_68); x_99 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_99, 0, x_68); @@ -9348,7 +9348,7 @@ lean_ctor_set(x_104, 0, x_86); lean_ctor_set(x_104, 1, x_103); x_105 = lean_array_push(x_83, x_89); x_106 = lean_array_push(x_105, x_104); -x_107 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__26; +x_107 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__26; x_108 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_108, 0, x_107); lean_ctor_set(x_108, 1, x_106); @@ -9361,15 +9361,15 @@ x_112 = lean_array_push(x_111, x_110); x_113 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_113, 0, x_81); lean_ctor_set(x_113, 1, x_112); -x_114 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__38; +x_114 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__38; x_115 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_115, 0, x_68); lean_ctor_set(x_115, 1, x_114); -x_116 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__39; +x_116 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__39; x_117 = lean_array_push(x_116, x_73); x_118 = lean_array_push(x_117, x_113); x_119 = lean_array_push(x_118, x_115); -x_120 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__8; +x_120 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__8; x_121 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_121, 0, x_120); lean_ctor_set(x_121, 1, x_119); @@ -9383,7 +9383,7 @@ else { lean_object* x_123; uint8_t x_124; lean_inc(x_2); -x_123 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_123 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_124 = !lean_is_exclusive(x_123); if (x_124 == 0) { @@ -9394,89 +9394,89 @@ lean_inc(x_126); x_127 = lean_ctor_get(x_2, 1); lean_inc(x_127); lean_dec(x_2); -x_128 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__9; +x_128 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__9; lean_inc(x_125); x_129 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_129, 0, x_125); lean_ctor_set(x_129, 1, x_128); -x_130 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__20; +x_130 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__20; lean_inc(x_126); lean_inc(x_127); x_131 = l_Lean_addMacroScope(x_127, x_130, x_126); -x_132 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__16; -x_133 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__22; +x_132 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__16; +x_133 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__22; lean_inc(x_125); x_134 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_134, 0, x_125); lean_ctor_set(x_134, 1, x_132); lean_ctor_set(x_134, 2, x_131); lean_ctor_set(x_134, 3, x_133); -x_135 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__42; +x_135 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__42; lean_inc(x_125); x_136 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_136, 0, x_125); lean_ctor_set(x_136, 1, x_135); -x_137 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__24; +x_137 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__24; x_138 = lean_array_push(x_137, x_136); x_139 = lean_array_push(x_138, x_9); -x_140 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__41; +x_140 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__41; x_141 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_141, 0, x_140); lean_ctor_set(x_141, 1, x_139); x_142 = lean_array_push(x_137, x_141); -x_143 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__43; +x_143 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__43; x_144 = lean_array_push(x_142, x_143); -x_145 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__11; +x_145 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__11; x_146 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_146, 0, x_145); lean_ctor_set(x_146, 1, x_144); -x_147 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__38; +x_147 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__38; lean_inc(x_125); x_148 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_148, 0, x_125); lean_ctor_set(x_148, 1, x_147); -x_149 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__39; +x_149 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__39; x_150 = lean_array_push(x_149, x_129); lean_inc(x_150); x_151 = lean_array_push(x_150, x_146); lean_inc(x_148); x_152 = lean_array_push(x_151, x_148); -x_153 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__8; +x_153 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__8; x_154 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_154, 0, x_153); lean_ctor_set(x_154, 1, x_152); -x_155 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__23; +x_155 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__23; x_156 = lean_array_push(x_155, x_154); x_157 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_157, 0, x_145); lean_ctor_set(x_157, 1, x_156); x_158 = lean_array_push(x_137, x_134); x_159 = lean_array_push(x_158, x_157); -x_160 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__13; +x_160 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__13; x_161 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_161, 0, x_160); lean_ctor_set(x_161, 1, x_159); -x_162 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__27; +x_162 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__27; lean_inc(x_125); x_163 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_163, 0, x_125); lean_ctor_set(x_163, 1, x_162); -x_164 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__18; +x_164 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__18; lean_inc(x_126); lean_inc(x_127); x_165 = l_Lean_addMacroScope(x_127, x_164, x_126); -x_166 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__29; -x_167 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__31; +x_166 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__29; +x_167 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__31; lean_inc(x_125); x_168 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_168, 0, x_125); lean_ctor_set(x_168, 1, x_166); lean_ctor_set(x_168, 2, x_165); lean_ctor_set(x_168, 3, x_167); -x_169 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__35; +x_169 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__35; x_170 = l_Lean_addMacroScope(x_127, x_169, x_126); -x_171 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__34; -x_172 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__37; +x_171 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__34; +x_172 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__37; x_173 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_173, 0, x_125); lean_ctor_set(x_173, 1, x_171); @@ -9493,7 +9493,7 @@ lean_ctor_set(x_178, 0, x_160); lean_ctor_set(x_178, 1, x_177); x_179 = lean_array_push(x_137, x_163); x_180 = lean_array_push(x_179, x_178); -x_181 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__26; +x_181 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__26; x_182 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_182, 0, x_181); lean_ctor_set(x_182, 1, x_180); @@ -9527,89 +9527,89 @@ lean_inc(x_193); x_194 = lean_ctor_get(x_2, 1); lean_inc(x_194); lean_dec(x_2); -x_195 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__9; +x_195 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__9; lean_inc(x_191); x_196 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_196, 0, x_191); lean_ctor_set(x_196, 1, x_195); -x_197 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__20; +x_197 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__20; lean_inc(x_193); lean_inc(x_194); x_198 = l_Lean_addMacroScope(x_194, x_197, x_193); -x_199 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__16; -x_200 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__22; +x_199 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__16; +x_200 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__22; lean_inc(x_191); x_201 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_201, 0, x_191); lean_ctor_set(x_201, 1, x_199); lean_ctor_set(x_201, 2, x_198); lean_ctor_set(x_201, 3, x_200); -x_202 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__42; +x_202 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__42; lean_inc(x_191); x_203 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_203, 0, x_191); lean_ctor_set(x_203, 1, x_202); -x_204 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__24; +x_204 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__24; x_205 = lean_array_push(x_204, x_203); x_206 = lean_array_push(x_205, x_9); -x_207 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__41; +x_207 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__41; x_208 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_208, 0, x_207); lean_ctor_set(x_208, 1, x_206); x_209 = lean_array_push(x_204, x_208); -x_210 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__43; +x_210 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__43; x_211 = lean_array_push(x_209, x_210); -x_212 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__11; +x_212 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__11; x_213 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_213, 0, x_212); lean_ctor_set(x_213, 1, x_211); -x_214 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__38; +x_214 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__38; lean_inc(x_191); x_215 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_215, 0, x_191); lean_ctor_set(x_215, 1, x_214); -x_216 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__39; +x_216 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__39; x_217 = lean_array_push(x_216, x_196); lean_inc(x_217); x_218 = lean_array_push(x_217, x_213); lean_inc(x_215); x_219 = lean_array_push(x_218, x_215); -x_220 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__8; +x_220 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__8; x_221 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_221, 0, x_220); lean_ctor_set(x_221, 1, x_219); -x_222 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__23; +x_222 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__23; x_223 = lean_array_push(x_222, x_221); x_224 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_224, 0, x_212); lean_ctor_set(x_224, 1, x_223); x_225 = lean_array_push(x_204, x_201); x_226 = lean_array_push(x_225, x_224); -x_227 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__13; +x_227 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__13; x_228 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_228, 0, x_227); lean_ctor_set(x_228, 1, x_226); -x_229 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__27; +x_229 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__27; lean_inc(x_191); x_230 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_230, 0, x_191); lean_ctor_set(x_230, 1, x_229); -x_231 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__18; +x_231 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__18; lean_inc(x_193); lean_inc(x_194); x_232 = l_Lean_addMacroScope(x_194, x_231, x_193); -x_233 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__29; -x_234 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__31; +x_233 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__29; +x_234 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__31; lean_inc(x_191); x_235 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_235, 0, x_191); lean_ctor_set(x_235, 1, x_233); lean_ctor_set(x_235, 2, x_232); lean_ctor_set(x_235, 3, x_234); -x_236 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__35; +x_236 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__35; x_237 = l_Lean_addMacroScope(x_194, x_236, x_193); -x_238 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__34; -x_239 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__37; +x_238 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__34; +x_239 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__37; x_240 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_240, 0, x_191); lean_ctor_set(x_240, 1, x_238); @@ -9626,7 +9626,7 @@ lean_ctor_set(x_245, 0, x_227); lean_ctor_set(x_245, 1, x_244); x_246 = lean_array_push(x_204, x_230); x_247 = lean_array_push(x_246, x_245); -x_248 = l_myMacro____x40_Init_System_IO___hyg_3969____closed__26; +x_248 = l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__26; x_249 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_249, 0, x_248); lean_ctor_set(x_249, 1, x_247); @@ -9992,92 +9992,92 @@ l_termPrintln_x21_______closed__17 = _init_l_termPrintln_x21_______closed__17(); lean_mark_persistent(l_termPrintln_x21_______closed__17); l_termPrintln_x21____ = _init_l_termPrintln_x21____(); lean_mark_persistent(l_termPrintln_x21____); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__1 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__1); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__2 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__2); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__3 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__3); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__4 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__4); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__5 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__5); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__6 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__6); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__7 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__7); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__8 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__8); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__9 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__9); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__10 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__10(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__10); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__11 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__11(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__11); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__12 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__12(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__12); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__13 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__13(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__13); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__14 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__14(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__14); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__15 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__15(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__15); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__16 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__16(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__16); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__17 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__17(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__17); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__18 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__18(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__18); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__19 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__19(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__19); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__20 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__20(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__20); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__21 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__21(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__21); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__22 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__22(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__22); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__23 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__23(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__23); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__24 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__24(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__24); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__25 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__25(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__25); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__26 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__26(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__26); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__27 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__27(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__27); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__28 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__28(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__28); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__29 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__29(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__29); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__30 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__30(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__30); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__31 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__31(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__31); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__32 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__32(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__32); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__33 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__33(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__33); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__34 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__34(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__34); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__35 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__35(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__35); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__36 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__36(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__36); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__37 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__37(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__37); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__38 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__38(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__38); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__39 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__39(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__39); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__40 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__40(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__40); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__41 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__41(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__41); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__42 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__42(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__42); -l_myMacro____x40_Init_System_IO___hyg_3969____closed__43 = _init_l_myMacro____x40_Init_System_IO___hyg_3969____closed__43(); -lean_mark_persistent(l_myMacro____x40_Init_System_IO___hyg_3969____closed__43); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__1 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__1(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__1); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__2 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__2(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__2); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__3 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__3(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__3); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__4 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__4(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__4); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__5 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__5(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__5); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__6 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__6(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__6); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__7 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__7(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__7); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__8 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__8(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__8); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__9 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__9(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__9); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__10 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__10(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__10); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__11 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__11(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__11); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__12 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__12(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__12); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__13 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__13(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__13); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__14 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__14(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__14); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__15 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__15(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__15); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__16 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__16(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__16); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__17 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__17(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__17); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__18 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__18(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__18); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__19 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__19(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__19); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__20 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__20(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__20); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__21 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__21(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__21); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__22 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__22(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__22); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__23 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__23(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__23); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__24 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__24(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__24); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__25 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__25(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__25); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__26 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__26(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__26); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__27 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__27(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__27); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__28 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__28(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__28); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__29 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__29(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__29); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__30 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__30(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__30); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__31 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__31(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__31); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__32 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__32(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__32); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__33 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__33(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__33); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__34 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__34(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__34); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__35 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__35(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__35); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__36 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__36(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__36); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__37 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__37(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__37); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__38 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__38(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__38); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__39 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__39(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__39); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__40 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__40(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__40); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__41 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__41(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__41); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__42 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__42(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__42); +l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__43 = _init_l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__43(); +lean_mark_persistent(l___aux__Init__System__IO______macroRules__termPrintln_x21______1___closed__43); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Data/Options.c b/stage0/stdlib/Lean/Data/Options.c index ef649797ed..54bfc464f0 100644 --- a/stage0/stdlib/Lean/Data/Options.c +++ b/stage0/stdlib/Lean/Data/Options.c @@ -17,26 +17,28 @@ LEAN_EXPORT lean_object* l_Lean_getBoolOption___rarg(lean_object*, lean_object*, lean_object* l_List_reverse___rarg(lean_object*); lean_object* l_Lean_initializing(lean_object*); static lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__26; -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); lean_object* l_Lean_KVMap_setBool(lean_object*, lean_object*, uint8_t); static lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__12; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__32; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__10; static lean_object* l_Lean_Option_commandRegister__option_____x3a___x3a_x3d_____closed__6; LEAN_EXPORT lean_object* l_Lean_Option_register(lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__11; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__31; LEAN_EXPORT lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d__; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__3; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__42; +LEAN_EXPORT lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1(lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_OptionDecl_group___default; static lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__11; LEAN_EXPORT lean_object* l_Std_RBNode_find___at_Lean_getOptionDecl___spec__1___boxed(lean_object*, lean_object*); -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__19; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__39; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__7; LEAN_EXPORT lean_object* l_Lean_instMonadWithOptions___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_registerOption___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KVMap_setNat(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__3; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__35; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__21; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__38; LEAN_EXPORT lean_object* l_Lean_Option_Decl_group___default; lean_object* lean_st_ref_get(lean_object*, lean_object*); lean_object* l_Lean_KVMap_setString(lean_object*, lean_object*, lean_object*); @@ -45,34 +47,29 @@ uint8_t lean_name_eq(lean_object*, lean_object*); static lean_object* l_Lean_getOptionDeclsArray___closed__1; static lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__15; LEAN_EXPORT lean_object* l_Lean_Option_get___rarg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getOptionDefaulValue(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getOptionDecls(lean_object*); LEAN_EXPORT lean_object* l_Lean_Option_get_x3f(lean_object*); static lean_object* l_Lean_instInhabitedOptionDecl___closed__1; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* l_String_toInt_x3f(lean_object*); -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__36; static lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__14; lean_object* lean_string_append(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instMonadWithOptions(lean_object*, lean_object*); static lean_object* l_Lean_instForInOptionsProdNameDataValue___closed__1; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__12; static lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__7; static lean_object* l_Lean_instInhabitedOptionDecl___closed__2; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__9; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__24; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__16; lean_object* l_Lean_KVMap_instToStringKVMap(lean_object*); lean_object* l_String_splitOn(lean_object*, lean_object*); -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__40; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1557____closed__1; lean_object* lean_string_utf8_byte_size(lean_object*); -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__8; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__17; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__44; static lean_object* l_Lean_getOptionDecl___closed__1; uint8_t l_Lean_NameMap_contains___rarg(lean_object*, lean_object*); extern lean_object* l_Lean_nameLitKind; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__32; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__10; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__2; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__12; static lean_object* l_Lean_setOptionFromString___closed__9; static lean_object* l_Lean_Option_commandRegister__option_____x3a___x3a_x3d_____closed__9; LEAN_EXPORT lean_object* l_Lean_instInhabitedOptions; @@ -83,7 +80,6 @@ LEAN_EXPORT lean_object* l_Lean_getBoolOption___rarg___boxed(lean_object*, lean_ LEAN_EXPORT lean_object* l_Lean_Option_get___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__24; static lean_object* l_Lean_Option_commandRegister__option_____x3a___x3a_x3d_____closed__2; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__20; LEAN_EXPORT lean_object* l_Lean_Option_setIfNotSet___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_registerOption___closed__1; static lean_object* l_Lean_registerOption___closed__2; @@ -92,132 +88,136 @@ static lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a lean_object* l_Lean_KVMap_instForInKVMapProdNameDataValue(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Data_Options_0__Lean_optionDeclsRef; static lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__10; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__18; static lean_object* l_Lean_Option_commandRegister__option_____x3a___x3a_x3d_____closed__8; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__30; lean_object* l_String_toName(lean_object*); static lean_object* l_Lean_setOptionFromString___closed__4; static lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__20; LEAN_EXPORT lean_object* l_Lean_instMonadOptions(lean_object*, lean_object*); -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__43; lean_object* l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getOptionDecl(lean_object*, lean_object*); -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__15; static lean_object* l_Lean_Option_commandRegister__option_____x3a___x3a_x3d_____closed__4; LEAN_EXPORT lean_object* l_Lean_OptionDecl_descr___default; LEAN_EXPORT lean_object* l_Lean_instToStringOptions; uint8_t l_Lean_KVMap_getBool(lean_object*, lean_object*, uint8_t); static lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__23; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__18; static lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__21; LEAN_EXPORT lean_object* l_Lean_instMonadOptions___rarg(lean_object*, lean_object*); lean_object* l_Lean_Name_toString(lean_object*, uint8_t); +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__37; static lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__13; LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Data_Options___hyg_124_(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1557_(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_setOptionFromString___closed__8; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__26; uint8_t l_Lean_Name_quickCmp(lean_object*, lean_object*); lean_object* l_Std_RBNode_insert___at_Lean_NameMap_insert___spec__1___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Option_commandRegister__option_____x3a___x3a_x3d_____closed__3; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__16; static lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__6; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__option_____x3a___x3a_x3d___xbb__1___closed__2; static lean_object* l_Lean_Option_commandRegister__option_____x3a___x3a_x3d_____closed__1; lean_object* l_Lean_Syntax_getId(lean_object*); lean_object* l___private_Init_Meta_0__Lean_quoteNameMk(lean_object*); +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__option_____x3a___x3a_x3d___xbb__1___closed__1; LEAN_EXPORT lean_object* lean_get_option_decls_array(lean_object*); LEAN_EXPORT lean_object* l_Lean_Option_commandRegister__option_____x3a___x3a_x3d__; static lean_object* l_Lean_Option_commandRegister__option_____x3a___x3a_x3d_____closed__5; LEAN_EXPORT lean_object* l_Lean_getNatOption___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KVMap_setInt(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__26; LEAN_EXPORT lean_object* l_Lean_instForInOptionsProdNameDataValue(lean_object*); uint8_t l_Lean_KVMap_contains(lean_object*, lean_object*); +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__14; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__22; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__28; LEAN_EXPORT lean_object* l_Lean_Options_empty; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__27; static lean_object* l_Lean_OptionDecl_group___default___closed__1; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__29; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__14; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__28; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__22; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__39; static lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__25; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__33; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__19; static lean_object* l_Lean_setOptionFromString___closed__5; LEAN_EXPORT lean_object* l_Lean_Option_set___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__22; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__21; LEAN_EXPORT lean_object* l_Lean_instInhabitedOptionDecl; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__38; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__15; LEAN_EXPORT lean_object* l_Lean_getBoolOption___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__30; lean_object* l_Lean_KVMap_getNat(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__5; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__42; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__5; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__1; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__8; LEAN_EXPORT lean_object* l_Std_RBNode_fold___at_Lean_getOptionDeclsArray___spec__1(lean_object*, lean_object*); -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__3; lean_object* l_Lean_KVMap_setName(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Option_register___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__37; lean_object* l_String_intercalate(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_RBNode_find___at_Lean_getOptionDecl___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Option_get_x3f___rarg___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__19; LEAN_EXPORT lean_object* l_Lean_instMonadWithOptions___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_registerOption___lambda__2___closed__1; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__24; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__44; LEAN_EXPORT lean_object* l_Lean_setOptionFromString(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__7; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__17; static lean_object* l_Lean_setOptionFromString___closed__6; LEAN_EXPORT lean_object* l_Lean_registerOption___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__25; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__4; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__9; static lean_object* l_Lean_setOptionFromString___closed__1; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__40; lean_object* l_Lean_KVMap_insertCore(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getBoolOption___rarg___lambda__1(lean_object*, lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_getNatOption___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Option_get_x3f___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__43; LEAN_EXPORT lean_object* lean_register_option(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__8; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__20; static lean_object* l_Lean_registerOption___lambda__2___closed__2; LEAN_EXPORT lean_object* l_Lean_instInhabitedOption(lean_object*); +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__33; static lean_object* l_Lean_Option_commandRegister__option_____x3a___x3a_x3d_____closed__10; lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__1; LEAN_EXPORT lean_object* l_Lean_Option_Decl_descr___default; static lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__17; static lean_object* l_Lean_Option_commandRegister__option_____x3a___x3a_x3d_____closed__7; LEAN_EXPORT lean_object* l_Lean_getBoolOption(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__option_____x3a___x3a_x3d___xbb__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KVMap_findCore(lean_object*, lean_object*); +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__34; LEAN_EXPORT lean_object* l_Lean_Option_set(lean_object*); static lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__4; lean_object* l_String_trim(lean_object*); -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__2; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1557____closed__2; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__13; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__41; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__23; static lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__9; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); static lean_object* l_Lean_instToStringOptions___closed__1; static lean_object* l_Lean_getOptionDecl___closed__2; static lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__2; LEAN_EXPORT lean_object* l_Std_RBNode_fold___at_Lean_getOptionDeclsArray___spec__1___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__6; LEAN_EXPORT lean_object* l_Lean_Option_get(lean_object*); static lean_object* l_Lean_setOptionFromString___closed__2; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__29; static lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__1; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__34; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__41; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__23; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__13; lean_object* l_IO_mkRef___rarg(lean_object*, lean_object*); lean_object* l_String_toNat_x3f(lean_object*); +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__36; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__35; LEAN_EXPORT lean_object* l_Lean_registerOption___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__6; static lean_object* l_Lean_setOptionFromString___closed__7; LEAN_EXPORT lean_object* l_Lean_instInhabitedOptionDecls; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__25; LEAN_EXPORT lean_object* l_Lean_getOptionDescr(lean_object*, lean_object*); -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__4; -static lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__27; static lean_object* l_Lean_setOptionFromString___closed__3; LEAN_EXPORT lean_object* l_Lean_getNatOption___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTRAux___at_Lean_setOptionFromString___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instInhabitedOption___rarg(lean_object*); lean_object* l_Lean_Syntax_mkLit(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__31; +static lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__11; static lean_object* _init_l_Lean_Options_empty() { _start: { @@ -2204,7 +2204,7 @@ x_1 = l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____close return x_1; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__1() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -2212,17 +2212,17 @@ x_1 = lean_mk_string("Parser"); return x_1; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__2() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__2; -x_2 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__1; +x_2 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__3() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__3() { _start: { lean_object* x_1; @@ -2230,17 +2230,17 @@ x_1 = lean_mk_string("Command"); return x_1; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__4() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__2; -x_2 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__3; +x_1 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__2; +x_2 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__5() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__5() { _start: { lean_object* x_1; @@ -2248,17 +2248,17 @@ x_1 = lean_mk_string("builtin_initialize"); return x_1; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__6() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__4; -x_2 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__5; +x_1 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__4; +x_2 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__7() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__7() { _start: { lean_object* x_1; @@ -2266,21 +2266,21 @@ x_1 = lean_mk_string("null"); return x_1; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__8() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__7; +x_2 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__9() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__8; +x_1 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__8; x_2 = l_Lean_getOptionDeclsArray___closed__1; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -2288,7 +2288,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__10() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__10() { _start: { lean_object* x_1; @@ -2296,17 +2296,17 @@ x_1 = lean_mk_string("Term"); return x_1; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__11() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__2; -x_2 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__10; +x_1 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__2; +x_2 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__10; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__12() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__12() { _start: { lean_object* x_1; @@ -2314,17 +2314,17 @@ x_1 = lean_mk_string("typeSpec"); return x_1; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__13() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__11; -x_2 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__12; +x_1 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__11; +x_2 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__12; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__14() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__14() { _start: { lean_object* x_1; @@ -2332,7 +2332,7 @@ x_1 = lean_mk_string(":"); return x_1; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__15() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__15() { _start: { lean_object* x_1; @@ -2340,17 +2340,17 @@ x_1 = lean_mk_string("app"); return x_1; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__16() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__11; -x_2 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__15; +x_1 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__11; +x_2 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__15; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__17() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__17() { _start: { lean_object* x_1; @@ -2358,22 +2358,22 @@ x_1 = lean_mk_string("Lean.Option"); return x_1; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__18() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__18() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__17; +x_1 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__17; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__19() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__17; +x_1 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__17; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__18; +x_3 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__18; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2381,7 +2381,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__20() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -2393,19 +2393,19 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__21() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__20; +x_2 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__20; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__22() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__22() { _start: { lean_object* x_1; lean_object* x_2; @@ -2414,7 +2414,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__23() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__23() { _start: { lean_object* x_1; lean_object* x_2; @@ -2423,7 +2423,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__24() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__24() { _start: { lean_object* x_1; @@ -2431,7 +2431,7 @@ x_1 = lean_mk_string("←"); return x_1; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__25() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__25() { _start: { lean_object* x_1; lean_object* x_2; @@ -2440,7 +2440,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__26() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__26() { _start: { lean_object* x_1; @@ -2448,17 +2448,17 @@ x_1 = lean_mk_string("doSeqIndent"); return x_1; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__27() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__27() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__11; -x_2 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__26; +x_1 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__11; +x_2 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__26; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__28() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__28() { _start: { lean_object* x_1; @@ -2466,17 +2466,17 @@ x_1 = lean_mk_string("doSeqItem"); return x_1; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__29() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__29() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__11; -x_2 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__28; +x_1 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__11; +x_2 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__28; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__30() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__30() { _start: { lean_object* x_1; @@ -2484,17 +2484,17 @@ x_1 = lean_mk_string("doExpr"); return x_1; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__31() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__31() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__11; -x_2 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__30; +x_1 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__11; +x_2 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__30; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__32() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__32() { _start: { lean_object* x_1; @@ -2502,22 +2502,22 @@ x_1 = lean_mk_string("Lean.Option.register"); return x_1; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__33() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__33() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__32; +x_1 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__32; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__34() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__34() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__32; +x_1 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__32; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__33; +x_3 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__33; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2525,7 +2525,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__35() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__35() { _start: { lean_object* x_1; @@ -2533,41 +2533,41 @@ x_1 = lean_mk_string("register"); return x_1; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__36() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__36() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__4; -x_2 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__35; +x_2 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__35; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__37() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__37() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__36; +x_2 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__36; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__38() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__38() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__37; +x_2 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__37; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__39() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__39() { _start: { lean_object* x_1; lean_object* x_2; @@ -2576,17 +2576,17 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__40() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__40() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__39; -x_2 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__9; +x_1 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__39; +x_2 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__9; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__41() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__41() { _start: { lean_object* x_1; @@ -2594,17 +2594,17 @@ x_1 = lean_mk_string("quotedName"); return x_1; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__42() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__42() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__11; -x_2 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__41; +x_1 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__11; +x_2 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__41; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__43() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__43() { _start: { lean_object* x_1; @@ -2612,7 +2612,7 @@ x_1 = lean_mk_string("."); return x_1; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__44() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__44() { _start: { lean_object* x_1; @@ -2620,7 +2620,7 @@ x_1 = lean_mk_string("`"); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2649,7 +2649,7 @@ x_12 = lean_unsigned_to_nat(5u); x_13 = l_Lean_Syntax_getArg(x_1, x_12); lean_dec(x_1); lean_inc(x_2); -x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_15 = !lean_is_exclusive(x_14); if (x_15 == 0) { @@ -2660,12 +2660,12 @@ lean_inc(x_17); x_18 = lean_ctor_get(x_2, 1); lean_inc(x_18); lean_dec(x_2); -x_19 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__5; +x_19 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__5; lean_inc(x_16); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_16); lean_ctor_set(x_20, 1, x_19); -x_21 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__14; +x_21 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__14; lean_inc(x_16); x_22 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_22, 0, x_16); @@ -2675,39 +2675,39 @@ lean_inc(x_17); lean_inc(x_18); x_24 = l_Lean_addMacroScope(x_18, x_23, x_17); x_25 = lean_box(0); -x_26 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__19; -x_27 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__21; +x_26 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__19; +x_27 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__21; lean_inc(x_16); x_28 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_28, 0, x_16); lean_ctor_set(x_28, 1, x_26); lean_ctor_set(x_28, 2, x_24); lean_ctor_set(x_28, 3, x_27); -x_29 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__22; +x_29 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__22; x_30 = lean_array_push(x_29, x_11); -x_31 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__8; +x_31 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__8; x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); -x_33 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__23; +x_33 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__23; x_34 = lean_array_push(x_33, x_28); x_35 = lean_array_push(x_34, x_32); -x_36 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__16; +x_36 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__16; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); x_38 = lean_array_push(x_33, x_22); x_39 = lean_array_push(x_38, x_37); -x_40 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__13; +x_40 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__13; x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_39); -x_42 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__24; +x_42 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__24; lean_inc(x_16); x_43 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_43, 0, x_16); lean_ctor_set(x_43, 1, x_42); -x_44 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__25; +x_44 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__25; lean_inc(x_9); x_45 = lean_array_push(x_44, x_9); x_46 = lean_array_push(x_45, x_41); @@ -2715,10 +2715,10 @@ x_47 = lean_array_push(x_46, x_43); x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_31); lean_ctor_set(x_48, 1, x_47); -x_49 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__36; +x_49 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__36; x_50 = l_Lean_addMacroScope(x_18, x_49, x_17); -x_51 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__34; -x_52 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__38; +x_51 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__34; +x_52 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__38; x_53 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_53, 0, x_16); lean_ctor_set(x_53, 1, x_51); @@ -2729,7 +2729,7 @@ lean_dec(x_9); lean_inc(x_54); x_55 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_25, x_54); x_56 = lean_array_push(x_33, x_53); -x_57 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__40; +x_57 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__40; x_58 = lean_array_push(x_57, x_20); x_59 = lean_array_push(x_58, x_48); if (lean_obj_tag(x_55) == 0) @@ -2746,14 +2746,14 @@ x_65 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_65, 0, x_36); lean_ctor_set(x_65, 1, x_64); x_66 = lean_array_push(x_29, x_65); -x_67 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__31; +x_67 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__31; x_68 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_68, 0, x_67); lean_ctor_set(x_68, 1, x_66); x_69 = lean_array_push(x_33, x_68); -x_70 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__9; +x_70 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__9; x_71 = lean_array_push(x_69, x_70); -x_72 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__29; +x_72 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__29; x_73 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_73, 0, x_72); lean_ctor_set(x_73, 1, x_71); @@ -2762,12 +2762,12 @@ x_75 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_75, 0, x_31); lean_ctor_set(x_75, 1, x_74); x_76 = lean_array_push(x_29, x_75); -x_77 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__27; +x_77 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__27; 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 = lean_array_push(x_59, x_78); -x_80 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__6; +x_80 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__6; x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_80); lean_ctor_set(x_81, 1, x_79); @@ -2781,16 +2781,16 @@ lean_dec(x_54); x_82 = lean_ctor_get(x_55, 0); lean_inc(x_82); lean_dec(x_55); -x_83 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__43; +x_83 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__43; x_84 = l_String_intercalate(x_83, x_82); -x_85 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__44; +x_85 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__44; x_86 = lean_string_append(x_85, x_84); lean_dec(x_84); x_87 = l_Lean_nameLitKind; x_88 = lean_box(2); x_89 = l_Lean_Syntax_mkLit(x_87, x_86, x_88); x_90 = lean_array_push(x_29, x_89); -x_91 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__42; +x_91 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__42; x_92 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_92, 0, x_91); lean_ctor_set(x_92, 1, x_90); @@ -2804,14 +2804,14 @@ x_97 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_97, 0, x_36); lean_ctor_set(x_97, 1, x_96); x_98 = lean_array_push(x_29, x_97); -x_99 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__31; +x_99 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__31; x_100 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_100, 0, x_99); lean_ctor_set(x_100, 1, x_98); x_101 = lean_array_push(x_33, x_100); -x_102 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__9; +x_102 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__9; x_103 = lean_array_push(x_101, x_102); -x_104 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__29; +x_104 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__29; x_105 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_105, 0, x_104); lean_ctor_set(x_105, 1, x_103); @@ -2820,12 +2820,12 @@ x_107 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_107, 0, x_31); lean_ctor_set(x_107, 1, x_106); x_108 = lean_array_push(x_29, x_107); -x_109 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__27; +x_109 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__27; x_110 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_110, 0, x_109); lean_ctor_set(x_110, 1, x_108); x_111 = lean_array_push(x_59, x_110); -x_112 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__6; +x_112 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__6; x_113 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_113, 0, x_112); lean_ctor_set(x_113, 1, x_111); @@ -2846,12 +2846,12 @@ lean_inc(x_116); x_117 = lean_ctor_get(x_2, 1); lean_inc(x_117); lean_dec(x_2); -x_118 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__5; +x_118 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__5; lean_inc(x_114); x_119 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_119, 0, x_114); lean_ctor_set(x_119, 1, x_118); -x_120 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__14; +x_120 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__14; lean_inc(x_114); x_121 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_121, 0, x_114); @@ -2861,39 +2861,39 @@ lean_inc(x_116); lean_inc(x_117); x_123 = l_Lean_addMacroScope(x_117, x_122, x_116); x_124 = lean_box(0); -x_125 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__19; -x_126 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__21; +x_125 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__19; +x_126 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__21; lean_inc(x_114); x_127 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_127, 0, x_114); lean_ctor_set(x_127, 1, x_125); lean_ctor_set(x_127, 2, x_123); lean_ctor_set(x_127, 3, x_126); -x_128 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__22; +x_128 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__22; x_129 = lean_array_push(x_128, x_11); -x_130 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__8; +x_130 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__8; x_131 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_131, 0, x_130); lean_ctor_set(x_131, 1, x_129); -x_132 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__23; +x_132 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__23; x_133 = lean_array_push(x_132, x_127); x_134 = lean_array_push(x_133, x_131); -x_135 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__16; +x_135 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__16; x_136 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_136, 0, x_135); lean_ctor_set(x_136, 1, x_134); x_137 = lean_array_push(x_132, x_121); x_138 = lean_array_push(x_137, x_136); -x_139 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__13; +x_139 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__13; 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_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__24; +x_141 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__24; lean_inc(x_114); x_142 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_142, 0, x_114); lean_ctor_set(x_142, 1, x_141); -x_143 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__25; +x_143 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__25; lean_inc(x_9); x_144 = lean_array_push(x_143, x_9); x_145 = lean_array_push(x_144, x_140); @@ -2901,10 +2901,10 @@ x_146 = lean_array_push(x_145, x_142); x_147 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_147, 0, x_130); lean_ctor_set(x_147, 1, x_146); -x_148 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__36; +x_148 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__36; x_149 = l_Lean_addMacroScope(x_117, x_148, x_116); -x_150 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__34; -x_151 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__38; +x_150 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__34; +x_151 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__38; x_152 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_152, 0, x_114); lean_ctor_set(x_152, 1, x_150); @@ -2915,7 +2915,7 @@ lean_dec(x_9); lean_inc(x_153); x_154 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_124, x_153); x_155 = lean_array_push(x_132, x_152); -x_156 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__40; +x_156 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__40; x_157 = lean_array_push(x_156, x_119); x_158 = lean_array_push(x_157, x_147); if (lean_obj_tag(x_154) == 0) @@ -2932,14 +2932,14 @@ x_164 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_164, 0, x_135); lean_ctor_set(x_164, 1, x_163); x_165 = lean_array_push(x_128, x_164); -x_166 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__31; +x_166 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__31; x_167 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_167, 0, x_166); lean_ctor_set(x_167, 1, x_165); x_168 = lean_array_push(x_132, x_167); -x_169 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__9; +x_169 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__9; x_170 = lean_array_push(x_168, x_169); -x_171 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__29; +x_171 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__29; x_172 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_172, 0, x_171); lean_ctor_set(x_172, 1, x_170); @@ -2948,12 +2948,12 @@ x_174 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_174, 0, x_130); lean_ctor_set(x_174, 1, x_173); x_175 = lean_array_push(x_128, x_174); -x_176 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__27; +x_176 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__27; x_177 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_177, 0, x_176); lean_ctor_set(x_177, 1, x_175); x_178 = lean_array_push(x_158, x_177); -x_179 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__6; +x_179 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__6; x_180 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_180, 0, x_179); lean_ctor_set(x_180, 1, x_178); @@ -2969,16 +2969,16 @@ lean_dec(x_153); x_182 = lean_ctor_get(x_154, 0); lean_inc(x_182); lean_dec(x_154); -x_183 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__43; +x_183 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__43; x_184 = l_String_intercalate(x_183, x_182); -x_185 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__44; +x_185 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__44; x_186 = lean_string_append(x_185, x_184); lean_dec(x_184); x_187 = l_Lean_nameLitKind; x_188 = lean_box(2); x_189 = l_Lean_Syntax_mkLit(x_187, x_186, x_188); x_190 = lean_array_push(x_128, x_189); -x_191 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__42; +x_191 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__42; x_192 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_192, 0, x_191); lean_ctor_set(x_192, 1, x_190); @@ -2992,14 +2992,14 @@ x_197 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_197, 0, x_135); lean_ctor_set(x_197, 1, x_196); x_198 = lean_array_push(x_128, x_197); -x_199 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__31; +x_199 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__31; x_200 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_200, 0, x_199); lean_ctor_set(x_200, 1, x_198); x_201 = lean_array_push(x_132, x_200); -x_202 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__9; +x_202 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__9; x_203 = lean_array_push(x_201, x_202); -x_204 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__29; +x_204 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__29; x_205 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_205, 0, x_204); lean_ctor_set(x_205, 1, x_203); @@ -3008,12 +3008,12 @@ x_207 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_207, 0, x_130); lean_ctor_set(x_207, 1, x_206); x_208 = lean_array_push(x_128, x_207); -x_209 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__27; +x_209 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__27; x_210 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_210, 0, x_209); lean_ctor_set(x_210, 1, x_208); x_211 = lean_array_push(x_158, x_210); -x_212 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__6; +x_212 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__6; x_213 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_213, 0, x_212); lean_ctor_set(x_213, 1, x_211); @@ -3154,7 +3154,7 @@ x_1 = l_Lean_Option_commandRegister__option_____x3a___x3a_x3d_____closed__10; return x_1; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1557____closed__1() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__option_____x3a___x3a_x3d___xbb__1___closed__1() { _start: { lean_object* x_1; @@ -3162,17 +3162,17 @@ x_1 = lean_mk_string("initialize"); return x_1; } } -static lean_object* _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1557____closed__2() { +static lean_object* _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__option_____x3a___x3a_x3d___xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__4; -x_2 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1557____closed__1; +x_1 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__4; +x_2 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__option_____x3a___x3a_x3d___xbb__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1557_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__option_____x3a___x3a_x3d___xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -3201,7 +3201,7 @@ x_12 = lean_unsigned_to_nat(5u); x_13 = l_Lean_Syntax_getArg(x_1, x_12); lean_dec(x_1); lean_inc(x_2); -x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_15 = !lean_is_exclusive(x_14); if (x_15 == 0) { @@ -3212,12 +3212,12 @@ lean_inc(x_17); x_18 = lean_ctor_get(x_2, 1); lean_inc(x_18); lean_dec(x_2); -x_19 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1557____closed__1; +x_19 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__option_____x3a___x3a_x3d___xbb__1___closed__1; lean_inc(x_16); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_16); lean_ctor_set(x_20, 1, x_19); -x_21 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__14; +x_21 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__14; lean_inc(x_16); x_22 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_22, 0, x_16); @@ -3227,39 +3227,39 @@ lean_inc(x_17); lean_inc(x_18); x_24 = l_Lean_addMacroScope(x_18, x_23, x_17); x_25 = lean_box(0); -x_26 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__19; -x_27 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__21; +x_26 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__19; +x_27 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__21; lean_inc(x_16); x_28 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_28, 0, x_16); lean_ctor_set(x_28, 1, x_26); lean_ctor_set(x_28, 2, x_24); lean_ctor_set(x_28, 3, x_27); -x_29 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__22; +x_29 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__22; x_30 = lean_array_push(x_29, x_11); -x_31 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__8; +x_31 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__8; x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); -x_33 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__23; +x_33 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__23; x_34 = lean_array_push(x_33, x_28); x_35 = lean_array_push(x_34, x_32); -x_36 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__16; +x_36 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__16; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); x_38 = lean_array_push(x_33, x_22); x_39 = lean_array_push(x_38, x_37); -x_40 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__13; +x_40 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__13; x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_39); -x_42 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__24; +x_42 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__24; lean_inc(x_16); x_43 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_43, 0, x_16); lean_ctor_set(x_43, 1, x_42); -x_44 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__25; +x_44 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__25; lean_inc(x_9); x_45 = lean_array_push(x_44, x_9); x_46 = lean_array_push(x_45, x_41); @@ -3267,10 +3267,10 @@ x_47 = lean_array_push(x_46, x_43); x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_31); lean_ctor_set(x_48, 1, x_47); -x_49 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__36; +x_49 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__36; x_50 = l_Lean_addMacroScope(x_18, x_49, x_17); -x_51 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__34; -x_52 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__38; +x_51 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__34; +x_52 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__38; x_53 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_53, 0, x_16); lean_ctor_set(x_53, 1, x_51); @@ -3281,7 +3281,7 @@ lean_dec(x_9); lean_inc(x_54); x_55 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_25, x_54); x_56 = lean_array_push(x_33, x_53); -x_57 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__40; +x_57 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__40; x_58 = lean_array_push(x_57, x_20); x_59 = lean_array_push(x_58, x_48); if (lean_obj_tag(x_55) == 0) @@ -3298,14 +3298,14 @@ x_65 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_65, 0, x_36); lean_ctor_set(x_65, 1, x_64); x_66 = lean_array_push(x_29, x_65); -x_67 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__31; +x_67 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__31; x_68 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_68, 0, x_67); lean_ctor_set(x_68, 1, x_66); x_69 = lean_array_push(x_33, x_68); -x_70 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__9; +x_70 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__9; x_71 = lean_array_push(x_69, x_70); -x_72 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__29; +x_72 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__29; x_73 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_73, 0, x_72); lean_ctor_set(x_73, 1, x_71); @@ -3314,12 +3314,12 @@ x_75 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_75, 0, x_31); lean_ctor_set(x_75, 1, x_74); x_76 = lean_array_push(x_29, x_75); -x_77 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__27; +x_77 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__27; 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 = lean_array_push(x_59, x_78); -x_80 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1557____closed__2; +x_80 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__option_____x3a___x3a_x3d___xbb__1___closed__2; x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_80); lean_ctor_set(x_81, 1, x_79); @@ -3333,16 +3333,16 @@ lean_dec(x_54); x_82 = lean_ctor_get(x_55, 0); lean_inc(x_82); lean_dec(x_55); -x_83 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__43; +x_83 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__43; x_84 = l_String_intercalate(x_83, x_82); -x_85 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__44; +x_85 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__44; x_86 = lean_string_append(x_85, x_84); lean_dec(x_84); x_87 = l_Lean_nameLitKind; x_88 = lean_box(2); x_89 = l_Lean_Syntax_mkLit(x_87, x_86, x_88); x_90 = lean_array_push(x_29, x_89); -x_91 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__42; +x_91 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__42; x_92 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_92, 0, x_91); lean_ctor_set(x_92, 1, x_90); @@ -3356,14 +3356,14 @@ x_97 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_97, 0, x_36); lean_ctor_set(x_97, 1, x_96); x_98 = lean_array_push(x_29, x_97); -x_99 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__31; +x_99 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__31; x_100 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_100, 0, x_99); lean_ctor_set(x_100, 1, x_98); x_101 = lean_array_push(x_33, x_100); -x_102 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__9; +x_102 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__9; x_103 = lean_array_push(x_101, x_102); -x_104 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__29; +x_104 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__29; x_105 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_105, 0, x_104); lean_ctor_set(x_105, 1, x_103); @@ -3372,12 +3372,12 @@ x_107 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_107, 0, x_31); lean_ctor_set(x_107, 1, x_106); x_108 = lean_array_push(x_29, x_107); -x_109 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__27; +x_109 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__27; x_110 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_110, 0, x_109); lean_ctor_set(x_110, 1, x_108); x_111 = lean_array_push(x_59, x_110); -x_112 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1557____closed__2; +x_112 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__option_____x3a___x3a_x3d___xbb__1___closed__2; x_113 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_113, 0, x_112); lean_ctor_set(x_113, 1, x_111); @@ -3398,12 +3398,12 @@ lean_inc(x_116); x_117 = lean_ctor_get(x_2, 1); lean_inc(x_117); lean_dec(x_2); -x_118 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1557____closed__1; +x_118 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__option_____x3a___x3a_x3d___xbb__1___closed__1; lean_inc(x_114); x_119 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_119, 0, x_114); lean_ctor_set(x_119, 1, x_118); -x_120 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__14; +x_120 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__14; lean_inc(x_114); x_121 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_121, 0, x_114); @@ -3413,39 +3413,39 @@ lean_inc(x_116); lean_inc(x_117); x_123 = l_Lean_addMacroScope(x_117, x_122, x_116); x_124 = lean_box(0); -x_125 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__19; -x_126 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__21; +x_125 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__19; +x_126 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__21; lean_inc(x_114); x_127 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_127, 0, x_114); lean_ctor_set(x_127, 1, x_125); lean_ctor_set(x_127, 2, x_123); lean_ctor_set(x_127, 3, x_126); -x_128 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__22; +x_128 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__22; x_129 = lean_array_push(x_128, x_11); -x_130 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__8; +x_130 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__8; x_131 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_131, 0, x_130); lean_ctor_set(x_131, 1, x_129); -x_132 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__23; +x_132 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__23; x_133 = lean_array_push(x_132, x_127); x_134 = lean_array_push(x_133, x_131); -x_135 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__16; +x_135 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__16; x_136 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_136, 0, x_135); lean_ctor_set(x_136, 1, x_134); x_137 = lean_array_push(x_132, x_121); x_138 = lean_array_push(x_137, x_136); -x_139 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__13; +x_139 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__13; 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_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__24; +x_141 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__24; lean_inc(x_114); x_142 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_142, 0, x_114); lean_ctor_set(x_142, 1, x_141); -x_143 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__25; +x_143 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__25; lean_inc(x_9); x_144 = lean_array_push(x_143, x_9); x_145 = lean_array_push(x_144, x_140); @@ -3453,10 +3453,10 @@ x_146 = lean_array_push(x_145, x_142); x_147 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_147, 0, x_130); lean_ctor_set(x_147, 1, x_146); -x_148 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__36; +x_148 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__36; x_149 = l_Lean_addMacroScope(x_117, x_148, x_116); -x_150 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__34; -x_151 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__38; +x_150 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__34; +x_151 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__38; x_152 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_152, 0, x_114); lean_ctor_set(x_152, 1, x_150); @@ -3467,7 +3467,7 @@ lean_dec(x_9); lean_inc(x_153); x_154 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_124, x_153); x_155 = lean_array_push(x_132, x_152); -x_156 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__40; +x_156 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__40; x_157 = lean_array_push(x_156, x_119); x_158 = lean_array_push(x_157, x_147); if (lean_obj_tag(x_154) == 0) @@ -3484,14 +3484,14 @@ x_164 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_164, 0, x_135); lean_ctor_set(x_164, 1, x_163); x_165 = lean_array_push(x_128, x_164); -x_166 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__31; +x_166 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__31; x_167 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_167, 0, x_166); lean_ctor_set(x_167, 1, x_165); x_168 = lean_array_push(x_132, x_167); -x_169 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__9; +x_169 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__9; x_170 = lean_array_push(x_168, x_169); -x_171 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__29; +x_171 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__29; x_172 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_172, 0, x_171); lean_ctor_set(x_172, 1, x_170); @@ -3500,12 +3500,12 @@ x_174 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_174, 0, x_130); lean_ctor_set(x_174, 1, x_173); x_175 = lean_array_push(x_128, x_174); -x_176 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__27; +x_176 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__27; x_177 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_177, 0, x_176); lean_ctor_set(x_177, 1, x_175); x_178 = lean_array_push(x_158, x_177); -x_179 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1557____closed__2; +x_179 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__option_____x3a___x3a_x3d___xbb__1___closed__2; x_180 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_180, 0, x_179); lean_ctor_set(x_180, 1, x_178); @@ -3521,16 +3521,16 @@ lean_dec(x_153); x_182 = lean_ctor_get(x_154, 0); lean_inc(x_182); lean_dec(x_154); -x_183 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__43; +x_183 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__43; x_184 = l_String_intercalate(x_183, x_182); -x_185 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__44; +x_185 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__44; x_186 = lean_string_append(x_185, x_184); lean_dec(x_184); x_187 = l_Lean_nameLitKind; x_188 = lean_box(2); x_189 = l_Lean_Syntax_mkLit(x_187, x_186, x_188); x_190 = lean_array_push(x_128, x_189); -x_191 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__42; +x_191 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__42; x_192 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_192, 0, x_191); lean_ctor_set(x_192, 1, x_190); @@ -3544,14 +3544,14 @@ x_197 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_197, 0, x_135); lean_ctor_set(x_197, 1, x_196); x_198 = lean_array_push(x_128, x_197); -x_199 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__31; +x_199 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__31; x_200 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_200, 0, x_199); lean_ctor_set(x_200, 1, x_198); x_201 = lean_array_push(x_132, x_200); -x_202 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__9; +x_202 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__9; x_203 = lean_array_push(x_201, x_202); -x_204 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__29; +x_204 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__29; x_205 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_205, 0, x_204); lean_ctor_set(x_205, 1, x_203); @@ -3560,12 +3560,12 @@ x_207 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_207, 0, x_130); lean_ctor_set(x_207, 1, x_206); x_208 = lean_array_push(x_128, x_207); -x_209 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__27; +x_209 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__27; x_210 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_210, 0, x_209); lean_ctor_set(x_210, 1, x_208); x_211 = lean_array_push(x_158, x_210); -x_212 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1557____closed__2; +x_212 = l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__option_____x3a___x3a_x3d___xbb__1___closed__2; x_213 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_213, 0, x_212); lean_ctor_set(x_213, 1, x_211); @@ -3716,94 +3716,94 @@ l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__26 lean_mark_persistent(l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__26); l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d__ = _init_l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d__(); lean_mark_persistent(l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d__); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__1 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__1(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__1); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__2 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__2(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__2); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__3 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__3(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__3); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__4 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__4(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__4); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__5 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__5(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__5); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__6 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__6(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__6); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__7 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__7(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__7); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__8 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__8(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__8); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__9 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__9(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__9); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__10 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__10(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__10); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__11 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__11(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__11); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__12 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__12(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__12); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__13 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__13(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__13); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__14 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__14(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__14); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__15 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__15(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__15); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__16 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__16(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__16); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__17 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__17(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__17); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__18 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__18(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__18); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__19 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__19(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__19); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__20 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__20(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__20); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__21 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__21(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__21); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__22 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__22(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__22); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__23 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__23(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__23); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__24 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__24(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__24); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__25 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__25(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__25); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__26 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__26(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__26); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__27 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__27(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__27); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__28 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__28(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__28); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__29 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__29(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__29); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__30 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__30(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__30); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__31 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__31(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__31); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__32 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__32(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__32); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__33 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__33(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__33); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__34 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__34(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__34); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__35 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__35(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__35); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__36 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__36(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__36); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__37 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__37(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__37); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__38 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__38(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__38); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__39 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__39(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__39); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__40 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__40(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__40); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__41 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__41(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__41); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__42 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__42(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__42); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__43 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__43(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__43); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__44 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__44(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1272____closed__44); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__1 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__1(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__1); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__2 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__2(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__2); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__3 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__3(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__3); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__4 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__4(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__4); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__5 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__5(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__5); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__6 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__6(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__6); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__7 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__7(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__7); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__8 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__8(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__8); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__9 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__9(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__9); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__10 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__10(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__10); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__11 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__11(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__11); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__12 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__12(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__12); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__13 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__13(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__13); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__14 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__14(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__14); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__15 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__15(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__15); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__16 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__16(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__16); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__17 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__17(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__17); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__18 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__18(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__18); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__19 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__19(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__19); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__20 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__20(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__20); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__21 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__21(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__21); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__22 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__22(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__22); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__23 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__23(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__23); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__24 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__24(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__24); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__25 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__25(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__25); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__26 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__26(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__26); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__27 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__27(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__27); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__28 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__28(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__28); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__29 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__29(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__29); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__30 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__30(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__30); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__31 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__31(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__31); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__32 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__32(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__32); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__33 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__33(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__33); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__34 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__34(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__34); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__35 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__35(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__35); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__36 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__36(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__36); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__37 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__37(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__37); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__38 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__38(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__38); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__39 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__39(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__39); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__40 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__40(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__40); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__41 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__41(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__41); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__42 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__42(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__42); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__43 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__43(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__43); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__44 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__44(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__builtin__option_____x3a___x3a_x3d___xbb__1___closed__44); l_Lean_Option_commandRegister__option_____x3a___x3a_x3d_____closed__1 = _init_l_Lean_Option_commandRegister__option_____x3a___x3a_x3d_____closed__1(); lean_mark_persistent(l_Lean_Option_commandRegister__option_____x3a___x3a_x3d_____closed__1); l_Lean_Option_commandRegister__option_____x3a___x3a_x3d_____closed__2 = _init_l_Lean_Option_commandRegister__option_____x3a___x3a_x3d_____closed__2(); @@ -3826,10 +3826,10 @@ l_Lean_Option_commandRegister__option_____x3a___x3a_x3d_____closed__10 = _init_l lean_mark_persistent(l_Lean_Option_commandRegister__option_____x3a___x3a_x3d_____closed__10); l_Lean_Option_commandRegister__option_____x3a___x3a_x3d__ = _init_l_Lean_Option_commandRegister__option_____x3a___x3a_x3d__(); lean_mark_persistent(l_Lean_Option_commandRegister__option_____x3a___x3a_x3d__); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1557____closed__1 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1557____closed__1(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1557____closed__1); -l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1557____closed__2 = _init_l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1557____closed__2(); -lean_mark_persistent(l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_1557____closed__2); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__option_____x3a___x3a_x3d___xbb__1___closed__1 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__option_____x3a___x3a_x3d___xbb__1___closed__1(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__option_____x3a___x3a_x3d___xbb__1___closed__1); +l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__option_____x3a___x3a_x3d___xbb__1___closed__2 = _init_l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__option_____x3a___x3a_x3d___xbb__1___closed__2(); +lean_mark_persistent(l_Lean_Option___aux__Lean__Data__Options______macroRules__Lean__Option___xabcommandRegister__option_____x3a___x3a_x3d___xbb__1___closed__2); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Elab/AuxDef.c b/stage0/stdlib/Lean/Elab/AuxDef.c index cdfd4a035e..6cab6f7bdf 100644 --- a/stage0/stdlib/Lean/Elab/AuxDef.c +++ b/stage0/stdlib/Lean/Elab/AuxDef.c @@ -53,7 +53,6 @@ static lean_object* l_Lean_Elab_Command_aux__def___closed__27; static lean_object* l_Lean_Elab_Command_aux__def___closed__39; static lean_object* l_Lean_Elab_Command_aux__def___closed__19; static lean_object* l_Lean_Elab_Command_aux__def___closed__12; -lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_elabAuxDef___lambda__2___closed__20; static lean_object* l_Lean_Elab_Command_aux__def___closed__11; static lean_object* l_Lean_Elab_Command_aux__def___closed__31; @@ -145,6 +144,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabAuxDef(lean_object*, lean_objec static lean_object* l_Lean_Elab_Command_elabAuxDef___lambda__2___closed__21; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_getScope___rarg(lean_object*, lean_object*); +lean_object* l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_aux__def___closed__29; lean_object* l_Lean_Name_replacePrefix(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_components(lean_object*); @@ -1095,7 +1095,7 @@ x_10 = l_Lean_Syntax_getArg(x_1, x_9); x_11 = l_Lean_Syntax_getArgs(x_10); lean_dec(x_10); x_12 = l_Lean_Elab_Command_elabAuxDef___lambda__2___closed__1; -x_13 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(x_11, x_12); +x_13 = l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(x_11, x_12); lean_dec(x_11); if (lean_obj_tag(x_13) == 0) { diff --git a/stage0/stdlib/Lean/Elab/Binders.c b/stage0/stdlib/Lean/Elab/Binders.c index 20c9004738..279a9d91a2 100644 --- a/stage0/stdlib/Lean/Elab/Binders.c +++ b/stage0/stdlib/Lean/Elab/Binders.c @@ -21,7 +21,6 @@ static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder_ LEAN_EXPORT 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_EXPORT lean_object* l_Lean_mkFreshFVarId___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabBinders(lean_object*); -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); LEAN_EXPORT 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*); uint8_t l_Lean_Syntax_isAntiquotSuffixSplice(lean_object*); LEAN_EXPORT 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*); @@ -73,6 +72,7 @@ static lean_object* l_Lean_Elab_Term_expandWhereDecls___closed__4; static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__29; LEAN_EXPORT 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_EXPORT 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*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__4; LEAN_EXPORT lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__7(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SourceInfo_fromRef(lean_object*); @@ -95,6 +95,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_ static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Term_expandFunBinders___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__37; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_precheckFun___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*); static lean_object* l_Lean_Elab_Term_declareTacticSyntax___closed__1; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Quotation_precheckIdent___spec__1___rarg(lean_object*); @@ -104,6 +105,7 @@ static lean_object* l___regBuiltin_Lean_Elab_Term_elabLetDelayedDecl___closed__3 static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__8; static lean_object* l_Lean_Elab_Term_declareTacticSyntax___lambda__2___closed__5; LEAN_EXPORT lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBindersAux(lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__1; static lean_object* l_Lean_Elab_Term_expandLetEqnsDecl___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_get(lean_object*, lean_object*); @@ -128,6 +130,7 @@ static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__18; static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__14; static lean_object* l_Lean_Elab_Term_declareTacticSyntax___lambda__2___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Term_mkFreshIdent___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__6; lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___spec__16(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__15; @@ -139,11 +142,13 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabLetDelayedDecl(lean_object*, lean_ LEAN_EXPORT lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBinderViews_loop___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkLetFunAnnotation(lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__42; +static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__46; lean_object* l_Lean_Meta_isClass_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_elabFun(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabDepArrow___closed__3; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__2; static lean_object* l___regBuiltin_Lean_Elab_Term_expandFun___closed__1; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1401____closed__1; static lean_object* l___regBuiltin_Lean_Elab_Term_expandFun___closed__2; LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews___spec__2___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_expandFunBinders_loop___spec__3(lean_object*, size_t, size_t, lean_object*); @@ -161,7 +166,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBin extern lean_object* l_Lean_nameLitKind; LEAN_EXPORT lean_object* l_Lean_Elab_Term_expandMatchAltsIntoMatchTactic(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_expandFunBinders_loop(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_1401____closed__2; static lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__13; static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__7; lean_object* lean_nat_add(lean_object*, lean_object*); @@ -210,7 +214,6 @@ static lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__16; static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__5; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_elabLetDeclAux___closed__2; -lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabFun___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_expandMatchAltsIntoMatchTactic___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -249,6 +252,7 @@ static lean_object* l___regBuiltin_Lean_Elab_Term_precheckFun___closed__2; static lean_object* l_Lean_Elab_Term_elabForall___closed__1; static lean_object* l___regBuiltin_Lean_Elab_Term_elabFun___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_precheckFun___spec__1___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__47; static lean_object* l_Lean_Elab_Term_mkFreshBinderName___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___spec__2___closed__1; static lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__11; LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabForall___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -261,8 +265,8 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addLoca lean_object* l_Lean_Meta_mkLambdaFVars(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__7; static lean_object* l___regBuiltin_Lean_Elab_Term_elabLetTmpDecl___closed__4; -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_6691_(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1401_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_6707_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417_(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabDepArrow___closed__4; LEAN_EXPORT lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__6(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -274,7 +278,6 @@ lean_object* l_Lean_Syntax_setKind(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at_Lean_Elab_Term_elabLetDeclAux___spec__1___rarg(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_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_Lean_Elab_Term_elabLetDeclAux___spec__2___rarg(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_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__18; extern lean_object* l_Lean_Elab_Term_Quotation_precheckAttribute; LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__7___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__1___rarg(lean_object*); @@ -331,6 +334,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_mkFreshBinderName___at___private_Lean_ static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__7; static lean_object* l_Lean_Elab_Term_declareTacticSyntax___lambda__2___closed__4; static lean_object* l___regBuiltin_Lean_Elab_Term_elabLetDecl___closed__2; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__3; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_elabForall(lean_object*); lean_object* l_Lean_Syntax_mkStrLit(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBindersAux_loop___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -367,7 +371,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_registe LEAN_EXPORT lean_object* l_Lean_Elab_Term_expandWhereDecls___lambda__2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___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*); static lean_object* l_Lean_Elab_Term_elabLetDeclAux___closed__5; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1401____closed__3; static lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__1___closed__1; static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_registerFailedToInferBinderTypeInfo___closed__1; lean_object* l_Lean_addTrace___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -414,7 +417,6 @@ extern lean_object* l_Lean_Elab_macroAttribute; LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabFunBinders___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_Syntax_setArg(lean_object*, lean_object*, lean_object*); lean_object* lean_environment_main_module(lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1401____closed__5; static lean_object* l_Lean_Elab_Term_expandWhereDecls___closed__3; static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__11; LEAN_EXPORT lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getBinderIds___boxed__const__1; @@ -425,6 +427,7 @@ static lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__6; lean_object* l_Lean_mkApp(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__35; LEAN_EXPORT 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; static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__4; lean_object* l_Lean_Syntax_getArgs(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*); @@ -432,6 +435,7 @@ lean_object* l_Lean_Syntax_getKind(lean_object*); static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_ensureAtomicBinderName___closed__1; lean_object* l_Lean_Meta_saveAndResetSynthInstanceCache___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_ensureAtomicBinderName___closed__2; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__5; static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__9; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Term_precheckFun___spec__3___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_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__6; @@ -459,6 +463,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_precheckFun_ static lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__10; lean_object* l_Lean_Elab_Term_elabType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__41; 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*); @@ -499,6 +504,7 @@ static lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__17; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBindersAux_loop___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Term_quoteAutoTactic___spec__1(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__44; LEAN_EXPORT 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_EXPORT 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_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_precheckFun(lean_object*); @@ -524,6 +530,7 @@ LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___private_Lean_Elab_Binders_0__Le LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_elabLetDecl(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; +static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__43; LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__14; @@ -536,6 +543,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabForall(lean_object*, lean_object*, static lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__18; static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__1; static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__8; +lean_object* l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderType___boxed(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabForall___closed__2; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -543,6 +551,7 @@ static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__8; static lean_object* l___regBuiltin_Lean_Elab_Term_elabLetFunDecl___closed__3; +static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__38; static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__21; LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabLetDeclCore(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -550,13 +559,14 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_Lean_Elab_Term_elabLetDecl lean_object* l_Lean_indentExpr(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_FunBinders_State_fvars___default; static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__7; +static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__48; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_elabLetFunDecl(lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_precheckFun___spec__6(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__9; lean_object* l_Lean_mkConst(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__40; static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__1; static lean_object* l___regBuiltin_Lean_Elab_Term_elabForall___closed__3; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1401____closed__4; static lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__3; static lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__4; static lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__17; @@ -590,6 +600,7 @@ lean_object* l_Lean_Syntax_mkLit(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__1; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabForall___closed__5; +static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__45; LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabBinder(lean_object*); uint8_t l_Lean_Syntax_isAntiquotSplice(lean_object*); static lean_object* l_Lean_Elab_Term_elabLetDeclAux___closed__7; @@ -1657,69 +1668,26 @@ static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__23() { _start: { lean_object* x_1; -x_1 = lean_mk_string("quotedName"); +x_1 = lean_mk_string("SourceInfo.none"); return x_1; } } static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__24() { _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_Lean_Elab_Term_quoteAutoTactic___closed__23; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__23; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; } } static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__25() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("."); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__26() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("`"); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__27() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(1u); -x_2 = lean_mk_empty_array_with_capacity(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__28() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("mkAtom"); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__29() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__28; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__30() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__28; +x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__23; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Term_quoteAutoTactic___closed__29; +x_3 = l_Lean_Elab_Term_quoteAutoTactic___closed__24; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1727,11 +1695,57 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__31() { +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__26() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("SourceInfo"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__27() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__26; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__28() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("none"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__29() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__28; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__30() { +_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__2; +x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__26; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__31() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__28; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -1741,9 +1755,11 @@ static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__32() { _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__2; -x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__28; -x_3 = lean_name_mk_string(x_1, x_2); +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__31; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); return x_3; } } @@ -1753,7 +1769,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__32; -x_3 = lean_alloc_ctor(0, 2, 0); +x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; @@ -1762,16 +1778,131 @@ return x_3; static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__34() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(3u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__35() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("quotedName"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__36() { +_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_Lean_Elab_Term_quoteAutoTactic___closed__35; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__37() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("."); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__38() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("`"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__39() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(1u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__40() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("mkAtom"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__41() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__40; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__42() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__40; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Term_quoteAutoTactic___closed__41; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__43() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__33; +x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__40; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__44() { +_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__2; +x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__40; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__45() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__44; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__46() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__45; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__35() { +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__47() { _start: { lean_object* x_1; @@ -1779,11 +1910,11 @@ x_1 = lean_mk_string("invalid auto tactic, identifier is not allowed"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__36() { +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__48() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__35; +x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__47; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } @@ -1900,154 +2031,182 @@ lean_dec(x_7); x_48 = !lean_is_exclusive(x_47); if (x_48 == 0) { -lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; +lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; x_49 = lean_ctor_get(x_47, 0); x_50 = l_Lean_Elab_Term_quoteAutoTactic___closed__18; +lean_inc(x_45); +lean_inc(x_49); x_51 = l_Lean_addMacroScope(x_49, x_50, x_45); x_52 = l_Lean_Elab_Term_quoteAutoTactic___closed__14; x_53 = l_Lean_Elab_Term_quoteAutoTactic___closed__22; +lean_inc(x_42); x_54 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_54, 0, x_42); lean_ctor_set(x_54, 1, x_52); lean_ctor_set(x_54, 2, x_51); lean_ctor_set(x_54, 3, x_53); +x_55 = l_Lean_Elab_Term_quoteAutoTactic___closed__29; +x_56 = l_Lean_addMacroScope(x_49, x_55, x_45); +x_57 = l_Lean_Elab_Term_quoteAutoTactic___closed__25; +x_58 = l_Lean_Elab_Term_quoteAutoTactic___closed__33; +x_59 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_59, 0, x_42); +lean_ctor_set(x_59, 1, x_57); +lean_ctor_set(x_59, 2, x_56); +lean_ctor_set(x_59, 3, x_58); lean_inc(x_11); -x_55 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_30, x_11); -x_56 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__9; -x_57 = lean_array_push(x_56, x_54); -if (lean_obj_tag(x_55) == 0) +x_60 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_30, x_11); +x_61 = l_Lean_Elab_Term_quoteAutoTactic___closed__34; +x_62 = lean_array_push(x_61, x_59); +x_63 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__9; +x_64 = lean_array_push(x_63, x_54); +if (lean_obj_tag(x_60) == 0) { -lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; -x_58 = l___private_Init_Meta_0__Lean_quoteNameMk(x_11); -x_59 = lean_array_push(x_56, x_58); -x_60 = lean_array_push(x_59, x_39); -x_61 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; -lean_ctor_set(x_1, 1, x_60); -lean_ctor_set(x_1, 0, x_61); -x_62 = lean_array_push(x_57, x_1); -x_63 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__2; -x_64 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_64, 0, x_63); -lean_ctor_set(x_64, 1, x_62); -lean_ctor_set(x_47, 0, 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; +x_65 = l___private_Init_Meta_0__Lean_quoteNameMk(x_11); +x_66 = lean_array_push(x_62, x_65); +x_67 = lean_array_push(x_66, x_39); +x_68 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; +lean_ctor_set(x_1, 1, x_67); +lean_ctor_set(x_1, 0, x_68); +x_69 = lean_array_push(x_64, x_1); +x_70 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__2; +x_71 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_71, 0, x_70); +lean_ctor_set(x_71, 1, x_69); +lean_ctor_set(x_47, 0, x_71); return x_47; } 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_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_dec(x_11); -x_65 = lean_ctor_get(x_55, 0); -lean_inc(x_65); -lean_dec(x_55); -x_66 = l_Lean_Elab_Term_quoteAutoTactic___closed__25; -x_67 = l_String_intercalate(x_66, x_65); -x_68 = l_Lean_Elab_Term_quoteAutoTactic___closed__26; -x_69 = lean_string_append(x_68, x_67); -lean_dec(x_67); -x_70 = l_Lean_nameLitKind; -x_71 = lean_box(2); -x_72 = l_Lean_Syntax_mkLit(x_70, x_69, x_71); -x_73 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; -x_74 = lean_array_push(x_73, x_72); -x_75 = l_Lean_Elab_Term_quoteAutoTactic___closed__24; -lean_ctor_set(x_1, 1, x_74); -lean_ctor_set(x_1, 0, x_75); -x_76 = lean_array_push(x_56, x_1); -x_77 = lean_array_push(x_76, x_39); -x_78 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; -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 = lean_array_push(x_57, x_79); -x_81 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__2; -x_82 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_82, 0, x_81); -lean_ctor_set(x_82, 1, x_80); -lean_ctor_set(x_47, 0, x_82); -return x_47; -} -} -else -{ -lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; -x_83 = lean_ctor_get(x_47, 0); -x_84 = lean_ctor_get(x_47, 1); -lean_inc(x_84); -lean_inc(x_83); -lean_dec(x_47); -x_85 = l_Lean_Elab_Term_quoteAutoTactic___closed__18; -x_86 = l_Lean_addMacroScope(x_83, x_85, x_45); -x_87 = l_Lean_Elab_Term_quoteAutoTactic___closed__14; -x_88 = l_Lean_Elab_Term_quoteAutoTactic___closed__22; -x_89 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_89, 0, x_42); +x_72 = lean_ctor_get(x_60, 0); +lean_inc(x_72); +lean_dec(x_60); +x_73 = l_Lean_Elab_Term_quoteAutoTactic___closed__37; +x_74 = l_String_intercalate(x_73, x_72); +x_75 = l_Lean_Elab_Term_quoteAutoTactic___closed__38; +x_76 = lean_string_append(x_75, x_74); +lean_dec(x_74); +x_77 = l_Lean_nameLitKind; +x_78 = lean_box(2); +x_79 = l_Lean_Syntax_mkLit(x_77, x_76, x_78); +x_80 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; +x_81 = lean_array_push(x_80, x_79); +x_82 = l_Lean_Elab_Term_quoteAutoTactic___closed__36; +lean_ctor_set(x_1, 1, x_81); +lean_ctor_set(x_1, 0, x_82); +x_83 = lean_array_push(x_62, x_1); +x_84 = lean_array_push(x_83, x_39); +x_85 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; +x_86 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_86, 0, x_85); +lean_ctor_set(x_86, 1, x_84); +x_87 = lean_array_push(x_64, x_86); +x_88 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__2; +x_89 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_89, 0, x_88); lean_ctor_set(x_89, 1, x_87); -lean_ctor_set(x_89, 2, x_86); -lean_ctor_set(x_89, 3, x_88); +lean_ctor_set(x_47, 0, x_89); +return x_47; +} +} +else +{ +lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; +x_90 = lean_ctor_get(x_47, 0); +x_91 = lean_ctor_get(x_47, 1); +lean_inc(x_91); +lean_inc(x_90); +lean_dec(x_47); +x_92 = l_Lean_Elab_Term_quoteAutoTactic___closed__18; +lean_inc(x_45); +lean_inc(x_90); +x_93 = l_Lean_addMacroScope(x_90, x_92, x_45); +x_94 = l_Lean_Elab_Term_quoteAutoTactic___closed__14; +x_95 = l_Lean_Elab_Term_quoteAutoTactic___closed__22; +lean_inc(x_42); +x_96 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_96, 0, x_42); +lean_ctor_set(x_96, 1, x_94); +lean_ctor_set(x_96, 2, x_93); +lean_ctor_set(x_96, 3, x_95); +x_97 = l_Lean_Elab_Term_quoteAutoTactic___closed__29; +x_98 = l_Lean_addMacroScope(x_90, x_97, x_45); +x_99 = l_Lean_Elab_Term_quoteAutoTactic___closed__25; +x_100 = l_Lean_Elab_Term_quoteAutoTactic___closed__33; +x_101 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_101, 0, x_42); +lean_ctor_set(x_101, 1, x_99); +lean_ctor_set(x_101, 2, x_98); +lean_ctor_set(x_101, 3, x_100); lean_inc(x_11); -x_90 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_30, x_11); -x_91 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__9; -x_92 = lean_array_push(x_91, x_89); -if (lean_obj_tag(x_90) == 0) +x_102 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_30, x_11); +x_103 = l_Lean_Elab_Term_quoteAutoTactic___closed__34; +x_104 = lean_array_push(x_103, x_101); +x_105 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__9; +x_106 = lean_array_push(x_105, x_96); +if (lean_obj_tag(x_102) == 0) { -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; -x_93 = l___private_Init_Meta_0__Lean_quoteNameMk(x_11); -x_94 = lean_array_push(x_91, x_93); -x_95 = lean_array_push(x_94, x_39); -x_96 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; -lean_ctor_set(x_1, 1, x_95); -lean_ctor_set(x_1, 0, x_96); -x_97 = lean_array_push(x_92, x_1); -x_98 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__2; -x_99 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_99, 0, x_98); -lean_ctor_set(x_99, 1, x_97); -x_100 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_100, 0, x_99); -lean_ctor_set(x_100, 1, x_84); -return x_100; +lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; +x_107 = l___private_Init_Meta_0__Lean_quoteNameMk(x_11); +x_108 = lean_array_push(x_104, x_107); +x_109 = lean_array_push(x_108, x_39); +x_110 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; +lean_ctor_set(x_1, 1, x_109); +lean_ctor_set(x_1, 0, x_110); +x_111 = lean_array_push(x_106, x_1); +x_112 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__2; +x_113 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_113, 0, x_112); +lean_ctor_set(x_113, 1, x_111); +x_114 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_114, 0, x_113); +lean_ctor_set(x_114, 1, x_91); +return x_114; } else { -lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; +lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_dec(x_11); -x_101 = lean_ctor_get(x_90, 0); -lean_inc(x_101); -lean_dec(x_90); -x_102 = l_Lean_Elab_Term_quoteAutoTactic___closed__25; -x_103 = l_String_intercalate(x_102, x_101); -x_104 = l_Lean_Elab_Term_quoteAutoTactic___closed__26; -x_105 = lean_string_append(x_104, x_103); -lean_dec(x_103); -x_106 = l_Lean_nameLitKind; -x_107 = lean_box(2); -x_108 = l_Lean_Syntax_mkLit(x_106, x_105, x_107); -x_109 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; -x_110 = lean_array_push(x_109, x_108); -x_111 = l_Lean_Elab_Term_quoteAutoTactic___closed__24; -lean_ctor_set(x_1, 1, x_110); -lean_ctor_set(x_1, 0, x_111); -x_112 = lean_array_push(x_91, x_1); -x_113 = lean_array_push(x_112, x_39); -x_114 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; -x_115 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_115, 0, x_114); -lean_ctor_set(x_115, 1, x_113); -x_116 = lean_array_push(x_92, x_115); -x_117 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__2; -x_118 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_118, 0, x_117); -lean_ctor_set(x_118, 1, x_116); -x_119 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_119, 0, x_118); -lean_ctor_set(x_119, 1, x_84); -return x_119; +x_115 = lean_ctor_get(x_102, 0); +lean_inc(x_115); +lean_dec(x_102); +x_116 = l_Lean_Elab_Term_quoteAutoTactic___closed__37; +x_117 = l_String_intercalate(x_116, x_115); +x_118 = l_Lean_Elab_Term_quoteAutoTactic___closed__38; +x_119 = lean_string_append(x_118, x_117); +lean_dec(x_117); +x_120 = l_Lean_nameLitKind; +x_121 = lean_box(2); +x_122 = l_Lean_Syntax_mkLit(x_120, x_119, x_121); +x_123 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; +x_124 = lean_array_push(x_123, x_122); +x_125 = l_Lean_Elab_Term_quoteAutoTactic___closed__36; +lean_ctor_set(x_1, 1, x_124); +lean_ctor_set(x_1, 0, x_125); +x_126 = lean_array_push(x_104, x_1); +x_127 = lean_array_push(x_126, x_39); +x_128 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; +x_129 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_129, 0, x_128); +lean_ctor_set(x_129, 1, x_127); +x_130 = lean_array_push(x_106, x_129); +x_131 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__2; +x_132 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_132, 0, x_131); +lean_ctor_set(x_132, 1, x_130); +x_133 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_133, 0, x_132); +lean_ctor_set(x_133, 1, x_91); +return x_133; } } } else { -uint8_t x_120; +uint8_t x_134; lean_free_object(x_1); lean_dec(x_11); lean_dec(x_7); @@ -2056,198 +2215,212 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_120 = !lean_is_exclusive(x_38); -if (x_120 == 0) +x_134 = !lean_is_exclusive(x_38); +if (x_134 == 0) { return x_38; } else { -lean_object* x_121; lean_object* x_122; lean_object* x_123; -x_121 = lean_ctor_get(x_38, 0); -x_122 = lean_ctor_get(x_38, 1); -lean_inc(x_122); -lean_inc(x_121); +lean_object* x_135; lean_object* x_136; lean_object* x_137; +x_135 = lean_ctor_get(x_38, 0); +x_136 = lean_ctor_get(x_38, 1); +lean_inc(x_136); +lean_inc(x_135); lean_dec(x_38); -x_123 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_123, 0, x_121); -lean_ctor_set(x_123, 1, x_122); -return x_123; +x_137 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_137, 0, x_135); +lean_ctor_set(x_137, 1, x_136); +return x_137; } } } else { -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; size_t x_142; size_t x_143; lean_object* x_144; lean_object* x_145; +lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; size_t x_156; size_t x_157; lean_object* x_158; lean_object* x_159; lean_dec(x_1); -x_124 = l_Lean_Elab_Term_instMonadQuotationTermElabM; -x_125 = lean_ctor_get(x_124, 0); -lean_inc(x_125); +x_138 = l_Lean_Elab_Term_instMonadQuotationTermElabM; +x_139 = lean_ctor_get(x_138, 0); +lean_inc(x_139); lean_inc(x_6); -x_126 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__2___rarg(x_6, x_7, x_8); -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 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_128); -x_130 = lean_ctor_get(x_129, 0); -lean_inc(x_130); -x_131 = lean_ctor_get(x_129, 1); -lean_inc(x_131); -lean_dec(x_129); -x_132 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_131); -x_133 = lean_ctor_get(x_132, 0); -lean_inc(x_133); -x_134 = lean_ctor_get(x_132, 1); -lean_inc(x_134); -lean_dec(x_132); -x_135 = l_Lean_Elab_Term_quoteAutoTactic___closed__9; -x_136 = l_Lean_addMacroScope(x_133, x_135, x_130); -x_137 = lean_box(0); -x_138 = l_Lean_Elab_Term_quoteAutoTactic___closed__5; -x_139 = l_Lean_Elab_Term_quoteAutoTactic___closed__11; -x_140 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_140, 0, x_127); -lean_ctor_set(x_140, 1, x_138); -lean_ctor_set(x_140, 2, x_136); -lean_ctor_set(x_140, 3, x_139); -x_141 = lean_array_get_size(x_12); -x_142 = lean_usize_of_nat(x_141); -lean_dec(x_141); -x_143 = 0; -x_144 = l_Lean_Elab_Term_quoteAutoTactic___closed__7; +x_140 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__2___rarg(x_6, x_7, x_8); +x_141 = lean_ctor_get(x_140, 0); +lean_inc(x_141); +x_142 = lean_ctor_get(x_140, 1); +lean_inc(x_142); +lean_dec(x_140); +x_143 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_142); +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_Elab_Term_getMainModule___rarg(x_7, x_145); +x_147 = lean_ctor_get(x_146, 0); +lean_inc(x_147); +x_148 = lean_ctor_get(x_146, 1); +lean_inc(x_148); +lean_dec(x_146); +x_149 = l_Lean_Elab_Term_quoteAutoTactic___closed__9; +x_150 = l_Lean_addMacroScope(x_147, x_149, x_144); +x_151 = lean_box(0); +x_152 = l_Lean_Elab_Term_quoteAutoTactic___closed__5; +x_153 = l_Lean_Elab_Term_quoteAutoTactic___closed__11; +x_154 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_154, 0, x_141); +lean_ctor_set(x_154, 1, x_152); +lean_ctor_set(x_154, 2, x_150); +lean_ctor_set(x_154, 3, x_153); +x_155 = lean_array_get_size(x_12); +x_156 = lean_usize_of_nat(x_155); +lean_dec(x_155); +x_157 = 0; +x_158 = l_Lean_Elab_Term_quoteAutoTactic___closed__7; 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_145 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3(x_11, x_125, x_144, x_137, x_137, x_12, x_142, x_143, x_140, x_2, x_3, x_4, x_5, x_6, x_7, x_134); +x_159 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3(x_11, x_139, x_158, x_151, x_151, x_12, x_156, x_157, x_154, x_2, x_3, x_4, x_5, x_6, x_7, x_148); lean_dec(x_12); -lean_dec(x_125); -if (lean_obj_tag(x_145) == 0) +lean_dec(x_139); +if (lean_obj_tag(x_159) == 0) { -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; -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -x_147 = lean_ctor_get(x_145, 1); -lean_inc(x_147); -lean_dec(x_145); +lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; +x_160 = lean_ctor_get(x_159, 0); +lean_inc(x_160); +x_161 = lean_ctor_get(x_159, 1); +lean_inc(x_161); +lean_dec(x_159); lean_inc(x_6); -x_148 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__2___rarg(x_6, x_7, x_147); -x_149 = lean_ctor_get(x_148, 0); -lean_inc(x_149); -x_150 = lean_ctor_get(x_148, 1); -lean_inc(x_150); -lean_dec(x_148); -x_151 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_150); +x_162 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__2___rarg(x_6, x_7, x_161); +x_163 = lean_ctor_get(x_162, 0); +lean_inc(x_163); +x_164 = lean_ctor_get(x_162, 1); +lean_inc(x_164); +lean_dec(x_162); +x_165 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_164); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_152 = lean_ctor_get(x_151, 0); -lean_inc(x_152); -x_153 = lean_ctor_get(x_151, 1); -lean_inc(x_153); -lean_dec(x_151); -x_154 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_153); +x_166 = lean_ctor_get(x_165, 0); +lean_inc(x_166); +x_167 = lean_ctor_get(x_165, 1); +lean_inc(x_167); +lean_dec(x_165); +x_168 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_167); lean_dec(x_7); -x_155 = lean_ctor_get(x_154, 0); -lean_inc(x_155); -x_156 = lean_ctor_get(x_154, 1); -lean_inc(x_156); -if (lean_is_exclusive(x_154)) { - lean_ctor_release(x_154, 0); - lean_ctor_release(x_154, 1); - x_157 = x_154; +x_169 = lean_ctor_get(x_168, 0); +lean_inc(x_169); +x_170 = lean_ctor_get(x_168, 1); +lean_inc(x_170); +if (lean_is_exclusive(x_168)) { + lean_ctor_release(x_168, 0); + lean_ctor_release(x_168, 1); + x_171 = x_168; } else { - lean_dec_ref(x_154); - x_157 = lean_box(0); + lean_dec_ref(x_168); + x_171 = lean_box(0); } -x_158 = l_Lean_Elab_Term_quoteAutoTactic___closed__18; -x_159 = l_Lean_addMacroScope(x_155, x_158, x_152); -x_160 = l_Lean_Elab_Term_quoteAutoTactic___closed__14; -x_161 = l_Lean_Elab_Term_quoteAutoTactic___closed__22; -x_162 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_162, 0, x_149); -lean_ctor_set(x_162, 1, x_160); -lean_ctor_set(x_162, 2, x_159); -lean_ctor_set(x_162, 3, x_161); +x_172 = l_Lean_Elab_Term_quoteAutoTactic___closed__18; +lean_inc(x_166); +lean_inc(x_169); +x_173 = l_Lean_addMacroScope(x_169, x_172, x_166); +x_174 = l_Lean_Elab_Term_quoteAutoTactic___closed__14; +x_175 = l_Lean_Elab_Term_quoteAutoTactic___closed__22; +lean_inc(x_163); +x_176 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_176, 0, x_163); +lean_ctor_set(x_176, 1, x_174); +lean_ctor_set(x_176, 2, x_173); +lean_ctor_set(x_176, 3, x_175); +x_177 = l_Lean_Elab_Term_quoteAutoTactic___closed__29; +x_178 = l_Lean_addMacroScope(x_169, x_177, x_166); +x_179 = l_Lean_Elab_Term_quoteAutoTactic___closed__25; +x_180 = l_Lean_Elab_Term_quoteAutoTactic___closed__33; +x_181 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_181, 0, x_163); +lean_ctor_set(x_181, 1, x_179); +lean_ctor_set(x_181, 2, x_178); +lean_ctor_set(x_181, 3, x_180); lean_inc(x_11); -x_163 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_137, x_11); -x_164 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__9; -x_165 = lean_array_push(x_164, x_162); -if (lean_obj_tag(x_163) == 0) +x_182 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_151, x_11); +x_183 = l_Lean_Elab_Term_quoteAutoTactic___closed__34; +x_184 = lean_array_push(x_183, x_181); +x_185 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__9; +x_186 = lean_array_push(x_185, x_176); +if (lean_obj_tag(x_182) == 0) { -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; -x_166 = l___private_Init_Meta_0__Lean_quoteNameMk(x_11); -x_167 = lean_array_push(x_164, x_166); -x_168 = lean_array_push(x_167, x_146); -x_169 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; -x_170 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_170, 0, x_169); -lean_ctor_set(x_170, 1, x_168); -x_171 = lean_array_push(x_165, x_170); -x_172 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__2; -x_173 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_173, 0, x_172); -lean_ctor_set(x_173, 1, x_171); -if (lean_is_scalar(x_157)) { - x_174 = lean_alloc_ctor(0, 2, 0); -} else { - x_174 = x_157; -} -lean_ctor_set(x_174, 0, x_173); -lean_ctor_set(x_174, 1, x_156); -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_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_11); -x_175 = lean_ctor_get(x_163, 0); -lean_inc(x_175); -lean_dec(x_163); -x_176 = l_Lean_Elab_Term_quoteAutoTactic___closed__25; -x_177 = l_String_intercalate(x_176, x_175); -x_178 = l_Lean_Elab_Term_quoteAutoTactic___closed__26; -x_179 = lean_string_append(x_178, x_177); -lean_dec(x_177); -x_180 = l_Lean_nameLitKind; -x_181 = lean_box(2); -x_182 = l_Lean_Syntax_mkLit(x_180, x_179, x_181); -x_183 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; -x_184 = lean_array_push(x_183, x_182); -x_185 = l_Lean_Elab_Term_quoteAutoTactic___closed__24; -x_186 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_186, 0, x_185); -lean_ctor_set(x_186, 1, x_184); -x_187 = lean_array_push(x_164, x_186); -x_188 = lean_array_push(x_187, x_146); -x_189 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; -x_190 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_190, 0, x_189); -lean_ctor_set(x_190, 1, x_188); -x_191 = lean_array_push(x_165, x_190); -x_192 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__2; -x_193 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_193, 0, x_192); -lean_ctor_set(x_193, 1, x_191); -if (lean_is_scalar(x_157)) { - x_194 = lean_alloc_ctor(0, 2, 0); -} else { - x_194 = x_157; -} +lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; +x_187 = l___private_Init_Meta_0__Lean_quoteNameMk(x_11); +x_188 = lean_array_push(x_184, x_187); +x_189 = lean_array_push(x_188, x_160); +x_190 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; +x_191 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_191, 0, x_190); +lean_ctor_set(x_191, 1, x_189); +x_192 = lean_array_push(x_186, x_191); +x_193 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__2; +x_194 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_194, 0, x_193); -lean_ctor_set(x_194, 1, x_156); -return x_194; +lean_ctor_set(x_194, 1, x_192); +if (lean_is_scalar(x_171)) { + x_195 = lean_alloc_ctor(0, 2, 0); +} else { + x_195 = x_171; +} +lean_ctor_set(x_195, 0, x_194); +lean_ctor_set(x_195, 1, x_170); +return x_195; +} +else +{ +lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_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_dec(x_11); +x_196 = lean_ctor_get(x_182, 0); +lean_inc(x_196); +lean_dec(x_182); +x_197 = l_Lean_Elab_Term_quoteAutoTactic___closed__37; +x_198 = l_String_intercalate(x_197, x_196); +x_199 = l_Lean_Elab_Term_quoteAutoTactic___closed__38; +x_200 = lean_string_append(x_199, x_198); +lean_dec(x_198); +x_201 = l_Lean_nameLitKind; +x_202 = lean_box(2); +x_203 = l_Lean_Syntax_mkLit(x_201, x_200, x_202); +x_204 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; +x_205 = lean_array_push(x_204, x_203); +x_206 = l_Lean_Elab_Term_quoteAutoTactic___closed__36; +x_207 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_207, 0, x_206); +lean_ctor_set(x_207, 1, x_205); +x_208 = lean_array_push(x_184, x_207); +x_209 = lean_array_push(x_208, x_160); +x_210 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; +x_211 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_211, 0, x_210); +lean_ctor_set(x_211, 1, x_209); +x_212 = lean_array_push(x_186, x_211); +x_213 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__2; +x_214 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_214, 0, x_213); +lean_ctor_set(x_214, 1, x_212); +if (lean_is_scalar(x_171)) { + x_215 = lean_alloc_ctor(0, 2, 0); +} else { + x_215 = x_171; +} +lean_ctor_set(x_215, 0, x_214); +lean_ctor_set(x_215, 1, x_170); +return x_215; } } else { -lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; +lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_dec(x_11); lean_dec(x_7); lean_dec(x_6); @@ -2255,220 +2428,220 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_195 = lean_ctor_get(x_145, 0); -lean_inc(x_195); -x_196 = lean_ctor_get(x_145, 1); -lean_inc(x_196); -if (lean_is_exclusive(x_145)) { - lean_ctor_release(x_145, 0); - lean_ctor_release(x_145, 1); - x_197 = x_145; +x_216 = lean_ctor_get(x_159, 0); +lean_inc(x_216); +x_217 = lean_ctor_get(x_159, 1); +lean_inc(x_217); +if (lean_is_exclusive(x_159)) { + lean_ctor_release(x_159, 0); + lean_ctor_release(x_159, 1); + x_218 = x_159; } else { - lean_dec_ref(x_145); - x_197 = lean_box(0); + lean_dec_ref(x_159); + x_218 = lean_box(0); } -if (lean_is_scalar(x_197)) { - x_198 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_218)) { + x_219 = lean_alloc_ctor(1, 2, 0); } else { - x_198 = x_197; + x_219 = x_218; } -lean_ctor_set(x_198, 0, x_195); -lean_ctor_set(x_198, 1, x_196); -return x_198; +lean_ctor_set(x_219, 0, x_216); +lean_ctor_set(x_219, 1, x_217); +return x_219; } } } else { -lean_object* x_199; lean_object* x_200; +lean_object* x_220; lean_object* x_221; lean_dec(x_12); lean_dec(x_11); -x_199 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__11; -x_200 = l_Lean_throwErrorAt___at_Lean_Elab_Term_quoteAutoTactic___spec__4(x_1, x_199, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -return x_200; +x_220 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__11; +x_221 = l_Lean_throwErrorAt___at_Lean_Elab_Term_quoteAutoTactic___spec__4(x_1, x_220, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_221; } } case 2: { -uint8_t x_201; -x_201 = !lean_is_exclusive(x_1); -if (x_201 == 0) +uint8_t x_222; +x_222 = !lean_is_exclusive(x_1); +if (x_222 == 0) { -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; uint8_t x_211; -x_202 = lean_ctor_get(x_1, 1); -x_203 = lean_ctor_get(x_1, 0); -lean_dec(x_203); +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; uint8_t x_232; +x_223 = lean_ctor_get(x_1, 1); +x_224 = lean_ctor_get(x_1, 0); +lean_dec(x_224); lean_inc(x_6); -x_204 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__2___rarg(x_6, x_7, x_8); -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); -x_207 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_206); +x_225 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__2___rarg(x_6, x_7, x_8); +x_226 = lean_ctor_get(x_225, 0); +lean_inc(x_226); +x_227 = lean_ctor_get(x_225, 1); +lean_inc(x_227); +lean_dec(x_225); +x_228 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_227); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_208 = lean_ctor_get(x_207, 0); -lean_inc(x_208); -x_209 = lean_ctor_get(x_207, 1); -lean_inc(x_209); -lean_dec(x_207); -x_210 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_209); -lean_dec(x_7); -x_211 = !lean_is_exclusive(x_210); -if (x_211 == 0) -{ -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; -x_212 = lean_ctor_get(x_210, 0); -x_213 = l_Lean_Elab_Term_quoteAutoTactic___closed__31; -x_214 = l_Lean_addMacroScope(x_212, x_213, x_208); -x_215 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_216 = l_Lean_Elab_Term_quoteAutoTactic___closed__34; -x_217 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_217, 0, x_205); -lean_ctor_set(x_217, 1, x_215); -lean_ctor_set(x_217, 2, x_214); -lean_ctor_set(x_217, 3, x_216); -x_218 = lean_box(2); -x_219 = l_Lean_Syntax_mkStrLit(x_202, x_218); -lean_dec(x_202); -x_220 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; -x_221 = lean_array_push(x_220, x_219); -x_222 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; -lean_ctor_set_tag(x_1, 1); -lean_ctor_set(x_1, 1, x_221); -lean_ctor_set(x_1, 0, x_222); -x_223 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__9; -x_224 = lean_array_push(x_223, x_217); -x_225 = lean_array_push(x_224, x_1); -x_226 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__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); -lean_ctor_set(x_210, 0, x_227); -return x_210; -} -else -{ -lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; -x_228 = lean_ctor_get(x_210, 0); -x_229 = lean_ctor_get(x_210, 1); +x_229 = lean_ctor_get(x_228, 0); lean_inc(x_229); -lean_inc(x_228); -lean_dec(x_210); -x_230 = l_Lean_Elab_Term_quoteAutoTactic___closed__31; -x_231 = l_Lean_addMacroScope(x_228, x_230, x_208); -x_232 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_233 = l_Lean_Elab_Term_quoteAutoTactic___closed__34; -x_234 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_234, 0, x_205); -lean_ctor_set(x_234, 1, x_232); -lean_ctor_set(x_234, 2, x_231); -lean_ctor_set(x_234, 3, x_233); -x_235 = lean_box(2); -x_236 = l_Lean_Syntax_mkStrLit(x_202, x_235); -lean_dec(x_202); -x_237 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; -x_238 = lean_array_push(x_237, x_236); -x_239 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; +x_230 = lean_ctor_get(x_228, 1); +lean_inc(x_230); +lean_dec(x_228); +x_231 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_230); +lean_dec(x_7); +x_232 = !lean_is_exclusive(x_231); +if (x_232 == 0) +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; +x_233 = lean_ctor_get(x_231, 0); +x_234 = l_Lean_Elab_Term_quoteAutoTactic___closed__43; +x_235 = l_Lean_addMacroScope(x_233, x_234, x_229); +x_236 = l_Lean_Elab_Term_quoteAutoTactic___closed__42; +x_237 = l_Lean_Elab_Term_quoteAutoTactic___closed__46; +x_238 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_238, 0, x_226); +lean_ctor_set(x_238, 1, x_236); +lean_ctor_set(x_238, 2, x_235); +lean_ctor_set(x_238, 3, x_237); +x_239 = lean_box(2); +x_240 = l_Lean_Syntax_mkStrLit(x_223, x_239); +lean_dec(x_223); +x_241 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; +x_242 = lean_array_push(x_241, x_240); +x_243 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; lean_ctor_set_tag(x_1, 1); -lean_ctor_set(x_1, 1, x_238); -lean_ctor_set(x_1, 0, x_239); -x_240 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__9; -x_241 = lean_array_push(x_240, x_234); -x_242 = lean_array_push(x_241, x_1); -x_243 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__2; -x_244 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_244, 0, x_243); -lean_ctor_set(x_244, 1, x_242); -x_245 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_245, 0, x_244); -lean_ctor_set(x_245, 1, x_229); -return x_245; +lean_ctor_set(x_1, 1, x_242); +lean_ctor_set(x_1, 0, x_243); +x_244 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__9; +x_245 = lean_array_push(x_244, x_238); +x_246 = lean_array_push(x_245, x_1); +x_247 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__2; +x_248 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_248, 0, x_247); +lean_ctor_set(x_248, 1, x_246); +lean_ctor_set(x_231, 0, x_248); +return x_231; +} +else +{ +lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; +x_249 = lean_ctor_get(x_231, 0); +x_250 = lean_ctor_get(x_231, 1); +lean_inc(x_250); +lean_inc(x_249); +lean_dec(x_231); +x_251 = l_Lean_Elab_Term_quoteAutoTactic___closed__43; +x_252 = l_Lean_addMacroScope(x_249, x_251, x_229); +x_253 = l_Lean_Elab_Term_quoteAutoTactic___closed__42; +x_254 = l_Lean_Elab_Term_quoteAutoTactic___closed__46; +x_255 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_255, 0, x_226); +lean_ctor_set(x_255, 1, x_253); +lean_ctor_set(x_255, 2, x_252); +lean_ctor_set(x_255, 3, x_254); +x_256 = lean_box(2); +x_257 = l_Lean_Syntax_mkStrLit(x_223, x_256); +lean_dec(x_223); +x_258 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; +x_259 = lean_array_push(x_258, x_257); +x_260 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; +lean_ctor_set_tag(x_1, 1); +lean_ctor_set(x_1, 1, x_259); +lean_ctor_set(x_1, 0, x_260); +x_261 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__9; +x_262 = lean_array_push(x_261, x_255); +x_263 = lean_array_push(x_262, x_1); +x_264 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__2; +x_265 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_265, 0, x_264); +lean_ctor_set(x_265, 1, x_263); +x_266 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set(x_266, 1, x_250); +return x_266; } } else { -lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; -x_246 = lean_ctor_get(x_1, 1); -lean_inc(x_246); +lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; +x_267 = lean_ctor_get(x_1, 1); +lean_inc(x_267); lean_dec(x_1); lean_inc(x_6); -x_247 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__2___rarg(x_6, x_7, x_8); -x_248 = lean_ctor_get(x_247, 0); -lean_inc(x_248); -x_249 = lean_ctor_get(x_247, 1); -lean_inc(x_249); -lean_dec(x_247); -x_250 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_249); +x_268 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__2___rarg(x_6, x_7, x_8); +x_269 = lean_ctor_get(x_268, 0); +lean_inc(x_269); +x_270 = lean_ctor_get(x_268, 1); +lean_inc(x_270); +lean_dec(x_268); +x_271 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_270); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_251 = lean_ctor_get(x_250, 0); -lean_inc(x_251); -x_252 = lean_ctor_get(x_250, 1); -lean_inc(x_252); -lean_dec(x_250); -x_253 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_252); +x_272 = lean_ctor_get(x_271, 0); +lean_inc(x_272); +x_273 = lean_ctor_get(x_271, 1); +lean_inc(x_273); +lean_dec(x_271); +x_274 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_273); lean_dec(x_7); -x_254 = lean_ctor_get(x_253, 0); -lean_inc(x_254); -x_255 = lean_ctor_get(x_253, 1); -lean_inc(x_255); -if (lean_is_exclusive(x_253)) { - lean_ctor_release(x_253, 0); - lean_ctor_release(x_253, 1); - x_256 = x_253; +x_275 = lean_ctor_get(x_274, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_274, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_274)) { + lean_ctor_release(x_274, 0); + lean_ctor_release(x_274, 1); + x_277 = x_274; } else { - lean_dec_ref(x_253); - x_256 = lean_box(0); + lean_dec_ref(x_274); + x_277 = lean_box(0); } -x_257 = l_Lean_Elab_Term_quoteAutoTactic___closed__31; -x_258 = l_Lean_addMacroScope(x_254, x_257, x_251); -x_259 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; -x_260 = l_Lean_Elab_Term_quoteAutoTactic___closed__34; -x_261 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_261, 0, x_248); -lean_ctor_set(x_261, 1, x_259); -lean_ctor_set(x_261, 2, x_258); -lean_ctor_set(x_261, 3, x_260); -x_262 = lean_box(2); -x_263 = l_Lean_Syntax_mkStrLit(x_246, x_262); -lean_dec(x_246); -x_264 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; -x_265 = lean_array_push(x_264, x_263); -x_266 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; -x_267 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_267, 0, x_266); -lean_ctor_set(x_267, 1, x_265); -x_268 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__9; -x_269 = lean_array_push(x_268, x_261); -x_270 = lean_array_push(x_269, x_267); -x_271 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__2; -x_272 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_272, 0, x_271); -lean_ctor_set(x_272, 1, x_270); -if (lean_is_scalar(x_256)) { - x_273 = lean_alloc_ctor(0, 2, 0); +x_278 = l_Lean_Elab_Term_quoteAutoTactic___closed__43; +x_279 = l_Lean_addMacroScope(x_275, x_278, x_272); +x_280 = l_Lean_Elab_Term_quoteAutoTactic___closed__42; +x_281 = l_Lean_Elab_Term_quoteAutoTactic___closed__46; +x_282 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_282, 0, x_269); +lean_ctor_set(x_282, 1, x_280); +lean_ctor_set(x_282, 2, x_279); +lean_ctor_set(x_282, 3, x_281); +x_283 = lean_box(2); +x_284 = l_Lean_Syntax_mkStrLit(x_267, x_283); +lean_dec(x_267); +x_285 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; +x_286 = lean_array_push(x_285, x_284); +x_287 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; +x_288 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_288, 0, x_287); +lean_ctor_set(x_288, 1, x_286); +x_289 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__9; +x_290 = lean_array_push(x_289, x_282); +x_291 = lean_array_push(x_290, x_288); +x_292 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__2; +x_293 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_293, 0, x_292); +lean_ctor_set(x_293, 1, x_291); +if (lean_is_scalar(x_277)) { + x_294 = lean_alloc_ctor(0, 2, 0); } else { - x_273 = x_256; + x_294 = x_277; } -lean_ctor_set(x_273, 0, x_272); -lean_ctor_set(x_273, 1, x_255); -return x_273; +lean_ctor_set(x_294, 0, x_293); +lean_ctor_set(x_294, 1, x_276); +return x_294; } } default: { -lean_object* x_274; lean_object* x_275; -x_274 = l_Lean_Elab_Term_quoteAutoTactic___closed__36; -x_275 = l_Lean_throwErrorAt___at_Lean_Elab_Term_quoteAutoTactic___spec__4(x_1, x_274, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -return x_275; +lean_object* x_295; lean_object* x_296; +x_295 = l_Lean_Elab_Term_quoteAutoTactic___closed__48; +x_296 = l_Lean_throwErrorAt___at_Lean_Elab_Term_quoteAutoTactic___spec__4(x_1, x_295, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_296; } } } @@ -4193,7 +4366,7 @@ 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__27; +x_30 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_31 = lean_array_push(x_30, x_29); lean_ctor_set(x_23, 0, x_31); return x_23; @@ -4214,7 +4387,7 @@ 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__27; +x_38 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; 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); @@ -4750,7 +4923,7 @@ lean_dec(x_1); return x_9; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1401____closed__1() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__1() { _start: { lean_object* x_1; @@ -4758,17 +4931,17 @@ x_1 = lean_mk_string("checkBinderAnnotations"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1401____closed__2() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____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_1401____closed__1; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____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_1401____closed__3() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__3() { _start: { lean_object* x_1; @@ -4776,7 +4949,7 @@ x_1 = lean_mk_string(""); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1401____closed__4() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__4() { _start: { lean_object* x_1; @@ -4784,13 +4957,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_1401____closed__5() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____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_1401____closed__3; -x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1401____closed__4; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__3; +x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__4; x_4 = lean_box(x_1); x_5 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_5, 0, x_4); @@ -4799,12 +4972,12 @@ lean_ctor_set(x_5, 2, x_3); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1401_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417_(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_1401____closed__2; -x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1401____closed__5; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__2; +x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__5; x_4 = l_Lean_Option_register___at_Lean_Elab_initFn____x40_Lean_Elab_AutoBound___hyg_6____spec__1(x_2, x_3, x_1); return x_4; } @@ -5397,7 +5570,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabBinder___rarg(lean_object* x_1, le _start: { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_10 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_10 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_11 = lean_array_push(x_10, x_1); x_12 = lean_alloc_closure((void*)(l_Lean_Elab_Term_elabBinder___rarg___lambda__1___boxed), 9, 1); lean_closure_set(x_12, 0, x_2); @@ -5885,7 +6058,7 @@ x_10 = lean_unsigned_to_nat(0u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); x_12 = lean_unsigned_to_nat(2u); x_13 = l_Lean_Syntax_getArg(x_1, x_12); -x_14 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_14 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_15 = lean_array_push(x_14, x_11); x_16 = lean_alloc_closure((void*)(l_Lean_Elab_Term_elabForall___lambda__1), 9, 1); lean_closure_set(x_16, 0, x_13); @@ -6852,7 +7025,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; x_30 = lean_ctor_get(x_25, 0); x_31 = lean_ctor_get(x_25, 1); lean_dec(x_31); -x_32 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_26); +x_32 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_26); x_33 = !lean_is_exclusive(x_32); if (x_33 == 0) { @@ -6869,7 +7042,7 @@ x_39 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); -x_41 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_41 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_42 = lean_array_push(x_41, x_40); x_43 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); @@ -6949,7 +7122,7 @@ x_83 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; 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 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_85 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_86 = lean_array_push(x_85, x_84); x_87 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_88 = lean_alloc_ctor(1, 2, 0); @@ -7019,7 +7192,7 @@ lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; x_122 = lean_ctor_get(x_25, 0); lean_inc(x_122); lean_dec(x_25); -x_123 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_26); +x_123 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_26); x_124 = lean_ctor_get(x_123, 0); lean_inc(x_124); x_125 = lean_ctor_get(x_123, 1); @@ -7043,7 +7216,7 @@ x_131 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_132 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_132, 0, x_131); lean_ctor_set(x_132, 1, x_130); -x_133 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_133 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_134 = lean_array_push(x_133, x_132); x_135 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_136 = lean_alloc_ctor(1, 2, 0); @@ -7129,7 +7302,7 @@ if (lean_is_exclusive(x_25)) { lean_dec_ref(x_25); x_173 = lean_box(0); } -x_174 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_26); +x_174 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_26); x_175 = lean_ctor_get(x_174, 0); lean_inc(x_175); x_176 = lean_ctor_get(x_174, 1); @@ -7153,7 +7326,7 @@ x_182 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_183 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_183, 0, x_182); lean_ctor_set(x_183, 1, x_181); -x_184 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_184 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_185 = lean_array_push(x_184, x_183); x_186 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_187 = lean_alloc_ctor(1, 2, 0); @@ -7316,7 +7489,7 @@ lean_object* x_249; lean_object* x_250; lean_object* x_251; uint8_t x_252; x_249 = lean_ctor_get(x_244, 0); x_250 = lean_ctor_get(x_244, 1); lean_dec(x_250); -x_251 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_245); +x_251 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_245); x_252 = !lean_is_exclusive(x_251); if (x_252 == 0) { @@ -7333,7 +7506,7 @@ x_258 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_259 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_259, 0, x_258); lean_ctor_set(x_259, 1, x_257); -x_260 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_260 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_261 = lean_array_push(x_260, x_259); x_262 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_263 = lean_alloc_ctor(1, 2, 0); @@ -7470,7 +7643,7 @@ x_331 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_332 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_332, 0, x_331); lean_ctor_set(x_332, 1, x_330); -x_333 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_333 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_334 = lean_array_push(x_333, x_332); x_335 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_336 = lean_alloc_ctor(1, 2, 0); @@ -7553,7 +7726,7 @@ lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; x_371 = lean_ctor_get(x_244, 0); lean_inc(x_371); lean_dec(x_244); -x_372 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_245); +x_372 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_245); x_373 = lean_ctor_get(x_372, 0); lean_inc(x_373); x_374 = lean_ctor_get(x_372, 1); @@ -7577,7 +7750,7 @@ x_380 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_381 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_381, 0, x_380); lean_ctor_set(x_381, 1, x_379); -x_382 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_382 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_383 = lean_array_push(x_382, x_381); x_384 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_385 = lean_alloc_ctor(1, 2, 0); @@ -7676,7 +7849,7 @@ if (lean_is_exclusive(x_244)) { lean_dec_ref(x_244); x_423 = lean_box(0); } -x_424 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_245); +x_424 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_245); x_425 = lean_ctor_get(x_424, 0); lean_inc(x_425); x_426 = lean_ctor_get(x_424, 1); @@ -7700,7 +7873,7 @@ x_432 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_433 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_433, 0, x_432); lean_ctor_set(x_433, 1, x_431); -x_434 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_434 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_435 = lean_array_push(x_434, x_433); x_436 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_437 = lean_alloc_ctor(1, 2, 0); @@ -7838,7 +8011,7 @@ lean_object* x_491; lean_object* x_492; lean_object* x_493; uint8_t x_494; x_491 = lean_ctor_get(x_486, 0); x_492 = lean_ctor_get(x_486, 1); lean_dec(x_492); -x_493 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_487); +x_493 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_487); x_494 = !lean_is_exclusive(x_493); if (x_494 == 0) { @@ -7855,7 +8028,7 @@ x_500 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_501 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_501, 0, x_500); lean_ctor_set(x_501, 1, x_499); -x_502 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_502 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_503 = lean_array_push(x_502, x_501); x_504 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_505 = lean_alloc_ctor(1, 2, 0); @@ -7992,7 +8165,7 @@ x_573 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_574 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_574, 0, x_573); lean_ctor_set(x_574, 1, x_572); -x_575 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_575 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_576 = lean_array_push(x_575, x_574); x_577 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_578 = lean_alloc_ctor(1, 2, 0); @@ -8075,7 +8248,7 @@ lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; x_613 = lean_ctor_get(x_486, 0); lean_inc(x_613); lean_dec(x_486); -x_614 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_487); +x_614 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_487); x_615 = lean_ctor_get(x_614, 0); lean_inc(x_615); x_616 = lean_ctor_get(x_614, 1); @@ -8099,7 +8272,7 @@ x_622 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_623 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_623, 0, x_622); lean_ctor_set(x_623, 1, x_621); -x_624 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_624 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_625 = lean_array_push(x_624, x_623); x_626 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_627 = lean_alloc_ctor(1, 2, 0); @@ -8198,7 +8371,7 @@ if (lean_is_exclusive(x_486)) { lean_dec_ref(x_486); x_665 = lean_box(0); } -x_666 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_487); +x_666 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_487); x_667 = lean_ctor_get(x_666, 0); lean_inc(x_667); x_668 = lean_ctor_get(x_666, 1); @@ -8222,7 +8395,7 @@ x_674 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_675 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_675, 0, x_674); lean_ctor_set(x_675, 1, x_673); -x_676 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_676 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_677 = lean_array_push(x_676, x_675); x_678 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_679 = lean_alloc_ctor(1, 2, 0); @@ -8359,7 +8532,7 @@ lean_object* x_733; lean_object* x_734; lean_object* x_735; uint8_t x_736; x_733 = lean_ctor_get(x_728, 0); x_734 = lean_ctor_get(x_728, 1); lean_dec(x_734); -x_735 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_729); +x_735 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_729); x_736 = !lean_is_exclusive(x_735); if (x_736 == 0) { @@ -8376,7 +8549,7 @@ x_742 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_743 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_743, 0, x_742); lean_ctor_set(x_743, 1, x_741); -x_744 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_744 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_745 = lean_array_push(x_744, x_743); x_746 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_747 = lean_alloc_ctor(1, 2, 0); @@ -8513,7 +8686,7 @@ x_815 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_816 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_816, 0, x_815); lean_ctor_set(x_816, 1, x_814); -x_817 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_817 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_818 = lean_array_push(x_817, x_816); x_819 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_820 = lean_alloc_ctor(1, 2, 0); @@ -8596,7 +8769,7 @@ lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; x_855 = lean_ctor_get(x_728, 0); lean_inc(x_855); lean_dec(x_728); -x_856 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_729); +x_856 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_729); x_857 = lean_ctor_get(x_856, 0); lean_inc(x_857); x_858 = lean_ctor_get(x_856, 1); @@ -8620,7 +8793,7 @@ x_864 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_865 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_865, 0, x_864); lean_ctor_set(x_865, 1, x_863); -x_866 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_866 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_867 = lean_array_push(x_866, x_865); x_868 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_869 = lean_alloc_ctor(1, 2, 0); @@ -8719,7 +8892,7 @@ if (lean_is_exclusive(x_728)) { lean_dec_ref(x_728); x_907 = lean_box(0); } -x_908 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_729); +x_908 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_729); x_909 = lean_ctor_get(x_908, 0); lean_inc(x_909); x_910 = lean_ctor_get(x_908, 1); @@ -8743,7 +8916,7 @@ x_916 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_917 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_917, 0, x_916); lean_ctor_set(x_917, 1, x_915); -x_918 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_918 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_919 = lean_array_push(x_918, x_917); x_920 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_921 = lean_alloc_ctor(1, 2, 0); @@ -8909,7 +9082,7 @@ 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_73____spec__1(x_5, x_983); +x_989 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_983); x_990 = !lean_is_exclusive(x_989); if (x_990 == 0) { @@ -8926,7 +9099,7 @@ 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__27; +x_998 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_999 = lean_array_push(x_998, x_997); x_1000 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_1001 = lean_alloc_ctor(1, 2, 0); @@ -9063,7 +9236,7 @@ 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__27; +x_1071 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_1072 = lean_array_push(x_1071, x_1070); x_1073 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_1074 = lean_alloc_ctor(1, 2, 0); @@ -9146,7 +9319,7 @@ lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_11 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_73____spec__1(x_5, x_983); +x_1110 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_983); x_1111 = lean_ctor_get(x_1110, 0); lean_inc(x_1111); x_1112 = lean_ctor_get(x_1110, 1); @@ -9170,7 +9343,7 @@ 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__27; +x_1120 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_1121 = lean_array_push(x_1120, x_1119); x_1122 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_1123 = lean_alloc_ctor(1, 2, 0); @@ -9269,7 +9442,7 @@ if (lean_is_exclusive(x_982)) { lean_dec_ref(x_982); x_1161 = lean_box(0); } -x_1162 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_983); +x_1162 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_983); x_1163 = lean_ctor_get(x_1162, 0); lean_inc(x_1163); x_1164 = lean_ctor_get(x_1162, 1); @@ -9293,7 +9466,7 @@ 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__27; +x_1172 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_1173 = lean_array_push(x_1172, x_1171); x_1174 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_1175 = lean_alloc_ctor(1, 2, 0); @@ -9448,7 +9621,7 @@ 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_73____spec__1(x_5, x_1233); +x_1239 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_1233); x_1240 = !lean_is_exclusive(x_1239); if (x_1240 == 0) { @@ -9465,7 +9638,7 @@ 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__27; +x_1248 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_1249 = lean_array_push(x_1248, x_1247); x_1250 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_1251 = lean_alloc_ctor(1, 2, 0); @@ -9602,7 +9775,7 @@ 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__27; +x_1321 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_1322 = lean_array_push(x_1321, x_1320); x_1323 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_1324 = lean_alloc_ctor(1, 2, 0); @@ -9685,7 +9858,7 @@ lean_object* x_1359; lean_object* x_1360; lean_object* x_1361; lean_object* x_13 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_73____spec__1(x_5, x_1233); +x_1360 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_1233); x_1361 = lean_ctor_get(x_1360, 0); lean_inc(x_1361); x_1362 = lean_ctor_get(x_1360, 1); @@ -9709,7 +9882,7 @@ 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__27; +x_1370 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_1371 = lean_array_push(x_1370, x_1369); x_1372 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_1373 = lean_alloc_ctor(1, 2, 0); @@ -9808,7 +9981,7 @@ if (lean_is_exclusive(x_1232)) { lean_dec_ref(x_1232); x_1411 = lean_box(0); } -x_1412 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_1233); +x_1412 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_1233); x_1413 = lean_ctor_get(x_1412, 0); lean_inc(x_1413); x_1414 = lean_ctor_get(x_1412, 1); @@ -9832,7 +10005,7 @@ 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__27; +x_1422 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_1423 = lean_array_push(x_1422, x_1421); x_1424 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_1425 = lean_alloc_ctor(1, 2, 0); @@ -9974,7 +10147,7 @@ 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_73____spec__1(x_5, x_1476); +x_1482 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_1476); x_1483 = !lean_is_exclusive(x_1482); if (x_1483 == 0) { @@ -9991,7 +10164,7 @@ 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__27; +x_1491 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_1492 = lean_array_push(x_1491, x_1490); x_1493 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_1494 = lean_alloc_ctor(1, 2, 0); @@ -10128,7 +10301,7 @@ 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__27; +x_1564 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_1565 = lean_array_push(x_1564, x_1563); x_1566 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_1567 = lean_alloc_ctor(1, 2, 0); @@ -10211,7 +10384,7 @@ lean_object* x_1602; lean_object* x_1603; lean_object* x_1604; lean_object* x_16 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_73____spec__1(x_5, x_1476); +x_1603 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_1476); x_1604 = lean_ctor_get(x_1603, 0); lean_inc(x_1604); x_1605 = lean_ctor_get(x_1603, 1); @@ -10235,7 +10408,7 @@ 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__27; +x_1613 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_1614 = lean_array_push(x_1613, x_1612); x_1615 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_1616 = lean_alloc_ctor(1, 2, 0); @@ -10334,7 +10507,7 @@ if (lean_is_exclusive(x_1475)) { lean_dec_ref(x_1475); x_1654 = lean_box(0); } -x_1655 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_1476); +x_1655 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_1476); x_1656 = lean_ctor_get(x_1655, 0); lean_inc(x_1656); x_1657 = lean_ctor_get(x_1655, 1); @@ -10358,7 +10531,7 @@ 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__27; +x_1665 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_1666 = lean_array_push(x_1665, x_1664); x_1667 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_1668 = lean_alloc_ctor(1, 2, 0); @@ -10516,7 +10689,7 @@ 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_73____spec__1(x_5, x_1726); +x_1732 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_1726); x_1733 = !lean_is_exclusive(x_1732); if (x_1733 == 0) { @@ -10533,7 +10706,7 @@ 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__27; +x_1741 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_1742 = lean_array_push(x_1741, x_1740); x_1743 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_1744 = lean_alloc_ctor(1, 2, 0); @@ -10670,7 +10843,7 @@ 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__27; +x_1814 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_1815 = lean_array_push(x_1814, x_1813); x_1816 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_1817 = lean_alloc_ctor(1, 2, 0); @@ -10753,7 +10926,7 @@ lean_object* x_1852; lean_object* x_1853; lean_object* x_1854; lean_object* x_18 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_73____spec__1(x_5, x_1726); +x_1853 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_1726); x_1854 = lean_ctor_get(x_1853, 0); lean_inc(x_1854); x_1855 = lean_ctor_get(x_1853, 1); @@ -10777,7 +10950,7 @@ 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__27; +x_1863 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_1864 = lean_array_push(x_1863, x_1862); x_1865 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_1866 = lean_alloc_ctor(1, 2, 0); @@ -10876,7 +11049,7 @@ if (lean_is_exclusive(x_1725)) { lean_dec_ref(x_1725); x_1904 = lean_box(0); } -x_1905 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_1726); +x_1905 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_1726); x_1906 = lean_ctor_get(x_1905, 0); lean_inc(x_1906); x_1907 = lean_ctor_get(x_1905, 1); @@ -10900,7 +11073,7 @@ 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__27; +x_1915 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_1916 = lean_array_push(x_1915, x_1914); x_1917 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_1918 = lean_alloc_ctor(1, 2, 0); @@ -11031,7 +11204,7 @@ 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_73____spec__1(x_5, x_1965); +x_1971 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_1965); x_1972 = !lean_is_exclusive(x_1971); if (x_1972 == 0) { @@ -11048,7 +11221,7 @@ 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__27; +x_1980 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_1981 = lean_array_push(x_1980, x_1979); x_1982 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_1983 = lean_alloc_ctor(1, 2, 0); @@ -11185,7 +11358,7 @@ 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__27; +x_2053 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_2054 = lean_array_push(x_2053, x_2052); x_2055 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_2056 = lean_alloc_ctor(1, 2, 0); @@ -11268,7 +11441,7 @@ lean_object* x_2091; lean_object* x_2092; lean_object* x_2093; lean_object* x_20 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_73____spec__1(x_5, x_1965); +x_2092 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_1965); x_2093 = lean_ctor_get(x_2092, 0); lean_inc(x_2093); x_2094 = lean_ctor_get(x_2092, 1); @@ -11292,7 +11465,7 @@ 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__27; +x_2102 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_2103 = lean_array_push(x_2102, x_2101); x_2104 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_2105 = lean_alloc_ctor(1, 2, 0); @@ -11391,7 +11564,7 @@ if (lean_is_exclusive(x_1964)) { lean_dec_ref(x_1964); x_2143 = lean_box(0); } -x_2144 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_1965); +x_2144 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_1965); x_2145 = lean_ctor_get(x_2144, 0); lean_inc(x_2145); x_2146 = lean_ctor_get(x_2144, 1); @@ -11415,7 +11588,7 @@ 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__27; +x_2154 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_2155 = lean_array_push(x_2154, x_2153); x_2156 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_2157 = lean_alloc_ctor(1, 2, 0); @@ -11643,7 +11816,7 @@ 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_73____spec__1(x_5, x_2233); +x_2239 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_2233); x_2240 = !lean_is_exclusive(x_2239); if (x_2240 == 0) { @@ -11660,7 +11833,7 @@ 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__27; +x_2248 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_2249 = lean_array_push(x_2248, x_2247); x_2250 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_2251 = lean_alloc_ctor(1, 2, 0); @@ -11797,7 +11970,7 @@ 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__27; +x_2321 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_2322 = lean_array_push(x_2321, x_2320); x_2323 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_2324 = lean_alloc_ctor(1, 2, 0); @@ -11880,7 +12053,7 @@ lean_object* x_2359; lean_object* x_2360; lean_object* x_2361; lean_object* x_23 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_73____spec__1(x_5, x_2233); +x_2360 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_2233); x_2361 = lean_ctor_get(x_2360, 0); lean_inc(x_2361); x_2362 = lean_ctor_get(x_2360, 1); @@ -11904,7 +12077,7 @@ 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__27; +x_2370 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_2371 = lean_array_push(x_2370, x_2369); x_2372 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_2373 = lean_alloc_ctor(1, 2, 0); @@ -12003,7 +12176,7 @@ if (lean_is_exclusive(x_2232)) { lean_dec_ref(x_2232); x_2411 = lean_box(0); } -x_2412 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_2233); +x_2412 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_2233); x_2413 = lean_ctor_get(x_2412, 0); lean_inc(x_2413); x_2414 = lean_ctor_get(x_2412, 1); @@ -12027,7 +12200,7 @@ 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__27; +x_2422 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_2423 = lean_array_push(x_2422, x_2421); x_2424 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_2425 = lean_alloc_ctor(1, 2, 0); @@ -12162,7 +12335,7 @@ 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_73____spec__1(x_5, x_2473); +x_2479 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_2473); x_2480 = !lean_is_exclusive(x_2479); if (x_2480 == 0) { @@ -12179,7 +12352,7 @@ 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__27; +x_2488 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_2489 = lean_array_push(x_2488, x_2487); x_2490 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_2491 = lean_alloc_ctor(1, 2, 0); @@ -12316,7 +12489,7 @@ 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__27; +x_2561 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_2562 = lean_array_push(x_2561, x_2560); x_2563 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_2564 = lean_alloc_ctor(1, 2, 0); @@ -12399,7 +12572,7 @@ lean_object* x_2599; lean_object* x_2600; lean_object* x_2601; lean_object* x_26 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_73____spec__1(x_5, x_2473); +x_2600 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_2473); x_2601 = lean_ctor_get(x_2600, 0); lean_inc(x_2601); x_2602 = lean_ctor_get(x_2600, 1); @@ -12423,7 +12596,7 @@ 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__27; +x_2610 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_2611 = lean_array_push(x_2610, x_2609); x_2612 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_2613 = lean_alloc_ctor(1, 2, 0); @@ -12522,7 +12695,7 @@ if (lean_is_exclusive(x_2472)) { lean_dec_ref(x_2472); x_2651 = lean_box(0); } -x_2652 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_2473); +x_2652 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_2473); x_2653 = lean_ctor_get(x_2652, 0); lean_inc(x_2653); x_2654 = lean_ctor_get(x_2652, 1); @@ -12546,7 +12719,7 @@ 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__27; +x_2662 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_2663 = lean_array_push(x_2662, x_2661); x_2664 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_2665 = lean_alloc_ctor(1, 2, 0); @@ -12680,7 +12853,7 @@ 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_73____spec__1(x_5, x_2713); +x_2719 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_2713); x_2720 = !lean_is_exclusive(x_2719); if (x_2720 == 0) { @@ -12697,7 +12870,7 @@ 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__27; +x_2728 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_2729 = lean_array_push(x_2728, x_2727); x_2730 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_2731 = lean_alloc_ctor(1, 2, 0); @@ -12834,7 +13007,7 @@ 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__27; +x_2801 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_2802 = lean_array_push(x_2801, x_2800); x_2803 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_2804 = lean_alloc_ctor(1, 2, 0); @@ -12917,7 +13090,7 @@ lean_object* x_2839; lean_object* x_2840; lean_object* x_2841; lean_object* x_28 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_73____spec__1(x_5, x_2713); +x_2840 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_2713); x_2841 = lean_ctor_get(x_2840, 0); lean_inc(x_2841); x_2842 = lean_ctor_get(x_2840, 1); @@ -12941,7 +13114,7 @@ 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__27; +x_2850 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_2851 = lean_array_push(x_2850, x_2849); x_2852 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_2853 = lean_alloc_ctor(1, 2, 0); @@ -13040,7 +13213,7 @@ if (lean_is_exclusive(x_2712)) { lean_dec_ref(x_2712); x_2891 = lean_box(0); } -x_2892 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_2713); +x_2892 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_2713); x_2893 = lean_ctor_get(x_2892, 0); lean_inc(x_2893); x_2894 = lean_ctor_get(x_2892, 1); @@ -13064,7 +13237,7 @@ 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__27; +x_2902 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_2903 = lean_array_push(x_2902, x_2901); x_2904 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_2905 = lean_alloc_ctor(1, 2, 0); @@ -13197,7 +13370,7 @@ 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_73____spec__1(x_5, x_2953); +x_2959 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_2953); x_2960 = !lean_is_exclusive(x_2959); if (x_2960 == 0) { @@ -13214,7 +13387,7 @@ 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__27; +x_2968 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_2969 = lean_array_push(x_2968, x_2967); x_2970 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_2971 = lean_alloc_ctor(1, 2, 0); @@ -13351,7 +13524,7 @@ 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__27; +x_3041 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_3042 = lean_array_push(x_3041, x_3040); x_3043 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_3044 = lean_alloc_ctor(1, 2, 0); @@ -13434,7 +13607,7 @@ lean_object* x_3079; lean_object* x_3080; lean_object* x_3081; lean_object* x_30 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_73____spec__1(x_5, x_2953); +x_3080 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_2953); x_3081 = lean_ctor_get(x_3080, 0); lean_inc(x_3081); x_3082 = lean_ctor_get(x_3080, 1); @@ -13458,7 +13631,7 @@ 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__27; +x_3090 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_3091 = lean_array_push(x_3090, x_3089); x_3092 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_3093 = lean_alloc_ctor(1, 2, 0); @@ -13557,7 +13730,7 @@ if (lean_is_exclusive(x_2952)) { lean_dec_ref(x_2952); x_3131 = lean_box(0); } -x_3132 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_2953); +x_3132 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_2953); x_3133 = lean_ctor_get(x_3132, 0); lean_inc(x_3133); x_3134 = lean_ctor_get(x_3132, 1); @@ -13581,7 +13754,7 @@ 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__27; +x_3142 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_3143 = lean_array_push(x_3142, x_3141); x_3144 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_3145 = lean_alloc_ctor(1, 2, 0); @@ -13713,7 +13886,7 @@ 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_73____spec__1(x_5, x_3193); +x_3199 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_3193); x_3200 = !lean_is_exclusive(x_3199); if (x_3200 == 0) { @@ -13730,7 +13903,7 @@ 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__27; +x_3208 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_3209 = lean_array_push(x_3208, x_3207); x_3210 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_3211 = lean_alloc_ctor(1, 2, 0); @@ -13867,7 +14040,7 @@ 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__27; +x_3281 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_3282 = lean_array_push(x_3281, x_3280); x_3283 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_3284 = lean_alloc_ctor(1, 2, 0); @@ -13950,7 +14123,7 @@ lean_object* x_3319; lean_object* x_3320; lean_object* x_3321; lean_object* x_33 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_73____spec__1(x_5, x_3193); +x_3320 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_3193); x_3321 = lean_ctor_get(x_3320, 0); lean_inc(x_3321); x_3322 = lean_ctor_get(x_3320, 1); @@ -13974,7 +14147,7 @@ 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__27; +x_3330 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_3331 = lean_array_push(x_3330, x_3329); x_3332 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_3333 = lean_alloc_ctor(1, 2, 0); @@ -14073,7 +14246,7 @@ if (lean_is_exclusive(x_3192)) { lean_dec_ref(x_3192); x_3371 = lean_box(0); } -x_3372 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_3193); +x_3372 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_3193); x_3373 = lean_ctor_get(x_3372, 0); lean_inc(x_3373); x_3374 = lean_ctor_get(x_3372, 1); @@ -14097,7 +14270,7 @@ 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__27; +x_3382 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_3383 = lean_array_push(x_3382, x_3381); x_3384 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_3385 = lean_alloc_ctor(1, 2, 0); @@ -14228,7 +14401,7 @@ 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_73____spec__1(x_5, x_3433); +x_3439 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_3433); x_3440 = !lean_is_exclusive(x_3439); if (x_3440 == 0) { @@ -14245,7 +14418,7 @@ 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__27; +x_3448 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_3449 = lean_array_push(x_3448, x_3447); x_3450 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_3451 = lean_alloc_ctor(1, 2, 0); @@ -14383,7 +14556,7 @@ 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__27; +x_3521 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_3522 = lean_array_push(x_3521, x_3520); x_3523 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_3524 = lean_alloc_ctor(1, 2, 0); @@ -14467,7 +14640,7 @@ lean_object* x_3559; lean_object* x_3560; lean_object* x_3561; lean_object* x_35 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_73____spec__1(x_5, x_3433); +x_3560 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_3433); x_3561 = lean_ctor_get(x_3560, 0); lean_inc(x_3561); x_3562 = lean_ctor_get(x_3560, 1); @@ -14491,7 +14664,7 @@ 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__27; +x_3570 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_3571 = lean_array_push(x_3570, x_3569); x_3572 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_3573 = lean_alloc_ctor(1, 2, 0); @@ -14591,7 +14764,7 @@ if (lean_is_exclusive(x_3432)) { lean_dec_ref(x_3432); x_3611 = lean_box(0); } -x_3612 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_3433); +x_3612 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_3433); x_3613 = lean_ctor_get(x_3612, 0); lean_inc(x_3613); x_3614 = lean_ctor_get(x_3612, 1); @@ -14615,7 +14788,7 @@ 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__27; +x_3622 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_3623 = lean_array_push(x_3622, x_3621); x_3624 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_3625 = lean_alloc_ctor(1, 2, 0); @@ -16917,7 +17090,7 @@ lean_dec(x_10); x_12 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__6; x_13 = lean_alloc_closure((void*)(l_Lean_Elab_Term_expandWhereDecls___lambda__2), 2, 1); lean_closure_set(x_13, 0, x_12); -x_14 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(x_11, x_13); +x_14 = l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(x_11, x_13); lean_dec(x_11); if (lean_obj_tag(x_14) == 0) { @@ -16936,7 +17109,7 @@ lean_object* x_17; lean_object* x_18; uint8_t x_19; x_17 = lean_ctor_get(x_14, 0); lean_inc(x_17); lean_dec(x_14); -x_18 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_3, x_4); +x_18 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_3, x_4); x_19 = !lean_is_exclusive(x_18); if (x_19 == 0) { @@ -16968,7 +17141,7 @@ x_34 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___ x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); -x_36 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_36 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_37 = lean_array_push(x_36, x_35); x_38 = l_Lean_Elab_Term_expandWhereDecls___closed__8; x_39 = lean_alloc_ctor(1, 2, 0); @@ -17028,7 +17201,7 @@ x_66 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___ x_67 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_67, 0, x_66); lean_ctor_set(x_67, 1, x_65); -x_68 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_68 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_69 = lean_array_push(x_68, x_67); x_70 = l_Lean_Elab_Term_expandWhereDecls___closed__8; x_71 = lean_alloc_ctor(1, 2, 0); @@ -17272,31 +17445,22 @@ return x_3; static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__10() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(3u); -x_2 = lean_mk_empty_array_with_capacity(x_1); -return x_2; -} -} -static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__11() { -_start: -{ lean_object* x_1; x_1 = lean_mk_string("Tactic"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__12() { +static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__11() { _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__4; -x_2 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__11; +x_2 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__10; 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_expandMatchAltsIntoMatchAux___closed__13() { +static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__12() { _start: { lean_object* x_1; @@ -17304,17 +17468,17 @@ x_1 = lean_mk_string("seq1"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__14() { +static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__12; -x_2 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__13; +x_1 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__11; +x_2 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__12; 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_expandMatchAltsIntoMatchAux___closed__15() { +static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__14() { _start: { lean_object* x_1; @@ -17322,17 +17486,17 @@ x_1 = lean_mk_string("intro"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__16() { +static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__12; -x_2 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__15; +x_1 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__11; +x_2 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__14; 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_expandMatchAltsIntoMatchAux___closed__17() { +static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -17344,11 +17508,11 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__18() { +static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__12; +x_1 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__11; x_2 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -17383,7 +17547,7 @@ lean_inc(x_12); lean_inc(x_15); lean_ctor_set(x_5, 2, x_12); lean_inc(x_5); -x_17 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_6); +x_17 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_6); x_18 = lean_ctor_get(x_17, 0); lean_inc(x_18); x_19 = lean_ctor_get(x_17, 1); @@ -17399,7 +17563,7 @@ lean_ctor_set(x_24, 1, x_23); lean_ctor_set(x_24, 2, x_21); lean_ctor_set(x_24, 3, x_22); lean_inc(x_5); -x_25 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_19); +x_25 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_19); x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); x_27 = lean_ctor_get(x_25, 1); @@ -17429,7 +17593,7 @@ lean_inc(x_37); x_38 = lean_ctor_get(x_36, 1); lean_inc(x_38); lean_dec(x_36); -x_39 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_38); +x_39 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_38); x_40 = !lean_is_exclusive(x_39); if (x_40 == 0) { @@ -17444,7 +17608,7 @@ lean_inc(x_41); x_44 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_44, 0, x_41); lean_ctor_set(x_44, 1, x_43); -x_45 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_45 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_46 = lean_array_push(x_45, x_24); x_47 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_48 = lean_alloc_ctor(1, 2, 0); @@ -17454,7 +17618,7 @@ x_49 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_50 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_50, 0, x_41); lean_ctor_set(x_50, 1, x_49); -x_51 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__10; +x_51 = l_Lean_Elab_Term_quoteAutoTactic___closed__34; x_52 = lean_array_push(x_51, x_48); x_53 = lean_array_push(x_52, x_50); x_54 = lean_array_push(x_53, x_37); @@ -17493,7 +17657,7 @@ lean_inc(x_64); x_68 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_68, 0, x_64); lean_ctor_set(x_68, 1, x_67); -x_69 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_69 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_70 = lean_array_push(x_69, x_24); x_71 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_72 = lean_alloc_ctor(1, 2, 0); @@ -17503,7 +17667,7 @@ x_73 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_74 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_74, 0, x_64); lean_ctor_set(x_74, 1, x_73); -x_75 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__10; +x_75 = l_Lean_Elab_Term_quoteAutoTactic___closed__34; x_76 = lean_array_push(x_75, x_72); x_77 = lean_array_push(x_76, x_74); x_78 = lean_array_push(x_77, x_37); @@ -17536,18 +17700,18 @@ lean_inc(x_89); x_90 = lean_ctor_get(x_36, 1); lean_inc(x_90); lean_dec(x_36); -x_91 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_90); +x_91 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_90); x_92 = !lean_is_exclusive(x_91); if (x_92 == 0) { lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; x_93 = lean_ctor_get(x_91, 0); -x_94 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__15; +x_94 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__14; lean_inc(x_93); x_95 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_95, 0, x_93); lean_ctor_set(x_95, 1, x_94); -x_96 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_96 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_97 = lean_array_push(x_96, x_24); x_98 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_99 = lean_alloc_ctor(1, 2, 0); @@ -17555,7 +17719,7 @@ lean_ctor_set(x_99, 0, x_98); lean_ctor_set(x_99, 1, x_97); x_100 = lean_array_push(x_30, x_95); x_101 = lean_array_push(x_100, x_99); -x_102 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__16; +x_102 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__15; x_103 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_103, 0, x_102); lean_ctor_set(x_103, 1, x_101); @@ -17563,7 +17727,7 @@ x_104 = l_Lean_Elab_Term_expandWhereDecls___closed__10; x_105 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_105, 0, x_93); lean_ctor_set(x_105, 1, x_104); -x_106 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__10; +x_106 = l_Lean_Elab_Term_quoteAutoTactic___closed__34; x_107 = lean_array_push(x_106, x_103); x_108 = lean_array_push(x_107, x_105); x_109 = lean_array_push(x_108, x_89); @@ -17571,7 +17735,7 @@ x_110 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_110, 0, x_98); lean_ctor_set(x_110, 1, x_109); x_111 = lean_array_push(x_96, x_110); -x_112 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__14; +x_112 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__13; x_113 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_113, 0, x_112); lean_ctor_set(x_113, 1, x_111); @@ -17586,12 +17750,12 @@ x_115 = lean_ctor_get(x_91, 1); lean_inc(x_115); lean_inc(x_114); lean_dec(x_91); -x_116 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__15; +x_116 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__14; lean_inc(x_114); x_117 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_117, 0, x_114); lean_ctor_set(x_117, 1, x_116); -x_118 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_118 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_119 = lean_array_push(x_118, x_24); x_120 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_121 = lean_alloc_ctor(1, 2, 0); @@ -17599,7 +17763,7 @@ lean_ctor_set(x_121, 0, x_120); lean_ctor_set(x_121, 1, x_119); x_122 = lean_array_push(x_30, x_117); x_123 = lean_array_push(x_122, x_121); -x_124 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__16; +x_124 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__15; x_125 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_125, 0, x_124); lean_ctor_set(x_125, 1, x_123); @@ -17607,7 +17771,7 @@ x_126 = l_Lean_Elab_Term_expandWhereDecls___closed__10; x_127 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_127, 0, x_114); lean_ctor_set(x_127, 1, x_126); -x_128 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__10; +x_128 = l_Lean_Elab_Term_quoteAutoTactic___closed__34; x_129 = lean_array_push(x_128, x_125); x_130 = lean_array_push(x_129, x_127); x_131 = lean_array_push(x_130, x_89); @@ -17615,7 +17779,7 @@ x_132 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_132, 0, x_120); lean_ctor_set(x_132, 1, x_131); x_133 = lean_array_push(x_118, x_132); -x_134 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__14; +x_134 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__13; x_135 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_135, 0, x_134); lean_ctor_set(x_135, 1, x_133); @@ -17650,7 +17814,7 @@ lean_ctor_set(x_142, 3, x_139); lean_ctor_set(x_142, 4, x_140); lean_ctor_set(x_142, 5, x_141); lean_inc(x_142); -x_143 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_142, x_6); +x_143 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_142, x_6); x_144 = lean_ctor_get(x_143, 0); lean_inc(x_144); x_145 = lean_ctor_get(x_143, 1); @@ -17666,7 +17830,7 @@ lean_ctor_set(x_150, 1, x_149); lean_ctor_set(x_150, 2, x_147); lean_ctor_set(x_150, 3, x_148); lean_inc(x_142); -x_151 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_142, x_145); +x_151 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_142, x_145); x_152 = lean_ctor_get(x_151, 0); lean_inc(x_152); x_153 = lean_ctor_get(x_151, 1); @@ -17696,7 +17860,7 @@ lean_inc(x_163); x_164 = lean_ctor_get(x_162, 1); lean_inc(x_164); lean_dec(x_162); -x_165 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_142, x_164); +x_165 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_142, x_164); x_166 = lean_ctor_get(x_165, 0); lean_inc(x_166); x_167 = lean_ctor_get(x_165, 1); @@ -17718,7 +17882,7 @@ lean_inc(x_166); x_171 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_171, 0, x_166); lean_ctor_set(x_171, 1, x_170); -x_172 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_172 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_173 = lean_array_push(x_172, x_150); x_174 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_175 = lean_alloc_ctor(1, 2, 0); @@ -17728,7 +17892,7 @@ x_176 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_177 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_177, 0, x_166); lean_ctor_set(x_177, 1, x_176); -x_178 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__10; +x_178 = l_Lean_Elab_Term_quoteAutoTactic___closed__34; x_179 = lean_array_push(x_178, x_175); x_180 = lean_array_push(x_179, x_177); x_181 = lean_array_push(x_180, x_163); @@ -17764,7 +17928,7 @@ lean_inc(x_192); x_193 = lean_ctor_get(x_162, 1); lean_inc(x_193); lean_dec(x_162); -x_194 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_142, x_193); +x_194 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_142, x_193); x_195 = lean_ctor_get(x_194, 0); lean_inc(x_195); x_196 = lean_ctor_get(x_194, 1); @@ -17777,12 +17941,12 @@ if (lean_is_exclusive(x_194)) { lean_dec_ref(x_194); x_197 = lean_box(0); } -x_198 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__15; +x_198 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__14; lean_inc(x_195); x_199 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_199, 0, x_195); lean_ctor_set(x_199, 1, x_198); -x_200 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_200 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_201 = lean_array_push(x_200, x_150); x_202 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_203 = lean_alloc_ctor(1, 2, 0); @@ -17790,7 +17954,7 @@ lean_ctor_set(x_203, 0, x_202); lean_ctor_set(x_203, 1, x_201); x_204 = lean_array_push(x_156, x_199); x_205 = lean_array_push(x_204, x_203); -x_206 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__16; +x_206 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__15; x_207 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_207, 0, x_206); lean_ctor_set(x_207, 1, x_205); @@ -17798,7 +17962,7 @@ x_208 = l_Lean_Elab_Term_expandWhereDecls___closed__10; x_209 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_209, 0, x_195); lean_ctor_set(x_209, 1, x_208); -x_210 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__10; +x_210 = l_Lean_Elab_Term_quoteAutoTactic___closed__34; x_211 = lean_array_push(x_210, x_207); x_212 = lean_array_push(x_211, x_209); x_213 = lean_array_push(x_212, x_192); @@ -17806,7 +17970,7 @@ x_214 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_214, 0, x_202); lean_ctor_set(x_214, 1, x_213); x_215 = lean_array_push(x_200, x_214); -x_216 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__14; +x_216 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__13; x_217 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_217, 0, x_216); lean_ctor_set(x_217, 1, x_215); @@ -17869,7 +18033,7 @@ lean_ctor_set(x_229, 3, x_225); lean_ctor_set(x_229, 4, x_226); lean_ctor_set(x_229, 5, x_227); lean_inc(x_229); -x_230 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_229, x_222); +x_230 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_229, x_222); x_231 = lean_ctor_get(x_230, 0); lean_inc(x_231); x_232 = lean_ctor_get(x_230, 1); @@ -17885,7 +18049,7 @@ lean_ctor_set(x_237, 1, x_236); lean_ctor_set(x_237, 2, x_234); lean_ctor_set(x_237, 3, x_235); lean_inc(x_229); -x_238 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_229, x_232); +x_238 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_229, x_232); x_239 = lean_ctor_get(x_238, 0); lean_inc(x_239); x_240 = lean_ctor_get(x_238, 1); @@ -17915,7 +18079,7 @@ lean_inc(x_250); x_251 = lean_ctor_get(x_249, 1); lean_inc(x_251); lean_dec(x_249); -x_252 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_229, x_251); +x_252 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_229, x_251); x_253 = lean_ctor_get(x_252, 0); lean_inc(x_253); x_254 = lean_ctor_get(x_252, 1); @@ -17937,7 +18101,7 @@ lean_inc(x_253); x_258 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_258, 0, x_253); lean_ctor_set(x_258, 1, x_257); -x_259 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_259 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_260 = lean_array_push(x_259, x_237); x_261 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_262 = lean_alloc_ctor(1, 2, 0); @@ -17947,7 +18111,7 @@ x_263 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_264 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_264, 0, x_253); lean_ctor_set(x_264, 1, x_263); -x_265 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__10; +x_265 = l_Lean_Elab_Term_quoteAutoTactic___closed__34; x_266 = lean_array_push(x_265, x_262); x_267 = lean_array_push(x_266, x_264); x_268 = lean_array_push(x_267, x_250); @@ -17983,7 +18147,7 @@ lean_inc(x_279); x_280 = lean_ctor_get(x_249, 1); lean_inc(x_280); lean_dec(x_249); -x_281 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_229, x_280); +x_281 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_229, x_280); x_282 = lean_ctor_get(x_281, 0); lean_inc(x_282); x_283 = lean_ctor_get(x_281, 1); @@ -17996,12 +18160,12 @@ if (lean_is_exclusive(x_281)) { lean_dec_ref(x_281); x_284 = lean_box(0); } -x_285 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__15; +x_285 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__14; lean_inc(x_282); x_286 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_286, 0, x_282); lean_ctor_set(x_286, 1, x_285); -x_287 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_287 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_288 = lean_array_push(x_287, x_237); x_289 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_290 = lean_alloc_ctor(1, 2, 0); @@ -18009,7 +18173,7 @@ lean_ctor_set(x_290, 0, x_289); lean_ctor_set(x_290, 1, x_288); x_291 = lean_array_push(x_243, x_286); x_292 = lean_array_push(x_291, x_290); -x_293 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__16; +x_293 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__15; x_294 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_294, 0, x_293); lean_ctor_set(x_294, 1, x_292); @@ -18017,7 +18181,7 @@ x_295 = l_Lean_Elab_Term_expandWhereDecls___closed__10; x_296 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_296, 0, x_282); lean_ctor_set(x_296, 1, x_295); -x_297 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__10; +x_297 = l_Lean_Elab_Term_quoteAutoTactic___closed__34; x_298 = lean_array_push(x_297, x_294); x_299 = lean_array_push(x_298, x_296); x_300 = lean_array_push(x_299, x_279); @@ -18025,7 +18189,7 @@ x_301 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_301, 0, x_289); lean_ctor_set(x_301, 1, x_300); x_302 = lean_array_push(x_287, x_301); -x_303 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__14; +x_303 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__13; x_304 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_304, 0, x_303); lean_ctor_set(x_304, 1, x_302); @@ -18045,7 +18209,7 @@ else if (x_2 == 0) { lean_object* x_306; uint8_t x_307; -x_306 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_6); +x_306 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_6); x_307 = !lean_is_exclusive(x_306); if (x_307 == 0) { @@ -18065,7 +18229,7 @@ x_315 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___clos x_316 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_317 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___spec__1(x_315, x_316, x_312, x_313, x_314); x_318 = x_317; -x_319 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__17; +x_319 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__16; x_320 = l_Lean_mkSepArray(x_318, x_319); lean_dec(x_318); x_321 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBindersAux___rarg___closed__1; @@ -18114,7 +18278,7 @@ x_344 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___clos x_345 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_346 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___spec__1(x_344, x_345, x_341, x_342, x_343); x_347 = x_346; -x_348 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__17; +x_348 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__16; x_349 = l_Lean_mkSepArray(x_347, x_348); lean_dec(x_347); x_350 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBindersAux___rarg___closed__1; @@ -18147,7 +18311,7 @@ return x_365; else { lean_object* x_366; uint8_t x_367; -x_366 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_6); +x_366 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_6); x_367 = !lean_is_exclusive(x_366); if (x_367 == 0) { @@ -18167,7 +18331,7 @@ x_375 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___clos x_376 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_377 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___spec__2(x_375, x_376, x_372, x_373, x_374); x_378 = x_377; -x_379 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__17; +x_379 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__16; x_380 = l_Lean_mkSepArray(x_378, x_379); lean_dec(x_378); x_381 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBindersAux___rarg___closed__1; @@ -18187,7 +18351,7 @@ x_390 = lean_array_push(x_389, x_384); x_391 = lean_array_push(x_390, x_376); x_392 = lean_array_push(x_391, x_386); x_393 = lean_array_push(x_392, x_1); -x_394 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__18; +x_394 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__17; x_395 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_395, 0, x_394); lean_ctor_set(x_395, 1, x_393); @@ -18216,7 +18380,7 @@ x_404 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___clos x_405 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_406 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___spec__2(x_404, x_405, x_401, x_402, x_403); x_407 = x_406; -x_408 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__17; +x_408 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__16; x_409 = l_Lean_mkSepArray(x_407, x_408); lean_dec(x_407); x_410 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBindersAux___rarg___closed__1; @@ -18236,7 +18400,7 @@ x_419 = lean_array_push(x_418, x_413); x_420 = lean_array_push(x_419, x_405); x_421 = lean_array_push(x_420, x_415); x_422 = lean_array_push(x_421, x_1); -x_423 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__18; +x_423 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__17; x_424 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_424, 0, x_423); lean_ctor_set(x_424, 1, x_422); @@ -18475,7 +18639,7 @@ lean_inc(x_12); lean_inc(x_15); lean_ctor_set(x_5, 2, x_12); lean_inc(x_5); -x_17 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_6); +x_17 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_6); x_18 = lean_ctor_get(x_17, 0); lean_inc(x_18); x_19 = lean_ctor_get(x_17, 1); @@ -18515,7 +18679,7 @@ lean_inc(x_34); x_35 = lean_ctor_get(x_33, 1); lean_inc(x_35); lean_dec(x_33); -x_36 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_35); +x_36 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_35); x_37 = !lean_is_exclusive(x_36); if (x_37 == 0) { @@ -18536,7 +18700,7 @@ lean_ctor_set(x_42, 0, x_38); lean_ctor_set(x_42, 1, x_25); lean_ctor_set(x_42, 2, x_23); lean_ctor_set(x_42, 3, x_24); -x_43 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_43 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_44 = lean_array_push(x_43, x_42); x_45 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_46 = lean_alloc_ctor(1, 2, 0); @@ -18546,7 +18710,7 @@ x_47 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_48 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_48, 0, x_38); lean_ctor_set(x_48, 1, x_47); -x_49 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__10; +x_49 = l_Lean_Elab_Term_quoteAutoTactic___closed__34; x_50 = lean_array_push(x_49, x_46); x_51 = lean_array_push(x_50, x_48); x_52 = lean_array_push(x_51, x_34); @@ -18591,7 +18755,7 @@ lean_ctor_set(x_67, 0, x_62); lean_ctor_set(x_67, 1, x_25); lean_ctor_set(x_67, 2, x_23); lean_ctor_set(x_67, 3, x_24); -x_68 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_68 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_69 = lean_array_push(x_68, x_67); x_70 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_71 = lean_alloc_ctor(1, 2, 0); @@ -18601,7 +18765,7 @@ x_72 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_73 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_73, 0, x_62); lean_ctor_set(x_73, 1, x_72); -x_74 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__10; +x_74 = l_Lean_Elab_Term_quoteAutoTactic___closed__34; x_75 = lean_array_push(x_74, x_71); x_76 = lean_array_push(x_75, x_73); x_77 = lean_array_push(x_76, x_34); @@ -18675,7 +18839,7 @@ lean_ctor_set(x_97, 3, x_94); lean_ctor_set(x_97, 4, x_95); lean_ctor_set(x_97, 5, x_96); lean_inc(x_97); -x_98 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_97, x_6); +x_98 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_97, x_6); x_99 = lean_ctor_get(x_98, 0); lean_inc(x_99); x_100 = lean_ctor_get(x_98, 1); @@ -18715,7 +18879,7 @@ lean_inc(x_115); x_116 = lean_ctor_get(x_114, 1); lean_inc(x_116); lean_dec(x_114); -x_117 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_97, x_116); +x_117 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_97, x_116); x_118 = lean_ctor_get(x_117, 0); lean_inc(x_118); x_119 = lean_ctor_get(x_117, 1); @@ -18743,7 +18907,7 @@ lean_ctor_set(x_124, 0, x_118); lean_ctor_set(x_124, 1, x_106); lean_ctor_set(x_124, 2, x_104); lean_ctor_set(x_124, 3, x_105); -x_125 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_125 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_126 = lean_array_push(x_125, x_124); x_127 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_128 = lean_alloc_ctor(1, 2, 0); @@ -18753,7 +18917,7 @@ x_129 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_130 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_130, 0, x_118); lean_ctor_set(x_130, 1, x_129); -x_131 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__10; +x_131 = l_Lean_Elab_Term_quoteAutoTactic___closed__34; x_132 = lean_array_push(x_131, x_128); x_133 = lean_array_push(x_132, x_130); x_134 = lean_array_push(x_133, x_115); @@ -18857,7 +19021,7 @@ lean_ctor_set(x_159, 3, x_155); lean_ctor_set(x_159, 4, x_156); lean_ctor_set(x_159, 5, x_157); lean_inc(x_159); -x_160 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_159, x_152); +x_160 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_159, x_152); x_161 = lean_ctor_get(x_160, 0); lean_inc(x_161); x_162 = lean_ctor_get(x_160, 1); @@ -18897,7 +19061,7 @@ lean_inc(x_177); x_178 = lean_ctor_get(x_176, 1); lean_inc(x_178); lean_dec(x_176); -x_179 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_159, x_178); +x_179 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_159, x_178); x_180 = lean_ctor_get(x_179, 0); lean_inc(x_180); x_181 = lean_ctor_get(x_179, 1); @@ -18925,7 +19089,7 @@ lean_ctor_set(x_186, 0, x_180); lean_ctor_set(x_186, 1, x_168); lean_ctor_set(x_186, 2, x_166); lean_ctor_set(x_186, 3, x_167); -x_187 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_187 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_188 = lean_array_push(x_187, x_186); x_189 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_190 = lean_alloc_ctor(1, 2, 0); @@ -18935,7 +19099,7 @@ x_191 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_192 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_192, 0, x_180); lean_ctor_set(x_192, 1, x_191); -x_193 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__10; +x_193 = l_Lean_Elab_Term_quoteAutoTactic___closed__34; x_194 = lean_array_push(x_193, x_190); x_195 = lean_array_push(x_194, x_192); x_196 = lean_array_push(x_195, x_177); @@ -18995,7 +19159,7 @@ else { lean_object* x_211; uint8_t x_212; lean_inc(x_5); -x_211 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_6); +x_211 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_6); x_212 = !lean_is_exclusive(x_211); if (x_212 == 0) { @@ -19016,7 +19180,7 @@ x_221 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___clos x_222 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_223 = l_Array_mapMUnsafe_map___at_Lean_Elab_Term_expandMatchAltsWhereDecls_loop___spec__1(x_221, x_222, x_218, x_219, x_220); x_224 = x_223; -x_225 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__17; +x_225 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__16; x_226 = l_Lean_mkSepArray(x_224, x_225); lean_dec(x_224); x_227 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBindersAux___rarg___closed__1; @@ -19077,7 +19241,7 @@ x_252 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___clos x_253 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_254 = l_Array_mapMUnsafe_map___at_Lean_Elab_Term_expandMatchAltsWhereDecls_loop___spec__1(x_252, x_253, x_249, x_250, x_251); x_255 = x_254; -x_256 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__17; +x_256 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__16; x_257 = l_Lean_mkSepArray(x_255, x_256); lean_dec(x_255); x_258 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBindersAux___rarg___closed__1; @@ -19285,7 +19449,7 @@ lean_dec(x_24); x_36 = lean_ctor_get(x_25, 0); lean_inc(x_36); lean_dec(x_25); -x_37 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_34); +x_37 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_34); x_38 = !lean_is_exclusive(x_37); if (x_38 == 0) { @@ -19306,7 +19470,7 @@ x_46 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_47 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_47, 0, x_39); lean_ctor_set(x_47, 1, x_46); -x_48 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__10; +x_48 = l_Lean_Elab_Term_quoteAutoTactic___closed__34; x_49 = lean_array_push(x_48, x_45); x_50 = lean_array_push(x_49, x_47); x_51 = lean_array_push(x_50, x_36); @@ -19345,7 +19509,7 @@ x_65 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_66 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_66, 0, x_57); lean_ctor_set(x_66, 1, x_65); -x_67 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__10; +x_67 = l_Lean_Elab_Term_quoteAutoTactic___closed__34; x_68 = lean_array_push(x_67, x_64); x_69 = lean_array_push(x_68, x_66); x_70 = lean_array_push(x_69, x_36); @@ -21863,7 +22027,7 @@ lean_inc(x_20); x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); lean_dec(x_19); -x_22 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_22 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_23 = lean_array_push(x_22, x_4); x_24 = 0; x_25 = l_Lean_Meta_mkLambdaFVars(x_23, x_20, x_24, x_24, x_7, x_8, x_9, x_10, x_21); @@ -22007,7 +22171,7 @@ lean_inc(x_21); x_22 = lean_ctor_get(x_20, 1); lean_inc(x_22); lean_dec(x_20); -x_23 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_23 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_24 = lean_array_push(x_23, x_5); x_25 = 0; x_26 = l_Lean_Meta_mkLambdaFVars(x_24, x_21, x_25, x_4, x_8, x_9, x_10, x_11, x_22); @@ -22270,7 +22434,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_1401____closed__3; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__3; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } @@ -23253,7 +23417,7 @@ x_69 = l_Lean_Elab_Term_elabLetDeclCore___closed__9; x_70 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_70, 0, x_69); lean_ctor_set(x_70, 1, x_68); -x_71 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_71 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_72 = lean_array_push(x_71, x_70); x_73 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__3___closed__8; x_74 = lean_alloc_ctor(1, 2, 0); @@ -23679,7 +23843,7 @@ x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_6691_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_6707_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -23833,6 +23997,30 @@ l_Lean_Elab_Term_quoteAutoTactic___closed__35 = _init_l_Lean_Elab_Term_quoteAuto lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__35); l_Lean_Elab_Term_quoteAutoTactic___closed__36 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__36(); lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__36); +l_Lean_Elab_Term_quoteAutoTactic___closed__37 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__37(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__37); +l_Lean_Elab_Term_quoteAutoTactic___closed__38 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__38(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__38); +l_Lean_Elab_Term_quoteAutoTactic___closed__39 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__39(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__39); +l_Lean_Elab_Term_quoteAutoTactic___closed__40 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__40(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__40); +l_Lean_Elab_Term_quoteAutoTactic___closed__41 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__41(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__41); +l_Lean_Elab_Term_quoteAutoTactic___closed__42 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__42(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__42); +l_Lean_Elab_Term_quoteAutoTactic___closed__43 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__43(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__43); +l_Lean_Elab_Term_quoteAutoTactic___closed__44 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__44(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__44); +l_Lean_Elab_Term_quoteAutoTactic___closed__45 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__45(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__45); +l_Lean_Elab_Term_quoteAutoTactic___closed__46 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__46(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__46); +l_Lean_Elab_Term_quoteAutoTactic___closed__47 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__47(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__47); +l_Lean_Elab_Term_quoteAutoTactic___closed__48 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__48(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__48); l_Lean_Elab_Term_declareTacticSyntax___lambda__2___closed__1 = _init_l_Lean_Elab_Term_declareTacticSyntax___lambda__2___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_declareTacticSyntax___lambda__2___closed__1); l_Lean_Elab_Term_declareTacticSyntax___lambda__2___closed__2 = _init_l_Lean_Elab_Term_declareTacticSyntax___lambda__2___closed__2(); @@ -23923,19 +24111,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_1401____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1401____closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1401____closed__1); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1401____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1401____closed__2(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1401____closed__2); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1401____closed__3 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1401____closed__3(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1401____closed__3); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1401____closed__4 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1401____closed__4(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1401____closed__4); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1401____closed__5 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1401____closed__5(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1401____closed__5); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__1); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__2); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__3 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__3(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__3); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__4 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__4(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__4); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__5 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____closed__5(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417____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_1401_(lean_io_mk_world()); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1417_(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); @@ -24101,8 +24289,6 @@ l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___cl lean_mark_persistent(l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__16); l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__17 = _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__17(); lean_mark_persistent(l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__17); -l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__18 = _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__18(); -lean_mark_persistent(l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__18); l___regBuiltin_Lean_Elab_Term_expandFun___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_expandFun___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_expandFun___closed__1); l___regBuiltin_Lean_Elab_Term_expandFun___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_expandFun___closed__2(); @@ -24240,7 +24426,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabLetTmpDecl___closed__5); res = l___regBuiltin_Lean_Elab_Term_elabLetTmpDecl(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_6691_(lean_io_mk_world()); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_6707_(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/BuiltinCommand.c b/stage0/stdlib/Lean/Elab/BuiltinCommand.c index 5dbf42df4e..03af3e5dfb 100644 --- a/stage0/stdlib/Lean/Elab/BuiltinCommand.c +++ b/stage0/stdlib/Lean/Elab/BuiltinCommand.c @@ -19,7 +19,6 @@ LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabSetOption_ LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabVariable(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_resolveNamespace___at_Lean_Elab_Command_elabExport___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Command_elabModuleDoc___closed__8; -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); lean_object* l_Lean_KVMap_setBool(lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabSection(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_elabSection___closed__3; @@ -120,6 +119,7 @@ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_BuiltinCom lean_object* l_Lean_Elab_Term_ensureNoUnassignedMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Command_elabVariable(lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Command_elabSection(lean_object*); +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabEvalUnsafe___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_BuiltinCommand_0__Lean_Elab_Command_addScope___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduce(lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -16313,7 +16313,7 @@ x_4 = lean_unsigned_to_nat(0u); x_5 = l_Lean_Syntax_getArg(x_1, x_4); x_6 = lean_unsigned_to_nat(2u); x_7 = l_Lean_Syntax_getArg(x_1, x_6); -x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_8 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_9 = !lean_is_exclusive(x_8); if (x_9 == 0) { diff --git a/stage0/stdlib/Lean/Elab/BuiltinNotation.c b/stage0/stdlib/Lean/Elab/BuiltinNotation.c index 08321632d1..723ad42a87 100644 --- a/stage0/stdlib/Lean/Elab/BuiltinNotation.c +++ b/stage0/stdlib/Lean/Elab/BuiltinNotation.c @@ -20,7 +20,6 @@ lean_object* l_Lean_getConstInfo___at_Lean_Elab_Term_mkConst___spec__1(lean_obje LEAN_EXPORT lean_object* l_Lean_getConstInfoCtor___at_Lean_Elab_Term_elabAnonymousCtor___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_expandDbgTrace___closed__9; lean_object* l_Lean_mkCIdentFrom(lean_object*, lean_object*); -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); lean_object* l_Lean_extractMacroScopes(lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_elabForall___spec__1___rarg(lean_object*); size_t lean_usize_add(size_t, size_t); @@ -103,6 +102,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_ static lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___lambda__1___closed__8; lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_expandAssert___closed__2; +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___lambda__1___closed__4; static lean_object* l_Lean_Elab_Term_elabAnonymousCtor___lambda__3___closed__15; static lean_object* l_Lean_Elab_Term_mkPairs_loop___closed__6; @@ -407,7 +407,6 @@ static lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elab static lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabTParserMacroAux___closed__5; static lean_object* l___regBuiltin_Lean_Elab_Term_elabStateRefT___closed__5; lean_object* l_Lean_Syntax_getArgs(lean_object*); -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(size_t, size_t, lean_object*); uint8_t l_Lean_BinderInfo_isExplicit(uint8_t); lean_object* l_Lean_Syntax_getKind(lean_object*); static lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___lambda__1___closed__7; @@ -562,6 +561,7 @@ extern lean_object* l_Lean_levelOne; static lean_object* l___regBuiltin_Lean_Elab_Term_expandSuffices___closed__2; LEAN_EXPORT uint8_t l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_hasCDot(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabTParserMacroAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Term_expandSuffices___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabSubst___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_expandAssert(lean_object*); @@ -1178,7 +1178,7 @@ x_34 = lean_usize_of_nat(x_33); lean_dec(x_33); x_35 = 0; x_36 = x_32; -x_37 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_34, x_35, x_36); +x_37 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_34, x_35, x_36); x_38 = x_37; x_39 = l_Lean_Elab_Term_elabAnonymousCtor___lambda__3___closed__6; x_40 = l_Lean_mkSepArray(x_38, x_39); @@ -2583,7 +2583,7 @@ return x_24; else { lean_object* x_25; uint8_t x_26; -x_25 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_25 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_26 = !lean_is_exclusive(x_25); if (x_26 == 0) { @@ -2747,7 +2747,7 @@ x_90 = l_Lean_Syntax_getArg(x_11, x_8); lean_dec(x_11); x_91 = l_Lean_Elab_Term_expandShow___closed__14; x_92 = l_Lean_mkIdentFrom(x_1, x_91); -x_93 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_93 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_94 = !lean_is_exclusive(x_93); if (x_94 == 0) { @@ -2962,7 +2962,7 @@ _start: lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; x_10 = lean_unsigned_to_nat(3u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_8, x_9); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_8, x_9); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -3251,7 +3251,7 @@ _start: lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; x_12 = lean_unsigned_to_nat(3u); x_13 = l_Lean_Syntax_getArg(x_1, x_12); -x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_10, x_11); +x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_10, x_11); x_15 = !lean_is_exclusive(x_14); if (x_15 == 0) { @@ -3562,7 +3562,7 @@ lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint x_10 = lean_unsigned_to_nat(3u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); x_12 = l_Lean_Syntax_getArgs(x_2); -x_13 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_8, x_9); +x_13 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_8, x_9); x_14 = !lean_is_exclusive(x_13); if (x_14 == 0) { @@ -3866,7 +3866,7 @@ _start: lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; x_12 = lean_unsigned_to_nat(3u); x_13 = l_Lean_Syntax_getArg(x_1, x_12); -x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_10, x_11); +x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_10, x_11); x_15 = !lean_is_exclusive(x_14); if (x_15 == 0) { @@ -4146,7 +4146,7 @@ lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint x_10 = lean_unsigned_to_nat(3u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); x_12 = l_Lean_Syntax_getArgs(x_2); -x_13 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_8, x_9); +x_13 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_8, x_9); x_14 = !lean_is_exclusive(x_13); if (x_14 == 0) { @@ -5139,7 +5139,7 @@ _start: lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; x_11 = lean_unsigned_to_nat(3u); x_12 = l_Lean_Syntax_getArg(x_1, x_11); -x_13 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_9, x_10); +x_13 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_9, x_10); x_14 = lean_ctor_get(x_13, 0); lean_inc(x_14); x_15 = lean_ctor_get(x_13, 1); @@ -5314,7 +5314,7 @@ _start: lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; x_9 = lean_unsigned_to_nat(3u); x_10 = l_Lean_Syntax_getArg(x_1, x_9); -x_11 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_7, x_8); +x_11 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_7, x_8); x_12 = !lean_is_exclusive(x_11); if (x_12 == 0) { @@ -8076,7 +8076,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_expandUnreachable___rarg(lean_object* _start: { lean_object* x_3; uint8_t x_4; -x_3 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_1, x_2); +x_3 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_1, x_2); x_4 = !lean_is_exclusive(x_3); if (x_4 == 0) { @@ -8323,7 +8323,7 @@ x_8 = l_Lean_Syntax_reprint(x_5); if (lean_obj_tag(x_8) == 0) { lean_object* x_9; uint8_t x_10; -x_9 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_9 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_10 = !lean_is_exclusive(x_9); if (x_10 == 0) { @@ -8498,7 +8498,7 @@ lean_object* x_101; lean_object* x_102; uint8_t x_103; x_101 = lean_ctor_get(x_8, 0); lean_inc(x_101); lean_dec(x_8); -x_102 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_102 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_103 = !lean_is_exclusive(x_102); if (x_103 == 0) { @@ -9035,7 +9035,7 @@ if (x_10 == 0) { lean_object* x_11; uint8_t x_12; lean_inc(x_2); -x_11 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_11 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_12 = !lean_is_exclusive(x_11); if (x_12 == 0) { @@ -9282,7 +9282,7 @@ else { lean_object* x_139; uint8_t x_140; lean_inc(x_2); -x_139 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_139 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_140 = !lean_is_exclusive(x_139); if (x_140 == 0) { @@ -10015,7 +10015,7 @@ lean_dec(x_2); x_11 = l_Lean_instInhabitedSyntax; x_12 = lean_array_get(x_11, x_1, x_10); lean_inc(x_4); -x_13 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_4, x_5); +x_13 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_4, x_5); x_14 = lean_ctor_get(x_13, 0); lean_inc(x_14); x_15 = lean_ctor_get(x_13, 1); @@ -11102,7 +11102,7 @@ lean_inc(x_11); x_12 = lean_ctor_get(x_9, 1); lean_inc(x_12); lean_dec(x_9); -x_13 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_10); +x_13 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_10); x_14 = !lean_is_exclusive(x_13); if (x_14 == 0) { @@ -13051,7 +13051,7 @@ else { lean_object* x_16; uint8_t x_17; lean_dec(x_1); -x_16 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_16 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_17 = !lean_is_exclusive(x_16); if (x_17 == 0) { @@ -13184,7 +13184,7 @@ else { lean_object* x_69; uint8_t x_70; lean_dec(x_1); -x_69 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_69 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_70 = !lean_is_exclusive(x_69); if (x_70 == 0) { @@ -13314,7 +13314,7 @@ else { lean_object* x_119; uint8_t x_120; lean_dec(x_1); -x_119 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_119 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_120 = !lean_is_exclusive(x_119); if (x_120 == 0) { @@ -13541,7 +13541,7 @@ else { lean_object* x_186; uint8_t x_187; lean_dec(x_1); -x_186 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_186 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_187 = !lean_is_exclusive(x_186); if (x_187 == 0) { @@ -13791,7 +13791,7 @@ lean_dec(x_251); x_260 = lean_ctor_get(x_252, 0); lean_inc(x_260); lean_dec(x_252); -x_261 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_259); +x_261 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_259); x_262 = !lean_is_exclusive(x_261); if (x_262 == 0) { @@ -13925,7 +13925,7 @@ lean_object* x_315; uint8_t x_316; lean_dec(x_56); lean_dec(x_1); lean_inc(x_2); -x_315 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_315 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_316 = !lean_is_exclusive(x_315); if (x_316 == 0) { diff --git a/stage0/stdlib/Lean/Elab/Declaration.c b/stage0/stdlib/Lean/Elab/Declaration.c index 4d314ff632..24d9bb31ba 100644 --- a/stage0/stdlib/Lean/Elab/Declaration.c +++ b/stage0/stdlib/Lean/Elab/Declaration.c @@ -21,7 +21,6 @@ static lean_object* l_Lean_Elab_Command_elabAxiom___lambda__2___closed__2; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_elabAttr___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_expandInitCmd___lambda__1___closed__32; static lean_object* l___regBuiltin_Lean_Elab_Command_elabDeclaration___closed__4; -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_expandInitCmd___closed__20; lean_object* l_Lean_Elab_applyVisibility___at_Lean_Elab_Command_expandDeclId___spec__5(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_compileDecl___at_Lean_Elab_Term_evalExpr___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -100,6 +99,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabMutual___lambda__2(lean_object* LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Command_expandInitialize(lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Command_elabDeclaration(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Command_expandMutualElement___closed__3; +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_elabAttr___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); @@ -5898,7 +5898,7 @@ x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_21); x_26 = l_Lean_Syntax_setArg(x_1, x_4, x_25); -x_27 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_20); +x_27 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_20); x_28 = !lean_is_exclusive(x_27); if (x_28 == 0) { @@ -6522,7 +6522,7 @@ x_13 = lean_ctor_get(x_11, 1); lean_inc(x_13); lean_dec(x_11); lean_inc(x_2); -x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_15 = lean_ctor_get(x_14, 0); lean_inc(x_15); x_16 = lean_ctor_get(x_14, 1); @@ -6545,7 +6545,7 @@ x_26 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_26, 0, x_25); lean_ctor_set(x_26, 1, x_13); x_27 = l_Lean_Syntax_setArg(x_1, x_4, x_26); -x_28 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_16); +x_28 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_16); x_29 = !lean_is_exclusive(x_28); if (x_29 == 0) { @@ -8866,7 +8866,7 @@ _start: { lean_object* x_6; uint8_t x_7; lean_inc(x_4); -x_6 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_4, x_5); +x_6 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_4, x_5); x_7 = !lean_is_exclusive(x_6); if (x_7 == 0) { @@ -9502,7 +9502,7 @@ else { lean_object* x_27; uint8_t x_28; lean_inc(x_3); -x_27 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_3, x_4); +x_27 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_3, x_4); x_28 = !lean_is_exclusive(x_27); if (x_28 == 0) { @@ -9959,7 +9959,7 @@ else lean_object* x_283; uint8_t x_284; lean_dec(x_20); lean_inc(x_3); -x_283 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_3, x_4); +x_283 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_3, x_4); x_284 = !lean_is_exclusive(x_283); if (x_284 == 0) { @@ -10416,7 +10416,7 @@ else lean_object* x_539; uint8_t x_540; lean_dec(x_6); lean_inc(x_3); -x_539 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_3, x_4); +x_539 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_3, x_4); x_540 = !lean_is_exclusive(x_539); if (x_540 == 0) { diff --git a/stage0/stdlib/Lean/Elab/Deriving/BEq.c b/stage0/stdlib/Lean/Elab/Deriving/BEq.c index fb71bfbf86..d2ea3a508e 100644 --- a/stage0/stdlib/Lean/Elab/Deriving/BEq.c +++ b/stage0/stdlib/Lean/Elab/Deriving/BEq.c @@ -185,7 +185,6 @@ static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_BEq_mkMatch_m uint8_t lean_nat_dec_le(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Deriving_BEq_mkBEqInstanceHandler___spec__4(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_BEq_mkMatch_mkAlts___spec__4___closed__3; -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(size_t, size_t, lean_object*); static lean_object* l_List_forIn_loop___at_Lean_Elab_Deriving_BEq_mkMatch_mkAlts___spec__5___lambda__1___closed__7; static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_BEq_mkMatch_mkAlts___spec__4___closed__5; static lean_object* l___private_Lean_Elab_Deriving_BEq_0__Lean_Elab_Deriving_BEq_mkBEqEnumFun___closed__7; @@ -243,6 +242,7 @@ static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_BEq_mkMatch_m static lean_object* l_Lean_Elab_Deriving_BEq_mkMutualBlock___closed__6; static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_BEq_mkMatch_mkAlts___spec__4___closed__6; LEAN_EXPORT lean_object* l_Lean_Elab_Deriving_BEq_mkBEqInstanceHandler(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(size_t, size_t, lean_object*); static lean_object* l___private_Lean_Elab_Deriving_BEq_0__Lean_Elab_Deriving_BEq_mkBEqInstanceCmds___closed__7; LEAN_EXPORT lean_object* l_Lean_Elab_Deriving_BEq_mkAuxFunction(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_Elab_Deriving_BEq_mkMatch_mkElseAlt___spec__1___closed__1; @@ -791,7 +791,7 @@ x_67 = lean_usize_of_nat(x_66); lean_dec(x_66); x_68 = 0; x_69 = x_41; -x_70 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_67, x_68, x_69); +x_70 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_67, x_68, x_69); x_71 = x_70; x_72 = l_Lean_Elab_Deriving_BEq_mkMatch_mkElseAlt___closed__17; x_73 = l_Lean_mkSepArray(x_71, x_72); @@ -833,7 +833,7 @@ x_90 = lean_usize_of_nat(x_89); lean_dec(x_89); x_91 = 0; x_92 = x_41; -x_93 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_90, x_91, x_92); +x_93 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_90, x_91, x_92); x_94 = x_93; x_95 = l_Lean_Elab_Deriving_BEq_mkMatch_mkElseAlt___closed__17; x_96 = l_Lean_mkSepArray(x_94, x_95); @@ -2256,7 +2256,7 @@ x_111 = lean_usize_of_nat(x_110); lean_dec(x_110); x_112 = 0; x_113 = x_99; -x_114 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_111, x_112, x_113); +x_114 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_111, x_112, x_113); x_115 = x_114; x_116 = l_Lean_Elab_Deriving_BEq_mkMatch_mkElseAlt___closed__17; x_117 = l_Lean_mkSepArray(x_115, x_116); @@ -2297,7 +2297,7 @@ x_133 = lean_usize_of_nat(x_132); lean_dec(x_132); x_134 = 0; x_135 = x_99; -x_136 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_133, x_134, x_135); +x_136 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_133, x_134, x_135); x_137 = x_136; x_138 = l_Lean_Elab_Deriving_BEq_mkMatch_mkElseAlt___closed__17; x_139 = l_Lean_mkSepArray(x_137, x_138); @@ -2515,7 +2515,7 @@ x_220 = lean_usize_of_nat(x_219); lean_dec(x_219); x_221 = 0; x_222 = x_208; -x_223 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_220, x_221, x_222); +x_223 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_220, x_221, x_222); x_224 = x_223; x_225 = l_Lean_Elab_Deriving_BEq_mkMatch_mkElseAlt___closed__17; x_226 = l_Lean_mkSepArray(x_224, x_225); @@ -3041,7 +3041,7 @@ x_28 = lean_usize_of_nat(x_27); lean_dec(x_27); x_29 = 0; x_30 = x_12; -x_31 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_28, x_29, x_30); +x_31 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_28, x_29, x_30); x_32 = x_31; x_33 = l_Lean_Elab_Deriving_BEq_mkMatch_mkElseAlt___closed__17; x_34 = l_Lean_mkSepArray(x_32, x_33); @@ -3097,7 +3097,7 @@ x_61 = lean_usize_of_nat(x_60); lean_dec(x_60); x_62 = 0; x_63 = x_12; -x_64 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_61, x_62, x_63); +x_64 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_61, x_62, x_63); x_65 = x_64; x_66 = l_Lean_Elab_Deriving_BEq_mkMatch_mkElseAlt___closed__17; x_67 = l_Lean_mkSepArray(x_65, x_66); diff --git a/stage0/stdlib/Lean/Elab/Deriving/Basic.c b/stage0/stdlib/Lean/Elab/Deriving/Basic.c index 1f34b34111..c5242bad55 100644 --- a/stage0/stdlib/Lean/Elab/Deriving/Basic.c +++ b/stage0/stdlib/Lean/Elab/Deriving/Basic.c @@ -82,7 +82,6 @@ lean_object* lean_array_fget(lean_object*, lean_object*); static lean_object* l_Lean_resolveGlobalConst___at_Lean_Elab_elabDeriving___spec__8___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_applyDerivingHandlers(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_registerBuiltinDerivingHandlerWithArgs___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_getOptDerivingClasses___spec__1___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__5___boxed(lean_object*, lean_object*, lean_object*); @@ -192,6 +191,7 @@ LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_elabDeriving___ lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); uint8_t l_List_isEmpty___rarg(lean_object*); lean_object* l_Lean_Elab_Command_getScope___rarg(lean_object*, lean_object*); +lean_object* l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_registerBuiltinDerivingHandlerWithArgs(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_pushInfoTree___at_Lean_Elab_elabDeriving___spec__17(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_elabDeriving___spec__19___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -3360,7 +3360,7 @@ block_66: { lean_object* x_33; lean_object* x_34; x_33 = l_Lean_Elab_elabDeriving___closed__11; -x_34 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(x_32, x_33); +x_34 = l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(x_32, x_33); lean_dec(x_32); if (lean_obj_tag(x_34) == 0) { diff --git a/stage0/stdlib/Lean/Elab/Deriving/DecEq.c b/stage0/stdlib/Lean/Elab/Deriving/DecEq.c index 3138a4534f..6a19485d01 100644 --- a/stage0/stdlib/Lean/Elab/Deriving/DecEq.c +++ b/stage0/stdlib/Lean/Elab/Deriving/DecEq.c @@ -276,7 +276,6 @@ static lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___lambda__1 static lean_object* l_Lean_Elab_Deriving_DecEq_mkDecEqEnum___closed__59; static lean_object* l_Lean_Elab_Deriving_DecEq_mkDecEqEnum___closed__31; static lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___lambda__1___closed__54; -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__12; static lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___lambda__1___closed__82; static lean_object* l_Lean_Elab_Deriving_DecEq_mkAuxFunction___closed__22; @@ -376,6 +375,7 @@ static lean_object* l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAl static lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__7; lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___lambda__1___closed__55; +lean_object* l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___lambda__1___closed__74; static lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch___rarg___closed__2; static lean_object* l_Lean_Elab_Deriving_DecEq_mkDecEqEnum___closed__6; @@ -3655,7 +3655,7 @@ x_98 = lean_usize_of_nat(x_97); lean_dec(x_97); x_99 = 0; x_100 = x_82; -x_101 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_98, x_99, x_100); +x_101 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_98, x_99, x_100); x_102 = x_101; x_103 = l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__6___lambda__1___closed__10; x_104 = l_Lean_mkSepArray(x_102, x_103); @@ -3696,7 +3696,7 @@ x_120 = lean_usize_of_nat(x_119); lean_dec(x_119); x_121 = 0; x_122 = x_82; -x_123 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_120, x_121, x_122); +x_123 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_120, x_121, x_122); x_124 = x_123; x_125 = l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__6___lambda__1___closed__10; x_126 = l_Lean_mkSepArray(x_124, x_125); @@ -3966,7 +3966,7 @@ x_216 = lean_usize_of_nat(x_215); lean_dec(x_215); x_217 = 0; x_218 = x_200; -x_219 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_216, x_217, x_218); +x_219 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_216, x_217, x_218); x_220 = x_219; x_221 = l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__6___lambda__1___closed__10; x_222 = l_Lean_mkSepArray(x_220, x_221); @@ -4492,7 +4492,7 @@ x_168 = lean_usize_of_nat(x_167); lean_dec(x_167); x_169 = 0; x_170 = x_78; -x_171 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_168, x_169, x_170); +x_171 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_168, x_169, x_170); x_172 = x_171; x_173 = l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__6___lambda__1___closed__10; x_174 = l_Lean_mkSepArray(x_172, x_173); @@ -5047,7 +5047,7 @@ x_29 = lean_usize_of_nat(x_28); lean_dec(x_28); x_30 = 0; x_31 = x_13; -x_32 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_29, x_30, x_31); +x_32 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_29, x_30, x_31); x_33 = x_32; x_34 = l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__6___lambda__1___closed__10; x_35 = l_Lean_mkSepArray(x_33, x_34); @@ -5103,7 +5103,7 @@ x_62 = lean_usize_of_nat(x_61); lean_dec(x_61); x_63 = 0; x_64 = x_13; -x_65 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_62, x_63, x_64); +x_65 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_62, x_63, x_64); x_66 = x_65; x_67 = l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__6___lambda__1___closed__10; x_68 = l_Lean_mkSepArray(x_66, x_67); diff --git a/stage0/stdlib/Lean/Elab/Deriving/FromToJson.c b/stage0/stdlib/Lean/Elab/Deriving/FromToJson.c index 8352bddf8c..0f26f4ac47 100644 --- a/stage0/stdlib/Lean/Elab/Deriving/FromToJson.c +++ b/stage0/stdlib/Lean/Elab/Deriving/FromToJson.c @@ -319,7 +319,6 @@ LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Deriving_FromToJson_mk LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkFromJsonInstanceHandler_mkAlts___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkFromJsonInstanceHandler_mkAlts___spec__4___closed__2; -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler___lambda__1___closed__10; static lean_object* l_Array_mapIdxM_map___at_Lean_Elab_Deriving_FromToJson_mkFromJsonInstanceHandler_mkAlts___spec__3___closed__6; LEAN_EXPORT lean_object* l_Lean_Elab_Deriving_FromToJson_mkJsonField(lean_object*); @@ -402,6 +401,7 @@ static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mk static lean_object* l_Lean_Elab_Deriving_FromToJson_mkFromJsonInstanceHandler___lambda__3___closed__2; static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler_mkAlts___spec__5___lambda__1___closed__3; static lean_object* l_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler___lambda__3___closed__6; +lean_object* l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(size_t, size_t, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkFromJsonInstanceHandler_mkAlts___spec__6___lambda__2___closed__9; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkFromJsonInstanceHandler_mkAlts___spec__6___lambda__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*); static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkFromJsonInstanceHandler___spec__6___closed__2; @@ -1410,7 +1410,7 @@ x_77 = lean_usize_of_nat(x_76); lean_dec(x_76); x_78 = 0; x_79 = x_61; -x_80 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_77, x_78, x_79); +x_80 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_77, x_78, x_79); x_81 = x_80; x_82 = l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler_mkAlts___spec__5___lambda__1___closed__15; x_83 = l_Lean_mkSepArray(x_81, x_82); @@ -1451,7 +1451,7 @@ x_99 = lean_usize_of_nat(x_98); lean_dec(x_98); x_100 = 0; x_101 = x_61; -x_102 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_99, x_100, x_101); +x_102 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_99, x_100, x_101); x_103 = x_102; x_104 = l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler_mkAlts___spec__5___lambda__1___closed__15; x_105 = l_Lean_mkSepArray(x_103, x_104); @@ -3701,7 +3701,7 @@ x_81 = lean_array_get_size(x_28); x_82 = lean_usize_of_nat(x_81); lean_dec(x_81); x_83 = x_28; -x_84 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_82, x_21, x_83); +x_84 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_82, x_21, x_83); x_85 = x_84; x_86 = l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler_mkAlts___spec__5___lambda__1___closed__15; x_87 = l_Lean_mkSepArray(x_85, x_86); @@ -3884,7 +3884,7 @@ x_179 = lean_array_get_size(x_28); x_180 = lean_usize_of_nat(x_179); lean_dec(x_179); x_181 = x_28; -x_182 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_180, x_21, x_181); +x_182 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_180, x_21, x_181); x_183 = x_182; x_184 = l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler_mkAlts___spec__5___lambda__1___closed__15; x_185 = l_Lean_mkSepArray(x_183, x_184); @@ -4109,7 +4109,7 @@ x_285 = lean_usize_of_nat(x_284); lean_dec(x_284); x_286 = 0; x_287 = x_241; -x_288 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_285, x_286, x_287); +x_288 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_285, x_286, x_287); x_289 = x_288; x_290 = l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler_mkAlts___spec__5___lambda__1___closed__15; x_291 = l_Lean_mkSepArray(x_289, x_290); @@ -4267,7 +4267,7 @@ x_371 = lean_usize_of_nat(x_370); lean_dec(x_370); x_372 = 0; x_373 = x_241; -x_374 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_371, x_372, x_373); +x_374 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_371, x_372, x_373); x_375 = x_374; x_376 = l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler_mkAlts___spec__5___lambda__1___closed__15; x_377 = l_Lean_mkSepArray(x_375, x_376); @@ -4907,7 +4907,7 @@ x_685 = lean_usize_of_nat(x_684); lean_dec(x_684); x_686 = 0; x_687 = x_642; -x_688 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_685, x_686, x_687); +x_688 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_685, x_686, x_687); x_689 = x_688; x_690 = l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler_mkAlts___spec__5___lambda__1___closed__15; x_691 = l_Lean_mkSepArray(x_689, x_690); @@ -5063,7 +5063,7 @@ x_769 = lean_usize_of_nat(x_768); lean_dec(x_768); x_770 = 0; x_771 = x_642; -x_772 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_769, x_770, x_771); +x_772 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_769, x_770, x_771); x_773 = x_772; x_774 = l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler_mkAlts___spec__5___lambda__1___closed__15; x_775 = l_Lean_mkSepArray(x_773, x_774); @@ -5263,7 +5263,7 @@ x_868 = lean_usize_of_nat(x_867); lean_dec(x_867); x_869 = 0; x_870 = x_823; -x_871 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_868, x_869, x_870); +x_871 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_868, x_869, x_870); x_872 = x_871; x_873 = l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler_mkAlts___spec__5___lambda__1___closed__15; x_874 = l_Lean_mkSepArray(x_872, x_873); @@ -5956,7 +5956,7 @@ x_46 = lean_usize_of_nat(x_45); lean_dec(x_45); x_47 = 0; x_48 = x_29; -x_49 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_46, x_47, x_48); +x_49 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_46, x_47, x_48); x_50 = x_49; x_51 = l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler_mkAlts___spec__5___lambda__1___closed__15; x_52 = l_Lean_mkSepArray(x_50, x_51); @@ -9684,7 +9684,7 @@ x_74 = lean_array_get_size(x_73); x_75 = lean_usize_of_nat(x_74); lean_dec(x_74); x_76 = x_73; -x_77 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_75, x_26, x_76); +x_77 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_75, x_26, x_76); x_78 = x_77; x_79 = l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler_mkAlts___spec__5___lambda__1___closed__15; x_80 = l_Lean_mkSepArray(x_78, x_79); diff --git a/stage0/stdlib/Lean/Elab/Deriving/Hashable.c b/stage0/stdlib/Lean/Elab/Deriving/Hashable.c index 53fdee9629..6c5593f0cc 100644 --- a/stage0/stdlib/Lean/Elab/Deriving/Hashable.c +++ b/stage0/stdlib/Lean/Elab/Deriving/Hashable.c @@ -158,7 +158,6 @@ uint8_t lean_nat_dec_le(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Deriving_Hashable_mkHashableHeader(lean_object*); static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_Hashable_mkMatch_mkAlts___spec__4___closed__19; LEAN_EXPORT lean_object* l_Lean_getConstInfoCtor___at_Lean_Elab_Deriving_Hashable_mkMatch_mkAlts___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(size_t, size_t, lean_object*); static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_Hashable_mkMatch_mkAlts___spec__3___closed__6; static lean_object* l_Lean_Elab_Deriving_Hashable_mkAuxFunction___closed__11; static lean_object* l_Lean_Elab_Deriving_Hashable_mkAuxFunction___closed__7; @@ -200,6 +199,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Deriving_Hashable_mkMatch(lean_object*, lea static lean_object* l_Lean_Elab_Deriving_Hashable_mkHashFuncs___closed__3; LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_Hashable_mkMatch_mkAlts___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Deriving_Hashable_0__Lean_Elab_Deriving_Hashable_mkHashableInstanceCmds___closed__8; +lean_object* l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(size_t, size_t, lean_object*); static lean_object* l___private_Lean_Elab_Deriving_Hashable_0__Lean_Elab_Deriving_Hashable_mkHashableInstanceCmds___closed__9; static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_Hashable_mkMatch_mkAlts___spec__4___closed__12; lean_object* l_Lean_mkConst(lean_object*, lean_object*); @@ -1475,7 +1475,7 @@ x_85 = lean_usize_of_nat(x_84); lean_dec(x_84); x_86 = 0; x_87 = x_73; -x_88 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_85, x_86, x_87); +x_88 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_85, x_86, x_87); x_89 = x_88; x_90 = l_List_forIn_loop___at_Lean_Elab_Deriving_Hashable_mkMatch_mkAlts___spec__5___lambda__1___closed__10; x_91 = l_Lean_mkSepArray(x_89, x_90); @@ -1516,7 +1516,7 @@ x_107 = lean_usize_of_nat(x_106); lean_dec(x_106); x_108 = 0; x_109 = x_73; -x_110 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_107, x_108, x_109); +x_110 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_107, x_108, x_109); x_111 = x_110; x_112 = l_List_forIn_loop___at_Lean_Elab_Deriving_Hashable_mkMatch_mkAlts___spec__5___lambda__1___closed__10; x_113 = l_Lean_mkSepArray(x_111, x_112); @@ -2076,7 +2076,7 @@ x_29 = lean_usize_of_nat(x_28); lean_dec(x_28); x_30 = 0; x_31 = x_13; -x_32 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_29, x_30, x_31); +x_32 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_29, x_30, x_31); x_33 = x_32; x_34 = l_List_forIn_loop___at_Lean_Elab_Deriving_Hashable_mkMatch_mkAlts___spec__5___lambda__1___closed__10; x_35 = l_Lean_mkSepArray(x_33, x_34); @@ -2132,7 +2132,7 @@ x_62 = lean_usize_of_nat(x_61); lean_dec(x_61); x_63 = 0; x_64 = x_13; -x_65 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_62, x_63, x_64); +x_65 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_62, x_63, x_64); x_66 = x_65; x_67 = l_List_forIn_loop___at_Lean_Elab_Deriving_Hashable_mkMatch_mkAlts___spec__5___lambda__1___closed__10; x_68 = l_Lean_mkSepArray(x_66, x_67); diff --git a/stage0/stdlib/Lean/Elab/Deriving/Ord.c b/stage0/stdlib/Lean/Elab/Deriving/Ord.c index 062cbab2ca..ee37f885bd 100644 --- a/stage0/stdlib/Lean/Elab/Deriving/Ord.c +++ b/stage0/stdlib/Lean/Elab/Deriving/Ord.c @@ -170,7 +170,6 @@ static lean_object* l_Lean_Elab_Deriving_Ord_mkAuxFunction___lambda__1___closed_ static lean_object* l_Lean_Elab_Deriving_Ord_mkAuxFunction___lambda__1___closed__8; uint8_t lean_nat_dec_le(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Deriving_Ord_mkOrdHeader___rarg___closed__1; -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(size_t, size_t, lean_object*); static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_Ord_mkMatch_mkAlts___spec__5___closed__9; static lean_object* l_Lean_Elab_Deriving_Ord_mkAuxFunction___lambda__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Deriving_Ord_mkOrdHeader___boxed(lean_object*); @@ -217,6 +216,7 @@ lean_object* l_Lean_Core_betaReduce___lambda__2___boxed(lean_object*, lean_objec static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_Ord_mkMatch_mkAlts___spec__5___closed__16; LEAN_EXPORT lean_object* l_Lean_Elab_Deriving_Ord_mkMatch_mkAlts(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isProp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(size_t, size_t, lean_object*); lean_object* l_Lean_mkConst(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Deriving_Ord_mkOrdHeader___rarg___closed__2; static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_Ord_mkMatch_mkAlts___spec__5___closed__18; @@ -2110,7 +2110,7 @@ x_140 = lean_usize_of_nat(x_139); lean_dec(x_139); x_141 = 0; x_142 = x_101; -x_143 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_140, x_141, x_142); +x_143 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_140, x_141, x_142); x_144 = x_143; x_145 = l_List_forIn_loop___at_Lean_Elab_Deriving_Ord_mkMatch_mkAlts___spec__6___lambda__1___closed__16; x_146 = l_Lean_mkSepArray(x_144, x_145); @@ -2160,7 +2160,7 @@ x_168 = lean_array_get_size(x_116); x_169 = lean_usize_of_nat(x_168); lean_dec(x_168); x_170 = x_116; -x_171 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_169, x_141, x_170); +x_171 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_169, x_141, x_170); x_172 = x_171; x_173 = l_Lean_mkSepArray(x_172, x_145); lean_dec(x_172); @@ -2220,7 +2220,7 @@ x_197 = lean_array_get_size(x_129); x_198 = lean_usize_of_nat(x_197); lean_dec(x_197); x_199 = x_129; -x_200 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_198, x_141, x_199); +x_200 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_198, x_141, x_199); x_201 = x_200; x_202 = l_Lean_mkSepArray(x_201, x_145); lean_dec(x_201); @@ -2271,7 +2271,7 @@ x_223 = lean_array_get_size(x_129); x_224 = lean_usize_of_nat(x_223); lean_dec(x_223); x_225 = x_129; -x_226 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_224, x_141, x_225); +x_226 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_224, x_141, x_225); x_227 = x_226; x_228 = l_Lean_mkSepArray(x_227, x_145); lean_dec(x_227); @@ -2546,7 +2546,7 @@ x_344 = lean_usize_of_nat(x_343); lean_dec(x_343); x_345 = 0; x_346 = x_305; -x_347 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_344, x_345, x_346); +x_347 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_344, x_345, x_346); x_348 = x_347; x_349 = l_List_forIn_loop___at_Lean_Elab_Deriving_Ord_mkMatch_mkAlts___spec__6___lambda__1___closed__16; x_350 = l_Lean_mkSepArray(x_348, x_349); @@ -2596,7 +2596,7 @@ x_372 = lean_array_get_size(x_320); x_373 = lean_usize_of_nat(x_372); lean_dec(x_372); x_374 = x_320; -x_375 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_373, x_345, x_374); +x_375 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_373, x_345, x_374); x_376 = x_375; x_377 = l_Lean_mkSepArray(x_376, x_349); lean_dec(x_376); @@ -2663,7 +2663,7 @@ x_402 = lean_array_get_size(x_333); x_403 = lean_usize_of_nat(x_402); lean_dec(x_402); x_404 = x_333; -x_405 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_403, x_345, x_404); +x_405 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_403, x_345, x_404); x_406 = x_405; x_407 = l_Lean_mkSepArray(x_406, x_349); lean_dec(x_406); @@ -3160,7 +3160,7 @@ x_28 = lean_usize_of_nat(x_27); lean_dec(x_27); x_29 = 0; x_30 = x_12; -x_31 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_28, x_29, x_30); +x_31 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_28, x_29, x_30); x_32 = x_31; x_33 = l_List_forIn_loop___at_Lean_Elab_Deriving_Ord_mkMatch_mkAlts___spec__6___lambda__1___closed__16; x_34 = l_Lean_mkSepArray(x_32, x_33); @@ -3216,7 +3216,7 @@ x_61 = lean_usize_of_nat(x_60); lean_dec(x_60); x_62 = 0; x_63 = x_12; -x_64 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_61, x_62, x_63); +x_64 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_61, x_62, x_63); x_65 = x_64; x_66 = l_List_forIn_loop___at_Lean_Elab_Deriving_Ord_mkMatch_mkAlts___spec__6___lambda__1___closed__16; x_67 = l_Lean_mkSepArray(x_65, x_66); diff --git a/stage0/stdlib/Lean/Elab/Deriving/Repr.c b/stage0/stdlib/Lean/Elab/Deriving/Repr.c index 9ea87a499b..3bbfcca256 100644 --- a/stage0/stdlib/Lean/Elab/Deriving/Repr.c +++ b/stage0/stdlib/Lean/Elab/Deriving/Repr.c @@ -218,7 +218,6 @@ LEAN_EXPORT lean_object* l_List_mapTRAux___at___private_Lean_Elab_Deriving_Repr_ uint8_t lean_nat_dec_le(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Deriving_Repr_mkBodyForStruct___rarg___lambda__2___closed__11; static lean_object* l_Lean_Elab_Deriving_Repr_mkAuxFunction___lambda__1___closed__25; -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(size_t, size_t, lean_object*); static lean_object* l_List_forIn_loop___at_Lean_Elab_Deriving_Repr_mkBodyForInduct_mkAlts___spec__3___lambda__1___closed__35; static lean_object* l_Lean_Elab_Deriving_Repr_mkReprHeader___rarg___closed__29; LEAN_EXPORT lean_object* l_Lean_getConstInfoCtor___at_Lean_Elab_Deriving_Repr_mkBodyForStruct___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -294,6 +293,7 @@ static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_Repr_mkBodyFo static lean_object* l_Lean_Elab_Deriving_Repr_mkAuxFunction___lambda__1___closed__24; static lean_object* l_Lean_Elab_Deriving_Repr_mkReprHeader___rarg___closed__3; static lean_object* l_Lean_Elab_Deriving_Repr_mkBodyForStruct___rarg___lambda__2___closed__2; +lean_object* l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(size_t, size_t, lean_object*); static lean_object* l_List_forIn_loop___at_Lean_Elab_Deriving_Repr_mkBodyForInduct_mkAlts___spec__3___lambda__1___closed__16; static lean_object* l_List_forIn_loop___at_Lean_Elab_Deriving_Repr_mkBodyForInduct_mkAlts___spec__3___lambda__1___closed__49; static lean_object* l_Lean_Elab_Deriving_Repr_mkReprHeader___rarg___closed__15; @@ -4258,7 +4258,7 @@ x_99 = lean_usize_of_nat(x_98); lean_dec(x_98); x_100 = 0; x_101 = x_86; -x_102 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_99, x_100, x_101); +x_102 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_99, x_100, x_101); x_103 = x_102; x_104 = l_List_forIn_loop___at_Lean_Elab_Deriving_Repr_mkBodyForInduct_mkAlts___spec__3___lambda__1___closed__16; x_105 = l_Lean_mkSepArray(x_103, x_104); @@ -4509,7 +4509,7 @@ x_226 = lean_usize_of_nat(x_225); lean_dec(x_225); x_227 = 0; x_228 = x_86; -x_229 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_226, x_227, x_228); +x_229 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_226, x_227, x_228); x_230 = x_229; x_231 = l_List_forIn_loop___at_Lean_Elab_Deriving_Repr_mkBodyForInduct_mkAlts___spec__3___lambda__1___closed__16; x_232 = l_Lean_mkSepArray(x_230, x_231); @@ -5151,7 +5151,7 @@ x_28 = lean_usize_of_nat(x_27); lean_dec(x_27); x_29 = 0; x_30 = x_12; -x_31 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_28, x_29, x_30); +x_31 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_28, x_29, x_30); x_32 = x_31; x_33 = l_List_forIn_loop___at_Lean_Elab_Deriving_Repr_mkBodyForInduct_mkAlts___spec__3___lambda__1___closed__16; x_34 = l_Lean_mkSepArray(x_32, x_33); @@ -5207,7 +5207,7 @@ x_61 = lean_usize_of_nat(x_60); lean_dec(x_60); x_62 = 0; x_63 = x_12; -x_64 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_61, x_62, x_63); +x_64 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_61, x_62, x_63); x_65 = x_64; x_66 = l_List_forIn_loop___at_Lean_Elab_Deriving_Repr_mkBodyForInduct_mkAlts___spec__3___lambda__1___closed__16; x_67 = l_Lean_mkSepArray(x_65, x_66); diff --git a/stage0/stdlib/Lean/Elab/Do.c b/stage0/stdlib/Lean/Elab/Do.c index b96810af50..8b8d2acab8 100644 --- a/stage0/stdlib/Lean/Elab/Do.c +++ b/stage0/stdlib/Lean/Elab/Do.c @@ -26,7 +26,6 @@ static lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTerm___closed__35; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_Do_getDoLetRecVars___spec__2(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Do_ToTerm_seqToTerm___closed__11; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_mkDoSeq___spec__1___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1___closed__7; @@ -236,6 +235,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_Do_getPatternsVarsEx(lean_object*, lea LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_getPatternVarsEx___spec__1___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Do_ToTerm_mkNestedKind___closed__2; LEAN_EXPORT lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Elab_Term_Do_hasBreakContinue___lambda__1(lean_object*); lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_Do_isMutableLet___boxed(lean_object*); @@ -4974,7 +4974,7 @@ lean_ctor_set(x_16, 3, x_7); lean_ctor_set(x_16, 4, x_8); lean_ctor_set(x_16, 5, x_10); lean_inc(x_16); -x_17 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_16, x_15); +x_17 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_16, x_15); x_18 = lean_ctor_get(x_17, 0); lean_inc(x_18); x_19 = lean_ctor_get(x_17, 1); @@ -4992,7 +4992,7 @@ lean_ctor_set(x_24, 2, x_21); lean_ctor_set(x_24, 3, x_22); x_25 = l_Lean_Syntax_getId(x_24); lean_inc(x_16); -x_26 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_16, x_19); +x_26 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_16, x_19); x_27 = lean_ctor_get(x_26, 0); lean_inc(x_27); x_28 = lean_ctor_get(x_26, 1); @@ -5038,7 +5038,7 @@ x_51 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_51, 0, x_50); lean_ctor_set(x_51, 1, x_49); lean_inc(x_16); -x_52 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_16, x_28); +x_52 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_16, x_28); x_53 = lean_ctor_get(x_52, 0); lean_inc(x_53); x_54 = lean_ctor_get(x_52, 1); @@ -7808,7 +7808,7 @@ _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_inc(x_2); -x_4 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_4 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_5 = lean_ctor_get(x_4, 0); lean_inc(x_5); x_6 = lean_ctor_get(x_4, 1); @@ -10330,7 +10330,7 @@ _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_inc(x_1); -x_3 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_1, x_2); +x_3 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_1, x_2); x_4 = lean_ctor_get(x_3, 0); lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); @@ -10518,7 +10518,7 @@ _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_inc(x_1); -x_3 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_1, x_2); +x_3 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_1, x_2); x_4 = lean_ctor_get(x_3, 0); lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); @@ -12743,7 +12743,7 @@ if (x_35 == 0) { lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_dec(x_1); -x_36 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_34, x_15); +x_36 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_34, x_15); x_37 = lean_ctor_get(x_36, 0); lean_inc(x_37); x_38 = lean_ctor_get(x_36, 1); @@ -12824,7 +12824,7 @@ else { 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_dec(x_3); -x_72 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_34, x_15); +x_72 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_34, x_15); x_73 = lean_ctor_get(x_72, 0); lean_inc(x_73); x_74 = lean_ctor_get(x_72, 1); @@ -12924,7 +12924,7 @@ lean_dec(x_107); lean_dec(x_105); lean_dec(x_10); lean_dec(x_2); -x_114 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_34, x_15); +x_114 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_34, x_15); x_115 = lean_ctor_get(x_114, 0); lean_inc(x_115); x_116 = lean_ctor_get(x_114, 1); @@ -13008,7 +13008,7 @@ lean_dec(x_9); lean_dec(x_3); x_150 = l_Lean_Syntax_getArg(x_107, x_104); lean_dec(x_107); -x_151 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_34, x_15); +x_151 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_34, x_15); x_152 = lean_ctor_get(x_151, 0); lean_inc(x_152); x_153 = lean_ctor_get(x_151, 1); @@ -13176,7 +13176,7 @@ lean_dec(x_9); lean_dec(x_3); x_227 = l_Lean_Syntax_getArg(x_107, x_104); lean_dec(x_107); -x_228 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_34, x_15); +x_228 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_34, x_15); x_229 = lean_ctor_get(x_228, 0); lean_inc(x_229); x_230 = lean_ctor_get(x_228, 1); @@ -13387,7 +13387,7 @@ x_25 = lean_ctor_get(x_13, 1); lean_inc(x_25); lean_dec(x_13); lean_inc(x_14); -x_26 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_14, x_15); +x_26 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_14, x_15); x_27 = lean_ctor_get(x_26, 1); lean_inc(x_27); lean_dec(x_26); @@ -13531,7 +13531,7 @@ x_25 = lean_ctor_get(x_13, 1); lean_inc(x_25); lean_dec(x_13); lean_inc(x_14); -x_26 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_14, x_15); +x_26 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_14, x_15); x_27 = lean_ctor_get(x_26, 1); lean_inc(x_27); lean_dec(x_26); @@ -13675,7 +13675,7 @@ x_25 = lean_ctor_get(x_13, 1); lean_inc(x_25); lean_dec(x_13); lean_inc(x_14); -x_26 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_14, x_15); +x_26 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_14, x_15); x_27 = lean_ctor_get(x_26, 1); lean_inc(x_27); lean_dec(x_26); @@ -13819,7 +13819,7 @@ x_25 = lean_ctor_get(x_13, 1); lean_inc(x_25); lean_dec(x_13); lean_inc(x_14); -x_26 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_14, x_15); +x_26 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_14, x_15); x_27 = lean_ctor_get(x_26, 1); lean_inc(x_27); lean_dec(x_26); @@ -14023,7 +14023,7 @@ lean_ctor_set(x_23, 3, x_19); lean_ctor_set(x_23, 4, x_20); lean_ctor_set(x_23, 5, x_22); lean_inc(x_23); -x_24 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_23, x_15); +x_24 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_23, x_15); x_25 = lean_ctor_get(x_24, 0); lean_inc(x_25); x_26 = lean_ctor_get(x_24, 1); @@ -14193,7 +14193,7 @@ lean_ctor_set(x_21, 3, x_17); lean_ctor_set(x_21, 4, x_18); lean_ctor_set(x_21, 5, x_20); lean_inc(x_21); -x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_21, x_13); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_21, x_13); x_23 = lean_ctor_get(x_22, 0); lean_inc(x_23); x_24 = lean_ctor_get(x_22, 1); @@ -15032,7 +15032,7 @@ x_8 = 1; x_9 = lean_usize_sub(x_2, x_8); x_10 = lean_array_uget(x_1, x_9); lean_inc(x_5); -x_11 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_6); +x_11 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_6); x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); x_13 = lean_ctor_get(x_11, 1); @@ -15475,7 +15475,7 @@ lean_ctor_set(x_20, 3, x_17); lean_ctor_set(x_20, 4, x_18); lean_ctor_set(x_20, 5, x_19); lean_inc(x_20); -x_21 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_20, x_14); +x_21 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_20, x_14); x_22 = lean_ctor_get(x_21, 0); lean_inc(x_22); x_23 = lean_ctor_get(x_21, 1); @@ -15508,7 +15508,7 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_32, 1); lean_inc(x_34); lean_dec(x_32); -x_35 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_20, x_34); +x_35 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_20, x_34); x_36 = lean_ctor_get(x_35, 0); lean_inc(x_36); x_37 = lean_ctor_get(x_35, 1); @@ -15674,7 +15674,7 @@ lean_inc(x_110); x_111 = lean_ctor_get(x_109, 1); lean_inc(x_111); lean_dec(x_109); -x_112 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_4, x_111); +x_112 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_4, x_111); x_113 = lean_ctor_get(x_112, 0); lean_inc(x_113); x_114 = lean_ctor_get(x_112, 1); @@ -15826,7 +15826,7 @@ lean_ctor_set(x_187, 3, x_184); lean_ctor_set(x_187, 4, x_185); lean_ctor_set(x_187, 5, x_186); lean_inc(x_187); -x_188 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_187, x_181); +x_188 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_187, x_181); x_189 = lean_ctor_get(x_188, 0); lean_inc(x_189); x_190 = lean_ctor_get(x_188, 1); @@ -15859,7 +15859,7 @@ lean_inc(x_200); x_201 = lean_ctor_get(x_199, 1); lean_inc(x_201); lean_dec(x_199); -x_202 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_187, x_201); +x_202 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_187, x_201); x_203 = lean_ctor_get(x_202, 0); lean_inc(x_203); x_204 = lean_ctor_get(x_202, 1); @@ -16034,7 +16034,7 @@ lean_inc(x_16); x_17 = lean_ctor_get(x_15, 1); lean_inc(x_17); lean_dec(x_15); -x_18 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_4, x_17); +x_18 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_4, x_17); x_19 = lean_ctor_get(x_18, 0); lean_inc(x_19); x_20 = lean_ctor_get(x_18, 1); @@ -21934,7 +21934,7 @@ x_29 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_destructTuple_destruct___cl x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); -x_31 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_19, x_18); +x_31 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_19, x_18); x_32 = lean_ctor_get(x_31, 0); lean_inc(x_32); x_33 = lean_ctor_get(x_31, 1); @@ -21975,7 +21975,7 @@ x_49 = l_Lean_Syntax_getArg(x_23, x_22); x_50 = lean_unsigned_to_nat(4u); x_51 = l_Lean_Syntax_getArg(x_23, x_50); lean_inc(x_19); -x_52 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_19, x_18); +x_52 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_19, x_18); x_53 = lean_ctor_get(x_52, 0); lean_inc(x_53); x_54 = lean_ctor_get(x_52, 1); @@ -22002,7 +22002,7 @@ x_68 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_destructTuple_destruct___cl x_69 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_69, 0, x_68); lean_ctor_set(x_69, 1, x_67); -x_70 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_19, x_54); +x_70 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_19, x_54); x_71 = lean_ctor_get(x_70, 0); lean_inc(x_71); x_72 = lean_ctor_get(x_70, 1); @@ -22103,7 +22103,7 @@ if (x_7 == 0) lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; x_8 = lean_unsigned_to_nat(0u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_6); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_6); x_11 = lean_ctor_get(x_10, 0); lean_inc(x_11); x_12 = lean_ctor_get(x_10, 1); @@ -22149,7 +22149,7 @@ return x_32; else { lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_33 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_6); +x_33 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_6); x_34 = lean_ctor_get(x_33, 0); lean_inc(x_34); x_35 = lean_ctor_get(x_33, 1); @@ -24008,7 +24008,7 @@ x_23 = lean_ctor_get(x_18, 1); lean_inc(x_23); lean_dec(x_18); lean_inc(x_6); -x_24 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_6, x_23); +x_24 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_6, x_23); x_25 = lean_ctor_get(x_24, 0); lean_inc(x_25); x_26 = lean_ctor_get(x_24, 1); @@ -24333,7 +24333,7 @@ if (x_194 == 0) { lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_inc(x_6); -x_195 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_6, x_193); +x_195 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_6, x_193); x_196 = lean_ctor_get(x_195, 0); lean_inc(x_196); x_197 = lean_ctor_get(x_195, 1); @@ -24523,7 +24523,7 @@ else lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_dec(x_192); lean_inc(x_6); -x_299 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_6, x_193); +x_299 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_6, x_193); x_300 = lean_ctor_get(x_299, 0); lean_inc(x_300); x_301 = lean_ctor_get(x_299, 1); @@ -24656,7 +24656,7 @@ x_369 = lean_ctor_get(x_18, 1); lean_inc(x_369); lean_dec(x_18); lean_inc(x_6); -x_370 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_6, x_369); +x_370 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_6, x_369); x_371 = lean_ctor_get(x_370, 0); lean_inc(x_371); x_372 = lean_ctor_get(x_370, 1); @@ -25061,7 +25061,7 @@ if (x_577 == 0) { lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_inc(x_6); -x_578 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_6, x_576); +x_578 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_6, x_576); x_579 = lean_ctor_get(x_578, 0); lean_inc(x_579); x_580 = lean_ctor_get(x_578, 1); @@ -25261,7 +25261,7 @@ else { lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_dec(x_575); -x_687 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_6, x_576); +x_687 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_6, x_576); x_688 = lean_ctor_get(x_687, 0); lean_inc(x_688); x_689 = lean_ctor_get(x_687, 1); @@ -25321,7 +25321,7 @@ x_717 = lean_ctor_get(x_18, 1); lean_inc(x_717); lean_dec(x_18); lean_inc(x_6); -x_718 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_6, x_717); +x_718 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_6, x_717); x_719 = lean_ctor_get(x_718, 0); lean_inc(x_719); x_720 = lean_ctor_get(x_718, 1); @@ -25729,7 +25729,7 @@ x_928 = lean_ctor_get(x_18, 1); lean_inc(x_928); lean_dec(x_18); lean_inc(x_6); -x_929 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_6, x_928); +x_929 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_6, x_928); x_930 = lean_ctor_get(x_929, 0); lean_inc(x_930); x_931 = lean_ctor_get(x_929, 1); @@ -26096,7 +26096,7 @@ x_1120 = lean_ctor_get(x_18, 1); lean_inc(x_1120); lean_dec(x_18); lean_inc(x_6); -x_1121 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_6, x_1120); +x_1121 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_6, x_1120); x_1122 = lean_ctor_get(x_1121, 0); lean_inc(x_1122); x_1123 = lean_ctor_get(x_1121, 1); @@ -40491,7 +40491,7 @@ lean_ctor_set(x_13, 2, x_8); lean_ctor_set(x_13, 3, x_9); lean_ctor_set(x_13, 4, x_10); lean_ctor_set(x_13, 5, x_12); -x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_13, x_4); +x_14 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_13, x_4); x_15 = lean_ctor_get(x_14, 0); lean_inc(x_15); x_16 = lean_ctor_get(x_14, 1); diff --git a/stage0/stdlib/Lean/Elab/ElabRules.c b/stage0/stdlib/Lean/Elab/ElabRules.c index 3ed4fe13b0..9900a9a062 100644 --- a/stage0/stdlib/Lean/Elab/ElabRules.c +++ b/stage0/stdlib/Lean/Elab/ElabRules.c @@ -16,7 +16,6 @@ extern "C" { uint8_t l_Lean_Syntax_isQuot(lean_object*); static lean_object* l_Lean_Elab_Command_elabElabRulesAux___lambda__1___closed__31; static lean_object* l_Lean_Elab_Command_elabElabRulesAux___lambda__1___closed__59; -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_elabElabRulesAux___lambda__1___closed__82; lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Command_elabElabRulesAux___spec__3___lambda__2___closed__4; @@ -68,6 +67,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabElabRules___lambda__5(lean_obje LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabElabRules___lambda__3(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_Command_expandElab___lambda__1___closed__7; lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_elabElabRulesAux___lambda__1___closed__44; LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabElabRules___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_elabElabRulesAux___lambda__1___closed__94; @@ -222,7 +222,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabElabRules___lambda__6(lean_obje lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_elabElabRulesAux___lambda__1___closed__105; -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Command_elabElabRulesAux___lambda__1___closed__85; lean_object* l_Lean_Syntax_getKind(lean_object*); static lean_object* l_Lean_Elab_Command_elabElabRulesAux___lambda__1___closed__16; @@ -276,6 +275,7 @@ static lean_object* l_Lean_Elab_Command_elabElabRulesAux___lambda__1___closed__6 static lean_object* l_Lean_Elab_Command_elabElabRulesAux___lambda__1___closed__113; static lean_object* l_Lean_Elab_Command_elabElabRulesAux___lambda__1___closed__11; LEAN_EXPORT lean_object* l_Lean_Elab_Command_expandElab___lambda__2___boxed__const__1; +lean_object* l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabElabRules___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_expandElab___closed__2; static lean_object* l_Lean_Elab_Command_elabElabRulesAux___closed__2; @@ -5759,7 +5759,7 @@ lean_inc(x_24); x_25 = lean_ctor_get(x_23, 1); lean_inc(x_25); lean_dec(x_23); -x_26 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_16, x_25); +x_26 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_16, x_25); x_27 = lean_ctor_get(x_26, 0); lean_inc(x_27); x_28 = lean_ctor_get(x_26, 1); @@ -5848,7 +5848,7 @@ x_69 = lean_array_get_size(x_4); x_70 = lean_usize_of_nat(x_69); lean_dec(x_69); x_71 = x_4; -x_72 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_70, x_5, x_71); +x_72 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_70, x_5, x_71); x_73 = x_72; x_74 = l_Array_mapMUnsafe_map___at_Lean_Elab_Command_elabElabRulesAux___spec__3___lambda__2___closed__4; x_75 = l_Array_append___rarg(x_74, x_73); diff --git a/stage0/stdlib/Lean/Elab/Macro.c b/stage0/stdlib/Lean/Elab/Macro.c index 539aa6a19a..feafadf4eb 100644 --- a/stage0/stdlib/Lean/Elab/Macro.c +++ b/stage0/stdlib/Lean/Elab/Macro.c @@ -14,7 +14,6 @@ extern "C" { #endif static lean_object* l_Lean_Elab_Command_expandMacro___lambda__2___closed__27; -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Elab_Command_expandMacro___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_expandMacro___lambda__2___closed__9; @@ -37,6 +36,7 @@ static lean_object* l___regBuiltin_Lean_Elab_Command_expandMacro___closed__1; static lean_object* l_Lean_Elab_Command_expandMacro___closed__8; static lean_object* l_Lean_Elab_Command_expandMacro___closed__4; lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_expandMacro___closed__9; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); @@ -86,7 +86,6 @@ static lean_object* l_Lean_Elab_Command_expandMacro___lambda__2___closed__24; static lean_object* l_Lean_Elab_Command_expandMacro___closed__7; lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_expandMacro___lambda__3(lean_object*, 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_Command_expandMacro___lambda__2___closed__10; static lean_object* l_Lean_Elab_Command_expandMacro___lambda__6___closed__1; @@ -107,6 +106,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Command_expandMacro___lambda__2(lean_object lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_expandMacro___lambda__2___closed__26; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Command_expandMacro___closed__2; lean_object* l_Lean_Syntax_mkLit(lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Command_expandMacro___closed__4; @@ -507,7 +507,7 @@ x_163 = lean_ctor_get(x_161, 1); lean_inc(x_163); lean_dec(x_161); lean_inc(x_15); -x_164 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_15, x_163); +x_164 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_15, x_163); x_165 = lean_ctor_get(x_164, 0); lean_inc(x_165); x_166 = lean_ctor_get(x_164, 1); @@ -588,7 +588,7 @@ x_206 = lean_array_get_size(x_8); x_207 = lean_usize_of_nat(x_206); lean_dec(x_206); x_208 = x_8; -x_209 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_207, x_9, x_208); +x_209 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_207, x_9, x_208); x_210 = x_209; x_211 = l_Lean_Elab_Command_expandMacro___lambda__2___closed__4; x_212 = l_Array_append___rarg(x_211, x_210); @@ -628,7 +628,7 @@ lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean x_28 = l_Lean_Syntax_getArg(x_2, x_26); lean_dec(x_2); lean_inc(x_15); -x_29 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_15, x_23); +x_29 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_15, x_23); x_30 = lean_ctor_get(x_29, 0); lean_inc(x_30); x_31 = lean_ctor_get(x_29, 1); @@ -758,7 +758,7 @@ x_95 = lean_unsigned_to_nat(0u); x_96 = l_Lean_Syntax_getArg(x_2, x_95); lean_dec(x_2); lean_inc(x_15); -x_97 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_15, x_23); +x_97 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_15, x_23); x_98 = lean_ctor_get(x_97, 0); lean_inc(x_98); x_99 = lean_ctor_get(x_97, 1); diff --git a/stage0/stdlib/Lean/Elab/MacroArgUtil.c b/stage0/stdlib/Lean/Elab/MacroArgUtil.c index 873f13dafb..3706719269 100644 --- a/stage0/stdlib/Lean/Elab/MacroArgUtil.c +++ b/stage0/stdlib/Lean/Elab/MacroArgUtil.c @@ -14,7 +14,6 @@ extern "C" { #endif static lean_object* l_Lean_Elab_Command_expandMacroArg___closed__11; -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_expandMacroArg_mkSplicePat___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_expandMacroArg___lambda__4___closed__17; static lean_object* l_Lean_Elab_Command_expandMacroArg___lambda__4___closed__1; @@ -35,6 +34,7 @@ static lean_object* l_Lean_Elab_Command_expandMacroArg___lambda__3___closed__9; static lean_object* l_Lean_Elab_Command_expandMacroArg___closed__9; static lean_object* l_Lean_Elab_Command_expandMacroArg___lambda__4___closed__19; lean_object* l_Lean_Syntax_mkAntiquotSuffixSpliceNode(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_expandMacroArg___lambda__4___closed__2; @@ -351,7 +351,7 @@ if (lean_obj_tag(x_5) == 0) lean_object* x_18; uint8_t x_19; lean_dec(x_4); lean_inc(x_10); -x_18 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_10, x_11); +x_18 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_10, x_11); x_19 = !lean_is_exclusive(x_18); if (x_19 == 0) { @@ -833,7 +833,7 @@ if (lean_obj_tag(x_5) == 0) { lean_object* x_20; uint8_t x_21; lean_inc(x_2); -x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_21 = !lean_is_exclusive(x_20); if (x_21 == 0) { @@ -975,7 +975,7 @@ if (lean_obj_tag(x_5) == 0) { lean_object* x_86; uint8_t x_87; lean_inc(x_2); -x_86 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_86 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_87 = !lean_is_exclusive(x_86); if (x_87 == 0) { @@ -1119,7 +1119,7 @@ if (lean_obj_tag(x_5) == 0) { lean_object* x_152; uint8_t x_153; lean_inc(x_2); -x_152 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_152 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_153 = !lean_is_exclusive(x_152); if (x_153 == 0) { @@ -1268,7 +1268,7 @@ if (lean_obj_tag(x_5) == 0) { lean_object* x_219; uint8_t x_220; lean_inc(x_2); -x_219 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_219 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_220 = !lean_is_exclusive(x_219); if (x_220 == 0) { @@ -1412,7 +1412,7 @@ if (lean_obj_tag(x_5) == 0) { lean_object* x_283; uint8_t x_284; lean_inc(x_2); -x_283 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_283 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_284 = !lean_is_exclusive(x_283); if (x_284 == 0) { @@ -1586,7 +1586,7 @@ if (lean_obj_tag(x_5) == 0) { lean_object* x_357; uint8_t x_358; lean_inc(x_2); -x_357 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_357 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_358 = !lean_is_exclusive(x_357); if (x_358 == 0) { @@ -1730,7 +1730,7 @@ if (lean_obj_tag(x_5) == 0) { lean_object* x_423; uint8_t x_424; lean_inc(x_2); -x_423 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_423 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_424 = !lean_is_exclusive(x_423); if (x_424 == 0) { @@ -1879,7 +1879,7 @@ if (lean_obj_tag(x_5) == 0) { lean_object* x_490; uint8_t x_491; lean_inc(x_2); -x_490 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_490 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_491 = !lean_is_exclusive(x_490); if (x_491 == 0) { @@ -2023,7 +2023,7 @@ if (lean_obj_tag(x_5) == 0) { lean_object* x_554; uint8_t x_555; lean_inc(x_2); -x_554 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_554 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_555 = !lean_is_exclusive(x_554); if (x_555 == 0) { @@ -2208,7 +2208,7 @@ if (lean_obj_tag(x_5) == 0) { lean_object* x_632; uint8_t x_633; lean_inc(x_2); -x_632 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_632 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_633 = !lean_is_exclusive(x_632); if (x_633 == 0) { @@ -2347,7 +2347,7 @@ if (lean_obj_tag(x_5) == 0) { lean_object* x_696; uint8_t x_697; lean_inc(x_2); -x_696 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_696 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_697 = !lean_is_exclusive(x_696); if (x_697 == 0) { @@ -2500,7 +2500,7 @@ if (lean_obj_tag(x_5) == 0) { lean_object* x_763; uint8_t x_764; lean_inc(x_2); -x_763 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_763 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_764 = !lean_is_exclusive(x_763); if (x_764 == 0) { @@ -2653,7 +2653,7 @@ if (lean_obj_tag(x_5) == 0) { lean_object* x_830; uint8_t x_831; lean_inc(x_2); -x_830 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_830 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_831 = !lean_is_exclusive(x_830); if (x_831 == 0) { @@ -2808,7 +2808,7 @@ if (lean_obj_tag(x_5) == 0) { lean_object* x_896; uint8_t x_897; lean_inc(x_2); -x_896 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_896 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_897 = !lean_is_exclusive(x_896); if (x_897 == 0) { @@ -3011,7 +3011,7 @@ if (lean_obj_tag(x_5) == 0) { lean_object* x_981; uint8_t x_982; lean_inc(x_2); -x_981 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_981 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_982 = !lean_is_exclusive(x_981); if (x_982 == 0) { @@ -3240,7 +3240,7 @@ if (lean_obj_tag(x_5) == 0) { 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_inc(x_2); -x_1072 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_1072 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_1073 = lean_ctor_get(x_1072, 0); lean_inc(x_1073); x_1074 = lean_ctor_get(x_1072, 1); @@ -3337,7 +3337,7 @@ if (lean_obj_tag(x_5) == 0) { 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_inc(x_2); -x_1113 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_1113 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_1114 = lean_ctor_get(x_1113, 0); lean_inc(x_1114); x_1115 = lean_ctor_get(x_1113, 1); @@ -3436,7 +3436,7 @@ if (lean_obj_tag(x_5) == 0) { lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; lean_object* x_1170; lean_object* x_1171; lean_object* x_1172; lean_object* x_1173; lean_object* x_1174; lean_object* x_1175; lean_object* x_1176; lean_object* x_1177; lean_object* x_1178; lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_inc(x_2); -x_1154 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_1154 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_1155 = lean_ctor_get(x_1154, 0); lean_inc(x_1155); x_1156 = lean_ctor_get(x_1154, 1); @@ -3540,7 +3540,7 @@ if (lean_obj_tag(x_5) == 0) { lean_object* x_1196; lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; lean_object* x_1200; lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_inc(x_2); -x_1196 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_1196 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_1197 = lean_ctor_get(x_1196, 0); lean_inc(x_1197); x_1198 = lean_ctor_get(x_1196, 1); @@ -3639,7 +3639,7 @@ if (lean_obj_tag(x_5) == 0) { lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_inc(x_2); -x_1235 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_1235 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_1236 = lean_ctor_get(x_1235, 0); lean_inc(x_1236); x_1237 = lean_ctor_get(x_1235, 1); @@ -3766,7 +3766,7 @@ if (lean_obj_tag(x_5) == 0) { 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; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_inc(x_2); -x_1284 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_1284 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_1285 = lean_ctor_get(x_1284, 0); lean_inc(x_1285); x_1286 = lean_ctor_get(x_1284, 1); @@ -3865,7 +3865,7 @@ if (lean_obj_tag(x_5) == 0) { 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; lean_inc(x_2); -x_1325 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_1325 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_1326 = lean_ctor_get(x_1325, 0); lean_inc(x_1326); x_1327 = lean_ctor_get(x_1325, 1); @@ -3969,7 +3969,7 @@ if (lean_obj_tag(x_5) == 0) { 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_inc(x_2); -x_1367 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_1367 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_1368 = lean_ctor_get(x_1367, 0); lean_inc(x_1368); x_1369 = lean_ctor_get(x_1367, 1); @@ -4068,7 +4068,7 @@ if (lean_obj_tag(x_5) == 0) { lean_object* x_1406; lean_object* x_1407; lean_object* x_1408; lean_object* x_1409; lean_object* x_1410; lean_object* x_1411; lean_object* x_1412; lean_object* x_1413; lean_object* x_1414; lean_object* x_1415; lean_object* x_1416; lean_object* x_1417; lean_object* x_1418; lean_object* x_1419; 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_inc(x_2); -x_1406 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_1406 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_1407 = lean_ctor_get(x_1406, 0); lean_inc(x_1407); x_1408 = lean_ctor_get(x_1406, 1); @@ -4206,7 +4206,7 @@ if (lean_obj_tag(x_5) == 0) { lean_object* x_1459; lean_object* x_1460; lean_object* x_1461; lean_object* x_1462; lean_object* x_1463; lean_object* x_1464; lean_object* x_1465; lean_object* x_1466; lean_object* x_1467; lean_object* x_1468; lean_object* x_1469; lean_object* x_1470; lean_object* x_1471; lean_object* x_1472; lean_object* x_1473; lean_object* x_1474; lean_object* x_1475; lean_object* x_1476; lean_object* x_1477; lean_object* x_1478; lean_object* x_1479; lean_object* x_1480; lean_object* x_1481; lean_object* x_1482; lean_object* x_1483; lean_object* x_1484; lean_object* x_1485; lean_object* x_1486; lean_object* x_1487; lean_object* x_1488; lean_inc(x_2); -x_1459 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_1459 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_1460 = lean_ctor_get(x_1459, 0); lean_inc(x_1460); x_1461 = lean_ctor_get(x_1459, 1); @@ -4301,7 +4301,7 @@ if (lean_obj_tag(x_5) == 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; lean_object* x_1525; lean_object* x_1526; lean_object* x_1527; lean_object* x_1528; lean_inc(x_2); -x_1499 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_1499 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_1500 = lean_ctor_get(x_1499, 0); lean_inc(x_1500); x_1501 = lean_ctor_get(x_1499, 1); @@ -4409,7 +4409,7 @@ if (lean_obj_tag(x_5) == 0) { 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; 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_inc(x_2); -x_1542 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_1542 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_1543 = lean_ctor_get(x_1542, 0); lean_inc(x_1543); x_1544 = lean_ctor_get(x_1542, 1); @@ -4517,7 +4517,7 @@ if (lean_obj_tag(x_5) == 0) { lean_object* x_1585; lean_object* x_1586; lean_object* x_1587; lean_object* x_1588; lean_object* x_1589; lean_object* x_1590; lean_object* x_1591; lean_object* x_1592; lean_object* x_1593; lean_object* x_1594; lean_object* x_1595; lean_object* x_1596; lean_object* x_1597; lean_object* x_1598; lean_object* x_1599; lean_object* x_1600; lean_object* x_1601; lean_object* x_1602; lean_object* x_1603; lean_object* x_1604; lean_object* x_1605; lean_object* x_1606; lean_object* x_1607; lean_object* x_1608; lean_object* x_1609; lean_object* x_1610; lean_object* x_1611; lean_object* x_1612; lean_object* x_1613; lean_object* x_1614; lean_inc(x_2); -x_1585 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_1585 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_1586 = lean_ctor_get(x_1585, 0); lean_inc(x_1586); x_1587 = lean_ctor_get(x_1585, 1); @@ -4627,7 +4627,7 @@ if (lean_obj_tag(x_5) == 0) { 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; lean_object* x_1648; lean_object* x_1649; lean_object* x_1650; lean_object* x_1651; lean_object* x_1652; lean_object* x_1653; lean_object* x_1654; lean_object* x_1655; lean_object* x_1656; lean_object* x_1657; lean_object* x_1658; lean_inc(x_2); -x_1627 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_1627 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_1628 = lean_ctor_get(x_1627, 0); lean_inc(x_1628); x_1629 = lean_ctor_get(x_1627, 1); @@ -4785,7 +4785,7 @@ if (lean_obj_tag(x_5) == 0) { lean_object* x_1686; lean_object* x_1687; lean_object* x_1688; lean_object* x_1689; lean_object* x_1690; lean_object* x_1691; lean_object* x_1692; lean_object* x_1693; lean_object* x_1694; lean_object* x_1695; lean_object* x_1696; lean_object* x_1697; lean_object* x_1698; lean_object* x_1699; lean_object* x_1700; lean_object* x_1701; lean_object* x_1702; lean_object* x_1703; lean_object* x_1704; lean_object* x_1705; lean_object* x_1706; lean_object* x_1707; lean_object* x_1708; lean_object* x_1709; lean_object* x_1710; lean_object* x_1711; lean_object* x_1712; lean_object* x_1713; lean_object* x_1714; lean_object* x_1715; lean_object* x_1716; lean_inc(x_2); -x_1686 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_1686 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_1687 = lean_ctor_get(x_1686, 0); lean_inc(x_1687); x_1688 = lean_ctor_get(x_1686, 1); @@ -5090,7 +5090,7 @@ x_19 = lean_unsigned_to_nat(1u); x_20 = l_Lean_Syntax_getArg(x_6, x_19); lean_dec(x_6); lean_inc(x_2); -x_21 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_7); +x_21 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_7); x_22 = lean_ctor_get(x_21, 0); lean_inc(x_22); x_23 = lean_ctor_get(x_21, 1); @@ -5215,7 +5215,7 @@ x_60 = lean_unsigned_to_nat(1u); x_61 = l_Lean_Syntax_getArg(x_45, x_60); lean_dec(x_45); lean_inc(x_2); -x_62 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_46); +x_62 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_46); x_63 = lean_ctor_get(x_62, 0); lean_inc(x_63); x_64 = lean_ctor_get(x_62, 1); diff --git a/stage0/stdlib/Lean/Elab/Match.c b/stage0/stdlib/Lean/Elab/Match.c index e6f6e50055..c7ab3c11fd 100644 --- a/stage0/stdlib/Lean/Elab/Match.c +++ b/stage0/stdlib/Lean/Elab/Match.c @@ -261,7 +261,6 @@ static lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabAtomicDisc static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrsWitMatchType___spec__1___closed__15; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_collectDeps___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Elab_Match_0__Lean_Elab_Term_isPatternVar_isAtomicIdent(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_findDiscrRefinementPath_goType___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -560,7 +559,6 @@ lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___spec__8(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_elabInaccessible___closed__3; -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(size_t, size_t, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabMVarWithIdKind___closed__5; LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_generalize___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_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_eraseIndices___boxed__const__1; @@ -701,6 +699,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_match_ignoreUnusedAlts; static lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_getMatchGeneralizing_x3f___closed__4; LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_findDiscrRefinementPath_goIndex___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___spec__5___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Match_0__Lean_Elab_Term_generalize___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_withDepElimPatterns___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_ToDepElimPattern_main___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*); @@ -716,6 +715,7 @@ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Match_0__L static lean_object* l_Lean_Elab_Term_reportMatcherResultErrors___closed__2; static lean_object* l___regBuiltin_Lean_Elab_Term_elabMVarWithIdKind___closed__1; lean_object* l_Lean_Meta_isProp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltView___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Match_0__Lean_Elab_Term_generalize___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_mkFreshBinderName___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_mkLocalDeclFor___spec__3___boxed(lean_object*); @@ -5400,7 +5400,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_3); x_15 = l_Lean_Elab_Term_precheckMatch___lambda__3___closed__1; -x_16 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(x_2, x_15); +x_16 = l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(x_2, x_15); if (lean_obj_tag(x_16) == 0) { lean_object* x_17; @@ -5454,7 +5454,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_3); x_29 = l_Lean_Elab_Term_precheckMatch___lambda__3___closed__1; -x_30 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(x_2, x_29); +x_30 = l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(x_2, x_29); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; @@ -5509,7 +5509,7 @@ x_45 = lean_ctor_get(x_44, 1); lean_inc(x_45); lean_dec(x_44); x_46 = l_Lean_Elab_Term_precheckMatch___lambda__3___closed__1; -x_47 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(x_45, x_46); +x_47 = l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(x_45, x_46); lean_dec(x_45); if (lean_obj_tag(x_47) == 0) { @@ -5678,7 +5678,7 @@ goto block_133; block_133: { lean_object* x_27; -x_27 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(x_26, x_25); +x_27 = l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(x_26, x_25); lean_dec(x_26); if (lean_obj_tag(x_27) == 0) { @@ -30338,7 +30338,7 @@ x_15 = lean_usize_of_nat(x_14); lean_dec(x_14); x_16 = 0; x_17 = x_13; -x_18 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_15, x_16, x_17); +x_18 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_15, x_16, x_17); x_19 = x_18; lean_inc(x_1); x_20 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_getMatchGeneralizing_x3f(x_1); diff --git a/stage0/stdlib/Lean/Elab/Mixfix.c b/stage0/stdlib/Lean/Elab/Mixfix.c index ec4718711a..4608143260 100644 --- a/stage0/stdlib/Lean/Elab/Mixfix.c +++ b/stage0/stdlib/Lean/Elab/Mixfix.c @@ -13,7 +13,6 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); static lean_object* l_Lean_Elab_Command_expandMixfix___lambda__1___closed__11; extern lean_object* l_Lean_nullKind; @@ -30,6 +29,7 @@ static lean_object* l_Lean_Elab_Command_expandMixfix___lambda__11___closed__7; LEAN_EXPORT lean_object* l_Lean_Elab_Command_expandMixfix___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_expandMixfix___lambda__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_expandMixfix___lambda__6(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___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_expandMixfix___lambda__1___closed__12; lean_object* lean_array_push(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_expandMixfix___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -439,7 +439,7 @@ x_13 = l_Lean_Syntax_getArg(x_1, x_12); x_14 = lean_unsigned_to_nat(7u); x_15 = l_Lean_Syntax_getArg(x_1, x_14); lean_inc(x_10); -x_16 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_10, x_11); +x_16 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_10, x_11); x_17 = lean_ctor_get(x_16, 0); lean_inc(x_17); x_18 = lean_ctor_get(x_16, 1); @@ -765,7 +765,7 @@ x_13 = l_Lean_Syntax_getArg(x_1, x_12); x_14 = lean_unsigned_to_nat(7u); x_15 = l_Lean_Syntax_getArg(x_1, x_14); lean_inc(x_10); -x_16 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_10, x_11); +x_16 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_10, x_11); x_17 = lean_ctor_get(x_16, 0); lean_inc(x_17); x_18 = lean_ctor_get(x_16, 1); @@ -1200,7 +1200,7 @@ x_22 = l_Lean_numLitKind; x_23 = lean_box(2); x_24 = l_Lean_Syntax_mkLit(x_22, x_21, x_23); lean_inc(x_10); -x_25 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_10, x_18); +x_25 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_10, x_18); x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); x_27 = lean_ctor_get(x_25, 1); @@ -1607,7 +1607,7 @@ x_22 = l_Lean_numLitKind; x_23 = lean_box(2); x_24 = l_Lean_Syntax_mkLit(x_22, x_21, x_23); lean_inc(x_10); -x_25 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_10, x_18); +x_25 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_10, x_18); x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); x_27 = lean_ctor_get(x_25, 1); @@ -2014,7 +2014,7 @@ x_22 = l_Lean_numLitKind; x_23 = lean_box(2); x_24 = l_Lean_Syntax_mkLit(x_22, x_21, x_23); lean_inc(x_10); -x_25 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_10, x_18); +x_25 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_10, x_18); x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); x_27 = lean_ctor_get(x_25, 1); diff --git a/stage0/stdlib/Lean/Elab/MutualDef.c b/stage0/stdlib/Lean/Elab/MutualDef.c index 55147bb768..320e041993 100644 --- a/stage0/stdlib/Lean/Elab/MutualDef.c +++ b/stage0/stdlib/Lean/Elab/MutualDef.c @@ -18,7 +18,6 @@ lean_object* l_List_reverse___rarg(lean_object*); lean_object* l_Lean_getConstInfo___at_Lean_Elab_Term_mkConst___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at_Lean_Elab_Command_elabMutualDef___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__4___closed__3; -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__9; LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_processDefDeriving___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_update_forall(lean_object*, uint8_t, lean_object*, lean_object*); @@ -153,6 +152,7 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualD lean_object* l_Lean_Expr_appFn_x21(lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_MutualClosure_getModifiersForLetRecs___spec__1(lean_object*, size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_processDefDeriving___spec__1___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_checkKinds___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_levelMVarToParamHeaders_process___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -280,7 +280,6 @@ static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWher LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_elabMutualDef___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_declValToTerm___closed__6; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(lean_object*, lean_object*); static lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__3___closed__7; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isTheorem___spec__1___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__2___lambda__4___closed__4; @@ -587,7 +586,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_applyVisibility___at___private_Lean_Elab_Mu lean_object* l_Std_PersistentArray_toArray___rarg(lean_object*); lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(size_t, size_t, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__1___closed__5; LEAN_EXPORT lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_typeHasRecFun(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); @@ -768,6 +766,7 @@ uint8_t l_Lean_Elab_isFreshInstanceName(lean_object*); lean_object* l_Lean_Elab_fixLevelParams(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__15___lambda__1___boxed(lean_object**); LEAN_EXPORT lean_object* l_List_forIn_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkFreeVarMap___spec__7___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkFreeVarMap___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(lean_object*, lean_object*); lean_object* lean_expr_update_app(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkInitialUsedFVarsMap___spec__5___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkInitialUsedFVarsMap___spec__6(lean_object*, lean_object*, size_t, size_t, lean_object*); @@ -777,6 +776,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange___at___private_Lean_Ela LEAN_EXPORT lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabFunValues___boxed__const__1; static lean_object* l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__12___closed__2; uint8_t l_List_beq___at_Lean_OpenDecl_instToStringOpenDecl___spec__1(lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__2___lambda__1(lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__4___closed__6; @@ -6888,7 +6888,7 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualD _start: { lean_object* x_7; uint8_t x_8; -x_7 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_5, x_6); +x_7 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_5, x_6); x_8 = !lean_is_exclusive(x_7); if (x_8 == 0) { @@ -7004,7 +7004,7 @@ else { lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; size_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_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_inc(x_7); -x_13 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_7, x_8); +x_13 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_7, x_8); x_14 = lean_ctor_get(x_13, 0); lean_inc(x_14); x_15 = lean_ctor_get(x_13, 1); @@ -7023,7 +7023,7 @@ x_20 = lean_name_mk_string(x_1, x_19); x_21 = lean_usize_of_nat(x_9); lean_dec(x_9); x_22 = x_3; -x_23 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_21, x_4, x_22); +x_23 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_21, x_4, x_22); x_24 = x_23; x_25 = l_Lean_Elab_instInhabitedDefViewElabHeader___closed__1; x_26 = l_Array_append___rarg(x_25, x_24); @@ -7134,7 +7134,7 @@ x_17 = lean_ctor_get(x_7, 0); lean_inc(x_17); lean_dec(x_7); lean_inc(x_8); -x_18 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_8, x_9); +x_18 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_8, x_9); x_19 = lean_ctor_get(x_18, 0); lean_inc(x_19); x_20 = lean_ctor_get(x_18, 1); @@ -7229,7 +7229,7 @@ x_59 = lean_ctor_get(x_7, 0); lean_inc(x_59); lean_dec(x_7); lean_inc(x_56); -x_60 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_56, x_9); +x_60 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_56, x_9); x_61 = lean_ctor_get(x_60, 0); lean_inc(x_61); x_62 = lean_ctor_get(x_60, 1); @@ -7391,7 +7391,7 @@ x_34 = l_Lean_Syntax_getArg(x_22, x_33); x_35 = l_Lean_Syntax_getArgs(x_34); lean_dec(x_34); x_36 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__2___closed__3; -x_37 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(x_35, x_36); +x_37 = l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(x_35, x_36); lean_dec(x_35); if (lean_obj_tag(x_37) == 0) { @@ -7921,7 +7921,7 @@ lean_dec(x_9); x_11 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__3___closed__6; x_12 = lean_alloc_closure((void*)(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___lambda__2), 2, 1); lean_closure_set(x_12, 0, x_11); -x_13 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(x_10, x_12); +x_13 = l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(x_10, x_12); lean_dec(x_10); if (lean_obj_tag(x_13) == 0) { @@ -7986,7 +7986,7 @@ lean_inc(x_37); x_38 = lean_ctor_get(x_36, 1); lean_inc(x_38); lean_dec(x_36); -x_39 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_38); +x_39 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_38); x_40 = !lean_is_exclusive(x_39); if (x_40 == 0) { diff --git a/stage0/stdlib/Lean/Elab/Notation.c b/stage0/stdlib/Lean/Elab/Notation.c index 03f738d70b..08d829346c 100644 --- a/stage0/stdlib/Lean/Elab/Notation.c +++ b/stage0/stdlib/Lean/Elab/Notation.c @@ -16,7 +16,6 @@ extern "C" { static lean_object* l_Lean_Elab_Command_expandNotationItemIntoSyntaxItem___closed__10; static lean_object* l___private_Lean_Elab_Notation_0__Lean_Elab_Command_expandNotationAux___lambda__2___closed__19; static lean_object* l___private_Lean_Elab_Notation_0__Lean_Elab_Command_expandNotationAux___lambda__2___closed__23; -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_expandNotation___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_mkSimpleDelab___closed__29; size_t lean_usize_add(size_t, size_t); @@ -58,6 +57,7 @@ static lean_object* l_Lean_Elab_Command_mkSimpleDelab___closed__77; lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_mkSimpleDelab___closed__66; static lean_object* l_Lean_Elab_Command_mkSimpleDelab___closed__56; +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Notation_0__Lean_Elab_Command_expandNotationAux___lambda__2___closed__35; static lean_object* l_Lean_Elab_Command_expandNotationItemIntoSyntaxItem___closed__6; static lean_object* l___private_Lean_Elab_Notation_0__Lean_Elab_Command_expandNotationAux___lambda__2___closed__39; @@ -182,7 +182,6 @@ static lean_object* l___regBuiltin_Lean_Elab_Command_expandNotation___closed__1; lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); lean_object* l_Lean_Macro_resolveGlobalName(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(size_t, size_t, lean_object*); static lean_object* l___private_Lean_Elab_Notation_0__Lean_Elab_Command_expandNotationAux___lambda__2___closed__2; lean_object* l_Lean_Syntax_getKind(lean_object*); static lean_object* l_Lean_Elab_Command_expandNotationItemIntoSyntaxItem___closed__12; @@ -231,6 +230,7 @@ static lean_object* l_Lean_Elab_Command_mkSimpleDelab___closed__11; static lean_object* l_Lean_Elab_Command_expandNotationItemIntoSyntaxItem___closed__9; static lean_object* l_Lean_Elab_Command_mkSimpleDelab___closed__61; LEAN_EXPORT lean_object* l___private_Lean_Elab_Notation_0__Lean_Elab_Command_antiquote___lambda__1___boxed(lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Command_mkSimpleDelab___closed__19; LEAN_EXPORT lean_object* l___private_Lean_Elab_Notation_0__Lean_Elab_Command_expandNotationAux___boxed__const__1; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Command_mkSimpleDelab___spec__4___boxed(lean_object*, lean_object*, lean_object*); @@ -7633,7 +7633,7 @@ x_33 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_33, 0, x_32); lean_ctor_set(x_33, 1, x_24); lean_inc(x_14); -x_130 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_14, x_25); +x_130 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_14, x_25); x_131 = lean_ctor_get(x_130, 0); lean_inc(x_131); x_132 = lean_ctor_get(x_130, 1); @@ -7709,7 +7709,7 @@ x_170 = lean_array_get_size(x_9); x_171 = lean_usize_of_nat(x_170); lean_dec(x_170); x_172 = x_9; -x_173 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_171, x_3, x_172); +x_173 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_171, x_3, x_172); x_174 = x_173; x_175 = l_Lean_Elab_Command_mkSimpleDelab___closed__12; x_176 = l_Array_append___rarg(x_175, x_174); @@ -7779,7 +7779,7 @@ block_129: { lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; uint8_t x_88; lean_inc(x_14); -x_36 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_14, x_35); +x_36 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_14, x_35); x_37 = lean_ctor_get(x_36, 0); lean_inc(x_37); x_38 = lean_ctor_get(x_36, 1); @@ -7885,7 +7885,7 @@ else { lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_inc(x_14); -x_91 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_14, x_38); +x_91 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_14, x_38); x_92 = lean_ctor_get(x_91, 0); lean_inc(x_92); x_93 = lean_ctor_get(x_91, 1); diff --git a/stage0/stdlib/Lean/Elab/Quotation.c b/stage0/stdlib/Lean/Elab/Quotation.c index ad27e3ade4..03a986009f 100644 --- a/stage0/stdlib/Lean/Elab/Quotation.c +++ b/stage0/stdlib/Lean/Elab/Quotation.c @@ -20,10 +20,10 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quota static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__44; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__9; lean_object* l_Lean_mkCIdentFrom(lean_object*, lean_object*); -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__24; LEAN_EXPORT lean_object* l_Array_sequenceMap___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__11___boxed(lean_object**); +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__58; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__8; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__8; lean_object* l_Lean_Syntax_unescapeAntiquot(lean_object*); @@ -34,12 +34,14 @@ lean_object* l_Lean_extractMacroScopes(lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__17; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__4; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__9; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__26; size_t lean_usize_add(size_t, size_t); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__3; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__58; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__2; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698____closed__1; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__26; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__4; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__45; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__31; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__15___closed__3; @@ -55,64 +57,68 @@ lean_object* l_List_head_x21___at_Lean_Elab_Term_resolveName_x27___spec__2(lean_ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__9; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__17; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__57; lean_object* l_Lean_stringToMessageData(lean_object*); static lean_object* l_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__9___closed__9; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__7; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__4; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__18(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__43; +static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__40; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__11; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__4; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__3; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698____closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__27; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__12; lean_object* lean_mk_empty_array_with_capacity(lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6___closed__1; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6___closed__8; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___boxed(lean_object**); +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__35; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__27; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__65; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__40; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__1; static lean_object* l_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__9___closed__4; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__39; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__21; static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_empty___closed__1; extern lean_object* l_Lean_nullKind; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__1; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__12; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662____closed__4; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__26; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__17; lean_object* lean_name_mk_string(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__4; lean_object* l_Array_eraseIdx___rarg(lean_object*, lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__7(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); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__4; static lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__5; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__4; +static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__44; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__1___closed__5; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__4(size_t, size_t, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__3___closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__8; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__10; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__32; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_append___rarg(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__19; LEAN_EXPORT lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_resolveSectionVariable___boxed(lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__2; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__20; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__34; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__31; static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__6; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__17; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__36; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__8; LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__6; @@ -130,8 +136,6 @@ lean_object* lean_array_uset(lean_object*, size_t, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__27; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__39; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__65; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__12; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__1; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___boxed(lean_object**); @@ -143,7 +147,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quota LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6___closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__26; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__35; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__9; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24; @@ -165,14 +168,12 @@ static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__40; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__9; lean_object* lean_st_ref_get(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__20; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__51; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__9; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__10; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__42; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3___boxed(lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__26; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__19; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__15; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -180,6 +181,7 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__5(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_Elab_Term_Quotation_stxQuot_expand___closed__27; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__5; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3650____closed__3; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__13; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__15___closed__8; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__7; @@ -189,18 +191,22 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__1___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__32; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__5; +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__12; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_noOpMatchAdaptPats___lambda__1___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__18; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__3; +static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662____closed__3; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__31; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__3; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__23; lean_object* lean_string_append(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__23; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__61; LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___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_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__25; @@ -209,11 +215,9 @@ lean_object* l_List_range(lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__20; lean_object* l_Lean_MessageData_ofList(lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__14; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__7___boxed(lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__26___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__36; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__15; lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1___rarg(lean_object*); @@ -221,85 +225,86 @@ lean_object* l_Lean_Syntax_getAntiquotTerm(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__15___closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__11; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__15; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__5; LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__6___rarg(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__19; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__23; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___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_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3(size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__44; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681____closed__4; static lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__6; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__1; static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__1; LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__26___closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__5; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__18; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__31; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__13; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__14; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__5; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__8; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__6; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__3___boxed(lean_object*, lean_object*); lean_object* lean_string_utf8_byte_size(lean_object*); static lean_object* l_panic___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__1___closed__1; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__22; static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__10; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__59; lean_object* l_Lean_Elab_Term_Quotation_getPatternsVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_mkTuple(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(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_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__29; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662____closed__2; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__13; lean_object* l_Lean_Elab_Term_instInhabitedTermElabM(lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__37; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__14; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3650____closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__16; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__44; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__18; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__41; lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__2; uint8_t lean_usize_dec_lt(size_t, size_t); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__19; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__4; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__12; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nameLitKind; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__9; static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___boxed__const__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__17___boxed(lean_object**); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__5; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__11; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3633_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663_(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_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__2; +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3650_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674_(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_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__11; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__5; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_734____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___boxed(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__1___closed__1; lean_object* lean_nat_add(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__4; static lean_object* l_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__9___closed__2; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__27; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__24; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__4; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__3; +static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__47; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__7; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__57; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__5; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__4; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__29; lean_object* l_Lean_Syntax_SepArray_ofElems(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__18; @@ -308,45 +313,44 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quota LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__5; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632____closed__3; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__25; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__23; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___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_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_zip___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__30; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__17; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__2(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_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__20; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__11; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__3; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__42; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__9___closed__1; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__5; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__46; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__2(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__9; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__7; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__18; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__12; lean_object* l_List_replicate___rarg(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__25; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__6; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645____closed__2; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3633____closed__2; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__11; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__15; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__16; static lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__3; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__24; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__1___closed__4; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__2; +static lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__1; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__5; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__9; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__31; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__2; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__7___boxed(lean_object**); @@ -354,76 +358,69 @@ LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Quotation_match__ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__4; static lean_object* l___private_Init_Meta_0__Lean_quoteList___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__5; lean_object* lean_array_fget(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__29; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__59; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__7; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__17; -lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__37; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__8; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___boxed__const__1; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__31; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__7; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__3; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__5; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632____closed__2; lean_object* l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__7; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__24; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__14; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__14; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615____closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__5; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_numLitKind; static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push___closed__4; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__5; lean_object* l_ReaderT_bind___at_Lean_Unhygienic_instMonadQuotationUnhygienic___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__6; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__4; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__2; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__45; lean_object* lean_nat_sub(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645____closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__16; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__34; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__4; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__10; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__17; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__5; +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__9; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__8; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__7; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__48; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__17; lean_object* l_Lean_Syntax_mkCApp(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__10; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__4; static lean_object* l_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__9___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__5; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__8; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3633____closed__3; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__43; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__4; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__30; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__5; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__45; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__2; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__14; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__17; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__28; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__5; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__4; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__34; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__12; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__33; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__38; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__21; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__22; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__8; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__27; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__9; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__19; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__6; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_noOpMatchAdaptPats___lambda__1___closed__2; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615____closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__4; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__38; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__11; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__21; @@ -431,66 +428,67 @@ LEAN_EXPORT lean_object* l_panic___at___private_Lean_Elab_Quotation_0__Lean_Elab static lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__7; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__15; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__8; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__2; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681____closed__2; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__5; static lean_object* l_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__9___closed__6; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__23; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__3; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__8; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6___closed__6; LEAN_EXPORT lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__7; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__28; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__5; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__14; lean_object* l_Lean_replaceRef(lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__41; lean_object* l_Lean_Unhygienic_run___rarg(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__3; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__15; static lean_object* l___private_Init_Meta_0__Lean_quoteList___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__2; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__13; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__3; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__6; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__8; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__9; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__1; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, size_t, 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_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__38; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__6; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___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_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__5; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__21; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__14; lean_object* l_instInhabited___rarg(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__1; static lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__4___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__10; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10(lean_object*); +static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__48; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__2; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__56; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__20; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__15___closed__5; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__67; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__40; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__66; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__12___boxed(lean_object**); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__32; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__3; static lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__4; +static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__41; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__2; static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__11; lean_object* l_Nat_repr(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__32; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__10; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__15; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__4; uint8_t l_Lean_Option_get___at_Lean_ppExpr___spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__3; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__1; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__13; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__20; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__34; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__17; LEAN_EXPORT lean_object* l_panic___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__14(lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__7___closed__2; @@ -504,13 +502,11 @@ static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0_ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__31; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__13; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__19; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681____closed__3; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__2; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__3; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__2; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6___closed__5; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__20; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__29; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__10; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__32; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__28; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__5(lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__7___closed__4; @@ -523,17 +519,18 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__21; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__8; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3___lambda__1___closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__1; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__21; LEAN_EXPORT lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__2___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__15___closed__6; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__52; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__49; lean_object* l_Function_comp___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getCurrMacroScope(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__12; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__3; lean_object* lean_array_to_list(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__9; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__7; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___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___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__13; uint8_t l_Lean_Name_isAtomic(lean_object*); @@ -541,14 +538,13 @@ static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__4; static lean_object* l___private_Init_Meta_0__Lean_quoteList___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_mkTuple___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Environment_contains(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__5; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_noOpMatchAdaptPats___lambda__1___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__2; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__54; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__10; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__32; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__62; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645____closed__4; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__63; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__5; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__9; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_mkStrLit(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__4; @@ -556,7 +552,6 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__18; static lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__1; static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__13; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__25; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_noOpMatchAdaptPats(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_getAntiquotationIds(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -564,13 +559,15 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__17; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__5; LEAN_EXPORT lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__29; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__15___closed__11; static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__9; lean_object* l_Std_RBNode_find___at___private_Lean_Hygiene_0__Lean_sanitizeSyntaxAux___spec__2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__25; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__7___closed__5; -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_11069_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_11086_(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__24; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__3; @@ -579,29 +576,31 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__22; uint8_t l_Array_isEmpty___rarg(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__5; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__13; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__43; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__24; static lean_object* l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__2; extern lean_object* l_Lean_instInhabitedSyntax; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__10; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__15; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__16; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__7; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__28; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__47; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__27; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__60; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__7; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__14; lean_object* l_Lean_mkSepArray(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__3; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__37; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__6; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__55; static lean_object* l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__1; -static lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__4; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__10; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__42; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__53; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__25___closed__3; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__32; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__15___closed__9; @@ -609,17 +608,15 @@ lean_object* l_String_dropRight(lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__16; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__26(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1___rarg___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__15; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__4; size_t lean_usize_of_nat(lean_object*); -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__33; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__4; uint8_t l_Lean_Syntax_isAntiquot(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__6; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_empty; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__11; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__64; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2(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_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__1; static lean_object* l___private_Init_Meta_0__Lean_quoteList___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__6; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__16; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__3; @@ -630,19 +627,15 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quota static lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__6___closed__1; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__20; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__2; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__36; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__22; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__1; LEAN_EXPORT lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__6; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___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_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__27___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__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*); uint8_t l_Lean_Syntax_isAtom(lean_object*); @@ -652,24 +645,21 @@ LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at___private_Lean_Elab_Quotation_ extern lean_object* l_Lean_Elab_Term_termElabAttribute; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_noOpMatchAdaptPats___lambda__1(lean_object*, lean_object*, lean_object*); static lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__2; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681____closed__1; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__5; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__7___closed__3; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__4; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__53; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__13; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__18; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__42; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__11; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__30; uint8_t l_Lean_Syntax_isNodeOf(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__25; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__30; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__1; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__12; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__29; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__37; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__25; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615____closed__2; +static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__45; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__5; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__18; @@ -678,13 +668,13 @@ static lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__7___closed__6; lean_object* l_Lean_Syntax_getQuotContent(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__5(size_t, size_t, lean_object*); -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__18; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__12; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__39; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__32; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__10; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__41; LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__7(lean_object*, lean_object*, size_t, size_t); -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__15; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__13; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__16; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_String_intercalate(lean_object*, lean_object*); @@ -694,15 +684,14 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__16___boxed(lean_object**); static lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__15; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__30; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__6; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6___closed__7; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__1; static lean_object* l_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__9___closed__7; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__9; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__3___closed__3; LEAN_EXPORT lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__19; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__20(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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_Util_Trace_0__Lean_checkTraceOptionM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -711,67 +700,67 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__2; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__7; lean_object* l_Lean_Syntax_getNumArgs(lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__23; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__25___closed__5; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__1; -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3633_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669_(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3650_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668_(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__5; lean_object* l_Lean_Syntax_setArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__16___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__3(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__18; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__21; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__62; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__54; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__20; static lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__30; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__6; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__15___closed__10; extern lean_object* l_Id_instMonadId; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__22; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__11; static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__8; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__46; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__52; uint8_t lean_nat_dec_le(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__12; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632____closed__1; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__8___boxed(lean_object**); static lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__3___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__8___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_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__42; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__1; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__36; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3633____closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__2; static lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__9; lean_object* l_Lean_Syntax_getArgs(lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__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_EXPORT lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__4___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__3; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__11; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__1(lean_object*, lean_object*); -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(size_t, size_t, lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__7(lean_object*); lean_object* l_Lean_Syntax_getAntiquotSpliceSuffix(lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645____closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MacroScopesView_review(lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__1; static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___closed__1; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__50; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__33; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__14; @@ -783,10 +772,11 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__18; static lean_object* l___private_Init_Meta_0__Lean_quoteList___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__28; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__33; static lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__8; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__22; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_log___at_Lean_Elab_Term_traceAtCmdPos___spec__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__16; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__30; @@ -795,17 +785,19 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__18; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3(size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___closed__2; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__56; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__46; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__15; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__11; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__66; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__15___closed__7; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698____closed__2; LEAN_EXPORT lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__4; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__35; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__15; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__6; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__12; static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__16___closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__11; @@ -821,13 +813,13 @@ lean_object* l_Lean_Elab_Term_adaptExpander(lean_object*, lean_object*, lean_obj static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__28; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__20; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__14; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__14; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__45; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__13; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__19; LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6___closed__2; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__49; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__17; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__21; LEAN_EXPORT lean_object* l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__20; @@ -838,8 +830,11 @@ static lean_object* l___private_Init_Meta_0__Lean_quoteList___at_Lean_Elab_Term_ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__25; lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__8; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662____closed__1; extern lean_object* l_Lean_instInhabitedName; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__11; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__4; LEAN_EXPORT lean_object* l_panic___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__5; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__9___boxed(lean_object**); @@ -858,7 +853,6 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotati static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__13; lean_object* lean_panic_fn(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__4; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__28; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__5; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__12; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -869,13 +863,14 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push___closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__10; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_resolveSectionVariable_loop___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__5; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__34; lean_object* l_Lean_Syntax_getAntiquotSpliceContents(lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__25; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__6; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__9; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__36; lean_object* lean_mk_array(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__48; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__26; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__1; @@ -886,9 +881,9 @@ static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__16; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__16; static lean_object* l_panic___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___spec__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot____; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__9(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__8; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -900,7 +895,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quota static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__17; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__25___closed__1; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__35; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__22; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__10; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__32; @@ -918,6 +912,7 @@ LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_Quotation_0_ static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__39; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_resolveSectionVariable_loop(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isEscapedAntiquot(lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__50; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__9; lean_object* l_List_lengthTRAux___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__5___boxed(lean_object*, lean_object*, lean_object*); @@ -926,8 +921,12 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__4; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__12; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__27; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698____closed__4; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__24; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__21; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__38; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3650____closed__1; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___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*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__6; @@ -941,12 +940,15 @@ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_ static lean_object* l___private_Init_Meta_0__Lean_quoteList___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__5; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__23; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__21; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__11; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__5; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__16; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__10; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__19; 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_Quotation_stxQuot_expand___closed__31; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__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*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__10; lean_object* l_Lean_Syntax_antiquotSpliceKind_x3f(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__14; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14(lean_object*, lean_object*); @@ -968,11 +970,12 @@ static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__12; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__2; +lean_object* l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__51; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__1; LEAN_EXPORT lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__9___closed__5; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299_(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__19; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__5; LEAN_EXPORT lean_object* l_Array_sequenceMap___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1(lean_object*, lean_object*); @@ -984,16 +987,16 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__18; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__22; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__18; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__7; -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__63; +lean_object* l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(size_t, size_t, lean_object*); extern lean_object* l_Lean_Elab_Term_Quotation_hygiene; LEAN_EXPORT uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_734____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(lean_object*, lean_object*); lean_object* l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(lean_object*); -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__24; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__25(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__15; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__9; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__44; LEAN_EXPORT lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__6___boxed(lean_object**); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__6___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__3___closed__1; @@ -1001,11 +1004,13 @@ static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__16; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__20; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__3___closed__2; static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__14; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__2; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__20; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__47; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_build(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__5; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__60; lean_object* lean_nat_to_int(lean_object*); -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__55; lean_object* l_List_appendTR___rarg(lean_object*, lean_object*); lean_object* l_Lean_Syntax_antiquotKind_x3f(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1014,6 +1019,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__7; static lean_object* l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__13; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__64; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__8(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_Quotation_ArrayStxBuilder_push___closed__1; @@ -1029,14 +1035,18 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quota LEAN_EXPORT lean_object* l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__3(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_Quotation_stxQuot_expand___closed__11; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__7; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__9; static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__15___closed__12; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__21; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__2; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__67; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__40; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__21; +static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__43; +static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__27; lean_object* l_Lean_Elab_getBetterRef(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__61; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__4___boxed(lean_object*, lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Syntax_mkLit(lean_object*, lean_object*, lean_object*); @@ -7948,78 +7958,26 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; -x_1 = lean_mk_string("appendCore"); +x_1 = lean_mk_string("SourceInfo.none"); return x_1; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__12() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push___closed__2; -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__11; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__11; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__13() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("unexpected antiquotation splice"); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__14() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__13; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__15() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("expected token"); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__16() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__15; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__17() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("Syntax.atom"); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__18() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__17; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__19() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__17; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__11; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__18; +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__12; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -8027,30 +7985,92 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__20() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__14() { _start: { lean_object* x_1; -x_1 = lean_mk_string("atom"); +x_1 = lean_mk_string("SourceInfo"); return x_1; } } +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__14; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__15; +x_2 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__21; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__2; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__14; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__17; +x_2 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__3___closed__21; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__18; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__19; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__21() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__4; -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__20; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string("appendCore"); +return x_1; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__29; -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__20; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push___closed__2; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__21; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -8058,32 +8078,25 @@ return x_3; static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__23() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__22; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string("unexpected antiquotation splice"); +return x_1; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__23; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__23; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__25() { _start: { lean_object* x_1; -x_1 = lean_mk_string("Option.getD"); +x_1 = lean_mk_string("expected token"); return x_1; } } @@ -8092,17 +8105,34 @@ _start: { lean_object* x_1; lean_object* x_2; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__25; -x_2 = lean_string_utf8_byte_size(x_1); +x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__27() { _start: { +lean_object* x_1; +x_1 = lean_mk_string("Syntax.atom"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__28() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__27; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__29() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__25; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__27; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__26; +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__28; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -8110,7 +8140,90 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__28() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__30() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("atom"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__31() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__4; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__30; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__32() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__29; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__30; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__33() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__32; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__34() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__33; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__35() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Option.getD"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__36() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__35; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__37() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__35; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__36; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__38() { _start: { lean_object* x_1; @@ -8118,41 +8231,41 @@ x_1 = lean_mk_string("getD"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__29() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6___closed__6; -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__28; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__38; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__30() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__40() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__29; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__31() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__41() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__30; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__40; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__32() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__42() { _start: { lean_object* x_1; @@ -8160,22 +8273,22 @@ x_1 = lean_mk_string("getHeadInfo?"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__33() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__43() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__32; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__42; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__34() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__44() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__32; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__42; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__33; +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__43; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -8183,44 +8296,44 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__35() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__45() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__32; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__42; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__36() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__46() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__29; -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__32; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__42; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__37() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__47() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__36; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__46; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__38() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__48() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__37; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__47; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); @@ -8245,623 +8358,623 @@ return x_9; } case 1: { -lean_object* x_10; lean_object* x_11; lean_object* x_124; uint8_t x_137; +lean_object* x_10; lean_object* x_11; lean_object* x_138; uint8_t x_151; x_10 = lean_ctor_get(x_1, 0); lean_inc(x_10); -x_137 = l_Lean_Syntax_isAntiquot(x_1); -if (x_137 == 0) +x_151 = l_Lean_Syntax_isAntiquot(x_1); +if (x_151 == 0) { -uint8_t x_138; +uint8_t x_152; lean_inc(x_1); -x_138 = l_Lean_Syntax_isTokenAntiquot(x_1); -if (x_138 == 0) +x_152 = l_Lean_Syntax_isTokenAntiquot(x_1); +if (x_152 == 0) { -lean_object* x_139; -x_139 = lean_box(0); -x_124 = x_139; -goto block_136; +lean_object* x_153; +x_153 = lean_box(0); +x_138 = x_153; +goto block_150; } else { -uint8_t x_140; -x_140 = l_Lean_Syntax_isEscapedAntiquot(x_1); -if (x_140 == 0) +uint8_t x_154; +x_154 = l_Lean_Syntax_isEscapedAntiquot(x_1); +if (x_154 == 0) { -lean_object* x_141; lean_object* x_142; +lean_object* x_155; lean_object* x_156; lean_dec(x_10); -x_141 = lean_unsigned_to_nat(0u); -x_142 = l_Lean_Syntax_getArg(x_1, x_141); -if (lean_obj_tag(x_142) == 2) +x_155 = lean_unsigned_to_nat(0u); +x_156 = l_Lean_Syntax_getArg(x_1, x_155); +if (lean_obj_tag(x_156) == 2) { -uint8_t x_143; -x_143 = !lean_is_exclusive(x_142); -if (x_143 == 0) +uint8_t x_157; +x_157 = !lean_is_exclusive(x_156); +if (x_157 == 0) { -lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; uint8_t x_153; -x_144 = lean_ctor_get(x_142, 1); -x_145 = lean_ctor_get(x_142, 0); -lean_dec(x_145); +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; uint8_t x_167; +x_158 = lean_ctor_get(x_156, 1); +x_159 = lean_ctor_get(x_156, 0); +lean_dec(x_159); lean_inc(x_6); -x_146 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__2___rarg(x_6, x_7, x_8); -x_147 = lean_ctor_get(x_146, 0); -lean_inc(x_147); -x_148 = lean_ctor_get(x_146, 1); -lean_inc(x_148); -lean_dec(x_146); -x_149 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_148); +x_160 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__2___rarg(x_6, x_7, x_8); +x_161 = lean_ctor_get(x_160, 0); +lean_inc(x_161); +x_162 = lean_ctor_get(x_160, 1); +lean_inc(x_162); +lean_dec(x_160); +x_163 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_162); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_150 = lean_ctor_get(x_149, 0); -lean_inc(x_150); -x_151 = lean_ctor_get(x_149, 1); -lean_inc(x_151); -lean_dec(x_149); -x_152 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_151); +x_164 = lean_ctor_get(x_163, 0); +lean_inc(x_164); +x_165 = lean_ctor_get(x_163, 1); +lean_inc(x_165); +lean_dec(x_163); +x_166 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_165); lean_dec(x_7); -x_153 = !lean_is_exclusive(x_152); -if (x_153 == 0) +x_167 = !lean_is_exclusive(x_166); +if (x_167 == 0) { -lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; 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; uint8_t x_173; -x_154 = lean_ctor_get(x_152, 0); -x_155 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__21; -lean_inc(x_150); -lean_inc(x_154); -x_156 = l_Lean_addMacroScope(x_154, x_155, x_150); -x_157 = lean_box(0); -x_158 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__19; -x_159 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24; -lean_inc(x_147); -x_160 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_160, 0, x_147); -lean_ctor_set(x_160, 1, x_158); -lean_ctor_set(x_160, 2, x_156); -lean_ctor_set(x_160, 3, x_159); -x_161 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__13; -lean_inc(x_147); -lean_ctor_set(x_142, 1, x_161); -lean_ctor_set(x_142, 0, x_147); -x_162 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__29; -lean_inc(x_150); -lean_inc(x_154); -x_163 = l_Lean_addMacroScope(x_154, x_162, x_150); -x_164 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__27; -x_165 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__31; -lean_inc(x_147); -x_166 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_166, 0, x_147); -lean_ctor_set(x_166, 1, x_164); -lean_ctor_set(x_166, 2, x_163); -lean_ctor_set(x_166, 3, x_165); -x_167 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__35; -lean_inc(x_150); -lean_inc(x_154); -x_168 = l_Lean_addMacroScope(x_154, x_167, x_150); -x_169 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__34; -x_170 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__38; -lean_inc(x_147); -x_171 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_171, 0, x_147); -lean_ctor_set(x_171, 1, x_169); -lean_ctor_set(x_171, 2, x_168); -lean_ctor_set(x_171, 3, x_170); -x_172 = l_Lean_Syntax_getAntiquotTerm(x_1); -x_173 = !lean_is_exclusive(x_1); -if (x_173 == 0) +lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; uint8_t x_187; +x_168 = lean_ctor_get(x_166, 0); +x_169 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__31; +lean_inc(x_164); +lean_inc(x_168); +x_170 = l_Lean_addMacroScope(x_168, x_169, x_164); +x_171 = lean_box(0); +x_172 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__29; +x_173 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__34; +lean_inc(x_161); +x_174 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_174, 0, x_161); +lean_ctor_set(x_174, 1, x_172); +lean_ctor_set(x_174, 2, x_170); +lean_ctor_set(x_174, 3, x_173); +x_175 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__13; +lean_inc(x_161); +lean_ctor_set(x_156, 1, x_175); +lean_ctor_set(x_156, 0, x_161); +x_176 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; +lean_inc(x_164); +lean_inc(x_168); +x_177 = l_Lean_addMacroScope(x_168, x_176, x_164); +x_178 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__37; +x_179 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__41; +lean_inc(x_161); +x_180 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_180, 0, x_161); +lean_ctor_set(x_180, 1, x_178); +lean_ctor_set(x_180, 2, x_177); +lean_ctor_set(x_180, 3, x_179); +x_181 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__45; +lean_inc(x_164); +lean_inc(x_168); +x_182 = l_Lean_addMacroScope(x_168, x_181, x_164); +x_183 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__44; +x_184 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__48; +lean_inc(x_161); +x_185 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_185, 0, x_161); +lean_ctor_set(x_185, 1, x_183); +lean_ctor_set(x_185, 2, x_182); +lean_ctor_set(x_185, 3, x_184); +x_186 = l_Lean_Syntax_getAntiquotTerm(x_1); +x_187 = !lean_is_exclusive(x_1); +if (x_187 == 0) { -lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; -x_174 = lean_ctor_get(x_1, 1); -lean_dec(x_174); -x_175 = lean_ctor_get(x_1, 0); -lean_dec(x_175); -x_176 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__19; -x_177 = lean_array_push(x_176, x_172); -x_178 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; -lean_ctor_set(x_1, 1, x_177); -lean_ctor_set(x_1, 0, x_178); -x_179 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; -x_180 = lean_array_push(x_179, x_171); -x_181 = lean_array_push(x_180, x_1); -x_182 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; -x_183 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_183, 0, x_182); -lean_ctor_set(x_183, 1, x_181); -x_184 = lean_array_push(x_179, x_183); -x_185 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__16; -x_186 = lean_array_push(x_184, x_185); -x_187 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_187, 0, x_178); -lean_ctor_set(x_187, 1, x_186); -x_188 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__21; -lean_inc(x_147); -x_189 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_189, 0, x_147); -lean_ctor_set(x_189, 1, x_188); -x_190 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__22; -x_191 = lean_array_push(x_190, x_142); -lean_inc(x_191); -x_192 = lean_array_push(x_191, x_187); -lean_inc(x_189); -x_193 = lean_array_push(x_192, x_189); -x_194 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__12; -x_195 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_195, 0, x_194); -lean_ctor_set(x_195, 1, x_193); -x_196 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; -x_197 = l_Lean_addMacroScope(x_154, x_196, x_150); -x_198 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; -x_199 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_199, 0, x_147); -lean_ctor_set(x_199, 1, x_198); -lean_ctor_set(x_199, 2, x_197); -lean_ctor_set(x_199, 3, x_157); -x_200 = lean_array_push(x_179, x_195); -x_201 = lean_array_push(x_200, x_199); -x_202 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_202, 0, x_178); -lean_ctor_set(x_202, 1, x_201); -x_203 = lean_array_push(x_179, x_166); -x_204 = lean_array_push(x_203, x_202); -x_205 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_205, 0, x_182); -lean_ctor_set(x_205, 1, x_204); -x_206 = lean_array_push(x_179, x_205); -x_207 = lean_array_push(x_206, x_185); -x_208 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_208, 0, x_178); -lean_ctor_set(x_208, 1, x_207); -x_209 = lean_array_push(x_191, x_208); -x_210 = lean_array_push(x_209, x_189); -x_211 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_211, 0, x_194); -lean_ctor_set(x_211, 1, x_210); -x_212 = lean_box(2); -x_213 = l_Lean_Syntax_mkStrLit(x_144, x_212); -lean_dec(x_144); -x_214 = lean_array_push(x_179, x_211); +lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; +x_188 = lean_ctor_get(x_1, 1); +lean_dec(x_188); +x_189 = lean_ctor_get(x_1, 0); +lean_dec(x_189); +x_190 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__19; +x_191 = lean_array_push(x_190, x_186); +x_192 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; +lean_ctor_set(x_1, 1, x_191); +lean_ctor_set(x_1, 0, x_192); +x_193 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; +x_194 = lean_array_push(x_193, x_185); +x_195 = lean_array_push(x_194, x_1); +x_196 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; +x_197 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_197, 0, x_196); +lean_ctor_set(x_197, 1, x_195); +x_198 = lean_array_push(x_193, x_197); +x_199 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__16; +x_200 = lean_array_push(x_198, x_199); +x_201 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_201, 0, x_192); +lean_ctor_set(x_201, 1, x_200); +x_202 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__21; +lean_inc(x_161); +x_203 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_203, 0, x_161); +lean_ctor_set(x_203, 1, x_202); +x_204 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__22; +x_205 = lean_array_push(x_204, x_156); +lean_inc(x_205); +x_206 = lean_array_push(x_205, x_201); +lean_inc(x_203); +x_207 = lean_array_push(x_206, x_203); +x_208 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__12; +x_209 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_209, 0, x_208); +lean_ctor_set(x_209, 1, x_207); +x_210 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; +x_211 = l_Lean_addMacroScope(x_168, x_210, x_164); +x_212 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; +x_213 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_213, 0, x_161); +lean_ctor_set(x_213, 1, x_212); +lean_ctor_set(x_213, 2, x_211); +lean_ctor_set(x_213, 3, x_171); +x_214 = lean_array_push(x_193, x_209); x_215 = lean_array_push(x_214, x_213); x_216 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_216, 0, x_178); +lean_ctor_set(x_216, 0, x_192); lean_ctor_set(x_216, 1, x_215); -x_217 = lean_array_push(x_179, x_160); +x_217 = lean_array_push(x_193, x_180); x_218 = lean_array_push(x_217, x_216); x_219 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_219, 0, x_182); +lean_ctor_set(x_219, 0, x_196); lean_ctor_set(x_219, 1, x_218); -lean_ctor_set(x_152, 0, x_219); -return x_152; +x_220 = lean_array_push(x_193, x_219); +x_221 = lean_array_push(x_220, x_199); +x_222 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_222, 0, x_192); +lean_ctor_set(x_222, 1, x_221); +x_223 = lean_array_push(x_205, x_222); +x_224 = lean_array_push(x_223, x_203); +x_225 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_225, 0, x_208); +lean_ctor_set(x_225, 1, x_224); +x_226 = lean_box(2); +x_227 = l_Lean_Syntax_mkStrLit(x_158, x_226); +lean_dec(x_158); +x_228 = lean_array_push(x_193, x_225); +x_229 = lean_array_push(x_228, x_227); +x_230 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_230, 0, x_192); +lean_ctor_set(x_230, 1, x_229); +x_231 = lean_array_push(x_193, x_174); +x_232 = lean_array_push(x_231, x_230); +x_233 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_233, 0, x_196); +lean_ctor_set(x_233, 1, x_232); +lean_ctor_set(x_166, 0, x_233); +return x_166; } else { -lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; +lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_dec(x_1); -x_220 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__19; -x_221 = lean_array_push(x_220, x_172); -x_222 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; -x_223 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_223, 0, x_222); -lean_ctor_set(x_223, 1, x_221); -x_224 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; -x_225 = lean_array_push(x_224, x_171); -x_226 = lean_array_push(x_225, x_223); -x_227 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; -x_228 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_228, 0, x_227); -lean_ctor_set(x_228, 1, x_226); -x_229 = lean_array_push(x_224, x_228); -x_230 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__16; -x_231 = lean_array_push(x_229, x_230); -x_232 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_232, 0, x_222); -lean_ctor_set(x_232, 1, x_231); -x_233 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__21; -lean_inc(x_147); -x_234 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_234, 0, x_147); -lean_ctor_set(x_234, 1, x_233); -x_235 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__22; -x_236 = lean_array_push(x_235, x_142); -lean_inc(x_236); -x_237 = lean_array_push(x_236, x_232); -lean_inc(x_234); -x_238 = lean_array_push(x_237, x_234); -x_239 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__12; -x_240 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_240, 0, x_239); -lean_ctor_set(x_240, 1, x_238); -x_241 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; -x_242 = l_Lean_addMacroScope(x_154, x_241, x_150); -x_243 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; -x_244 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_244, 0, x_147); -lean_ctor_set(x_244, 1, x_243); -lean_ctor_set(x_244, 2, x_242); -lean_ctor_set(x_244, 3, x_157); -x_245 = lean_array_push(x_224, x_240); -x_246 = lean_array_push(x_245, x_244); -x_247 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_247, 0, x_222); -lean_ctor_set(x_247, 1, x_246); -x_248 = lean_array_push(x_224, x_166); -x_249 = lean_array_push(x_248, x_247); -x_250 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_250, 0, x_227); -lean_ctor_set(x_250, 1, x_249); -x_251 = lean_array_push(x_224, x_250); -x_252 = lean_array_push(x_251, x_230); -x_253 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_253, 0, x_222); -lean_ctor_set(x_253, 1, x_252); -x_254 = lean_array_push(x_236, x_253); -x_255 = lean_array_push(x_254, x_234); -x_256 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_256, 0, x_239); -lean_ctor_set(x_256, 1, x_255); -x_257 = lean_box(2); -x_258 = l_Lean_Syntax_mkStrLit(x_144, x_257); -lean_dec(x_144); -x_259 = lean_array_push(x_224, x_256); +x_234 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__19; +x_235 = lean_array_push(x_234, x_186); +x_236 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; +x_237 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_237, 0, x_236); +lean_ctor_set(x_237, 1, x_235); +x_238 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; +x_239 = lean_array_push(x_238, x_185); +x_240 = lean_array_push(x_239, x_237); +x_241 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; +x_242 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_242, 0, x_241); +lean_ctor_set(x_242, 1, x_240); +x_243 = lean_array_push(x_238, x_242); +x_244 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__16; +x_245 = lean_array_push(x_243, x_244); +x_246 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_246, 0, x_236); +lean_ctor_set(x_246, 1, x_245); +x_247 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__21; +lean_inc(x_161); +x_248 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_248, 0, x_161); +lean_ctor_set(x_248, 1, x_247); +x_249 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__22; +x_250 = lean_array_push(x_249, x_156); +lean_inc(x_250); +x_251 = lean_array_push(x_250, x_246); +lean_inc(x_248); +x_252 = lean_array_push(x_251, x_248); +x_253 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__12; +x_254 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_254, 0, x_253); +lean_ctor_set(x_254, 1, x_252); +x_255 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; +x_256 = l_Lean_addMacroScope(x_168, x_255, x_164); +x_257 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; +x_258 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_258, 0, x_161); +lean_ctor_set(x_258, 1, x_257); +lean_ctor_set(x_258, 2, x_256); +lean_ctor_set(x_258, 3, x_171); +x_259 = lean_array_push(x_238, x_254); x_260 = lean_array_push(x_259, x_258); x_261 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_261, 0, x_222); +lean_ctor_set(x_261, 0, x_236); lean_ctor_set(x_261, 1, x_260); -x_262 = lean_array_push(x_224, x_160); +x_262 = lean_array_push(x_238, x_180); x_263 = lean_array_push(x_262, x_261); x_264 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_264, 0, x_227); +lean_ctor_set(x_264, 0, x_241); lean_ctor_set(x_264, 1, x_263); -lean_ctor_set(x_152, 0, x_264); -return x_152; +x_265 = lean_array_push(x_238, x_264); +x_266 = lean_array_push(x_265, x_244); +x_267 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_267, 0, x_236); +lean_ctor_set(x_267, 1, x_266); +x_268 = lean_array_push(x_250, x_267); +x_269 = lean_array_push(x_268, x_248); +x_270 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_270, 0, x_253); +lean_ctor_set(x_270, 1, x_269); +x_271 = lean_box(2); +x_272 = l_Lean_Syntax_mkStrLit(x_158, x_271); +lean_dec(x_158); +x_273 = lean_array_push(x_238, x_270); +x_274 = lean_array_push(x_273, x_272); +x_275 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_275, 0, x_236); +lean_ctor_set(x_275, 1, x_274); +x_276 = lean_array_push(x_238, x_174); +x_277 = lean_array_push(x_276, x_275); +x_278 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_278, 0, x_241); +lean_ctor_set(x_278, 1, x_277); +lean_ctor_set(x_166, 0, x_278); +return x_166; } } 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; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; -x_265 = lean_ctor_get(x_152, 0); -x_266 = lean_ctor_get(x_152, 1); -lean_inc(x_266); -lean_inc(x_265); -lean_dec(x_152); -x_267 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__21; -lean_inc(x_150); -lean_inc(x_265); -x_268 = l_Lean_addMacroScope(x_265, x_267, x_150); -x_269 = lean_box(0); -x_270 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__19; -x_271 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24; -lean_inc(x_147); -x_272 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_272, 0, x_147); -lean_ctor_set(x_272, 1, x_270); -lean_ctor_set(x_272, 2, x_268); -lean_ctor_set(x_272, 3, x_271); -x_273 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__13; -lean_inc(x_147); -lean_ctor_set(x_142, 1, x_273); -lean_ctor_set(x_142, 0, x_147); -x_274 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__29; -lean_inc(x_150); -lean_inc(x_265); -x_275 = l_Lean_addMacroScope(x_265, x_274, x_150); -x_276 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__27; -x_277 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__31; -lean_inc(x_147); -x_278 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_278, 0, x_147); -lean_ctor_set(x_278, 1, x_276); -lean_ctor_set(x_278, 2, x_275); -lean_ctor_set(x_278, 3, x_277); -x_279 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__35; -lean_inc(x_150); -lean_inc(x_265); -x_280 = l_Lean_addMacroScope(x_265, x_279, x_150); -x_281 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__34; -x_282 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__38; -lean_inc(x_147); -x_283 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_283, 0, x_147); -lean_ctor_set(x_283, 1, x_281); -lean_ctor_set(x_283, 2, x_280); -lean_ctor_set(x_283, 3, x_282); -x_284 = l_Lean_Syntax_getAntiquotTerm(x_1); +lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; +x_279 = lean_ctor_get(x_166, 0); +x_280 = lean_ctor_get(x_166, 1); +lean_inc(x_280); +lean_inc(x_279); +lean_dec(x_166); +x_281 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__31; +lean_inc(x_164); +lean_inc(x_279); +x_282 = l_Lean_addMacroScope(x_279, x_281, x_164); +x_283 = lean_box(0); +x_284 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__29; +x_285 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__34; +lean_inc(x_161); +x_286 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_286, 0, x_161); +lean_ctor_set(x_286, 1, x_284); +lean_ctor_set(x_286, 2, x_282); +lean_ctor_set(x_286, 3, x_285); +x_287 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__13; +lean_inc(x_161); +lean_ctor_set(x_156, 1, x_287); +lean_ctor_set(x_156, 0, x_161); +x_288 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; +lean_inc(x_164); +lean_inc(x_279); +x_289 = l_Lean_addMacroScope(x_279, x_288, x_164); +x_290 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__37; +x_291 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__41; +lean_inc(x_161); +x_292 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_292, 0, x_161); +lean_ctor_set(x_292, 1, x_290); +lean_ctor_set(x_292, 2, x_289); +lean_ctor_set(x_292, 3, x_291); +x_293 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__45; +lean_inc(x_164); +lean_inc(x_279); +x_294 = l_Lean_addMacroScope(x_279, x_293, x_164); +x_295 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__44; +x_296 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__48; +lean_inc(x_161); +x_297 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_297, 0, x_161); +lean_ctor_set(x_297, 1, x_295); +lean_ctor_set(x_297, 2, x_294); +lean_ctor_set(x_297, 3, x_296); +x_298 = l_Lean_Syntax_getAntiquotTerm(x_1); if (lean_is_exclusive(x_1)) { lean_ctor_release(x_1, 0); lean_ctor_release(x_1, 1); - x_285 = x_1; + x_299 = x_1; } else { lean_dec_ref(x_1); - x_285 = lean_box(0); + x_299 = lean_box(0); } -x_286 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__19; -x_287 = lean_array_push(x_286, x_284); -x_288 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; -if (lean_is_scalar(x_285)) { - x_289 = lean_alloc_ctor(1, 2, 0); +x_300 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__19; +x_301 = lean_array_push(x_300, x_298); +x_302 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; +if (lean_is_scalar(x_299)) { + x_303 = lean_alloc_ctor(1, 2, 0); } else { - x_289 = x_285; + x_303 = x_299; } -lean_ctor_set(x_289, 0, x_288); -lean_ctor_set(x_289, 1, x_287); -x_290 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; -x_291 = lean_array_push(x_290, x_283); -x_292 = lean_array_push(x_291, x_289); -x_293 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; -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 = lean_array_push(x_290, x_294); -x_296 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__16; -x_297 = lean_array_push(x_295, x_296); -x_298 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_298, 0, x_288); -lean_ctor_set(x_298, 1, x_297); -x_299 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__21; -lean_inc(x_147); -x_300 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_300, 0, x_147); -lean_ctor_set(x_300, 1, x_299); -x_301 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__22; -x_302 = lean_array_push(x_301, x_142); -lean_inc(x_302); -x_303 = lean_array_push(x_302, x_298); -lean_inc(x_300); -x_304 = lean_array_push(x_303, x_300); -x_305 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__12; -x_306 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_306, 0, x_305); -lean_ctor_set(x_306, 1, x_304); -x_307 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; -x_308 = l_Lean_addMacroScope(x_265, x_307, x_150); -x_309 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; -x_310 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_310, 0, x_147); -lean_ctor_set(x_310, 1, x_309); -lean_ctor_set(x_310, 2, x_308); -lean_ctor_set(x_310, 3, x_269); -x_311 = lean_array_push(x_290, x_306); -x_312 = lean_array_push(x_311, x_310); -x_313 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_313, 0, x_288); -lean_ctor_set(x_313, 1, x_312); -x_314 = lean_array_push(x_290, x_278); -x_315 = lean_array_push(x_314, x_313); -x_316 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_316, 0, x_293); -lean_ctor_set(x_316, 1, x_315); -x_317 = lean_array_push(x_290, x_316); -x_318 = lean_array_push(x_317, x_296); -x_319 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_319, 0, x_288); -lean_ctor_set(x_319, 1, x_318); -x_320 = lean_array_push(x_302, x_319); -x_321 = lean_array_push(x_320, x_300); -x_322 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_322, 0, x_305); -lean_ctor_set(x_322, 1, x_321); -x_323 = lean_box(2); -x_324 = l_Lean_Syntax_mkStrLit(x_144, x_323); -lean_dec(x_144); -x_325 = lean_array_push(x_290, x_322); +lean_ctor_set(x_303, 0, x_302); +lean_ctor_set(x_303, 1, x_301); +x_304 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; +x_305 = lean_array_push(x_304, x_297); +x_306 = lean_array_push(x_305, x_303); +x_307 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; +x_308 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_308, 0, x_307); +lean_ctor_set(x_308, 1, x_306); +x_309 = lean_array_push(x_304, x_308); +x_310 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__16; +x_311 = lean_array_push(x_309, x_310); +x_312 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_312, 0, x_302); +lean_ctor_set(x_312, 1, x_311); +x_313 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__21; +lean_inc(x_161); +x_314 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_314, 0, x_161); +lean_ctor_set(x_314, 1, x_313); +x_315 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__22; +x_316 = lean_array_push(x_315, x_156); +lean_inc(x_316); +x_317 = lean_array_push(x_316, x_312); +lean_inc(x_314); +x_318 = lean_array_push(x_317, x_314); +x_319 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__12; +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___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; +x_322 = l_Lean_addMacroScope(x_279, x_321, x_164); +x_323 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; +x_324 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_324, 0, x_161); +lean_ctor_set(x_324, 1, x_323); +lean_ctor_set(x_324, 2, x_322); +lean_ctor_set(x_324, 3, x_283); +x_325 = lean_array_push(x_304, x_320); x_326 = lean_array_push(x_325, x_324); x_327 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_327, 0, x_288); +lean_ctor_set(x_327, 0, x_302); lean_ctor_set(x_327, 1, x_326); -x_328 = lean_array_push(x_290, x_272); +x_328 = lean_array_push(x_304, x_292); x_329 = lean_array_push(x_328, x_327); x_330 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_330, 0, x_293); +lean_ctor_set(x_330, 0, x_307); lean_ctor_set(x_330, 1, x_329); -x_331 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_331, 0, x_330); -lean_ctor_set(x_331, 1, x_266); -return x_331; +x_331 = lean_array_push(x_304, x_330); +x_332 = lean_array_push(x_331, x_310); +x_333 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_333, 0, x_302); +lean_ctor_set(x_333, 1, x_332); +x_334 = lean_array_push(x_316, x_333); +x_335 = lean_array_push(x_334, x_314); +x_336 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_336, 0, x_319); +lean_ctor_set(x_336, 1, x_335); +x_337 = lean_box(2); +x_338 = l_Lean_Syntax_mkStrLit(x_158, x_337); +lean_dec(x_158); +x_339 = lean_array_push(x_304, x_336); +x_340 = lean_array_push(x_339, x_338); +x_341 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_341, 0, x_302); +lean_ctor_set(x_341, 1, x_340); +x_342 = lean_array_push(x_304, x_286); +x_343 = lean_array_push(x_342, x_341); +x_344 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_344, 0, x_307); +lean_ctor_set(x_344, 1, x_343); +x_345 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_345, 0, x_344); +lean_ctor_set(x_345, 1, x_280); +return x_345; } } else { -lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; -x_332 = lean_ctor_get(x_142, 1); -lean_inc(x_332); -lean_dec(x_142); +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; +x_346 = lean_ctor_get(x_156, 1); +lean_inc(x_346); +lean_dec(x_156); lean_inc(x_6); -x_333 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__2___rarg(x_6, x_7, x_8); -x_334 = lean_ctor_get(x_333, 0); -lean_inc(x_334); -x_335 = lean_ctor_get(x_333, 1); -lean_inc(x_335); -lean_dec(x_333); -x_336 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_335); +x_347 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__2___rarg(x_6, x_7, x_8); +x_348 = lean_ctor_get(x_347, 0); +lean_inc(x_348); +x_349 = lean_ctor_get(x_347, 1); +lean_inc(x_349); +lean_dec(x_347); +x_350 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_349); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_337 = lean_ctor_get(x_336, 0); -lean_inc(x_337); -x_338 = lean_ctor_get(x_336, 1); -lean_inc(x_338); -lean_dec(x_336); -x_339 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_338); +x_351 = lean_ctor_get(x_350, 0); +lean_inc(x_351); +x_352 = lean_ctor_get(x_350, 1); +lean_inc(x_352); +lean_dec(x_350); +x_353 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_352); lean_dec(x_7); -x_340 = lean_ctor_get(x_339, 0); -lean_inc(x_340); -x_341 = lean_ctor_get(x_339, 1); -lean_inc(x_341); -if (lean_is_exclusive(x_339)) { - lean_ctor_release(x_339, 0); - lean_ctor_release(x_339, 1); - x_342 = x_339; +x_354 = lean_ctor_get(x_353, 0); +lean_inc(x_354); +x_355 = lean_ctor_get(x_353, 1); +lean_inc(x_355); +if (lean_is_exclusive(x_353)) { + lean_ctor_release(x_353, 0); + lean_ctor_release(x_353, 1); + x_356 = x_353; } else { - lean_dec_ref(x_339); - x_342 = lean_box(0); + lean_dec_ref(x_353); + x_356 = lean_box(0); } -x_343 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__21; -lean_inc(x_337); -lean_inc(x_340); -x_344 = l_Lean_addMacroScope(x_340, x_343, x_337); -x_345 = lean_box(0); -x_346 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__19; -x_347 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24; -lean_inc(x_334); -x_348 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_348, 0, x_334); -lean_ctor_set(x_348, 1, x_346); -lean_ctor_set(x_348, 2, x_344); -lean_ctor_set(x_348, 3, x_347); -x_349 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__13; -lean_inc(x_334); -x_350 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_350, 0, x_334); -lean_ctor_set(x_350, 1, x_349); -x_351 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__29; -lean_inc(x_337); -lean_inc(x_340); -x_352 = l_Lean_addMacroScope(x_340, x_351, x_337); -x_353 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__27; -x_354 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__31; -lean_inc(x_334); -x_355 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_355, 0, x_334); -lean_ctor_set(x_355, 1, x_353); -lean_ctor_set(x_355, 2, x_352); -lean_ctor_set(x_355, 3, x_354); -x_356 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__35; -lean_inc(x_337); -lean_inc(x_340); -x_357 = l_Lean_addMacroScope(x_340, x_356, x_337); -x_358 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__34; -x_359 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__38; -lean_inc(x_334); -x_360 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_360, 0, x_334); -lean_ctor_set(x_360, 1, x_358); -lean_ctor_set(x_360, 2, x_357); -lean_ctor_set(x_360, 3, x_359); -x_361 = l_Lean_Syntax_getAntiquotTerm(x_1); +x_357 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__31; +lean_inc(x_351); +lean_inc(x_354); +x_358 = l_Lean_addMacroScope(x_354, x_357, x_351); +x_359 = lean_box(0); +x_360 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__29; +x_361 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__34; +lean_inc(x_348); +x_362 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_362, 0, x_348); +lean_ctor_set(x_362, 1, x_360); +lean_ctor_set(x_362, 2, x_358); +lean_ctor_set(x_362, 3, x_361); +x_363 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__13; +lean_inc(x_348); +x_364 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_364, 0, x_348); +lean_ctor_set(x_364, 1, x_363); +x_365 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; +lean_inc(x_351); +lean_inc(x_354); +x_366 = l_Lean_addMacroScope(x_354, x_365, x_351); +x_367 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__37; +x_368 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__41; +lean_inc(x_348); +x_369 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_369, 0, x_348); +lean_ctor_set(x_369, 1, x_367); +lean_ctor_set(x_369, 2, x_366); +lean_ctor_set(x_369, 3, x_368); +x_370 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__45; +lean_inc(x_351); +lean_inc(x_354); +x_371 = l_Lean_addMacroScope(x_354, x_370, x_351); +x_372 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__44; +x_373 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__48; +lean_inc(x_348); +x_374 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_374, 0, x_348); +lean_ctor_set(x_374, 1, x_372); +lean_ctor_set(x_374, 2, x_371); +lean_ctor_set(x_374, 3, x_373); +x_375 = l_Lean_Syntax_getAntiquotTerm(x_1); if (lean_is_exclusive(x_1)) { lean_ctor_release(x_1, 0); lean_ctor_release(x_1, 1); - x_362 = x_1; + x_376 = x_1; } else { lean_dec_ref(x_1); - x_362 = lean_box(0); + x_376 = lean_box(0); } -x_363 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__19; -x_364 = lean_array_push(x_363, x_361); -x_365 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; -if (lean_is_scalar(x_362)) { - x_366 = lean_alloc_ctor(1, 2, 0); +x_377 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__19; +x_378 = lean_array_push(x_377, x_375); +x_379 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; +if (lean_is_scalar(x_376)) { + x_380 = lean_alloc_ctor(1, 2, 0); } else { - x_366 = x_362; + x_380 = x_376; } -lean_ctor_set(x_366, 0, x_365); -lean_ctor_set(x_366, 1, x_364); -x_367 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; -x_368 = lean_array_push(x_367, x_360); -x_369 = lean_array_push(x_368, x_366); -x_370 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; -x_371 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_371, 0, x_370); -lean_ctor_set(x_371, 1, x_369); -x_372 = lean_array_push(x_367, x_371); -x_373 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__16; -x_374 = lean_array_push(x_372, x_373); -x_375 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_375, 0, x_365); -lean_ctor_set(x_375, 1, x_374); -x_376 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__21; -lean_inc(x_334); -x_377 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_377, 0, x_334); -lean_ctor_set(x_377, 1, x_376); -x_378 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__22; -x_379 = lean_array_push(x_378, x_350); -lean_inc(x_379); -x_380 = lean_array_push(x_379, x_375); -lean_inc(x_377); -x_381 = lean_array_push(x_380, x_377); -x_382 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__12; -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___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; -x_385 = l_Lean_addMacroScope(x_340, x_384, x_337); -x_386 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; -x_387 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_387, 0, x_334); -lean_ctor_set(x_387, 1, x_386); -lean_ctor_set(x_387, 2, x_385); -lean_ctor_set(x_387, 3, x_345); -x_388 = lean_array_push(x_367, x_383); -x_389 = lean_array_push(x_388, x_387); -x_390 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_390, 0, x_365); -lean_ctor_set(x_390, 1, x_389); -x_391 = lean_array_push(x_367, x_355); -x_392 = lean_array_push(x_391, x_390); -x_393 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_393, 0, x_370); -lean_ctor_set(x_393, 1, x_392); -x_394 = lean_array_push(x_367, x_393); -x_395 = lean_array_push(x_394, x_373); -x_396 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_396, 0, x_365); -lean_ctor_set(x_396, 1, x_395); -x_397 = lean_array_push(x_379, x_396); -x_398 = lean_array_push(x_397, x_377); -x_399 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_399, 0, x_382); -lean_ctor_set(x_399, 1, x_398); -x_400 = lean_box(2); -x_401 = l_Lean_Syntax_mkStrLit(x_332, x_400); -lean_dec(x_332); -x_402 = lean_array_push(x_367, x_399); +lean_ctor_set(x_380, 0, x_379); +lean_ctor_set(x_380, 1, x_378); +x_381 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; +x_382 = lean_array_push(x_381, x_374); +x_383 = lean_array_push(x_382, x_380); +x_384 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; +x_385 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_385, 0, x_384); +lean_ctor_set(x_385, 1, x_383); +x_386 = lean_array_push(x_381, x_385); +x_387 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__16; +x_388 = lean_array_push(x_386, x_387); +x_389 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_389, 0, x_379); +lean_ctor_set(x_389, 1, x_388); +x_390 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__21; +lean_inc(x_348); +x_391 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_391, 0, x_348); +lean_ctor_set(x_391, 1, x_390); +x_392 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__22; +x_393 = lean_array_push(x_392, x_364); +lean_inc(x_393); +x_394 = lean_array_push(x_393, x_389); +lean_inc(x_391); +x_395 = lean_array_push(x_394, x_391); +x_396 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__12; +x_397 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_397, 0, x_396); +lean_ctor_set(x_397, 1, x_395); +x_398 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; +x_399 = l_Lean_addMacroScope(x_354, x_398, x_351); +x_400 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; +x_401 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_401, 0, x_348); +lean_ctor_set(x_401, 1, x_400); +lean_ctor_set(x_401, 2, x_399); +lean_ctor_set(x_401, 3, x_359); +x_402 = lean_array_push(x_381, x_397); x_403 = lean_array_push(x_402, x_401); x_404 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_404, 0, x_365); +lean_ctor_set(x_404, 0, x_379); lean_ctor_set(x_404, 1, x_403); -x_405 = lean_array_push(x_367, x_348); +x_405 = lean_array_push(x_381, x_369); x_406 = lean_array_push(x_405, x_404); x_407 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_407, 0, x_370); +lean_ctor_set(x_407, 0, x_384); lean_ctor_set(x_407, 1, x_406); -if (lean_is_scalar(x_342)) { - x_408 = lean_alloc_ctor(0, 2, 0); +x_408 = lean_array_push(x_381, x_407); +x_409 = lean_array_push(x_408, x_387); +x_410 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_410, 0, x_379); +lean_ctor_set(x_410, 1, x_409); +x_411 = lean_array_push(x_393, x_410); +x_412 = lean_array_push(x_411, x_391); +x_413 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_413, 0, x_396); +lean_ctor_set(x_413, 1, x_412); +x_414 = lean_box(2); +x_415 = l_Lean_Syntax_mkStrLit(x_346, x_414); +lean_dec(x_346); +x_416 = lean_array_push(x_381, x_413); +x_417 = lean_array_push(x_416, x_415); +x_418 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_418, 0, x_379); +lean_ctor_set(x_418, 1, x_417); +x_419 = lean_array_push(x_381, x_362); +x_420 = lean_array_push(x_419, x_418); +x_421 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_421, 0, x_384); +lean_ctor_set(x_421, 1, x_420); +if (lean_is_scalar(x_356)) { + x_422 = lean_alloc_ctor(0, 2, 0); } else { - x_408 = x_342; + x_422 = x_356; } -lean_ctor_set(x_408, 0, x_407); -lean_ctor_set(x_408, 1, x_341); -return x_408; +lean_ctor_set(x_422, 0, x_421); +lean_ctor_set(x_422, 1, x_355); +return x_422; } } else { -lean_object* x_409; lean_object* x_410; -lean_dec(x_142); -x_409 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__16; -x_410 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__7(x_1, x_409, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -return x_410; +lean_object* x_423; lean_object* x_424; +lean_dec(x_156); +x_423 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__26; +x_424 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__7(x_1, x_423, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_424; } } else { -lean_object* x_411; -x_411 = lean_box(0); -x_124 = x_411; -goto block_136; +lean_object* x_425; +x_425 = lean_box(0); +x_138 = x_425; +goto block_150; } } } else { -uint8_t x_412; -x_412 = l_Lean_Syntax_isEscapedAntiquot(x_1); -if (x_412 == 0) +uint8_t x_426; +x_426 = l_Lean_Syntax_isEscapedAntiquot(x_1); +if (x_426 == 0) { -lean_object* x_413; lean_object* x_414; +lean_object* x_427; lean_object* x_428; lean_dec(x_10); lean_dec(x_7); lean_dec(x_6); @@ -8869,22 +8982,22 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_413 = l_Lean_Syntax_getAntiquotTerm(x_1); +x_427 = l_Lean_Syntax_getAntiquotTerm(x_1); lean_dec(x_1); -x_414 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_414, 0, x_413); -lean_ctor_set(x_414, 1, x_8); -return x_414; +x_428 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_428, 0, x_427); +lean_ctor_set(x_428, 1, x_8); +return x_428; } else { -lean_object* x_415; -x_415 = lean_box(0); -x_124 = x_415; -goto block_136; +lean_object* x_429; +x_429 = lean_box(0); +x_138 = x_429; +goto block_150; } } -block_123: +block_137: { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; size_t x_22; size_t x_23; lean_object* x_24; lean_dec(x_11); @@ -8916,17 +9029,17 @@ lean_dec(x_21); x_23 = 0; if (x_19 == 0) { -lean_object* x_122; -x_122 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__12; -x_24 = x_122; -goto block_121; +lean_object* x_136; +x_136 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__22; +x_24 = x_136; +goto block_135; } else { x_24 = x_18; -goto block_121; +goto block_135; } -block_121: +block_135: { lean_object* x_25; lean_object* x_26; lean_object* x_27; x_25 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push___closed__2; @@ -8971,178 +9084,206 @@ lean_dec(x_7); x_37 = !lean_is_exclusive(x_36); if (x_37 == 0) { -lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; 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_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; x_38 = lean_ctor_get(x_36, 0); x_39 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__7; +lean_inc(x_34); +lean_inc(x_38); x_40 = l_Lean_addMacroScope(x_38, x_39, x_34); x_41 = lean_box(0); x_42 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__5; x_43 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__10; +lean_inc(x_31); x_44 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_44, 0, x_31); lean_ctor_set(x_44, 1, x_42); lean_ctor_set(x_44, 2, x_40); lean_ctor_set(x_44, 3, x_43); +x_45 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__16; +x_46 = l_Lean_addMacroScope(x_38, x_45, x_34); +x_47 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__13; +x_48 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__20; +x_49 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_49, 0, x_31); +lean_ctor_set(x_49, 1, x_47); +lean_ctor_set(x_49, 2, x_46); +lean_ctor_set(x_49, 3, x_48); lean_inc(x_10); -x_45 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_41, x_10); -x_46 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_build(x_28); -x_47 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; -x_48 = lean_array_push(x_47, x_44); -if (lean_obj_tag(x_45) == 0) +x_50 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_41, x_10); +x_51 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_build(x_28); +x_52 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__22; +x_53 = lean_array_push(x_52, x_49); +x_54 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; +x_55 = lean_array_push(x_54, x_44); +if (lean_obj_tag(x_50) == 0) { -lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_49 = l___private_Init_Meta_0__Lean_quoteNameMk(x_10); -x_50 = lean_array_push(x_47, x_49); -x_51 = lean_array_push(x_50, x_46); -x_52 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; +lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_56 = l___private_Init_Meta_0__Lean_quoteNameMk(x_10); +x_57 = lean_array_push(x_53, x_56); +x_58 = lean_array_push(x_57, x_51); +x_59 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; if (lean_is_scalar(x_13)) { - x_53 = lean_alloc_ctor(1, 2, 0); + x_60 = lean_alloc_ctor(1, 2, 0); } else { - x_53 = x_13; + x_60 = x_13; } -lean_ctor_set(x_53, 0, x_52); -lean_ctor_set(x_53, 1, x_51); -x_54 = lean_array_push(x_48, x_53); -x_55 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; -x_56 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_56, 0, x_55); -lean_ctor_set(x_56, 1, x_54); -lean_ctor_set(x_36, 0, x_56); +lean_ctor_set(x_60, 0, x_59); +lean_ctor_set(x_60, 1, x_58); +x_61 = lean_array_push(x_55, x_60); +x_62 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; +x_63 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_63, 0, x_62); +lean_ctor_set(x_63, 1, x_61); +lean_ctor_set(x_36, 0, x_63); return x_36; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; 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_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_dec(x_10); -x_57 = lean_ctor_get(x_45, 0); -lean_inc(x_57); -lean_dec(x_45); -x_58 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__3; -x_59 = l_String_intercalate(x_58, x_57); -x_60 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__4; -x_61 = lean_string_append(x_60, x_59); -lean_dec(x_59); -x_62 = l_Lean_nameLitKind; -x_63 = lean_box(2); -x_64 = l_Lean_Syntax_mkLit(x_62, x_61, x_63); -x_65 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__19; -x_66 = lean_array_push(x_65, x_64); -x_67 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__2; +x_64 = lean_ctor_get(x_50, 0); +lean_inc(x_64); +lean_dec(x_50); +x_65 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__3; +x_66 = l_String_intercalate(x_65, x_64); +x_67 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__4; +x_68 = lean_string_append(x_67, x_66); +lean_dec(x_66); +x_69 = l_Lean_nameLitKind; +x_70 = lean_box(2); +x_71 = l_Lean_Syntax_mkLit(x_69, x_68, x_70); +x_72 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__19; +x_73 = lean_array_push(x_72, x_71); +x_74 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__2; if (lean_is_scalar(x_13)) { - x_68 = lean_alloc_ctor(1, 2, 0); + x_75 = lean_alloc_ctor(1, 2, 0); } else { - x_68 = x_13; + x_75 = x_13; } -lean_ctor_set(x_68, 0, x_67); -lean_ctor_set(x_68, 1, x_66); -x_69 = lean_array_push(x_47, x_68); -x_70 = lean_array_push(x_69, x_46); -x_71 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; -x_72 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set(x_72, 1, x_70); -x_73 = lean_array_push(x_48, x_72); -x_74 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; -x_75 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_75, 0, x_74); lean_ctor_set(x_75, 1, x_73); -lean_ctor_set(x_36, 0, x_75); +x_76 = lean_array_push(x_53, x_75); +x_77 = lean_array_push(x_76, x_51); +x_78 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; +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 = lean_array_push(x_55, x_79); +x_81 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; +x_82 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_82, 0, x_81); +lean_ctor_set(x_82, 1, x_80); +lean_ctor_set(x_36, 0, x_82); return x_36; } } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; -x_76 = lean_ctor_get(x_36, 0); -x_77 = lean_ctor_get(x_36, 1); -lean_inc(x_77); -lean_inc(x_76); +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; +x_83 = lean_ctor_get(x_36, 0); +x_84 = lean_ctor_get(x_36, 1); +lean_inc(x_84); +lean_inc(x_83); lean_dec(x_36); -x_78 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__7; -x_79 = l_Lean_addMacroScope(x_76, x_78, x_34); -x_80 = lean_box(0); -x_81 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__5; -x_82 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__10; -x_83 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_83, 0, x_31); -lean_ctor_set(x_83, 1, x_81); -lean_ctor_set(x_83, 2, x_79); -lean_ctor_set(x_83, 3, x_82); -lean_inc(x_10); -x_84 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_80, x_10); -x_85 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_build(x_28); -x_86 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; -x_87 = lean_array_push(x_86, x_83); -if (lean_obj_tag(x_84) == 0) -{ -lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; -x_88 = l___private_Init_Meta_0__Lean_quoteNameMk(x_10); -x_89 = lean_array_push(x_86, x_88); -x_90 = lean_array_push(x_89, x_85); -x_91 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; -if (lean_is_scalar(x_13)) { - x_92 = lean_alloc_ctor(1, 2, 0); -} else { - x_92 = x_13; -} -lean_ctor_set(x_92, 0, x_91); -lean_ctor_set(x_92, 1, x_90); -x_93 = lean_array_push(x_87, x_92); -x_94 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; -x_95 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_95, 0, x_94); +x_85 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__7; +lean_inc(x_34); +lean_inc(x_83); +x_86 = l_Lean_addMacroScope(x_83, x_85, x_34); +x_87 = lean_box(0); +x_88 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__5; +x_89 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__10; +lean_inc(x_31); +x_90 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_90, 0, x_31); +lean_ctor_set(x_90, 1, x_88); +lean_ctor_set(x_90, 2, x_86); +lean_ctor_set(x_90, 3, x_89); +x_91 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__16; +x_92 = l_Lean_addMacroScope(x_83, x_91, x_34); +x_93 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__13; +x_94 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__20; +x_95 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_95, 0, x_31); lean_ctor_set(x_95, 1, x_93); -x_96 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_96, 0, x_95); -lean_ctor_set(x_96, 1, x_77); -return x_96; -} -else +lean_ctor_set(x_95, 2, x_92); +lean_ctor_set(x_95, 3, x_94); +lean_inc(x_10); +x_96 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_87, x_10); +x_97 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_build(x_28); +x_98 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__22; +x_99 = lean_array_push(x_98, x_95); +x_100 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; +x_101 = lean_array_push(x_100, x_90); +if (lean_obj_tag(x_96) == 0) { -lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; -lean_dec(x_10); -x_97 = lean_ctor_get(x_84, 0); -lean_inc(x_97); -lean_dec(x_84); -x_98 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__3; -x_99 = l_String_intercalate(x_98, x_97); -x_100 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__4; -x_101 = lean_string_append(x_100, x_99); -lean_dec(x_99); -x_102 = l_Lean_nameLitKind; -x_103 = lean_box(2); -x_104 = l_Lean_Syntax_mkLit(x_102, x_101, x_103); -x_105 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__19; -x_106 = lean_array_push(x_105, x_104); -x_107 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__2; +lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; +x_102 = l___private_Init_Meta_0__Lean_quoteNameMk(x_10); +x_103 = lean_array_push(x_99, x_102); +x_104 = lean_array_push(x_103, x_97); +x_105 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; if (lean_is_scalar(x_13)) { - x_108 = lean_alloc_ctor(1, 2, 0); + x_106 = lean_alloc_ctor(1, 2, 0); } else { - x_108 = x_13; + x_106 = x_13; } -lean_ctor_set(x_108, 0, x_107); -lean_ctor_set(x_108, 1, x_106); -x_109 = lean_array_push(x_86, x_108); -x_110 = lean_array_push(x_109, x_85); -x_111 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; -x_112 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_112, 0, x_111); -lean_ctor_set(x_112, 1, x_110); -x_113 = lean_array_push(x_87, x_112); -x_114 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; -x_115 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_115, 0, x_114); -lean_ctor_set(x_115, 1, x_113); -x_116 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_116, 0, x_115); -lean_ctor_set(x_116, 1, x_77); -return x_116; +lean_ctor_set(x_106, 0, x_105); +lean_ctor_set(x_106, 1, x_104); +x_107 = lean_array_push(x_101, x_106); +x_108 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; +x_109 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_109, 0, x_108); +lean_ctor_set(x_109, 1, x_107); +x_110 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_110, 0, x_109); +lean_ctor_set(x_110, 1, x_84); +return x_110; +} +else +{ +lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; +lean_dec(x_10); +x_111 = lean_ctor_get(x_96, 0); +lean_inc(x_111); +lean_dec(x_96); +x_112 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__3; +x_113 = l_String_intercalate(x_112, x_111); +x_114 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__4; +x_115 = lean_string_append(x_114, x_113); +lean_dec(x_113); +x_116 = l_Lean_nameLitKind; +x_117 = lean_box(2); +x_118 = l_Lean_Syntax_mkLit(x_116, x_115, x_117); +x_119 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__19; +x_120 = lean_array_push(x_119, x_118); +x_121 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__2; +if (lean_is_scalar(x_13)) { + x_122 = lean_alloc_ctor(1, 2, 0); +} else { + x_122 = x_13; +} +lean_ctor_set(x_122, 0, x_121); +lean_ctor_set(x_122, 1, x_120); +x_123 = lean_array_push(x_99, x_122); +x_124 = lean_array_push(x_123, x_97); +x_125 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; +x_126 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_126, 0, x_125); +lean_ctor_set(x_126, 1, x_124); +x_127 = lean_array_push(x_101, x_126); +x_128 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; +x_129 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_129, 0, x_128); +lean_ctor_set(x_129, 1, x_127); +x_130 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_130, 0, x_129); +lean_ctor_set(x_130, 1, x_84); +return x_130; } } } else { -uint8_t x_117; +uint8_t x_131; lean_dec(x_13); lean_dec(x_10); lean_dec(x_7); @@ -9151,739 +9292,739 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_117 = !lean_is_exclusive(x_27); -if (x_117 == 0) +x_131 = !lean_is_exclusive(x_27); +if (x_131 == 0) { return x_27; } else { -lean_object* x_118; lean_object* x_119; lean_object* x_120; -x_118 = lean_ctor_get(x_27, 0); -x_119 = lean_ctor_get(x_27, 1); -lean_inc(x_119); -lean_inc(x_118); +lean_object* x_132; lean_object* x_133; lean_object* x_134; +x_132 = lean_ctor_get(x_27, 0); +x_133 = lean_ctor_get(x_27, 1); +lean_inc(x_133); +lean_inc(x_132); lean_dec(x_27); -x_120 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_120, 0, x_118); -lean_ctor_set(x_120, 1, x_119); -return x_120; -} -} -} -} -block_136: -{ -uint8_t x_125; -lean_dec(x_124); -x_125 = l_Lean_Syntax_isAntiquotSuffixSplice(x_1); -if (x_125 == 0) -{ -uint8_t x_126; -x_126 = l_Lean_Syntax_isAntiquotSplice(x_1); -if (x_126 == 0) -{ -lean_object* x_127; -x_127 = lean_box(0); -x_11 = x_127; -goto block_123; -} -else -{ -uint8_t x_128; -x_128 = l_Lean_Syntax_isEscapedAntiquot(x_1); -if (x_128 == 0) -{ -lean_object* x_129; lean_object* x_130; -lean_dec(x_10); -x_129 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__14; -x_130 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__7(x_1, x_129, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -return x_130; -} -else -{ -lean_object* x_131; -x_131 = lean_box(0); -x_11 = x_131; -goto block_123; -} -} -} -else -{ -uint8_t x_132; -x_132 = l_Lean_Syntax_isEscapedAntiquot(x_1); -if (x_132 == 0) -{ -lean_object* x_133; lean_object* x_134; -lean_dec(x_10); -x_133 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__14; -x_134 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__7(x_1, x_133, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +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; } +} +} +} +block_150: +{ +uint8_t x_139; +lean_dec(x_138); +x_139 = l_Lean_Syntax_isAntiquotSuffixSplice(x_1); +if (x_139 == 0) +{ +uint8_t x_140; +x_140 = l_Lean_Syntax_isAntiquotSplice(x_1); +if (x_140 == 0) +{ +lean_object* x_141; +x_141 = lean_box(0); +x_11 = x_141; +goto block_137; +} else { -lean_object* x_135; -x_135 = lean_box(0); -x_11 = x_135; -goto block_123; +uint8_t x_142; +x_142 = l_Lean_Syntax_isEscapedAntiquot(x_1); +if (x_142 == 0) +{ +lean_object* x_143; lean_object* x_144; +lean_dec(x_10); +x_143 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24; +x_144 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__7(x_1, x_143, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_144; +} +else +{ +lean_object* x_145; +x_145 = lean_box(0); +x_11 = x_145; +goto block_137; +} +} +} +else +{ +uint8_t x_146; +x_146 = l_Lean_Syntax_isEscapedAntiquot(x_1); +if (x_146 == 0) +{ +lean_object* x_147; lean_object* x_148; +lean_dec(x_10); +x_147 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24; +x_148 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__7(x_1, x_147, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_148; +} +else +{ +lean_object* x_149; +x_149 = lean_box(0); +x_11 = x_149; +goto block_137; } } } } case 2: { -uint8_t x_416; -x_416 = !lean_is_exclusive(x_1); -if (x_416 == 0) +uint8_t x_430; +x_430 = !lean_is_exclusive(x_1); +if (x_430 == 0) { -lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; uint8_t x_426; -x_417 = lean_ctor_get(x_1, 1); -x_418 = lean_ctor_get(x_1, 0); -lean_dec(x_418); +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; uint8_t x_440; +x_431 = lean_ctor_get(x_1, 1); +x_432 = lean_ctor_get(x_1, 0); +lean_dec(x_432); lean_inc(x_6); -x_419 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__2___rarg(x_6, x_7, x_8); -x_420 = lean_ctor_get(x_419, 0); -lean_inc(x_420); -x_421 = lean_ctor_get(x_419, 1); -lean_inc(x_421); -lean_dec(x_419); -x_422 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_421); +x_433 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__2___rarg(x_6, x_7, x_8); +x_434 = lean_ctor_get(x_433, 0); +lean_inc(x_434); +x_435 = lean_ctor_get(x_433, 1); +lean_inc(x_435); +lean_dec(x_433); +x_436 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_435); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_423 = lean_ctor_get(x_422, 0); -lean_inc(x_423); -x_424 = lean_ctor_get(x_422, 1); -lean_inc(x_424); -lean_dec(x_422); -x_425 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_424); +x_437 = lean_ctor_get(x_436, 0); +lean_inc(x_437); +x_438 = lean_ctor_get(x_436, 1); +lean_inc(x_438); +lean_dec(x_436); +x_439 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_438); lean_dec(x_7); -x_426 = !lean_is_exclusive(x_425); -if (x_426 == 0) +x_440 = !lean_is_exclusive(x_439); +if (x_440 == 0) { -lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; -x_427 = lean_ctor_get(x_425, 0); -x_428 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__21; -lean_inc(x_423); -lean_inc(x_427); -x_429 = l_Lean_addMacroScope(x_427, x_428, x_423); -x_430 = lean_box(0); -x_431 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__19; -x_432 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24; -lean_inc(x_420); -x_433 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_433, 0, x_420); -lean_ctor_set(x_433, 1, x_431); -lean_ctor_set(x_433, 2, x_429); -lean_ctor_set(x_433, 3, x_432); -x_434 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; -x_435 = l_Lean_addMacroScope(x_427, x_434, x_423); -x_436 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; -x_437 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_437, 0, x_420); -lean_ctor_set(x_437, 1, x_436); -lean_ctor_set(x_437, 2, x_435); -lean_ctor_set(x_437, 3, x_430); -x_438 = lean_box(2); -x_439 = l_Lean_Syntax_mkStrLit(x_417, x_438); -lean_dec(x_417); -x_440 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; -x_441 = lean_array_push(x_440, x_437); -x_442 = lean_array_push(x_441, x_439); -x_443 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; -lean_ctor_set_tag(x_1, 1); -lean_ctor_set(x_1, 1, x_442); -lean_ctor_set(x_1, 0, x_443); -x_444 = lean_array_push(x_440, x_433); -x_445 = lean_array_push(x_444, x_1); -x_446 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; -x_447 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_447, 0, x_446); +lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; +x_441 = lean_ctor_get(x_439, 0); +x_442 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__31; +lean_inc(x_437); +lean_inc(x_441); +x_443 = l_Lean_addMacroScope(x_441, x_442, x_437); +x_444 = lean_box(0); +x_445 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__29; +x_446 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__34; +lean_inc(x_434); +x_447 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_447, 0, x_434); lean_ctor_set(x_447, 1, x_445); -lean_ctor_set(x_425, 0, x_447); -return x_425; -} -else -{ -lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; -x_448 = lean_ctor_get(x_425, 0); -x_449 = lean_ctor_get(x_425, 1); -lean_inc(x_449); -lean_inc(x_448); -lean_dec(x_425); -x_450 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__21; -lean_inc(x_423); -lean_inc(x_448); -x_451 = l_Lean_addMacroScope(x_448, x_450, x_423); -x_452 = lean_box(0); -x_453 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__19; -x_454 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24; -lean_inc(x_420); -x_455 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_455, 0, x_420); -lean_ctor_set(x_455, 1, x_453); -lean_ctor_set(x_455, 2, x_451); -lean_ctor_set(x_455, 3, x_454); -x_456 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; -x_457 = l_Lean_addMacroScope(x_448, x_456, x_423); -x_458 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; -x_459 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_459, 0, x_420); -lean_ctor_set(x_459, 1, x_458); -lean_ctor_set(x_459, 2, x_457); -lean_ctor_set(x_459, 3, x_452); -x_460 = lean_box(2); -x_461 = l_Lean_Syntax_mkStrLit(x_417, x_460); -lean_dec(x_417); -x_462 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; -x_463 = lean_array_push(x_462, x_459); -x_464 = lean_array_push(x_463, x_461); -x_465 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; +lean_ctor_set(x_447, 2, x_443); +lean_ctor_set(x_447, 3, x_446); +x_448 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; +x_449 = l_Lean_addMacroScope(x_441, x_448, x_437); +x_450 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; +x_451 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_451, 0, x_434); +lean_ctor_set(x_451, 1, x_450); +lean_ctor_set(x_451, 2, x_449); +lean_ctor_set(x_451, 3, x_444); +x_452 = lean_box(2); +x_453 = l_Lean_Syntax_mkStrLit(x_431, x_452); +lean_dec(x_431); +x_454 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; +x_455 = lean_array_push(x_454, x_451); +x_456 = lean_array_push(x_455, x_453); +x_457 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; lean_ctor_set_tag(x_1, 1); -lean_ctor_set(x_1, 1, x_464); -lean_ctor_set(x_1, 0, x_465); -x_466 = lean_array_push(x_462, x_455); -x_467 = lean_array_push(x_466, x_1); -x_468 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; -x_469 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_469, 0, x_468); +lean_ctor_set(x_1, 1, x_456); +lean_ctor_set(x_1, 0, x_457); +x_458 = lean_array_push(x_454, x_447); +x_459 = lean_array_push(x_458, x_1); +x_460 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; +x_461 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_461, 0, x_460); +lean_ctor_set(x_461, 1, x_459); +lean_ctor_set(x_439, 0, x_461); +return x_439; +} +else +{ +lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; +x_462 = lean_ctor_get(x_439, 0); +x_463 = lean_ctor_get(x_439, 1); +lean_inc(x_463); +lean_inc(x_462); +lean_dec(x_439); +x_464 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__31; +lean_inc(x_437); +lean_inc(x_462); +x_465 = l_Lean_addMacroScope(x_462, x_464, x_437); +x_466 = lean_box(0); +x_467 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__29; +x_468 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__34; +lean_inc(x_434); +x_469 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_469, 0, x_434); lean_ctor_set(x_469, 1, x_467); -x_470 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_470, 0, x_469); -lean_ctor_set(x_470, 1, x_449); -return x_470; +lean_ctor_set(x_469, 2, x_465); +lean_ctor_set(x_469, 3, x_468); +x_470 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; +x_471 = l_Lean_addMacroScope(x_462, x_470, x_437); +x_472 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; +x_473 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_473, 0, x_434); +lean_ctor_set(x_473, 1, x_472); +lean_ctor_set(x_473, 2, x_471); +lean_ctor_set(x_473, 3, x_466); +x_474 = lean_box(2); +x_475 = l_Lean_Syntax_mkStrLit(x_431, x_474); +lean_dec(x_431); +x_476 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; +x_477 = lean_array_push(x_476, x_473); +x_478 = lean_array_push(x_477, x_475); +x_479 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; +lean_ctor_set_tag(x_1, 1); +lean_ctor_set(x_1, 1, x_478); +lean_ctor_set(x_1, 0, x_479); +x_480 = lean_array_push(x_476, x_469); +x_481 = lean_array_push(x_480, x_1); +x_482 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; +x_483 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_483, 0, x_482); +lean_ctor_set(x_483, 1, x_481); +x_484 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_484, 0, x_483); +lean_ctor_set(x_484, 1, x_463); +return x_484; } } else { -lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; -x_471 = lean_ctor_get(x_1, 1); -lean_inc(x_471); +lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; +x_485 = lean_ctor_get(x_1, 1); +lean_inc(x_485); lean_dec(x_1); lean_inc(x_6); -x_472 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__2___rarg(x_6, x_7, x_8); -x_473 = lean_ctor_get(x_472, 0); -lean_inc(x_473); -x_474 = lean_ctor_get(x_472, 1); -lean_inc(x_474); -lean_dec(x_472); -x_475 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_474); +x_486 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__2___rarg(x_6, x_7, x_8); +x_487 = lean_ctor_get(x_486, 0); +lean_inc(x_487); +x_488 = lean_ctor_get(x_486, 1); +lean_inc(x_488); +lean_dec(x_486); +x_489 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_488); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_476 = lean_ctor_get(x_475, 0); -lean_inc(x_476); -x_477 = lean_ctor_get(x_475, 1); -lean_inc(x_477); -lean_dec(x_475); -x_478 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_477); +x_490 = lean_ctor_get(x_489, 0); +lean_inc(x_490); +x_491 = lean_ctor_get(x_489, 1); +lean_inc(x_491); +lean_dec(x_489); +x_492 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_491); lean_dec(x_7); -x_479 = lean_ctor_get(x_478, 0); -lean_inc(x_479); -x_480 = lean_ctor_get(x_478, 1); -lean_inc(x_480); -if (lean_is_exclusive(x_478)) { - lean_ctor_release(x_478, 0); - lean_ctor_release(x_478, 1); - x_481 = x_478; +x_493 = lean_ctor_get(x_492, 0); +lean_inc(x_493); +x_494 = lean_ctor_get(x_492, 1); +lean_inc(x_494); +if (lean_is_exclusive(x_492)) { + lean_ctor_release(x_492, 0); + lean_ctor_release(x_492, 1); + x_495 = x_492; } else { - lean_dec_ref(x_478); - x_481 = lean_box(0); + lean_dec_ref(x_492); + x_495 = lean_box(0); } -x_482 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__21; -lean_inc(x_476); -lean_inc(x_479); -x_483 = l_Lean_addMacroScope(x_479, x_482, x_476); -x_484 = lean_box(0); -x_485 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__19; -x_486 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24; -lean_inc(x_473); -x_487 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_487, 0, x_473); -lean_ctor_set(x_487, 1, x_485); -lean_ctor_set(x_487, 2, x_483); -lean_ctor_set(x_487, 3, x_486); -x_488 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; -x_489 = l_Lean_addMacroScope(x_479, x_488, x_476); -x_490 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; -x_491 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_491, 0, x_473); -lean_ctor_set(x_491, 1, x_490); -lean_ctor_set(x_491, 2, x_489); -lean_ctor_set(x_491, 3, x_484); -x_492 = lean_box(2); -x_493 = l_Lean_Syntax_mkStrLit(x_471, x_492); -lean_dec(x_471); -x_494 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; -x_495 = lean_array_push(x_494, x_491); -x_496 = lean_array_push(x_495, x_493); -x_497 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; -x_498 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_498, 0, x_497); -lean_ctor_set(x_498, 1, x_496); -x_499 = lean_array_push(x_494, x_487); -x_500 = lean_array_push(x_499, x_498); -x_501 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; -x_502 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_502, 0, x_501); -lean_ctor_set(x_502, 1, x_500); -if (lean_is_scalar(x_481)) { - x_503 = lean_alloc_ctor(0, 2, 0); +x_496 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__31; +lean_inc(x_490); +lean_inc(x_493); +x_497 = l_Lean_addMacroScope(x_493, x_496, x_490); +x_498 = lean_box(0); +x_499 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__29; +x_500 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__34; +lean_inc(x_487); +x_501 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_501, 0, x_487); +lean_ctor_set(x_501, 1, x_499); +lean_ctor_set(x_501, 2, x_497); +lean_ctor_set(x_501, 3, x_500); +x_502 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; +x_503 = l_Lean_addMacroScope(x_493, x_502, x_490); +x_504 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; +x_505 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_505, 0, x_487); +lean_ctor_set(x_505, 1, x_504); +lean_ctor_set(x_505, 2, x_503); +lean_ctor_set(x_505, 3, x_498); +x_506 = lean_box(2); +x_507 = l_Lean_Syntax_mkStrLit(x_485, x_506); +lean_dec(x_485); +x_508 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; +x_509 = lean_array_push(x_508, x_505); +x_510 = lean_array_push(x_509, x_507); +x_511 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; +x_512 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_512, 0, x_511); +lean_ctor_set(x_512, 1, x_510); +x_513 = lean_array_push(x_508, x_501); +x_514 = lean_array_push(x_513, x_512); +x_515 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; +x_516 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_516, 0, x_515); +lean_ctor_set(x_516, 1, x_514); +if (lean_is_scalar(x_495)) { + x_517 = lean_alloc_ctor(0, 2, 0); } else { - x_503 = x_481; + x_517 = x_495; } -lean_ctor_set(x_503, 0, x_502); -lean_ctor_set(x_503, 1, x_480); -return x_503; +lean_ctor_set(x_517, 0, x_516); +lean_ctor_set(x_517, 1, x_494); +return x_517; } } default: { -uint8_t x_504; -x_504 = !lean_is_exclusive(x_1); -if (x_504 == 0) +uint8_t x_518; +x_518 = !lean_is_exclusive(x_1); +if (x_518 == 0) { -lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; uint8_t x_511; -x_505 = lean_ctor_get(x_1, 1); -x_506 = lean_ctor_get(x_1, 2); -x_507 = lean_ctor_get(x_1, 3); -x_508 = lean_ctor_get(x_1, 0); -lean_dec(x_508); -x_509 = lean_ctor_get(x_6, 0); -lean_inc(x_509); -x_510 = l_Lean_Elab_Term_Quotation_hygiene; -x_511 = l_Lean_Option_get___at_Lean_ppExpr___spec__1(x_509, x_510); -lean_dec(x_509); -if (x_511 == 0) +lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; uint8_t x_525; +x_519 = lean_ctor_get(x_1, 1); +x_520 = lean_ctor_get(x_1, 2); +x_521 = lean_ctor_get(x_1, 3); +x_522 = lean_ctor_get(x_1, 0); +lean_dec(x_522); +x_523 = lean_ctor_get(x_6, 0); +lean_inc(x_523); +x_524 = l_Lean_Elab_Term_Quotation_hygiene; +x_525 = l_Lean_Option_get___at_Lean_ppExpr___spec__1(x_523, x_524); +lean_dec(x_523); +if (x_525 == 0) { -lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; uint8_t x_519; +lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; uint8_t x_533; lean_inc(x_6); -x_512 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__2___rarg(x_6, x_7, x_8); -x_513 = lean_ctor_get(x_512, 0); -lean_inc(x_513); -x_514 = lean_ctor_get(x_512, 1); -lean_inc(x_514); -lean_dec(x_512); -x_515 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_514); +x_526 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__2___rarg(x_6, x_7, x_8); +x_527 = lean_ctor_get(x_526, 0); +lean_inc(x_527); +x_528 = lean_ctor_get(x_526, 1); +lean_inc(x_528); +lean_dec(x_526); +x_529 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_528); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_516 = lean_ctor_get(x_515, 0); -lean_inc(x_516); -x_517 = lean_ctor_get(x_515, 1); -lean_inc(x_517); -lean_dec(x_515); -x_518 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_517); +x_530 = lean_ctor_get(x_529, 0); +lean_inc(x_530); +x_531 = lean_ctor_get(x_529, 1); +lean_inc(x_531); +lean_dec(x_529); +x_532 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_531); lean_dec(x_7); -x_519 = !lean_is_exclusive(x_518); -if (x_519 == 0) +x_533 = !lean_is_exclusive(x_532); +if (x_533 == 0) { -lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; -x_520 = lean_ctor_get(x_518, 0); -x_521 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__6; -lean_inc(x_516); +lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; +x_534 = lean_ctor_get(x_532, 0); +x_535 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__6; +lean_inc(x_530); +lean_inc(x_534); +x_536 = l_Lean_addMacroScope(x_534, x_535, x_530); +x_537 = lean_box(0); +x_538 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__3; +x_539 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__9; +lean_inc(x_527); +lean_ctor_set(x_1, 3, x_539); +lean_ctor_set(x_1, 2, x_536); +lean_ctor_set(x_1, 1, x_538); +lean_ctor_set(x_1, 0, x_527); +x_540 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; +x_541 = l_Lean_addMacroScope(x_534, x_540, x_530); +x_542 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; +x_543 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_543, 0, x_527); +lean_ctor_set(x_543, 1, x_542); +lean_ctor_set(x_543, 2, x_541); +lean_ctor_set(x_543, 3, x_537); lean_inc(x_520); -x_522 = l_Lean_addMacroScope(x_520, x_521, x_516); -x_523 = lean_box(0); -x_524 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__3; -x_525 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__9; -lean_inc(x_513); -lean_ctor_set(x_1, 3, x_525); -lean_ctor_set(x_1, 2, x_522); -lean_ctor_set(x_1, 1, x_524); -lean_ctor_set(x_1, 0, x_513); -x_526 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; -x_527 = l_Lean_addMacroScope(x_520, x_526, x_516); -x_528 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; -x_529 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_529, 0, x_513); -lean_ctor_set(x_529, 1, x_528); -lean_ctor_set(x_529, 2, x_527); -lean_ctor_set(x_529, 3, x_523); -lean_inc(x_506); -x_530 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_523, x_506); -x_531 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10(x_507); -x_532 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__21; -x_533 = lean_array_push(x_532, x_529); -x_534 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; -x_535 = lean_array_push(x_534, x_1); -x_536 = lean_ctor_get(x_505, 0); -lean_inc(x_536); -x_537 = lean_ctor_get(x_505, 1); -lean_inc(x_537); -x_538 = lean_ctor_get(x_505, 2); -lean_inc(x_538); -lean_dec(x_505); -x_539 = lean_string_utf8_extract(x_536, x_537, x_538); -lean_dec(x_538); -lean_dec(x_537); -lean_dec(x_536); -x_540 = lean_box(2); -x_541 = l_Lean_Syntax_mkStrLit(x_539, x_540); -lean_dec(x_539); -x_542 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__19; -x_543 = lean_array_push(x_542, x_541); -x_544 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__17; -x_545 = l_Lean_Syntax_mkCApp(x_544, x_543); -x_546 = lean_array_push(x_533, x_545); -if (lean_obj_tag(x_530) == 0) +x_544 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_537, x_520); +x_545 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10(x_521); +x_546 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__21; +x_547 = lean_array_push(x_546, x_543); +x_548 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; +x_549 = lean_array_push(x_548, x_1); +x_550 = lean_ctor_get(x_519, 0); +lean_inc(x_550); +x_551 = lean_ctor_get(x_519, 1); +lean_inc(x_551); +x_552 = lean_ctor_get(x_519, 2); +lean_inc(x_552); +lean_dec(x_519); +x_553 = lean_string_utf8_extract(x_550, x_551, x_552); +lean_dec(x_552); +lean_dec(x_551); +lean_dec(x_550); +x_554 = lean_box(2); +x_555 = l_Lean_Syntax_mkStrLit(x_553, x_554); +lean_dec(x_553); +x_556 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__19; +x_557 = lean_array_push(x_556, x_555); +x_558 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__17; +x_559 = l_Lean_Syntax_mkCApp(x_558, x_557); +x_560 = lean_array_push(x_547, x_559); +if (lean_obj_tag(x_544) == 0) { -lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; -x_547 = l___private_Init_Meta_0__Lean_quoteNameMk(x_506); -x_548 = lean_array_push(x_546, x_547); -x_549 = lean_array_push(x_548, x_531); -x_550 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; -x_551 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_551, 0, x_550); -lean_ctor_set(x_551, 1, x_549); -x_552 = lean_array_push(x_535, x_551); -x_553 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; -x_554 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_554, 0, x_553); -lean_ctor_set(x_554, 1, x_552); -lean_ctor_set(x_518, 0, x_554); -return x_518; -} -else -{ -lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; -lean_dec(x_506); -x_555 = lean_ctor_get(x_530, 0); -lean_inc(x_555); -lean_dec(x_530); -x_556 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__3; -x_557 = l_String_intercalate(x_556, x_555); -x_558 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__4; -x_559 = lean_string_append(x_558, x_557); -lean_dec(x_557); -x_560 = l_Lean_nameLitKind; -x_561 = l_Lean_Syntax_mkLit(x_560, x_559, x_540); -x_562 = lean_array_push(x_542, x_561); -x_563 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__2; -x_564 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_564, 0, x_563); -lean_ctor_set(x_564, 1, x_562); -x_565 = lean_array_push(x_546, x_564); -x_566 = lean_array_push(x_565, x_531); -x_567 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; +lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; +x_561 = l___private_Init_Meta_0__Lean_quoteNameMk(x_520); +x_562 = lean_array_push(x_560, x_561); +x_563 = lean_array_push(x_562, x_545); +x_564 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; +x_565 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_565, 0, x_564); +lean_ctor_set(x_565, 1, x_563); +x_566 = lean_array_push(x_549, x_565); +x_567 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; x_568 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_568, 0, x_567); lean_ctor_set(x_568, 1, x_566); -x_569 = lean_array_push(x_535, x_568); -x_570 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; -x_571 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_571, 0, x_570); -lean_ctor_set(x_571, 1, x_569); -lean_ctor_set(x_518, 0, x_571); -return x_518; +lean_ctor_set(x_532, 0, x_568); +return x_532; +} +else +{ +lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; +lean_dec(x_520); +x_569 = lean_ctor_get(x_544, 0); +lean_inc(x_569); +lean_dec(x_544); +x_570 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__3; +x_571 = l_String_intercalate(x_570, x_569); +x_572 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__4; +x_573 = lean_string_append(x_572, x_571); +lean_dec(x_571); +x_574 = l_Lean_nameLitKind; +x_575 = l_Lean_Syntax_mkLit(x_574, x_573, x_554); +x_576 = lean_array_push(x_556, x_575); +x_577 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__2; +x_578 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_578, 0, x_577); +lean_ctor_set(x_578, 1, x_576); +x_579 = lean_array_push(x_560, x_578); +x_580 = lean_array_push(x_579, x_545); +x_581 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; +x_582 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_582, 0, x_581); +lean_ctor_set(x_582, 1, x_580); +x_583 = lean_array_push(x_549, x_582); +x_584 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; +x_585 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_585, 0, x_584); +lean_ctor_set(x_585, 1, x_583); +lean_ctor_set(x_532, 0, x_585); +return x_532; } } else { -lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; -x_572 = lean_ctor_get(x_518, 0); -x_573 = lean_ctor_get(x_518, 1); -lean_inc(x_573); -lean_inc(x_572); -lean_dec(x_518); -x_574 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__6; -lean_inc(x_516); -lean_inc(x_572); -x_575 = l_Lean_addMacroScope(x_572, x_574, x_516); -x_576 = lean_box(0); -x_577 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__3; -x_578 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__9; -lean_inc(x_513); -lean_ctor_set(x_1, 3, x_578); -lean_ctor_set(x_1, 2, x_575); -lean_ctor_set(x_1, 1, x_577); -lean_ctor_set(x_1, 0, x_513); -x_579 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; -x_580 = l_Lean_addMacroScope(x_572, x_579, x_516); -x_581 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; -x_582 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_582, 0, x_513); -lean_ctor_set(x_582, 1, x_581); -lean_ctor_set(x_582, 2, x_580); -lean_ctor_set(x_582, 3, x_576); -lean_inc(x_506); -x_583 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_576, x_506); -x_584 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10(x_507); -x_585 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__21; -x_586 = lean_array_push(x_585, x_582); -x_587 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; -x_588 = lean_array_push(x_587, x_1); -x_589 = lean_ctor_get(x_505, 0); -lean_inc(x_589); -x_590 = lean_ctor_get(x_505, 1); -lean_inc(x_590); -x_591 = lean_ctor_get(x_505, 2); -lean_inc(x_591); -lean_dec(x_505); -x_592 = lean_string_utf8_extract(x_589, x_590, x_591); -lean_dec(x_591); -lean_dec(x_590); -lean_dec(x_589); -x_593 = lean_box(2); -x_594 = l_Lean_Syntax_mkStrLit(x_592, x_593); -lean_dec(x_592); -x_595 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__19; -x_596 = lean_array_push(x_595, x_594); -x_597 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__17; -x_598 = l_Lean_Syntax_mkCApp(x_597, x_596); -x_599 = lean_array_push(x_586, x_598); -if (lean_obj_tag(x_583) == 0) +lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; +x_586 = lean_ctor_get(x_532, 0); +x_587 = lean_ctor_get(x_532, 1); +lean_inc(x_587); +lean_inc(x_586); +lean_dec(x_532); +x_588 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__6; +lean_inc(x_530); +lean_inc(x_586); +x_589 = l_Lean_addMacroScope(x_586, x_588, x_530); +x_590 = lean_box(0); +x_591 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__3; +x_592 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__9; +lean_inc(x_527); +lean_ctor_set(x_1, 3, x_592); +lean_ctor_set(x_1, 2, x_589); +lean_ctor_set(x_1, 1, x_591); +lean_ctor_set(x_1, 0, x_527); +x_593 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; +x_594 = l_Lean_addMacroScope(x_586, x_593, x_530); +x_595 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; +x_596 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_596, 0, x_527); +lean_ctor_set(x_596, 1, x_595); +lean_ctor_set(x_596, 2, x_594); +lean_ctor_set(x_596, 3, x_590); +lean_inc(x_520); +x_597 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_590, x_520); +x_598 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10(x_521); +x_599 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__21; +x_600 = lean_array_push(x_599, x_596); +x_601 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; +x_602 = lean_array_push(x_601, x_1); +x_603 = lean_ctor_get(x_519, 0); +lean_inc(x_603); +x_604 = lean_ctor_get(x_519, 1); +lean_inc(x_604); +x_605 = lean_ctor_get(x_519, 2); +lean_inc(x_605); +lean_dec(x_519); +x_606 = lean_string_utf8_extract(x_603, x_604, x_605); +lean_dec(x_605); +lean_dec(x_604); +lean_dec(x_603); +x_607 = lean_box(2); +x_608 = l_Lean_Syntax_mkStrLit(x_606, x_607); +lean_dec(x_606); +x_609 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__19; +x_610 = lean_array_push(x_609, x_608); +x_611 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__17; +x_612 = l_Lean_Syntax_mkCApp(x_611, x_610); +x_613 = lean_array_push(x_600, x_612); +if (lean_obj_tag(x_597) == 0) { -lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; -x_600 = l___private_Init_Meta_0__Lean_quoteNameMk(x_506); -x_601 = lean_array_push(x_599, x_600); -x_602 = lean_array_push(x_601, x_584); -x_603 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; -x_604 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_604, 0, x_603); -lean_ctor_set(x_604, 1, x_602); -x_605 = lean_array_push(x_588, x_604); -x_606 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; -x_607 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_607, 0, x_606); -lean_ctor_set(x_607, 1, x_605); -x_608 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_608, 0, x_607); -lean_ctor_set(x_608, 1, x_573); -return x_608; -} -else -{ -lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; -lean_dec(x_506); -x_609 = lean_ctor_get(x_583, 0); -lean_inc(x_609); -lean_dec(x_583); -x_610 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__3; -x_611 = l_String_intercalate(x_610, x_609); -x_612 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__4; -x_613 = lean_string_append(x_612, x_611); -lean_dec(x_611); -x_614 = l_Lean_nameLitKind; -x_615 = l_Lean_Syntax_mkLit(x_614, x_613, x_593); -x_616 = lean_array_push(x_595, x_615); -x_617 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__2; +lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; +x_614 = l___private_Init_Meta_0__Lean_quoteNameMk(x_520); +x_615 = lean_array_push(x_613, x_614); +x_616 = lean_array_push(x_615, x_598); +x_617 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; x_618 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_618, 0, x_617); lean_ctor_set(x_618, 1, x_616); -x_619 = lean_array_push(x_599, x_618); -x_620 = lean_array_push(x_619, x_584); -x_621 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; -x_622 = lean_alloc_ctor(1, 2, 0); +x_619 = lean_array_push(x_602, x_618); +x_620 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; +x_621 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_621, 0, x_620); +lean_ctor_set(x_621, 1, x_619); +x_622 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_622, 0, x_621); -lean_ctor_set(x_622, 1, x_620); -x_623 = lean_array_push(x_588, x_622); -x_624 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; -x_625 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_625, 0, x_624); -lean_ctor_set(x_625, 1, x_623); -x_626 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_626, 0, x_625); -lean_ctor_set(x_626, 1, x_573); -return x_626; +lean_ctor_set(x_622, 1, x_587); +return x_622; +} +else +{ +lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; +lean_dec(x_520); +x_623 = lean_ctor_get(x_597, 0); +lean_inc(x_623); +lean_dec(x_597); +x_624 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__3; +x_625 = l_String_intercalate(x_624, x_623); +x_626 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__4; +x_627 = lean_string_append(x_626, x_625); +lean_dec(x_625); +x_628 = l_Lean_nameLitKind; +x_629 = l_Lean_Syntax_mkLit(x_628, x_627, x_607); +x_630 = lean_array_push(x_609, x_629); +x_631 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__2; +x_632 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_632, 0, x_631); +lean_ctor_set(x_632, 1, x_630); +x_633 = lean_array_push(x_613, x_632); +x_634 = lean_array_push(x_633, x_598); +x_635 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; +x_636 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_636, 0, x_635); +lean_ctor_set(x_636, 1, x_634); +x_637 = lean_array_push(x_602, x_636); +x_638 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; +x_639 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_639, 0, x_638); +lean_ctor_set(x_639, 1, x_637); +x_640 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_640, 0, x_639); +lean_ctor_set(x_640, 1, x_587); +return x_640; } } } else { -lean_object* x_627; lean_object* x_628; +lean_object* x_641; lean_object* x_642; lean_free_object(x_1); -x_627 = lean_box(0); -x_628 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1(x_506, x_507, x_505, x_627, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_641 = lean_box(0); +x_642 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1(x_520, x_521, x_519, x_641, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -lean_dec(x_505); -return x_628; +lean_dec(x_519); +return x_642; } } else { -lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; uint8_t x_634; -x_629 = lean_ctor_get(x_1, 1); -x_630 = lean_ctor_get(x_1, 2); -x_631 = lean_ctor_get(x_1, 3); -lean_inc(x_631); -lean_inc(x_630); -lean_inc(x_629); +lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; uint8_t x_648; +x_643 = lean_ctor_get(x_1, 1); +x_644 = lean_ctor_get(x_1, 2); +x_645 = lean_ctor_get(x_1, 3); +lean_inc(x_645); +lean_inc(x_644); +lean_inc(x_643); lean_dec(x_1); -x_632 = lean_ctor_get(x_6, 0); -lean_inc(x_632); -x_633 = l_Lean_Elab_Term_Quotation_hygiene; -x_634 = l_Lean_Option_get___at_Lean_ppExpr___spec__1(x_632, x_633); -lean_dec(x_632); -if (x_634 == 0) +x_646 = lean_ctor_get(x_6, 0); +lean_inc(x_646); +x_647 = l_Lean_Elab_Term_Quotation_hygiene; +x_648 = l_Lean_Option_get___at_Lean_ppExpr___spec__1(x_646, x_647); +lean_dec(x_646); +if (x_648 == 0) { -lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; +lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_inc(x_6); -x_635 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__2___rarg(x_6, x_7, x_8); -x_636 = lean_ctor_get(x_635, 0); -lean_inc(x_636); -x_637 = lean_ctor_get(x_635, 1); -lean_inc(x_637); -lean_dec(x_635); -x_638 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_637); +x_649 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__2___rarg(x_6, x_7, x_8); +x_650 = lean_ctor_get(x_649, 0); +lean_inc(x_650); +x_651 = lean_ctor_get(x_649, 1); +lean_inc(x_651); +lean_dec(x_649); +x_652 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_651); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_639 = lean_ctor_get(x_638, 0); -lean_inc(x_639); -x_640 = lean_ctor_get(x_638, 1); -lean_inc(x_640); -lean_dec(x_638); -x_641 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_640); +x_653 = lean_ctor_get(x_652, 0); +lean_inc(x_653); +x_654 = lean_ctor_get(x_652, 1); +lean_inc(x_654); +lean_dec(x_652); +x_655 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_654); lean_dec(x_7); -x_642 = lean_ctor_get(x_641, 0); -lean_inc(x_642); -x_643 = lean_ctor_get(x_641, 1); -lean_inc(x_643); -if (lean_is_exclusive(x_641)) { - lean_ctor_release(x_641, 0); - lean_ctor_release(x_641, 1); - x_644 = x_641; +x_656 = lean_ctor_get(x_655, 0); +lean_inc(x_656); +x_657 = lean_ctor_get(x_655, 1); +lean_inc(x_657); +if (lean_is_exclusive(x_655)) { + lean_ctor_release(x_655, 0); + lean_ctor_release(x_655, 1); + x_658 = x_655; } else { - lean_dec_ref(x_641); - x_644 = lean_box(0); + lean_dec_ref(x_655); + x_658 = lean_box(0); } -x_645 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__6; -lean_inc(x_639); -lean_inc(x_642); -x_646 = l_Lean_addMacroScope(x_642, x_645, x_639); -x_647 = lean_box(0); -x_648 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__3; -x_649 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__9; -lean_inc(x_636); -x_650 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_650, 0, x_636); -lean_ctor_set(x_650, 1, x_648); -lean_ctor_set(x_650, 2, x_646); -lean_ctor_set(x_650, 3, x_649); -x_651 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; -x_652 = l_Lean_addMacroScope(x_642, x_651, x_639); -x_653 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; -x_654 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_654, 0, x_636); -lean_ctor_set(x_654, 1, x_653); -lean_ctor_set(x_654, 2, x_652); -lean_ctor_set(x_654, 3, x_647); -lean_inc(x_630); -x_655 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_647, x_630); -x_656 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10(x_631); -x_657 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__21; -x_658 = lean_array_push(x_657, x_654); -x_659 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; -x_660 = lean_array_push(x_659, x_650); -x_661 = lean_ctor_get(x_629, 0); -lean_inc(x_661); -x_662 = lean_ctor_get(x_629, 1); -lean_inc(x_662); -x_663 = lean_ctor_get(x_629, 2); -lean_inc(x_663); -lean_dec(x_629); -x_664 = lean_string_utf8_extract(x_661, x_662, x_663); -lean_dec(x_663); -lean_dec(x_662); -lean_dec(x_661); -x_665 = lean_box(2); -x_666 = l_Lean_Syntax_mkStrLit(x_664, x_665); -lean_dec(x_664); -x_667 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__19; -x_668 = lean_array_push(x_667, x_666); -x_669 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__17; -x_670 = l_Lean_Syntax_mkCApp(x_669, x_668); -x_671 = lean_array_push(x_658, x_670); -if (lean_obj_tag(x_655) == 0) +x_659 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__6; +lean_inc(x_653); +lean_inc(x_656); +x_660 = l_Lean_addMacroScope(x_656, x_659, x_653); +x_661 = lean_box(0); +x_662 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__3; +x_663 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__9; +lean_inc(x_650); +x_664 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_664, 0, x_650); +lean_ctor_set(x_664, 1, x_662); +lean_ctor_set(x_664, 2, x_660); +lean_ctor_set(x_664, 3, x_663); +x_665 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; +x_666 = l_Lean_addMacroScope(x_656, x_665, x_653); +x_667 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; +x_668 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_668, 0, x_650); +lean_ctor_set(x_668, 1, x_667); +lean_ctor_set(x_668, 2, x_666); +lean_ctor_set(x_668, 3, x_661); +lean_inc(x_644); +x_669 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_661, x_644); +x_670 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10(x_645); +x_671 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__21; +x_672 = lean_array_push(x_671, x_668); +x_673 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; +x_674 = lean_array_push(x_673, x_664); +x_675 = lean_ctor_get(x_643, 0); +lean_inc(x_675); +x_676 = lean_ctor_get(x_643, 1); +lean_inc(x_676); +x_677 = lean_ctor_get(x_643, 2); +lean_inc(x_677); +lean_dec(x_643); +x_678 = lean_string_utf8_extract(x_675, x_676, x_677); +lean_dec(x_677); +lean_dec(x_676); +lean_dec(x_675); +x_679 = lean_box(2); +x_680 = l_Lean_Syntax_mkStrLit(x_678, x_679); +lean_dec(x_678); +x_681 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__19; +x_682 = lean_array_push(x_681, x_680); +x_683 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__17; +x_684 = l_Lean_Syntax_mkCApp(x_683, x_682); +x_685 = lean_array_push(x_672, x_684); +if (lean_obj_tag(x_669) == 0) { -lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; -x_672 = l___private_Init_Meta_0__Lean_quoteNameMk(x_630); -x_673 = lean_array_push(x_671, x_672); -x_674 = lean_array_push(x_673, x_656); -x_675 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; -x_676 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_676, 0, x_675); -lean_ctor_set(x_676, 1, x_674); -x_677 = lean_array_push(x_660, x_676); -x_678 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; -x_679 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_679, 0, x_678); -lean_ctor_set(x_679, 1, x_677); -if (lean_is_scalar(x_644)) { - x_680 = lean_alloc_ctor(0, 2, 0); -} else { - x_680 = x_644; -} -lean_ctor_set(x_680, 0, x_679); -lean_ctor_set(x_680, 1, x_643); -return x_680; -} -else -{ -lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; -lean_dec(x_630); -x_681 = lean_ctor_get(x_655, 0); -lean_inc(x_681); -lean_dec(x_655); -x_682 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__3; -x_683 = l_String_intercalate(x_682, x_681); -x_684 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__4; -x_685 = lean_string_append(x_684, x_683); -lean_dec(x_683); -x_686 = l_Lean_nameLitKind; -x_687 = l_Lean_Syntax_mkLit(x_686, x_685, x_665); -x_688 = lean_array_push(x_667, x_687); -x_689 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__2; +lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; +x_686 = l___private_Init_Meta_0__Lean_quoteNameMk(x_644); +x_687 = lean_array_push(x_685, x_686); +x_688 = lean_array_push(x_687, x_670); +x_689 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; x_690 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_690, 0, x_689); lean_ctor_set(x_690, 1, x_688); -x_691 = lean_array_push(x_671, x_690); -x_692 = lean_array_push(x_691, x_656); -x_693 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; -x_694 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_694, 0, x_693); -lean_ctor_set(x_694, 1, x_692); -x_695 = lean_array_push(x_660, x_694); -x_696 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; -x_697 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_697, 0, x_696); -lean_ctor_set(x_697, 1, x_695); -if (lean_is_scalar(x_644)) { - x_698 = lean_alloc_ctor(0, 2, 0); +x_691 = lean_array_push(x_674, x_690); +x_692 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; +x_693 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_693, 0, x_692); +lean_ctor_set(x_693, 1, x_691); +if (lean_is_scalar(x_658)) { + x_694 = lean_alloc_ctor(0, 2, 0); } else { - x_698 = x_644; + x_694 = x_658; } -lean_ctor_set(x_698, 0, x_697); -lean_ctor_set(x_698, 1, x_643); -return x_698; +lean_ctor_set(x_694, 0, x_693); +lean_ctor_set(x_694, 1, x_657); +return x_694; +} +else +{ +lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; +lean_dec(x_644); +x_695 = lean_ctor_get(x_669, 0); +lean_inc(x_695); +lean_dec(x_669); +x_696 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__3; +x_697 = l_String_intercalate(x_696, x_695); +x_698 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__4; +x_699 = lean_string_append(x_698, x_697); +lean_dec(x_697); +x_700 = l_Lean_nameLitKind; +x_701 = l_Lean_Syntax_mkLit(x_700, x_699, x_679); +x_702 = lean_array_push(x_681, x_701); +x_703 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__2; +x_704 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_704, 0, x_703); +lean_ctor_set(x_704, 1, x_702); +x_705 = lean_array_push(x_685, x_704); +x_706 = lean_array_push(x_705, x_670); +x_707 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__14; +x_708 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_708, 0, x_707); +lean_ctor_set(x_708, 1, x_706); +x_709 = lean_array_push(x_674, x_708); +x_710 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; +x_711 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_711, 0, x_710); +lean_ctor_set(x_711, 1, x_709); +if (lean_is_scalar(x_658)) { + x_712 = lean_alloc_ctor(0, 2, 0); +} else { + x_712 = x_658; +} +lean_ctor_set(x_712, 0, x_711); +lean_ctor_set(x_712, 1, x_657); +return x_712; } } else { -lean_object* x_699; lean_object* x_700; -x_699 = lean_box(0); -x_700 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1(x_630, x_631, x_629, x_699, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_object* x_713; lean_object* x_714; +x_713 = lean_box(0); +x_714 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1(x_644, x_645, x_643, x_713, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -lean_dec(x_629); -return x_700; +lean_dec(x_643); +return x_714; } } } @@ -11258,7 +11399,7 @@ x_1 = l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__15; return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__1() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__1() { _start: { lean_object* x_1; @@ -11266,17 +11407,17 @@ x_1 = lean_mk_string("Command"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__2() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__4; -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__1; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__3() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__3() { _start: { lean_object* x_1; @@ -11284,17 +11425,17 @@ x_1 = lean_mk_string("declaration"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__4() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__2; -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__3; +x_1 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__2; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__5() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__5() { _start: { lean_object* x_1; @@ -11302,17 +11443,17 @@ x_1 = lean_mk_string("declModifiers"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__6() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__2; -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__5; +x_1 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__2; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__7() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__7() { _start: { lean_object* x_1; @@ -11320,17 +11461,17 @@ x_1 = lean_mk_string("attributes"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__8() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__6; -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__7; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__9() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__9() { _start: { lean_object* x_1; @@ -11338,7 +11479,7 @@ x_1 = lean_mk_string("@["); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__10() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__10() { _start: { lean_object* x_1; @@ -11346,17 +11487,17 @@ x_1 = lean_mk_string("attrInstance"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__11() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__6; -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__10; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__10; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__12() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__12() { _start: { lean_object* x_1; @@ -11364,17 +11505,17 @@ x_1 = lean_mk_string("attrKind"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__13() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__6; -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__12; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__12; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__14() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -11384,19 +11525,19 @@ x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__15() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__13; -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__14; +x_1 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__13; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__14; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__16() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__16() { _start: { lean_object* x_1; @@ -11404,17 +11545,17 @@ x_1 = lean_mk_string("Attr"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__17() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__4; -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__16; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__16; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__18() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__18() { _start: { lean_object* x_1; @@ -11422,17 +11563,17 @@ x_1 = lean_mk_string("simple"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__19() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__17; -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__18; +x_1 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__17; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__18; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__20() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__20() { _start: { lean_object* x_1; @@ -11440,22 +11581,22 @@ x_1 = lean_mk_string("builtinTermElab"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__21() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__21() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__20; +x_1 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__20; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__22() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__20; +x_1 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__20; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__21; +x_3 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__21; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -11463,27 +11604,27 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__23() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__20; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__20; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__24() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__15; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__15; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__25() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__25() { _start: { lean_object* x_1; @@ -11491,7 +11632,7 @@ x_1 = lean_mk_string("]"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__26() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -11501,7 +11642,7 @@ x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__27() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__27() { _start: { lean_object* x_1; @@ -11509,17 +11650,17 @@ x_1 = lean_mk_string("def"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__28() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__2; -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__27; +x_1 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__2; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__27; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__29() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__29() { _start: { lean_object* x_1; @@ -11527,17 +11668,17 @@ x_1 = lean_mk_string("declId"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__30() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__30() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__2; -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__29; +x_1 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__2; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__29; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__31() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__31() { _start: { lean_object* x_1; @@ -11545,22 +11686,22 @@ x_1 = lean_mk_string("elabQuot"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__32() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__32() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__31; +x_1 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__31; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__33() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__31; +x_1 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__31; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__32; +x_3 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__32; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -11568,17 +11709,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__34() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__34() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__31; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__31; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__35() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__35() { _start: { lean_object* x_1; @@ -11586,17 +11727,17 @@ x_1 = lean_mk_string("optDeclSig"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__36() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__36() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__2; -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__35; +x_1 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__2; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__35; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__37() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__37() { _start: { lean_object* x_1; @@ -11604,17 +11745,17 @@ x_1 = lean_mk_string("typeSpec"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__38() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__38() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__6; -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__37; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__37; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__39() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__39() { _start: { lean_object* x_1; @@ -11622,7 +11763,7 @@ x_1 = lean_mk_string(":"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__40() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__40() { _start: { lean_object* x_1; @@ -11630,22 +11771,22 @@ x_1 = lean_mk_string("TermElab"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__41() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__41() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__40; +x_1 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__40; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__42() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__42() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__40; +x_1 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__40; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__41; +x_3 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__41; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -11653,51 +11794,51 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__43() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__43() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__40; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__40; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__44() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__44() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__3; -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__40; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__40; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__45() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__45() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__44; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__44; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__46() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__46() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__45; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__45; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__47() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__47() { _start: { lean_object* x_1; @@ -11705,17 +11846,17 @@ x_1 = lean_mk_string("declValSimple"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__48() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__48() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__2; -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__47; +x_1 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__2; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__47; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__49() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__49() { _start: { lean_object* x_1; @@ -11723,22 +11864,22 @@ x_1 = lean_mk_string("adaptExpander"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__50() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__50() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__49; +x_1 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__49; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__51() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__51() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__49; +x_1 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__49; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__50; +x_3 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__50; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -11746,51 +11887,51 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__52() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__52() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__49; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__49; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__53() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__53() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__3; -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__49; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__49; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__54() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__54() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__53; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__53; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__55() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__55() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__54; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__54; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__56() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__56() { _start: { lean_object* x_1; @@ -11798,22 +11939,22 @@ x_1 = lean_mk_string("stxQuot.expand"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__57() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__57() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__56; +x_1 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__56; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__58() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__58() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__56; +x_1 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__56; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__57; +x_3 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__57; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -11821,7 +11962,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__59() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__59() { _start: { lean_object* x_1; @@ -11829,17 +11970,17 @@ x_1 = lean_mk_string("stxQuot"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__60() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__60() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__59; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__59; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__61() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__61() { _start: { lean_object* x_1; @@ -11847,61 +11988,61 @@ x_1 = lean_mk_string("expand"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__62() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__62() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__60; -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__61; +x_1 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__60; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__61; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__63() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__63() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__5; -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__59; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__59; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__64() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__64() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__63; -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__61; +x_1 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__63; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__61; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__65() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__65() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__64; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__64; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__66() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__66() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__65; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__65; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__67() { +static lean_object* _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__67() { _start: { lean_object* x_1; lean_object* x_2; @@ -11910,7 +12051,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -11935,7 +12076,7 @@ x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); lean_inc(x_2); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = !lean_is_exclusive(x_10); if (x_11 == 0) { @@ -11946,17 +12087,17 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_2, 1); lean_inc(x_14); lean_dec(x_2); -x_15 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__9; +x_15 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__9; lean_inc(x_12); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_12); lean_ctor_set(x_16, 1, x_15); -x_17 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__23; +x_17 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__23; lean_inc(x_13); lean_inc(x_14); x_18 = l_Lean_addMacroScope(x_14, x_17, x_13); x_19 = lean_box(0); -x_20 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__22; +x_20 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__22; lean_inc(x_12); x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_12); @@ -11972,13 +12113,13 @@ lean_ctor_set(x_25, 1, x_23); x_26 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; x_27 = lean_array_push(x_26, x_21); x_28 = lean_array_push(x_27, x_25); -x_29 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__19; +x_29 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__19; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); -x_31 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__24; +x_31 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__24; x_32 = lean_array_push(x_31, x_30); -x_33 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__11; +x_33 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__11; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); @@ -11986,7 +12127,7 @@ x_35 = lean_array_push(x_22, x_34); x_36 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_36, 0, x_24); lean_ctor_set(x_36, 1, x_35); -x_37 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__25; +x_37 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__25; lean_inc(x_12); x_38 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_38, 0, x_12); @@ -11995,7 +12136,7 @@ x_39 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_ x_40 = lean_array_push(x_39, x_16); x_41 = lean_array_push(x_40, x_36); x_42 = lean_array_push(x_41, x_38); -x_43 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__8; +x_43 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__8; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); @@ -12003,27 +12144,27 @@ x_45 = lean_array_push(x_22, x_44); x_46 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_46, 0, x_24); lean_ctor_set(x_46, 1, x_45); -x_47 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__26; +x_47 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__26; x_48 = lean_array_push(x_47, x_46); x_49 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__16; x_50 = lean_array_push(x_48, x_49); x_51 = lean_array_push(x_50, x_49); x_52 = lean_array_push(x_51, x_49); x_53 = lean_array_push(x_52, x_49); -x_54 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__6; +x_54 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__6; x_55 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_55, 0, x_54); lean_ctor_set(x_55, 1, x_53); -x_56 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__27; +x_56 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__27; lean_inc(x_12); x_57 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_57, 0, x_12); lean_ctor_set(x_57, 1, x_56); -x_58 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__34; +x_58 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__34; lean_inc(x_13); lean_inc(x_14); x_59 = l_Lean_addMacroScope(x_14, x_58, x_13); -x_60 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__33; +x_60 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__33; lean_inc(x_12); x_61 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_61, 0, x_12); @@ -12032,21 +12173,21 @@ lean_ctor_set(x_61, 2, x_59); lean_ctor_set(x_61, 3, x_19); x_62 = lean_array_push(x_26, x_61); x_63 = lean_array_push(x_62, x_49); -x_64 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__30; +x_64 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__30; x_65 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_65, 0, x_64); lean_ctor_set(x_65, 1, x_63); -x_66 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__39; +x_66 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__39; lean_inc(x_12); x_67 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_67, 0, x_12); lean_ctor_set(x_67, 1, x_66); -x_68 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__43; +x_68 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__43; lean_inc(x_13); lean_inc(x_14); x_69 = l_Lean_addMacroScope(x_14, x_68, x_13); -x_70 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__42; -x_71 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__46; +x_70 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__42; +x_71 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__46; lean_inc(x_12); x_72 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_72, 0, x_12); @@ -12055,7 +12196,7 @@ lean_ctor_set(x_72, 2, x_69); lean_ctor_set(x_72, 3, x_71); x_73 = lean_array_push(x_26, x_67); x_74 = lean_array_push(x_73, x_72); -x_75 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__38; +x_75 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__38; x_76 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_74); @@ -12065,7 +12206,7 @@ lean_ctor_set(x_78, 0, x_24); lean_ctor_set(x_78, 1, x_77); x_79 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__35; x_80 = lean_array_push(x_79, x_78); -x_81 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__36; +x_81 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__36; x_82 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_82, 0, x_81); lean_ctor_set(x_82, 1, x_80); @@ -12074,22 +12215,22 @@ lean_inc(x_12); x_84 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_84, 0, x_12); lean_ctor_set(x_84, 1, x_83); -x_85 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__52; +x_85 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__52; lean_inc(x_13); lean_inc(x_14); x_86 = l_Lean_addMacroScope(x_14, x_85, x_13); -x_87 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__51; -x_88 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__55; +x_87 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__51; +x_88 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__55; lean_inc(x_12); x_89 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_89, 0, x_12); lean_ctor_set(x_89, 1, x_87); lean_ctor_set(x_89, 2, x_86); lean_ctor_set(x_89, 3, x_88); -x_90 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__62; +x_90 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__62; x_91 = l_Lean_addMacroScope(x_14, x_90, x_13); -x_92 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__58; -x_93 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__66; +x_92 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__58; +x_93 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__66; x_94 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_94, 0, x_12); lean_ctor_set(x_94, 1, x_92); @@ -12108,11 +12249,11 @@ lean_ctor_set(x_100, 1, x_98); x_101 = lean_array_push(x_39, x_84); x_102 = lean_array_push(x_101, x_100); x_103 = lean_array_push(x_102, x_49); -x_104 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__48; +x_104 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__48; x_105 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_105, 0, x_104); lean_ctor_set(x_105, 1, x_103); -x_106 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__67; +x_106 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__67; x_107 = lean_array_push(x_106, x_57); x_108 = lean_array_push(x_107, x_65); x_109 = lean_array_push(x_108, x_82); @@ -12120,13 +12261,13 @@ x_110 = lean_array_push(x_109, x_105); x_111 = lean_array_push(x_110, x_49); x_112 = lean_array_push(x_111, x_49); x_113 = lean_array_push(x_112, x_49); -x_114 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__28; +x_114 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__28; x_115 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_115, 0, x_114); lean_ctor_set(x_115, 1, x_113); x_116 = lean_array_push(x_26, x_55); x_117 = lean_array_push(x_116, x_115); -x_118 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__4; +x_118 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__4; x_119 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_119, 0, x_118); lean_ctor_set(x_119, 1, x_117); @@ -12146,17 +12287,17 @@ lean_inc(x_122); x_123 = lean_ctor_get(x_2, 1); lean_inc(x_123); lean_dec(x_2); -x_124 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__9; +x_124 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__9; lean_inc(x_120); x_125 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_125, 0, x_120); lean_ctor_set(x_125, 1, x_124); -x_126 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__23; +x_126 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__23; lean_inc(x_122); lean_inc(x_123); x_127 = l_Lean_addMacroScope(x_123, x_126, x_122); x_128 = lean_box(0); -x_129 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__22; +x_129 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__22; lean_inc(x_120); x_130 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_130, 0, x_120); @@ -12172,13 +12313,13 @@ lean_ctor_set(x_134, 1, x_132); x_135 = l_Lean_Elab_Term_Quotation_mkTuple___closed__12; x_136 = lean_array_push(x_135, x_130); x_137 = lean_array_push(x_136, x_134); -x_138 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__19; +x_138 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__19; x_139 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_139, 0, x_138); lean_ctor_set(x_139, 1, x_137); -x_140 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__24; +x_140 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__24; x_141 = lean_array_push(x_140, x_139); -x_142 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__11; +x_142 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__11; x_143 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_143, 0, x_142); lean_ctor_set(x_143, 1, x_141); @@ -12186,7 +12327,7 @@ x_144 = lean_array_push(x_131, x_143); x_145 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_145, 0, x_133); lean_ctor_set(x_145, 1, x_144); -x_146 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__25; +x_146 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__25; lean_inc(x_120); x_147 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_147, 0, x_120); @@ -12195,7 +12336,7 @@ x_148 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab x_149 = lean_array_push(x_148, x_125); x_150 = lean_array_push(x_149, x_145); x_151 = lean_array_push(x_150, x_147); -x_152 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__8; +x_152 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__8; x_153 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_153, 0, x_152); lean_ctor_set(x_153, 1, x_151); @@ -12203,27 +12344,27 @@ x_154 = lean_array_push(x_131, x_153); x_155 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_155, 0, x_133); lean_ctor_set(x_155, 1, x_154); -x_156 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__26; +x_156 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__26; x_157 = lean_array_push(x_156, x_155); x_158 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__16; x_159 = lean_array_push(x_157, x_158); x_160 = lean_array_push(x_159, x_158); x_161 = lean_array_push(x_160, x_158); x_162 = lean_array_push(x_161, x_158); -x_163 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__6; +x_163 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__6; x_164 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_164, 0, x_163); lean_ctor_set(x_164, 1, x_162); -x_165 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__27; +x_165 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__27; lean_inc(x_120); x_166 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_166, 0, x_120); lean_ctor_set(x_166, 1, x_165); -x_167 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__34; +x_167 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__34; lean_inc(x_122); lean_inc(x_123); x_168 = l_Lean_addMacroScope(x_123, x_167, x_122); -x_169 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__33; +x_169 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__33; lean_inc(x_120); x_170 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_170, 0, x_120); @@ -12232,21 +12373,21 @@ lean_ctor_set(x_170, 2, x_168); lean_ctor_set(x_170, 3, x_128); x_171 = lean_array_push(x_135, x_170); x_172 = lean_array_push(x_171, x_158); -x_173 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__30; +x_173 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__30; x_174 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_174, 0, x_173); lean_ctor_set(x_174, 1, x_172); -x_175 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__39; +x_175 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__39; lean_inc(x_120); x_176 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_176, 0, x_120); lean_ctor_set(x_176, 1, x_175); -x_177 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__43; +x_177 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__43; lean_inc(x_122); lean_inc(x_123); x_178 = l_Lean_addMacroScope(x_123, x_177, x_122); -x_179 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__42; -x_180 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__46; +x_179 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__42; +x_180 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__46; lean_inc(x_120); x_181 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_181, 0, x_120); @@ -12255,7 +12396,7 @@ lean_ctor_set(x_181, 2, x_178); lean_ctor_set(x_181, 3, x_180); x_182 = lean_array_push(x_135, x_176); x_183 = lean_array_push(x_182, x_181); -x_184 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__38; +x_184 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__38; x_185 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_185, 0, x_184); lean_ctor_set(x_185, 1, x_183); @@ -12265,7 +12406,7 @@ lean_ctor_set(x_187, 0, x_133); lean_ctor_set(x_187, 1, x_186); x_188 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__35; x_189 = lean_array_push(x_188, x_187); -x_190 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__36; +x_190 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__36; x_191 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_191, 0, x_190); lean_ctor_set(x_191, 1, x_189); @@ -12274,22 +12415,22 @@ lean_inc(x_120); x_193 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_193, 0, x_120); lean_ctor_set(x_193, 1, x_192); -x_194 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__52; +x_194 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__52; lean_inc(x_122); lean_inc(x_123); x_195 = l_Lean_addMacroScope(x_123, x_194, x_122); -x_196 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__51; -x_197 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__55; +x_196 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__51; +x_197 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__55; lean_inc(x_120); x_198 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_198, 0, x_120); lean_ctor_set(x_198, 1, x_196); lean_ctor_set(x_198, 2, x_195); lean_ctor_set(x_198, 3, x_197); -x_199 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__62; +x_199 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__62; x_200 = l_Lean_addMacroScope(x_123, x_199, x_122); -x_201 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__58; -x_202 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__66; +x_201 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__58; +x_202 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__66; x_203 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_203, 0, x_120); lean_ctor_set(x_203, 1, x_201); @@ -12308,11 +12449,11 @@ lean_ctor_set(x_209, 1, x_207); x_210 = lean_array_push(x_148, x_193); x_211 = lean_array_push(x_210, x_209); x_212 = lean_array_push(x_211, x_158); -x_213 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__48; +x_213 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__48; x_214 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_214, 0, x_213); lean_ctor_set(x_214, 1, x_212); -x_215 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__67; +x_215 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__67; x_216 = lean_array_push(x_215, x_166); x_217 = lean_array_push(x_216, x_174); x_218 = lean_array_push(x_217, x_191); @@ -12320,13 +12461,13 @@ x_219 = lean_array_push(x_218, x_214); x_220 = lean_array_push(x_219, x_158); x_221 = lean_array_push(x_220, x_158); x_222 = lean_array_push(x_221, x_158); -x_223 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__28; +x_223 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__28; x_224 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_224, 0, x_223); lean_ctor_set(x_224, 1, x_222); x_225 = lean_array_push(x_135, x_164); x_226 = lean_array_push(x_225, x_224); -x_227 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__4; +x_227 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__4; x_228 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_228, 0, x_227); lean_ctor_set(x_228, 1, x_226); @@ -12338,7 +12479,7 @@ return x_229; } } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__1() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__1() { _start: { lean_object* x_1; @@ -12346,16 +12487,16 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_stxQuot_expand), 8, return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626_(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; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__1() { _start: { lean_object* x_1; @@ -12363,17 +12504,17 @@ x_1 = lean_mk_string("Level"); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__1; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__3() { _start: { lean_object* x_1; @@ -12381,27 +12522,27 @@ x_1 = lean_mk_string("quot"); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__2; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__2; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__5() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__5; -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__31; +x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__31; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__6() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__6() { _start: { lean_object* x_1; @@ -12409,47 +12550,47 @@ x_1 = lean_mk_string("_@"); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__7() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__5; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__6; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__5; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__8() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__7; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__7; x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__9() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__8; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__8; x_2 = l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__10() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__9; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__9; x_2 = l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__11() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__11() { _start: { lean_object* x_1; @@ -12457,105 +12598,105 @@ x_1 = lean_mk_string("_hyg"); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__12() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__10; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__11; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__10; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__11; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__13() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__12; -x_2 = lean_unsigned_to_nat(3609u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__12; +x_2 = lean_unsigned_to_nat(3626u); x_3 = lean_name_mk_numeral(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__14() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__14() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__4; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__13; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__14; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__4; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__13; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__14; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632_(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; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__3; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__12; -x_2 = lean_unsigned_to_nat(3615u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__12; +x_2 = lean_unsigned_to_nat(3632u); x_3 = lean_name_mk_numeral(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632____closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615____closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615____closed__2; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615____closed__3; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632____closed__2; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632____closed__3; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638_(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; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__1() { _start: { lean_object* x_1; @@ -12563,66 +12704,66 @@ x_1 = lean_mk_string("funBinder"); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__1; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__2; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__2; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__12; -x_2 = lean_unsigned_to_nat(3621u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__12; +x_2 = lean_unsigned_to_nat(3638u); x_3 = lean_name_mk_numeral(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__5() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__5() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__3; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__4; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__5; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__3; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__4; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__5; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644_(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; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__1() { _start: { lean_object* x_1; @@ -12630,115 +12771,115 @@ x_1 = lean_mk_string("bracketedBinder"); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__1; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__2; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__2; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__12; -x_2 = lean_unsigned_to_nat(3627u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__12; +x_2 = lean_unsigned_to_nat(3644u); x_3 = lean_name_mk_numeral(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__5() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__5() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__3; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__4; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__5; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__3; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__4; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__5; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3633_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3650_(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; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3633____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3650____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__34; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__3; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3633____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3650____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__12; -x_2 = lean_unsigned_to_nat(3633u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__12; +x_2 = lean_unsigned_to_nat(3650u); x_3 = lean_name_mk_numeral(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3633____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3650____closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3633_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3650_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3633_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3650_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3633____closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3633____closed__2; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3633____closed__3; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3650____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3650____closed__2; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3650____closed__3; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656_(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; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__1() { _start: { lean_object* x_1; @@ -12746,66 +12887,66 @@ x_1 = lean_mk_string("Tactic"); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__1; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__2; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__2; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__12; -x_2 = lean_unsigned_to_nat(3639u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__12; +x_2 = lean_unsigned_to_nat(3656u); x_3 = lean_name_mk_numeral(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__5() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__5() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__3; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__4; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__5; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__3; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__4; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__5; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662_(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; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662____closed__1() { _start: { lean_object* x_1; @@ -12813,56 +12954,56 @@ x_1 = lean_mk_string("quotSeq"); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__2; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645____closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__2; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__12; -x_2 = lean_unsigned_to_nat(3645u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__12; +x_2 = lean_unsigned_to_nat(3662u); x_3 = lean_name_mk_numeral(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645____closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662____closed__4() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645____closed__2; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645____closed__3; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645____closed__4; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662____closed__2; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662____closed__3; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662____closed__4; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668_(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; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__1() { _start: { lean_object* x_1; @@ -12870,66 +13011,66 @@ x_1 = lean_mk_string("stx"); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__1; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__2; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__2; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__12; -x_2 = lean_unsigned_to_nat(3651u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__12; +x_2 = lean_unsigned_to_nat(3668u); x_3 = lean_name_mk_numeral(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__5() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__5() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__3; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__4; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__5; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__3; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__4; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__5; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674_(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; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__1() { _start: { lean_object* x_1; @@ -12937,66 +13078,66 @@ x_1 = lean_mk_string("prec"); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__1; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__2; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__2; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__12; -x_2 = lean_unsigned_to_nat(3657u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__12; +x_2 = lean_unsigned_to_nat(3674u); x_3 = lean_name_mk_numeral(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__5() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__5() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__3; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__4; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__5; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__3; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__4; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__5; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680_(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; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__1() { _start: { lean_object* x_1; @@ -13004,66 +13145,66 @@ x_1 = lean_mk_string("attr"); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__1; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__2; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__2; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__12; -x_2 = lean_unsigned_to_nat(3663u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__12; +x_2 = lean_unsigned_to_nat(3680u); x_3 = lean_name_mk_numeral(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__5() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__5() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__3; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__4; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__5; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__3; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__4; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__5; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686_(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; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__1() { _start: { lean_object* x_1; @@ -13071,66 +13212,66 @@ x_1 = lean_mk_string("prio"); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__1; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__2; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__2; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__12; -x_2 = lean_unsigned_to_nat(3669u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__12; +x_2 = lean_unsigned_to_nat(3686u); x_3 = lean_name_mk_numeral(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__5() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__5() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__3; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__4; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__5; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__3; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__4; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__5; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692_(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; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__1() { _start: { lean_object* x_1; @@ -13138,66 +13279,66 @@ x_1 = lean_mk_string("doElem"); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__1; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__2; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__2; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__12; -x_2 = lean_unsigned_to_nat(3675u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__12; +x_2 = lean_unsigned_to_nat(3692u); x_3 = lean_name_mk_numeral(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__5() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__5() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__3; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__4; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__5; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__3; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__4; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__5; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698_(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; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698____closed__1() { _start: { lean_object* x_1; @@ -13205,42 +13346,42 @@ x_1 = lean_mk_string("dynamicQuot"); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681____closed__1; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__12; -x_2 = lean_unsigned_to_nat(3681u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__12; +x_2 = lean_unsigned_to_nat(3698u); x_3 = lean_name_mk_numeral(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681____closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698____closed__4() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681____closed__2; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681____closed__3; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681____closed__4; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698____closed__2; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698____closed__3; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698____closed__4; x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -13705,7 +13846,7 @@ x_9 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_T x_10 = lean_array_push(x_9, x_6); x_11 = lean_array_push(x_10, x_1); x_12 = lean_array_push(x_11, x_8); -x_13 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615____closed__1; +x_13 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632____closed__1; x_14 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_12); @@ -18723,7 +18864,7 @@ lean_inc(x_21); x_67 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_67, 0, x_21); lean_ctor_set(x_67, 1, x_66); -x_68 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__3; +x_68 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__3; lean_inc(x_1); x_69 = lean_name_mk_string(x_1, x_68); x_70 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3___lambda__1___closed__1; @@ -19075,7 +19216,7 @@ lean_inc(x_21); x_220 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_220, 0, x_21); lean_ctor_set(x_220, 1, x_219); -x_221 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__3; +x_221 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__3; lean_inc(x_1); x_222 = lean_name_mk_string(x_1, x_221); x_223 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3___lambda__1___closed__1; @@ -20787,7 +20928,7 @@ x_280 = lean_usize_of_nat(x_279); lean_dec(x_279); x_281 = 0; x_282 = x_209; -x_283 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_280, x_281, x_282); +x_283 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_280, x_281, x_282); x_284 = x_283; lean_inc(x_278); x_285 = l_Array_append___rarg(x_278, x_284); @@ -20855,7 +20996,7 @@ x_313 = lean_array_push(x_272, x_310); x_314 = lean_array_push(x_313, x_312); lean_inc(x_271); x_315 = lean_array_push(x_314, x_271); -x_316 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615____closed__1; +x_316 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632____closed__1; x_317 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_317, 0, x_316); lean_ctor_set(x_317, 1, x_315); @@ -21076,7 +21217,7 @@ x_435 = lean_usize_of_nat(x_434); lean_dec(x_434); x_436 = 0; x_437 = x_209; -x_438 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_435, x_436, x_437); +x_438 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_435, x_436, x_437); x_439 = x_438; lean_inc(x_433); x_440 = l_Array_append___rarg(x_433, x_439); @@ -21144,7 +21285,7 @@ x_468 = lean_array_push(x_427, x_465); x_469 = lean_array_push(x_468, x_467); lean_inc(x_426); x_470 = lean_array_push(x_469, x_426); -x_471 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615____closed__1; +x_471 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632____closed__1; x_472 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_472, 0, x_471); lean_ctor_set(x_472, 1, x_470); @@ -24358,7 +24499,7 @@ else { lean_object* x_137; lean_object* x_138; lean_dec(x_12); -x_137 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__14; +x_137 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24; x_138 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__1(x_73, x_137, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_138; } @@ -24367,7 +24508,7 @@ else { lean_object* x_139; lean_object* x_140; lean_dec(x_12); -x_139 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__14; +x_139 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24; x_140 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__1(x_73, x_139, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_140; } @@ -25010,7 +25151,7 @@ else { lean_object* x_306; lean_object* x_307; lean_dec(x_190); -x_306 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__14; +x_306 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24; x_307 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__1(x_242, x_306, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_307; } @@ -25019,7 +25160,7 @@ else { lean_object* x_308; lean_object* x_309; lean_dec(x_190); -x_308 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__14; +x_308 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24; x_309 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__1(x_242, x_308, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_309; } @@ -26320,7 +26461,7 @@ x_25 = l_Lean_Syntax_getArgs(x_24); lean_dec(x_24); x_26 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__3___boxed), 2, 1); lean_closure_set(x_26, 0, x_19); -x_27 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(x_25, x_26); +x_27 = l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(x_25, x_26); lean_dec(x_25); if (lean_obj_tag(x_27) == 0) { @@ -26392,7 +26533,7 @@ x_46 = l_Lean_Syntax_getArgs(x_45); lean_dec(x_45); x_47 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__3___boxed), 2, 1); lean_closure_set(x_47, 0, x_40); -x_48 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(x_46, x_47); +x_48 = l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(x_46, x_47); lean_dec(x_46); if (lean_obj_tag(x_48) == 0) { @@ -29073,7 +29214,7 @@ static lean_object* _init_l_List_format___at___private_Lean_Elab_Quotation_0__Le _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__25; +x_1 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__25; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -31569,7 +31710,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_3); x_15 = l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__3___closed__1; -x_16 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(x_2, x_15); +x_16 = l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(x_2, x_15); if (lean_obj_tag(x_16) == 0) { lean_object* x_17; @@ -31623,7 +31764,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_3); x_29 = l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__3___closed__1; -x_30 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(x_2, x_29); +x_30 = l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(x_2, x_29); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; @@ -31678,7 +31819,7 @@ x_45 = lean_ctor_get(x_44, 1); lean_inc(x_45); lean_dec(x_44); x_46 = l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__3___closed__1; -x_47 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(x_45, x_46); +x_47 = l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(x_45, x_46); lean_dec(x_45); if (lean_obj_tag(x_47) == 0) { @@ -32029,7 +32170,7 @@ goto block_71; block_71: { lean_object* x_26; -x_26 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(x_25, x_24); +x_26 = l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(x_25, x_24); lean_dec(x_25); if (lean_obj_tag(x_26) == 0) { @@ -32428,7 +32569,7 @@ x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_11069_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_11086_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -33011,6 +33152,26 @@ l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__37); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__38 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__38(); lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__38); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__40 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__40(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__40); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__41 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__41(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__41); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__42 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__42(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__42); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__43 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__43(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__43); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__44 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__44(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__44); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__45 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__45(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__45); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__46 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__46(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__46); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__47 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__47(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__47); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__48 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__48(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__48); l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__1 = _init_l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__1); l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__2 = _init_l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__2(); @@ -33133,315 +33294,315 @@ l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__15 = _init_l_Lea lean_mark_persistent(l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__15); l_Lean_Elab_Term_Quotation_commandElab__stx__quot____ = _init_l_Lean_Elab_Term_Quotation_commandElab__stx__quot____(); lean_mark_persistent(l_Lean_Elab_Term_Quotation_commandElab__stx__quot____); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__1 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__1); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__2 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__2(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__2); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__3 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__3(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__3); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__4 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__4(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__4); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__5 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__5(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__5); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__6 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__6(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__6); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__7 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__7(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__7); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__8 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__8(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__8); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__9 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__9(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__9); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__10 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__10(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__10); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__11 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__11(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__11); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__12 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__12(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__12); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__13 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__13(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__13); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__14 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__14(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__14); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__15 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__15(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__15); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__16 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__16(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__16); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__17 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__17(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__17); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__18 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__18(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__18); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__19 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__19(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__19); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__20 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__20(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__20); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__21 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__21(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__21); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__22 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__22(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__22); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__23 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__23(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__23); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__24 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__24(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__24); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__25 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__25(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__25); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__26 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__26(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__26); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__27 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__27(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__27); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__28 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__28(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__28); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__29 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__29(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__29); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__30 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__30(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__30); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__31 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__31(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__31); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__32 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__32(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__32); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__33 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__33(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__33); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__34 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__34(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__34); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__35 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__35(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__35); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__36 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__36(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__36); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__37 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__37(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__37); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__38 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__38(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__38); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__39 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__39(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__39); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__40 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__40(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__40); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__41 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__41(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__41); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__42 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__42(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__42); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__43 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__43(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__43); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__44 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__44(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__44); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__45 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__45(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__45); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__46 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__46(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__46); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__47 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__47(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__47); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__48 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__48(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__48); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__49 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__49(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__49); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__50 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__50(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__50); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__51 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__51(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__51); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__52 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__52(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__52); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__53 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__53(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__53); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__54 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__54(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__54); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__55 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__55(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__55); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__56 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__56(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__56); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__57 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__57(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__57); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__58 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__58(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__58); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__59 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__59(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__59); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__60 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__60(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__60); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__61 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__61(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__61); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__62 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__62(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__62); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__63 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__63(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__63); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__64 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__64(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__64); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__65 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__65(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__65); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__66 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__66(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__66); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__67 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__67(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3299____closed__67); -l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__1 = _init_l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__4); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__5(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__5); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__6 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__6(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__6); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__7 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__7(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__7); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__8 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__8(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__8); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__9 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__9(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__9); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__10 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__10(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__10); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__11 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__11(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__11); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__12 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__12(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__12); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__13 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__13(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__13); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__14 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__14(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609____closed__14); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3609_(lean_io_mk_world()); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__1 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__1); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__2 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__2); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__3 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__3(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__3); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__4 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__4(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__4); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__5 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__5(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__5); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__6 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__6(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__6); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__7 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__7(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__7); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__8 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__8(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__8); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__9 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__9(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__9); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__10 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__10(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__10); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__11 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__11(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__11); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__12 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__12(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__12); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__13 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__13(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__13); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__14 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__14(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__14); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__15 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__15(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__15); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__16 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__16(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__16); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__17 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__17(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__17); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__18 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__18(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__18); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__19 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__19(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__19); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__20 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__20(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__20); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__21 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__21(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__21); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__22 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__22(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__22); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__23 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__23(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__23); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__24 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__24(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__24); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__25 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__25(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__25); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__26 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__26(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__26); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__27 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__27(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__27); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__28 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__28(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__28); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__29 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__29(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__29); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__30 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__30(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__30); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__31 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__31(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__31); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__32 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__32(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__32); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__33 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__33(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__33); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__34 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__34(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__34); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__35 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__35(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__35); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__36 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__36(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__36); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__37 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__37(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__37); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__38 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__38(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__38); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__39 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__39(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__39); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__40 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__40(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__40); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__41 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__41(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__41); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__42 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__42(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__42); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__43 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__43(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__43); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__44 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__44(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__44); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__45 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__45(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__45); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__46 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__46(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__46); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__47 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__47(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__47); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__48 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__48(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__48); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__49 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__49(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__49); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__50 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__50(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__50); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__51 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__51(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__51); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__52 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__52(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__52); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__53 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__53(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__53); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__54 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__54(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__54); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__55 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__55(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__55); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__56 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__56(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__56); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__57 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__57(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__57); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__58 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__58(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__58); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__59 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__59(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__59); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__60 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__60(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__60); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__61 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__61(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__61); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__62 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__62(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__62); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__63 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__63(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__63); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__64 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__64(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__64); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__65 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__65(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__65); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__66 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__66(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__66); +l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__67 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__67(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot______1___closed__67); +l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__1 = _init_l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__4); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__5); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__6 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__6(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__6); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__7 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__7(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__7); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__8 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__8(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__8); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__9 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__9(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__9); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__10 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__10(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__10); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__11 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__11(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__11); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__12 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__12(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__12); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__13 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__13(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__13); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__14 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__14(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626____closed__14); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3626_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615____closed__3); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3615_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632____closed__3); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3632_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__4); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__5(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621____closed__5); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3621_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__4); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638____closed__5); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3638_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__4); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__5(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627____closed__5); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3627_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__4); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644____closed__5); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3644_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3633____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3633____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3633____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3633____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3633____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3633____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3633____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3633____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3633____closed__3); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3633_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3650____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3650____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3650____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3650____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3650____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3650____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3650____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3650____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3650____closed__3); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3650_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__4); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__5(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639____closed__5); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3639_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__4); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656____closed__5); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3656_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645____closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645____closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645____closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3645_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662____closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662____closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662____closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3662_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__4); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__5(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651____closed__5); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3651_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__4); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668____closed__5); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3668_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__4); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__5(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657____closed__5); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3657_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__4); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674____closed__5); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3674_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__4); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__5(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663____closed__5); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3663_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__4); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680____closed__5); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3680_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__4); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__5(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669____closed__5); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3669_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__4); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686____closed__5); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3686_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__4); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__5(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675____closed__5); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3675_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__4); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692____closed__5); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3692_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681____closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681____closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681____closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3681_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698____closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698____closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698____closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_3698_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_noOpMatchAdaptPats___lambda__1___closed__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_noOpMatchAdaptPats___lambda__1___closed__1(); @@ -33921,7 +34082,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___c res = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_11069_(lean_io_mk_world()); +res = l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_11086_(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/StructInst.c b/stage0/stdlib/Lean/Elab/StructInst.c index 1e7515d0fe..329da19afd 100644 --- a/stage0/stdlib/Lean/Elab/StructInst.c +++ b/stage0/stdlib/Lean/Elab/StructInst.c @@ -19,7 +19,6 @@ lean_object* l_Lean_getConstInfo___at_Lean_Elab_Term_mkConst___spec__1(lean_obje LEAN_EXPORT lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_elabStructInstAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_StructInst_Struct_modifyFields(lean_object*, lean_object*); static lean_object* l_List_foldlM___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_mkFieldMap___spec__7___closed__5; -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_elabModifyOp___lambda__2___closed__13; static lean_object* l_Lean_Elab_Term_StructInst_formatField___closed__6; LEAN_EXPORT uint8_t l_List_foldr___at_Lean_Elab_Term_StructInst_Struct_allDefault___spec__1(uint8_t, lean_object*); @@ -145,6 +144,7 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_StructInst_elabStructInst static lean_object* l_List_mapM___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandParentFields___spec__3___closed__6; lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); static lean_object* l_List_format___at_Lean_Elab_Term_StructInst_formatStruct___spec__3___closed__3; +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_StructInst_Struct_ref(lean_object*); lean_object* l_Lean_Elab_Term_getMVarDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_elabStruct___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -936,7 +936,7 @@ x_8 = l_Lean_Syntax_getArg(x_5, x_7); lean_dec(x_5); x_9 = l_Lean_Elab_Term_StructInst_expandStructInstExpectedType___closed__2; x_10 = l_Lean_Syntax_setArg(x_1, x_4, x_9); -x_11 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_11 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_12 = !lean_is_exclusive(x_11); if (x_12 == 0) { @@ -1314,7 +1314,7 @@ lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean x_22 = l_Lean_Syntax_getArg(x_13, x_10); lean_dec(x_13); lean_inc(x_4); -x_23 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_4, x_5); +x_23 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_4, x_5); x_24 = lean_ctor_get(x_23, 0); lean_inc(x_24); x_25 = lean_ctor_get(x_23, 1); diff --git a/stage0/stdlib/Lean/Elab/Syntax.c b/stage0/stdlib/Lean/Elab/Syntax.c index 3b5c971350..638d4573de 100644 --- a/stage0/stdlib/Lean/Elab/Syntax.c +++ b/stage0/stdlib/Lean/Elab/Syntax.c @@ -251,7 +251,6 @@ static lean_object* l_Lean_Elab_Term_toParserDescr_processNonReserved___closed__ LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_checkLeftRec___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_checkLeftRec___spec__7___rarg(lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_toParserDescr_processNonReserved___closed__8; static lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__19; lean_object* l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(lean_object*, lean_object*); @@ -618,6 +617,7 @@ lean_object* l_Lean_Elab_Command_getScope___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_checkLeftRec___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; LEAN_EXPORT lean_object* l_Lean_Elab_Command_expandNoKindMacroRulesAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_inferMacroRulesAltKind___closed__2; static lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__79; LEAN_EXPORT lean_object* l_List_forM___at_Lean_Elab_Term_checkLeftRec___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -16368,7 +16368,7 @@ x_17 = l_Lean_Syntax_getArg(x_1, x_16); x_18 = l_Lean_Syntax_getArgs(x_17); lean_dec(x_17); x_19 = l_Lean_Elab_Command_elabSyntax___lambda__7___closed__1; -x_20 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(x_18, x_19); +x_20 = l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(x_18, x_19); lean_dec(x_18); if (lean_obj_tag(x_20) == 0) { @@ -17342,7 +17342,7 @@ x_17 = l_Lean_Syntax_getArg(x_1, x_16); x_18 = l_Lean_Syntax_getArgs(x_17); lean_dec(x_17); x_19 = l_Lean_Elab_Command_elabSyntax___lambda__7___closed__1; -x_20 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__1(x_18, x_19); +x_20 = l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__1(x_18, x_19); lean_dec(x_18); if (lean_obj_tag(x_20) == 0) { diff --git a/stage0/stdlib/Lean/Elab/Tactic/Config.c b/stage0/stdlib/Lean/Elab/Tactic/Config.c index ef3214ca89..5d5ec10ef2 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Config.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Config.c @@ -13,261 +13,261 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__77; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__43; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__215; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__212; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__98; static lean_object* l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__17; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__56; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__117; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__165; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__66; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__105; static lean_object* l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__8; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__115; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__85; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__224; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__185; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__149; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__55; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__106; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__158; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__219; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__217; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__207; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__36; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__19; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__206; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__146; lean_object* lean_mk_empty_array_with_capacity(lean_object*); -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__177; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__16; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__39; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__65; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__140; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__109; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__118; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__211; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__172; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_commandDeclare__config__elab________; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__186; lean_object* lean_name_mk_string(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__123; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__93; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__70; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__151; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__183; static lean_object* l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__2; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__14; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__121; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__132; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__28; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__49; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__164; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__103; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__69; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__114; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__188; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__26; static lean_object* l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__12; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__22; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__62; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__54; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__120; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__81; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__51; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__19; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__65; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__39; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__183; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__109; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__83; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__168; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__75; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__173; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__204; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__169; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__90; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__68; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__16; static lean_object* l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__11; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__206; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__112; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__204; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__81; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__73; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__115; +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__56; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__105; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__85; lean_object* lean_array_push(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__151; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__118; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__140; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__68; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__146; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__169; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__143; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__69; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__186; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__66; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__165; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__77; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__49; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__164; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__177; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__10; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__174; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__32; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__176; lean_object* lean_string_utf8_byte_size(lean_object*); -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__87; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__138; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__3; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__213; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__101; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__20; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__120; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__117; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__224; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__185; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__149; static lean_object* l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__4; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__36; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__26; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__58; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__148; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__168; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__196; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__156; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__136; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__161; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__127; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__102; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__90; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__114; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__192; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__128; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__75; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__207; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__101; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__20; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__116; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__12; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__43; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__211; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__98; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__215; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__11; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__135; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__159; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__112; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__205; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__187; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__113; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__226; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__41; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__218; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__34; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__99; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__180; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__61; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__195; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__48; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__162; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__220; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__170; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__21; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__38; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__107; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__222; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__50; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__13; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__88; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__131; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__200; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__110; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__154; static lean_object* l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__9; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__73; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__219; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__10; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__174; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__32; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__212; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__194; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__113; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__88; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__13; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__162; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__195; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__220; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__48; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__34; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__1; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__171; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__96; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__23; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__227; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__107; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__222; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__179; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__216; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__72; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__199; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__218; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__170; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__41; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__180; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__188; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__173; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__189; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24_(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__45; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__83; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__21; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__38; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__145; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__70; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__104; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__35; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__130; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__226; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__155; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__182; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__17; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__122; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__44; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__139; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__129; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__40; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__175; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__67; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__131; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__4; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__201; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__57; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__8; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__94; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__209; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__80; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__6; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__145; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__35; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__189; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__104; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__194; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__31; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__161; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__127; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__209; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__59; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__156; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__45; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__128; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__12; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__116; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__192; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__58; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__196; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__148; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__160; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__203; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__82; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__102; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__136; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__150; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__97; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__1; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__171; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__142; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__166; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__125; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__53; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__144; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__197; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__181; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__221; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__42; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__5; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__210; static lean_object* l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__10; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__11; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__203; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__82; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__135; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__30; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__225; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__184; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__18; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__15; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__163; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__76; static lean_object* l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__6; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__9; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__27; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__61; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__31; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__205; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__159; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__187; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__59; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__7; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__71; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__133; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__100; static lean_object* l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__15; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__74; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__157; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__60; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__213; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__142; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__163; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__53; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__223; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__141; static lean_object* l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__13; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__42; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__100; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__111; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__155; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__182; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__57; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__130; static lean_object* l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__14; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__125; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__84; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__137; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__5; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__3; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__176; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__217; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__18; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__64; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__17; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__94; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__44; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__139; static lean_object* l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__3; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__210; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__166; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__15; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__200; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__99; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__221; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__181; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__110; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__6; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__154; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__184; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__80; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__225; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__30; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__8; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__67; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__4; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__175; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__40; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__201; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__122; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__27; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__2; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__51; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__89; static lean_object* l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__18; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__76; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__50; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__223; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__60; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__47; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__129; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__74; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__157; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__9; static lean_object* l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__5; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__133; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__193; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__103; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__132; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__14; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__54; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__137; static lean_object* l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__16; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__52; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__152; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__147; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__29; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__141; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__119; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__111; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__46; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__25; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__191; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__84; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__216; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__72; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__93; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__91; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__138; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__87; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__134; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__92; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__28; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__62; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__2; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__47; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__89; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__86; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__178; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__198; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__197; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__124; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__167; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__95; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__123; static lean_object* l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__7; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__144; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__64; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__97; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__150; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__91; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__153; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__78; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__134; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__124; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__172; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__92; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__79; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__160; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__95; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__167; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__143; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__79; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__214; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__190; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__63; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__37; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__158; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__106; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__202; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__108; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__24; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__55; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__208; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__126; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__193; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__29; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__52; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__22; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__152; static lean_object* l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__1; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__126; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__71; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__63; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__7; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__190; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__24; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__202; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__108; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__214; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__37; -static lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__208; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__147; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__25; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__119; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__86; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__191; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__178; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__199; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__179; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__23; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__96; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__227; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__78; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__121; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__198; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__46; +static lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__153; static lean_object* _init_l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__1() { _start: { @@ -454,7 +454,7 @@ x_1 = l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__18; return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__1() { _start: { lean_object* x_1; @@ -462,17 +462,17 @@ x_1 = lean_mk_string("null"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___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_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__1; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__3() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__3() { _start: { lean_object* x_1; @@ -480,17 +480,17 @@ x_1 = lean_mk_string("Parser"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__4() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__2; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__3; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__5() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__5() { _start: { lean_object* x_1; @@ -498,17 +498,17 @@ x_1 = lean_mk_string("Command"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__6() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__4; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__5; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__4; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__7() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__7() { _start: { lean_object* x_1; @@ -516,17 +516,17 @@ x_1 = lean_mk_string("declaration"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__8() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__6; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__7; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__6; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__9() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__9() { _start: { lean_object* x_1; @@ -534,17 +534,17 @@ x_1 = lean_mk_string("declModifiers"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__10() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__6; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__9; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__6; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__9; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__11() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; @@ -553,19 +553,19 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__12() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__2; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__11; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__2; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__11; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__13() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__13() { _start: { lean_object* x_1; @@ -573,17 +573,17 @@ x_1 = lean_mk_string("unsafe"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__14() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__6; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__13; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__6; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__13; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__15() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__15() { _start: { lean_object* x_1; lean_object* x_2; @@ -592,7 +592,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__16() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__16() { _start: { lean_object* x_1; lean_object* x_2; @@ -601,47 +601,47 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__17() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__16; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__12; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__16; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__12; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__18() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__17; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__12; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__17; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__12; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__19() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__18; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__12; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__18; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__12; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__20() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__19; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__12; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__19; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__12; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__21() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__21() { _start: { lean_object* x_1; @@ -649,17 +649,17 @@ x_1 = lean_mk_string("def"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__22() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__6; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__21; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__6; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__21; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__23() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__23() { _start: { lean_object* x_1; @@ -667,17 +667,17 @@ x_1 = lean_mk_string("declId"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__24() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__6; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__23; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__6; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__23; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__25() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__25() { _start: { lean_object* x_1; @@ -685,22 +685,22 @@ x_1 = lean_mk_string("evalUnsafe"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__26() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__26() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__25; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__25; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__27() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__27() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__25; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__25; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__26; +x_3 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__26; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -708,17 +708,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__28() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__25; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__25; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__29() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__29() { _start: { lean_object* x_1; lean_object* x_2; @@ -727,7 +727,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__30() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__30() { _start: { lean_object* x_1; @@ -735,17 +735,17 @@ x_1 = lean_mk_string("optDeclSig"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__31() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__31() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__6; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__30; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__6; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__30; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__32() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__32() { _start: { lean_object* x_1; @@ -753,17 +753,17 @@ x_1 = lean_mk_string("Term"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__4; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__32; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__4; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__32; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__34() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__34() { _start: { lean_object* x_1; @@ -771,17 +771,17 @@ x_1 = lean_mk_string("explicitBinder"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__35() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__35() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__34; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__34; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__36() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__36() { _start: { lean_object* x_1; @@ -789,7 +789,7 @@ x_1 = lean_mk_string("("); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__37() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__37() { _start: { lean_object* x_1; @@ -797,22 +797,22 @@ x_1 = lean_mk_string("e"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__38() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__38() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__37; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__37; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__39() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__39() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__37; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__37; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__38; +x_3 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__38; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -820,17 +820,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__40() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__40() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__37; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__37; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__41() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__41() { _start: { lean_object* x_1; @@ -838,7 +838,7 @@ x_1 = lean_mk_string(":"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__42() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__42() { _start: { lean_object* x_1; @@ -846,22 +846,22 @@ x_1 = lean_mk_string("Expr"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__43() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__43() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__42; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__42; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__44() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__44() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__42; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__42; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__43; +x_3 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__43; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -869,51 +869,51 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__45() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__45() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__42; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__42; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__46() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__46() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__2; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__42; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__42; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__47() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__47() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__46; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__46; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__48() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__48() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__47; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__47; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__49() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__49() { _start: { lean_object* x_1; @@ -921,7 +921,7 @@ x_1 = lean_mk_string(")"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__50() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__50() { _start: { lean_object* x_1; lean_object* x_2; @@ -930,7 +930,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__51() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__51() { _start: { lean_object* x_1; @@ -938,17 +938,17 @@ x_1 = lean_mk_string("typeSpec"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__52() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__52() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__51; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__51; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__53() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__53() { _start: { lean_object* x_1; @@ -956,17 +956,17 @@ x_1 = lean_mk_string("app"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__54() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__54() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__53; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__53; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__55() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__55() { _start: { lean_object* x_1; @@ -974,22 +974,22 @@ x_1 = lean_mk_string("TermElabM"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__56() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__56() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__55; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__55; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__57() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__57() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__55; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__55; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__56; +x_3 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__56; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -997,61 +997,61 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__58() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__58() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__55; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__55; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__59() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__59() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__4; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__32; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__32; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__60() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__60() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__59; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__55; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__59; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__55; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__61() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__61() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__60; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__60; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__62() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__62() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__61; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__61; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__63() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__63() { _start: { lean_object* x_1; @@ -1059,17 +1059,17 @@ x_1 = lean_mk_string("declValSimple"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__64() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__64() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__6; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__63; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__6; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__63; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__65() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__65() { _start: { lean_object* x_1; @@ -1077,7 +1077,7 @@ x_1 = lean_mk_string(":="); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__66() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__66() { _start: { lean_object* x_1; @@ -1085,22 +1085,22 @@ x_1 = lean_mk_string("Term.evalExpr"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__67() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__67() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__66; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__66; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__68() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__68() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__66; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__66; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__67; +x_3 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__67; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1108,17 +1108,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__69() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__69() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__32; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__32; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__70() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__70() { _start: { lean_object* x_1; @@ -1126,51 +1126,51 @@ x_1 = lean_mk_string("evalExpr"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__71() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__71() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__69; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__70; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__69; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__70; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__72() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__72() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__59; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__70; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__59; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__70; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__73() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__73() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__72; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__72; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__74() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__74() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__73; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__73; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__75() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__75() { _start: { lean_object* x_1; @@ -1178,17 +1178,17 @@ x_1 = lean_mk_string("doubleQuotedName"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__76() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__76() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__75; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__75; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__77() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__77() { _start: { lean_object* x_1; @@ -1196,7 +1196,7 @@ x_1 = lean_mk_string("`"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__78() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__78() { _start: { lean_object* x_1; lean_object* x_2; @@ -1205,7 +1205,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__79() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__79() { _start: { lean_object* x_1; lean_object* x_2; @@ -1214,7 +1214,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__80() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__80() { _start: { lean_object* x_1; @@ -1222,17 +1222,17 @@ x_1 = lean_mk_string("attributes"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__81() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__81() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__80; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__80; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__82() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__82() { _start: { lean_object* x_1; @@ -1240,7 +1240,7 @@ x_1 = lean_mk_string("@["); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__83() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__83() { _start: { lean_object* x_1; @@ -1248,17 +1248,17 @@ x_1 = lean_mk_string("attrInstance"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__84() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__84() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__83; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__83; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__85() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__85() { _start: { lean_object* x_1; @@ -1266,39 +1266,39 @@ x_1 = lean_mk_string("attrKind"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__86() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__86() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__85; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__85; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__87() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__87() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__15; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__12; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__15; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__12; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__88() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__88() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__86; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__87; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__86; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__87; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__89() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__89() { _start: { lean_object* x_1; @@ -1306,17 +1306,17 @@ x_1 = lean_mk_string("Attr"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__90() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__90() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__4; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__89; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__4; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__89; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__91() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__91() { _start: { lean_object* x_1; @@ -1324,17 +1324,17 @@ x_1 = lean_mk_string("simple"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__92() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__92() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__90; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__91; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__90; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__91; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__93() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__93() { _start: { lean_object* x_1; @@ -1342,22 +1342,22 @@ x_1 = lean_mk_string("implementedBy"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__94() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__94() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__93; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__93; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__95() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__95() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__93; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__93; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__94; +x_3 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__94; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1365,27 +1365,27 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__96() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__96() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__93; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__93; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__97() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__97() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__29; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__88; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__29; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__88; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__98() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__98() { _start: { lean_object* x_1; @@ -1393,7 +1393,7 @@ x_1 = lean_mk_string("]"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__99() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__99() { _start: { lean_object* x_1; @@ -1401,17 +1401,17 @@ x_1 = lean_mk_string("constant"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__100() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__100() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__6; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__99; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__6; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__99; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__101() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__101() { _start: { lean_object* x_1; @@ -1419,22 +1419,22 @@ x_1 = lean_mk_string("eval"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__102() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__102() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__101; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__101; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__103() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__103() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__101; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__101; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__102; +x_3 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__102; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1442,17 +1442,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__104() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__104() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__101; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__101; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__105() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__105() { _start: { lean_object* x_1; @@ -1460,17 +1460,17 @@ x_1 = lean_mk_string("declSig"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__106() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__106() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__6; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__105; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__6; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__105; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__107() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__107() { _start: { lean_object* x_1; lean_object* x_2; @@ -1479,39 +1479,39 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__108() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__108() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__20; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__12; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__20; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__12; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__109() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__109() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__108; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__12; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__108; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__12; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__110() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__110() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__10; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__109; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__10; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__109; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__111() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__111() { _start: { lean_object* x_1; @@ -1519,22 +1519,22 @@ x_1 = lean_mk_string("optConfig"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__112() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__112() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__111; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__111; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__113() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__113() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__111; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__111; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__112; +x_3 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__112; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1542,17 +1542,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__114() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__114() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__111; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__111; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__115() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__115() { _start: { lean_object* x_1; @@ -1560,22 +1560,22 @@ x_1 = lean_mk_string("Syntax"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__116() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__116() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__115; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__115; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__117() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__117() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__115; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__115; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__116; +x_3 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__116; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1583,51 +1583,51 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__118() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__118() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__115; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__115; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__119() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__119() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__2; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__115; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__115; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__120() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__120() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__119; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__119; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__121() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__121() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__120; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__120; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__122() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__122() { _start: { lean_object* x_1; @@ -1635,17 +1635,17 @@ x_1 = lean_mk_string("do"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__123() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__123() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__122; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__122; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__124() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__124() { _start: { lean_object* x_1; @@ -1653,17 +1653,17 @@ x_1 = lean_mk_string("doSeqIndent"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__125() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__125() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__124; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__124; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__126() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__126() { _start: { lean_object* x_1; @@ -1671,17 +1671,17 @@ x_1 = lean_mk_string("doSeqItem"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__127() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__127() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__126; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__126; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__128() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__128() { _start: { lean_object* x_1; @@ -1689,17 +1689,17 @@ x_1 = lean_mk_string("doIf"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__129() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__129() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__128; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__128; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__130() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__130() { _start: { lean_object* x_1; @@ -1707,7 +1707,7 @@ x_1 = lean_mk_string("if"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__131() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__131() { _start: { lean_object* x_1; @@ -1715,17 +1715,17 @@ x_1 = lean_mk_string("doIfProp"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__132() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__132() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__131; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__131; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__133() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__133() { _start: { lean_object* x_1; @@ -1733,22 +1733,22 @@ x_1 = lean_mk_string("optConfig.isNone"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__134() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__134() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__133; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__133; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__135() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__135() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__133; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__133; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__134; +x_3 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__134; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1756,7 +1756,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__136() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__136() { _start: { lean_object* x_1; @@ -1764,27 +1764,27 @@ x_1 = lean_mk_string("isNone"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__137() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__137() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__114; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__136; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__114; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__136; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__138() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__138() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__29; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__12; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__29; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__12; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__139() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__139() { _start: { lean_object* x_1; @@ -1792,7 +1792,7 @@ x_1 = lean_mk_string("then"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__140() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__140() { _start: { lean_object* x_1; @@ -1800,17 +1800,17 @@ x_1 = lean_mk_string("doReturn"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__141() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__141() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__140; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__140; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__142() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__142() { _start: { lean_object* x_1; @@ -1818,7 +1818,7 @@ x_1 = lean_mk_string("return"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__143() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__143() { _start: { lean_object* x_1; @@ -1826,17 +1826,17 @@ x_1 = lean_mk_string("structInst"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__144() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__144() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__143; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__143; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__145() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__145() { _start: { lean_object* x_1; @@ -1844,7 +1844,7 @@ x_1 = lean_mk_string("{"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__146() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__146() { _start: { lean_object* x_1; @@ -1852,29 +1852,29 @@ x_1 = lean_mk_string("optEllipsis"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__147() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__147() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__146; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__146; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__148() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__148() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__147; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__87; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__147; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__87; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__149() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__149() { _start: { lean_object* x_1; @@ -1882,7 +1882,7 @@ x_1 = lean_mk_string("}"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__150() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__150() { _start: { lean_object* x_1; @@ -1890,7 +1890,7 @@ x_1 = lean_mk_string("else"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__151() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__151() { _start: { lean_object* x_1; @@ -1898,17 +1898,17 @@ x_1 = lean_mk_string("doExpr"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__152() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__152() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__151; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__151; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__153() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__153() { _start: { lean_object* x_1; @@ -1916,17 +1916,17 @@ x_1 = lean_mk_string("term_<|_"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__154() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__154() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__153; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__153; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__155() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__155() { _start: { lean_object* x_1; @@ -1934,22 +1934,22 @@ x_1 = lean_mk_string("withoutModifyingState"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__156() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__156() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__155; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__155; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__157() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__157() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__155; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__155; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__156; +x_3 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__156; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1957,51 +1957,51 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__158() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__158() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__155; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__155; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__159() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__159() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__2; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__155; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__155; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__160() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__160() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__159; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__159; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__161() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__161() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__160; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__160; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__162() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__162() { _start: { lean_object* x_1; @@ -2009,7 +2009,7 @@ x_1 = lean_mk_string("<|"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__163() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__163() { _start: { lean_object* x_1; @@ -2017,22 +2017,22 @@ x_1 = lean_mk_string("withLCtx"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__164() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__164() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__163; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__163; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__165() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__165() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__163; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__163; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__164; +x_3 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__164; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2040,17 +2040,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__166() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__166() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__163; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__163; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__167() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__167() { _start: { lean_object* x_1; @@ -2058,51 +2058,51 @@ x_1 = lean_mk_string("Meta"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__168() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__168() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__2; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__167; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__167; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__169() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__169() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__168; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__163; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__168; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__163; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__170() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__170() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__169; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__169; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__171() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__171() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__170; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__170; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__172() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__172() { _start: { lean_object* x_1; @@ -2110,17 +2110,17 @@ x_1 = lean_mk_string("choice"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__173() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__173() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__172; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__172; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__174() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__174() { _start: { lean_object* x_1; @@ -2128,17 +2128,17 @@ x_1 = lean_mk_string("term{}"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__175() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__175() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__174; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__174; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__176() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__176() { _start: { lean_object* x_1; @@ -2146,22 +2146,22 @@ x_1 = lean_mk_string("Term.withSynthesize"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__177() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__177() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__176; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__176; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__178() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__178() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__176; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__176; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__177; +x_3 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__177; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2169,7 +2169,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__179() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__179() { _start: { lean_object* x_1; @@ -2177,51 +2177,51 @@ x_1 = lean_mk_string("withSynthesize"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__180() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__180() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__69; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__179; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__69; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__179; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__181() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__181() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__59; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__179; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__59; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__179; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__182() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__182() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__181; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__181; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__183() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__183() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__182; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__182; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__184() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__184() { _start: { lean_object* x_1; @@ -2229,17 +2229,17 @@ x_1 = lean_mk_string("doLetArrow"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__185() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__185() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__184; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__184; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__186() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__186() { _start: { lean_object* x_1; @@ -2247,7 +2247,7 @@ x_1 = lean_mk_string("let"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__187() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__187() { _start: { lean_object* x_1; @@ -2255,17 +2255,17 @@ x_1 = lean_mk_string("doIdDecl"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__188() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__188() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__187; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__187; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__189() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__189() { _start: { lean_object* x_1; @@ -2273,22 +2273,22 @@ x_1 = lean_mk_string("c"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__190() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__190() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__189; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__189; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__191() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__191() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__189; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__189; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__190; +x_3 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__190; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2296,17 +2296,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__192() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__192() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__189; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__189; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__193() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__193() { _start: { lean_object* x_1; @@ -2314,7 +2314,7 @@ x_1 = lean_mk_string("←"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__194() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__194() { _start: { lean_object* x_1; @@ -2322,22 +2322,22 @@ x_1 = lean_mk_string("Term.elabTermEnsuringType"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__195() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__195() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__194; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__194; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__196() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__196() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__194; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__194; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__195; +x_3 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__195; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2345,7 +2345,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__197() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__197() { _start: { lean_object* x_1; @@ -2353,51 +2353,51 @@ x_1 = lean_mk_string("elabTermEnsuringType"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__198() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__198() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__69; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__197; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__69; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__197; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__199() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__199() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__59; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__197; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__59; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__197; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__200() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__200() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__199; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__199; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__201() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__201() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__200; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__200; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__202() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__202() { _start: { lean_object* x_1; @@ -2405,17 +2405,17 @@ x_1 = lean_mk_string("arrayRef"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__203() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__203() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__202; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__202; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__204() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__204() { _start: { lean_object* x_1; @@ -2423,7 +2423,7 @@ x_1 = lean_mk_string("["); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__205() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__205() { _start: { lean_object* x_1; @@ -2431,17 +2431,17 @@ x_1 = lean_mk_string("numLit"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__206() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__206() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__205; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__205; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__207() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__207() { _start: { lean_object* x_1; @@ -2449,7 +2449,7 @@ x_1 = lean_mk_string("0"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__208() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__208() { _start: { lean_object* x_1; @@ -2457,7 +2457,7 @@ x_1 = lean_mk_string("3"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__209() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__209() { _start: { lean_object* x_1; @@ -2465,17 +2465,17 @@ x_1 = lean_mk_string("paren"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__210() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__210() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__209; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__209; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__211() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__211() { _start: { lean_object* x_1; @@ -2483,22 +2483,22 @@ x_1 = lean_mk_string("Lean.mkConst"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__212() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__212() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__211; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__211; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__213() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__213() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__211; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__211; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__212; +x_3 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__212; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2506,7 +2506,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__214() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__214() { _start: { lean_object* x_1; @@ -2514,41 +2514,41 @@ x_1 = lean_mk_string("mkConst"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__215() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__215() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__2; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__214; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__214; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__216() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__216() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__215; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__215; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__217() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__217() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__216; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__216; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__218() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__218() { _start: { lean_object* x_1; @@ -2556,17 +2556,17 @@ x_1 = lean_mk_string("liftMethod"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__219() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__219() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__218; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__218; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__220() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__220() { _start: { lean_object* x_1; @@ -2574,22 +2574,22 @@ x_1 = lean_mk_string("instantiateMVars"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__221() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__221() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__220; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__220; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__222() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__222() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__220; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__220; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__221; +x_3 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__221; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2597,61 +2597,61 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__223() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__223() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__220; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__220; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__224() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__224() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__168; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__220; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__168; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__220; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__225() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__225() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__224; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__224; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__226() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__226() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__225; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__225; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__227() { +static lean_object* _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__227() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__29; -x_2 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__110; +x_1 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__29; +x_2 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__110; x_3 = lean_array_push(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2678,7 +2678,7 @@ x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); lean_inc(x_2); -x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_12 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_13 = !lean_is_exclusive(x_12); if (x_13 == 0) { @@ -2689,65 +2689,65 @@ lean_inc(x_15); x_16 = lean_ctor_get(x_2, 1); lean_inc(x_16); lean_dec(x_2); -x_17 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__13; +x_17 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__13; lean_inc(x_14); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_14); lean_ctor_set(x_18, 1, x_17); -x_19 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__15; +x_19 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__15; x_20 = lean_array_push(x_19, x_18); -x_21 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__14; +x_21 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__14; x_22 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_22, 0, x_21); lean_ctor_set(x_22, 1, x_20); x_23 = lean_array_push(x_19, x_22); -x_24 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__2; +x_24 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__2; x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); -x_26 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__20; +x_26 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__20; x_27 = lean_array_push(x_26, x_25); -x_28 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__12; +x_28 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__12; x_29 = lean_array_push(x_27, x_28); -x_30 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__10; +x_30 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__10; x_31 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); -x_32 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__21; +x_32 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__21; lean_inc(x_14); x_33 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_33, 0, x_14); lean_ctor_set(x_33, 1, x_32); -x_34 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__28; +x_34 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__28; lean_inc(x_15); lean_inc(x_16); x_35 = l_Lean_addMacroScope(x_16, x_34, x_15); x_36 = lean_box(0); -x_37 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__27; +x_37 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__27; lean_inc(x_14); x_38 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_38, 0, x_14); lean_ctor_set(x_38, 1, x_37); lean_ctor_set(x_38, 2, x_35); lean_ctor_set(x_38, 3, x_36); -x_39 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__29; +x_39 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__29; lean_inc(x_38); x_40 = lean_array_push(x_39, x_38); x_41 = lean_array_push(x_40, x_28); -x_42 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__24; +x_42 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__24; x_43 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_43, 0, x_42); lean_ctor_set(x_43, 1, x_41); -x_44 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__36; +x_44 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__36; lean_inc(x_14); x_45 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_45, 0, x_14); lean_ctor_set(x_45, 1, x_44); -x_46 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__40; +x_46 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__40; lean_inc(x_15); lean_inc(x_16); x_47 = l_Lean_addMacroScope(x_16, x_46, x_15); -x_48 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__39; +x_48 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__39; lean_inc(x_14); x_49 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_49, 0, x_14); @@ -2759,17 +2759,17 @@ x_50 = lean_array_push(x_19, x_49); x_51 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_51, 0, x_24); lean_ctor_set(x_51, 1, x_50); -x_52 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__41; +x_52 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__41; lean_inc(x_14); x_53 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_53, 0, x_14); lean_ctor_set(x_53, 1, x_52); -x_54 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__45; +x_54 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__45; lean_inc(x_15); lean_inc(x_16); x_55 = l_Lean_addMacroScope(x_16, x_54, x_15); -x_56 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__44; -x_57 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__48; +x_56 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__44; +x_57 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__48; lean_inc(x_14); x_58 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_58, 0, x_14); @@ -2782,12 +2782,12 @@ x_60 = lean_array_push(x_59, x_58); x_61 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_61, 0, x_24); lean_ctor_set(x_61, 1, x_60); -x_62 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__49; +x_62 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__49; lean_inc(x_14); x_63 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_63, 0, x_14); lean_ctor_set(x_63, 1, x_62); -x_64 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__50; +x_64 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__50; lean_inc(x_45); x_65 = lean_array_push(x_64, x_45); lean_inc(x_65); @@ -2796,7 +2796,7 @@ x_67 = lean_array_push(x_66, x_61); x_68 = lean_array_push(x_67, x_28); lean_inc(x_63); x_69 = lean_array_push(x_68, x_63); -x_70 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__35; +x_70 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__35; x_71 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_71, 0, x_70); lean_ctor_set(x_71, 1, x_69); @@ -2804,12 +2804,12 @@ x_72 = lean_array_push(x_19, x_71); x_73 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_73, 0, x_24); lean_ctor_set(x_73, 1, x_72); -x_74 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__58; +x_74 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__58; lean_inc(x_15); lean_inc(x_16); x_75 = l_Lean_addMacroScope(x_16, x_74, x_15); -x_76 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__57; -x_77 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__62; +x_76 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__57; +x_77 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__62; lean_inc(x_14); x_78 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_78, 0, x_14); @@ -2823,13 +2823,13 @@ lean_ctor_set(x_80, 0, x_24); lean_ctor_set(x_80, 1, x_79); x_81 = lean_array_push(x_39, x_78); x_82 = lean_array_push(x_81, x_80); -x_83 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__54; +x_83 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__54; x_84 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_84, 0, x_83); lean_ctor_set(x_84, 1, x_82); lean_inc(x_59); x_85 = lean_array_push(x_59, x_84); -x_86 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__52; +x_86 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__52; x_87 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_87, 0, x_86); lean_ctor_set(x_87, 1, x_85); @@ -2842,39 +2842,39 @@ x_90 = lean_array_push(x_39, x_73); lean_inc(x_89); lean_inc(x_90); x_91 = lean_array_push(x_90, x_89); -x_92 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__31; +x_92 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__31; x_93 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_93, 0, x_92); lean_ctor_set(x_93, 1, x_91); -x_94 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__65; +x_94 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__65; lean_inc(x_14); x_95 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_95, 0, x_14); lean_ctor_set(x_95, 1, x_94); -x_96 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__71; +x_96 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__71; lean_inc(x_15); lean_inc(x_16); x_97 = l_Lean_addMacroScope(x_16, x_96, x_15); -x_98 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__68; -x_99 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__74; +x_98 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__68; +x_99 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__74; lean_inc(x_14); x_100 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_100, 0, x_14); lean_ctor_set(x_100, 1, x_98); lean_ctor_set(x_100, 2, x_97); lean_ctor_set(x_100, 3, x_99); -x_101 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__77; +x_101 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__77; lean_inc(x_14); x_102 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_102, 0, x_14); lean_ctor_set(x_102, 1, x_101); -x_103 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__78; +x_103 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__78; lean_inc(x_102); x_104 = lean_array_push(x_103, x_102); x_105 = lean_array_push(x_104, x_102); lean_inc(x_11); x_106 = lean_array_push(x_105, x_11); -x_107 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__76; +x_107 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__76; x_108 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_108, 0, x_107); lean_ctor_set(x_108, 1, x_106); @@ -2895,11 +2895,11 @@ x_116 = lean_array_push(x_103, x_95); lean_inc(x_116); x_117 = lean_array_push(x_116, x_115); x_118 = lean_array_push(x_117, x_28); -x_119 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__64; +x_119 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__64; x_120 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_120, 0, x_119); lean_ctor_set(x_120, 1, x_118); -x_121 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__79; +x_121 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__79; x_122 = lean_array_push(x_121, x_33); lean_inc(x_122); x_123 = lean_array_push(x_122, x_43); @@ -2908,26 +2908,26 @@ x_125 = lean_array_push(x_124, x_120); x_126 = lean_array_push(x_125, x_28); x_127 = lean_array_push(x_126, x_28); x_128 = lean_array_push(x_127, x_28); -x_129 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__22; +x_129 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__22; 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 = lean_array_push(x_39, x_31); x_132 = lean_array_push(x_131, x_130); -x_133 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__8; +x_133 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__8; x_134 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_134, 0, x_133); lean_ctor_set(x_134, 1, x_132); -x_135 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__82; +x_135 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__82; lean_inc(x_14); x_136 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_136, 0, x_14); lean_ctor_set(x_136, 1, x_135); -x_137 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__96; +x_137 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__96; lean_inc(x_15); lean_inc(x_16); x_138 = l_Lean_addMacroScope(x_16, x_137, x_15); -x_139 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__95; +x_139 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__95; lean_inc(x_14); x_140 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_140, 0, x_14); @@ -2940,13 +2940,13 @@ lean_ctor_set(x_142, 0, x_24); lean_ctor_set(x_142, 1, x_141); x_143 = lean_array_push(x_39, x_140); x_144 = lean_array_push(x_143, x_142); -x_145 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__92; +x_145 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__92; x_146 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_146, 0, x_145); lean_ctor_set(x_146, 1, x_144); -x_147 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__97; +x_147 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__97; x_148 = lean_array_push(x_147, x_146); -x_149 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__84; +x_149 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__84; x_150 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_150, 0, x_149); lean_ctor_set(x_150, 1, x_148); @@ -2954,7 +2954,7 @@ x_151 = lean_array_push(x_19, x_150); x_152 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_152, 0, x_24); lean_ctor_set(x_152, 1, x_151); -x_153 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__98; +x_153 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__98; lean_inc(x_14); x_154 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_154, 0, x_14); @@ -2963,7 +2963,7 @@ x_155 = lean_array_push(x_103, x_136); x_156 = lean_array_push(x_155, x_152); lean_inc(x_154); x_157 = lean_array_push(x_156, x_154); -x_158 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__81; +x_158 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__81; x_159 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_159, 0, x_158); lean_ctor_set(x_159, 1, x_157); @@ -2971,7 +2971,7 @@ x_160 = lean_array_push(x_19, x_159); x_161 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_161, 0, x_24); lean_ctor_set(x_161, 1, x_160); -x_162 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__17; +x_162 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__17; x_163 = lean_array_push(x_162, x_161); x_164 = lean_array_push(x_163, x_28); x_165 = lean_array_push(x_164, x_28); @@ -2980,16 +2980,16 @@ x_167 = lean_array_push(x_166, x_28); x_168 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_168, 0, x_30); lean_ctor_set(x_168, 1, x_167); -x_169 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__99; +x_169 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__99; lean_inc(x_14); x_170 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_170, 0, x_14); lean_ctor_set(x_170, 1, x_169); -x_171 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__104; +x_171 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__104; lean_inc(x_15); lean_inc(x_16); x_172 = l_Lean_addMacroScope(x_16, x_171, x_15); -x_173 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__103; +x_173 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__103; lean_inc(x_14); x_174 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_174, 0, x_14); @@ -3003,16 +3003,16 @@ x_177 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_177, 0, x_42); lean_ctor_set(x_177, 1, x_176); x_178 = lean_array_push(x_90, x_87); -x_179 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__106; +x_179 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__106; x_180 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_180, 0, x_179); lean_ctor_set(x_180, 1, x_178); -x_181 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__107; +x_181 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__107; x_182 = lean_array_push(x_181, x_170); x_183 = lean_array_push(x_182, x_177); x_184 = lean_array_push(x_183, x_180); x_185 = lean_array_push(x_184, x_28); -x_186 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__100; +x_186 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__100; x_187 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_187, 0, x_186); lean_ctor_set(x_187, 1, x_185); @@ -3021,11 +3021,11 @@ x_189 = lean_array_push(x_188, x_187); x_190 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_190, 0, x_133); lean_ctor_set(x_190, 1, x_189); -x_191 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__114; +x_191 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__114; lean_inc(x_15); lean_inc(x_16); x_192 = l_Lean_addMacroScope(x_16, x_191, x_15); -x_193 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__113; +x_193 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__113; lean_inc(x_14); x_194 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_194, 0, x_14); @@ -3037,12 +3037,12 @@ x_195 = lean_array_push(x_19, x_194); x_196 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_196, 0, x_24); lean_ctor_set(x_196, 1, x_195); -x_197 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__118; +x_197 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__118; lean_inc(x_15); lean_inc(x_16); x_198 = l_Lean_addMacroScope(x_16, x_197, x_15); -x_199 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__117; -x_200 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__121; +x_199 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__117; +x_200 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__121; lean_inc(x_14); x_201 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_201, 0, x_14); @@ -3071,44 +3071,44 @@ x_212 = lean_array_push(x_211, x_89); x_213 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_213, 0, x_92); lean_ctor_set(x_213, 1, x_212); -x_214 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__122; +x_214 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__122; lean_inc(x_14); x_215 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_215, 0, x_14); lean_ctor_set(x_215, 1, x_214); -x_216 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__130; +x_216 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__130; lean_inc(x_14); x_217 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_217, 0, x_14); lean_ctor_set(x_217, 1, x_216); -x_218 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__137; +x_218 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__137; lean_inc(x_15); lean_inc(x_16); x_219 = l_Lean_addMacroScope(x_16, x_218, x_15); -x_220 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__135; +x_220 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__135; lean_inc(x_14); x_221 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_221, 0, x_14); lean_ctor_set(x_221, 1, x_220); lean_ctor_set(x_221, 2, x_219); lean_ctor_set(x_221, 3, x_36); -x_222 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__138; +x_222 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__138; x_223 = lean_array_push(x_222, x_221); -x_224 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__132; +x_224 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__132; x_225 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_225, 0, x_224); lean_ctor_set(x_225, 1, x_223); -x_226 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__139; +x_226 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__139; lean_inc(x_14); x_227 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_227, 0, x_14); lean_ctor_set(x_227, 1, x_226); -x_228 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__142; +x_228 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__142; lean_inc(x_14); x_229 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_229, 0, x_14); lean_ctor_set(x_229, 1, x_228); -x_230 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__145; +x_230 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__145; lean_inc(x_14); x_231 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_231, 0, x_14); @@ -3117,23 +3117,23 @@ x_232 = lean_array_push(x_59, x_11); x_233 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_233, 0, x_24); lean_ctor_set(x_233, 1, x_232); -x_234 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__149; +x_234 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__149; lean_inc(x_14); x_235 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_235, 0, x_14); lean_ctor_set(x_235, 1, x_234); -x_236 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__16; +x_236 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__16; lean_inc(x_231); x_237 = lean_array_push(x_236, x_231); x_238 = lean_array_push(x_237, x_28); x_239 = lean_array_push(x_238, x_28); -x_240 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__148; +x_240 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__148; x_241 = lean_array_push(x_239, x_240); lean_inc(x_241); x_242 = lean_array_push(x_241, x_233); lean_inc(x_235); x_243 = lean_array_push(x_242, x_235); -x_244 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__144; +x_244 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__144; x_245 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_245, 0, x_244); lean_ctor_set(x_245, 1, x_243); @@ -3143,13 +3143,13 @@ lean_ctor_set(x_247, 0, x_24); lean_ctor_set(x_247, 1, x_246); x_248 = lean_array_push(x_39, x_229); x_249 = lean_array_push(x_248, x_247); -x_250 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__141; +x_250 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__141; x_251 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_251, 0, x_250); lean_ctor_set(x_251, 1, x_249); x_252 = lean_array_push(x_39, x_251); x_253 = lean_array_push(x_252, x_28); -x_254 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__127; +x_254 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__127; x_255 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_255, 0, x_254); lean_ctor_set(x_255, 1, x_253); @@ -3158,38 +3158,38 @@ x_257 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_257, 0, x_24); lean_ctor_set(x_257, 1, x_256); x_258 = lean_array_push(x_19, x_257); -x_259 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__125; +x_259 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__125; x_260 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_260, 0, x_259); lean_ctor_set(x_260, 1, x_258); -x_261 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__150; +x_261 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__150; lean_inc(x_14); x_262 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_262, 0, x_14); lean_ctor_set(x_262, 1, x_261); -x_263 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__158; +x_263 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__158; lean_inc(x_15); lean_inc(x_16); x_264 = l_Lean_addMacroScope(x_16, x_263, x_15); -x_265 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__157; -x_266 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__161; +x_265 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__157; +x_266 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__161; lean_inc(x_14); x_267 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_267, 0, x_14); lean_ctor_set(x_267, 1, x_265); lean_ctor_set(x_267, 2, x_264); lean_ctor_set(x_267, 3, x_266); -x_268 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__162; +x_268 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__162; lean_inc(x_14); x_269 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_269, 0, x_14); lean_ctor_set(x_269, 1, x_268); -x_270 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__166; +x_270 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__166; lean_inc(x_15); lean_inc(x_16); x_271 = l_Lean_addMacroScope(x_16, x_270, x_15); -x_272 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__165; -x_273 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__171; +x_272 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__165; +x_273 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__171; lean_inc(x_14); x_274 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_274, 0, x_14); @@ -3199,7 +3199,7 @@ lean_ctor_set(x_274, 3, x_273); x_275 = lean_array_push(x_39, x_231); lean_inc(x_235); x_276 = lean_array_push(x_275, x_235); -x_277 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__175; +x_277 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__175; x_278 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_278, 0, x_277); lean_ctor_set(x_278, 1, x_276); @@ -3210,7 +3210,7 @@ lean_ctor_set(x_281, 0, x_244); lean_ctor_set(x_281, 1, x_280); x_282 = lean_array_push(x_39, x_278); x_283 = lean_array_push(x_282, x_281); -x_284 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__173; +x_284 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__173; x_285 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_285, 0, x_284); lean_ctor_set(x_285, 1, x_283); @@ -3225,63 +3225,63 @@ x_290 = lean_array_push(x_289, x_288); x_291 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_291, 0, x_83); lean_ctor_set(x_291, 1, x_290); -x_292 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__180; +x_292 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__180; lean_inc(x_15); lean_inc(x_16); x_293 = l_Lean_addMacroScope(x_16, x_292, x_15); -x_294 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__178; -x_295 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__183; +x_294 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__178; +x_295 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__183; lean_inc(x_14); x_296 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_296, 0, x_14); lean_ctor_set(x_296, 1, x_294); lean_ctor_set(x_296, 2, x_293); lean_ctor_set(x_296, 3, x_295); -x_297 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__186; +x_297 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__186; lean_inc(x_14); x_298 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_298, 0, x_14); lean_ctor_set(x_298, 1, x_297); -x_299 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__192; +x_299 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__192; lean_inc(x_15); lean_inc(x_16); x_300 = l_Lean_addMacroScope(x_16, x_299, x_15); -x_301 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__191; +x_301 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__191; lean_inc(x_14); x_302 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_302, 0, x_14); lean_ctor_set(x_302, 1, x_301); lean_ctor_set(x_302, 2, x_300); lean_ctor_set(x_302, 3, x_36); -x_303 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__193; +x_303 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__193; lean_inc(x_14); x_304 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_304, 0, x_14); lean_ctor_set(x_304, 1, x_303); -x_305 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__198; +x_305 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__198; lean_inc(x_15); lean_inc(x_16); x_306 = l_Lean_addMacroScope(x_16, x_305, x_15); -x_307 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__196; -x_308 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__201; +x_307 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__196; +x_308 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__201; lean_inc(x_14); x_309 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_309, 0, x_14); lean_ctor_set(x_309, 1, x_307); lean_ctor_set(x_309, 2, x_306); lean_ctor_set(x_309, 3, x_308); -x_310 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__204; +x_310 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__204; lean_inc(x_14); x_311 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_311, 0, x_14); lean_ctor_set(x_311, 1, x_310); -x_312 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__207; +x_312 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__207; lean_inc(x_14); x_313 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_313, 0, x_14); lean_ctor_set(x_313, 1, x_312); x_314 = lean_array_push(x_19, x_313); -x_315 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__206; +x_315 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__206; x_316 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_316, 0, x_315); lean_ctor_set(x_316, 1, x_314); @@ -3291,11 +3291,11 @@ x_318 = lean_array_push(x_317, x_311); x_319 = lean_array_push(x_318, x_316); lean_inc(x_154); x_320 = lean_array_push(x_319, x_154); -x_321 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__203; +x_321 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__203; x_322 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_322, 0, x_321); lean_ctor_set(x_322, 1, x_320); -x_323 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__208; +x_323 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__208; lean_inc(x_14); x_324 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_324, 0, x_14); @@ -3311,12 +3311,12 @@ x_330 = lean_array_push(x_329, x_154); x_331 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_331, 0, x_321); lean_ctor_set(x_331, 1, x_330); -x_332 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__215; +x_332 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__215; lean_inc(x_15); lean_inc(x_16); x_333 = l_Lean_addMacroScope(x_16, x_332, x_15); -x_334 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__213; -x_335 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__217; +x_334 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__213; +x_335 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__217; lean_inc(x_14); x_336 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_336, 0, x_14); @@ -3342,7 +3342,7 @@ lean_inc(x_345); x_346 = lean_array_push(x_345, x_344); lean_inc(x_63); x_347 = lean_array_push(x_346, x_63); -x_348 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__210; +x_348 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__210; x_349 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_349, 0, x_348); lean_ctor_set(x_349, 1, x_347); @@ -3357,7 +3357,7 @@ x_355 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_355, 0, x_83); lean_ctor_set(x_355, 1, x_354); x_356 = lean_array_push(x_19, x_355); -x_357 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__152; +x_357 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__152; x_358 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_358, 0, x_357); lean_ctor_set(x_358, 1, x_356); @@ -3367,14 +3367,14 @@ x_360 = lean_array_push(x_359, x_28); lean_inc(x_304); x_361 = lean_array_push(x_360, x_304); x_362 = lean_array_push(x_361, x_358); -x_363 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__188; +x_363 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__188; x_364 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_364, 0, x_363); lean_ctor_set(x_364, 1, x_362); x_365 = lean_array_push(x_103, x_298); x_366 = lean_array_push(x_365, x_28); x_367 = lean_array_push(x_366, x_364); -x_368 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__185; +x_368 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__185; x_369 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_369, 0, x_368); lean_ctor_set(x_369, 1, x_367); @@ -3383,10 +3383,10 @@ x_371 = lean_array_push(x_370, x_28); x_372 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_372, 0, x_254); lean_ctor_set(x_372, 1, x_371); -x_373 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__223; +x_373 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__223; x_374 = l_Lean_addMacroScope(x_16, x_373, x_15); -x_375 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__222; -x_376 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__226; +x_375 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__222; +x_376 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__226; x_377 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_377, 0, x_14); lean_ctor_set(x_377, 1, x_375); @@ -3403,7 +3403,7 @@ lean_ctor_set(x_382, 0, x_83); lean_ctor_set(x_382, 1, x_381); x_383 = lean_array_push(x_39, x_304); x_384 = lean_array_push(x_383, x_382); -x_385 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__219; +x_385 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__219; x_386 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_386, 0, x_385); lean_ctor_set(x_386, 1, x_384); @@ -3446,7 +3446,7 @@ lean_ctor_set(x_406, 1, x_405); x_407 = lean_array_push(x_39, x_215); lean_inc(x_407); x_408 = lean_array_push(x_407, x_406); -x_409 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__123; +x_409 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__123; x_410 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_410, 0, x_409); lean_ctor_set(x_410, 1, x_408); @@ -3463,7 +3463,7 @@ x_416 = lean_array_push(x_103, x_291); lean_inc(x_269); x_417 = lean_array_push(x_416, x_269); x_418 = lean_array_push(x_417, x_415); -x_419 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__154; +x_419 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__154; x_420 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_420, 0, x_419); lean_ctor_set(x_420, 1, x_418); @@ -3501,7 +3501,7 @@ x_439 = lean_array_push(x_438, x_227); x_440 = lean_array_push(x_439, x_260); x_441 = lean_array_push(x_440, x_28); x_442 = lean_array_push(x_441, x_436); -x_443 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__129; +x_443 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__129; x_444 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_444, 0, x_443); lean_ctor_set(x_444, 1, x_442); @@ -3536,7 +3536,7 @@ x_462 = lean_array_push(x_461, x_28); x_463 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_463, 0, x_129); lean_ctor_set(x_463, 1, x_462); -x_464 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__227; +x_464 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__227; x_465 = lean_array_push(x_464, x_463); x_466 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_466, 0, x_133); @@ -3563,65 +3563,65 @@ lean_inc(x_473); x_474 = lean_ctor_get(x_2, 1); lean_inc(x_474); lean_dec(x_2); -x_475 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__13; +x_475 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__13; lean_inc(x_471); x_476 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_476, 0, x_471); lean_ctor_set(x_476, 1, x_475); -x_477 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__15; +x_477 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__15; x_478 = lean_array_push(x_477, x_476); -x_479 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__14; +x_479 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__14; x_480 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_480, 0, x_479); lean_ctor_set(x_480, 1, x_478); x_481 = lean_array_push(x_477, x_480); -x_482 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__2; +x_482 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__2; x_483 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_483, 0, x_482); lean_ctor_set(x_483, 1, x_481); -x_484 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__20; +x_484 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__20; x_485 = lean_array_push(x_484, x_483); -x_486 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__12; +x_486 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__12; x_487 = lean_array_push(x_485, x_486); -x_488 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__10; +x_488 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__10; x_489 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_489, 0, x_488); lean_ctor_set(x_489, 1, x_487); -x_490 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__21; +x_490 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__21; lean_inc(x_471); x_491 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_491, 0, x_471); lean_ctor_set(x_491, 1, x_490); -x_492 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__28; +x_492 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__28; lean_inc(x_473); lean_inc(x_474); x_493 = l_Lean_addMacroScope(x_474, x_492, x_473); x_494 = lean_box(0); -x_495 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__27; +x_495 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__27; lean_inc(x_471); x_496 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_496, 0, x_471); lean_ctor_set(x_496, 1, x_495); lean_ctor_set(x_496, 2, x_493); lean_ctor_set(x_496, 3, x_494); -x_497 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__29; +x_497 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__29; lean_inc(x_496); x_498 = lean_array_push(x_497, x_496); x_499 = lean_array_push(x_498, x_486); -x_500 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__24; +x_500 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__24; x_501 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_501, 0, x_500); lean_ctor_set(x_501, 1, x_499); -x_502 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__36; +x_502 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__36; lean_inc(x_471); x_503 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_503, 0, x_471); lean_ctor_set(x_503, 1, x_502); -x_504 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__40; +x_504 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__40; lean_inc(x_473); lean_inc(x_474); x_505 = l_Lean_addMacroScope(x_474, x_504, x_473); -x_506 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__39; +x_506 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__39; lean_inc(x_471); x_507 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_507, 0, x_471); @@ -3633,17 +3633,17 @@ x_508 = lean_array_push(x_477, x_507); x_509 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_509, 0, x_482); lean_ctor_set(x_509, 1, x_508); -x_510 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__41; +x_510 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__41; lean_inc(x_471); x_511 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_511, 0, x_471); lean_ctor_set(x_511, 1, x_510); -x_512 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__45; +x_512 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__45; lean_inc(x_473); lean_inc(x_474); x_513 = l_Lean_addMacroScope(x_474, x_512, x_473); -x_514 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__44; -x_515 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__48; +x_514 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__44; +x_515 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__48; lean_inc(x_471); x_516 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_516, 0, x_471); @@ -3656,12 +3656,12 @@ x_518 = lean_array_push(x_517, x_516); x_519 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_519, 0, x_482); lean_ctor_set(x_519, 1, x_518); -x_520 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__49; +x_520 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__49; lean_inc(x_471); x_521 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_521, 0, x_471); lean_ctor_set(x_521, 1, x_520); -x_522 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__50; +x_522 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__50; lean_inc(x_503); x_523 = lean_array_push(x_522, x_503); lean_inc(x_523); @@ -3670,7 +3670,7 @@ x_525 = lean_array_push(x_524, x_519); x_526 = lean_array_push(x_525, x_486); lean_inc(x_521); x_527 = lean_array_push(x_526, x_521); -x_528 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__35; +x_528 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__35; x_529 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_529, 0, x_528); lean_ctor_set(x_529, 1, x_527); @@ -3678,12 +3678,12 @@ x_530 = lean_array_push(x_477, x_529); x_531 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_531, 0, x_482); lean_ctor_set(x_531, 1, x_530); -x_532 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__58; +x_532 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__58; lean_inc(x_473); lean_inc(x_474); x_533 = l_Lean_addMacroScope(x_474, x_532, x_473); -x_534 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__57; -x_535 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__62; +x_534 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__57; +x_535 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__62; lean_inc(x_471); x_536 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_536, 0, x_471); @@ -3697,13 +3697,13 @@ lean_ctor_set(x_538, 0, x_482); lean_ctor_set(x_538, 1, x_537); x_539 = lean_array_push(x_497, x_536); x_540 = lean_array_push(x_539, x_538); -x_541 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__54; +x_541 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__54; x_542 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_542, 0, x_541); lean_ctor_set(x_542, 1, x_540); lean_inc(x_517); x_543 = lean_array_push(x_517, x_542); -x_544 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__52; +x_544 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__52; x_545 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_545, 0, x_544); lean_ctor_set(x_545, 1, x_543); @@ -3716,39 +3716,39 @@ x_548 = lean_array_push(x_497, x_531); lean_inc(x_547); lean_inc(x_548); x_549 = lean_array_push(x_548, x_547); -x_550 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__31; +x_550 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__31; x_551 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_551, 0, x_550); lean_ctor_set(x_551, 1, x_549); -x_552 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__65; +x_552 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__65; lean_inc(x_471); x_553 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_553, 0, x_471); lean_ctor_set(x_553, 1, x_552); -x_554 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__71; +x_554 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__71; lean_inc(x_473); lean_inc(x_474); x_555 = l_Lean_addMacroScope(x_474, x_554, x_473); -x_556 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__68; -x_557 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__74; +x_556 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__68; +x_557 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__74; lean_inc(x_471); x_558 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_558, 0, x_471); lean_ctor_set(x_558, 1, x_556); lean_ctor_set(x_558, 2, x_555); lean_ctor_set(x_558, 3, x_557); -x_559 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__77; +x_559 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__77; lean_inc(x_471); x_560 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_560, 0, x_471); lean_ctor_set(x_560, 1, x_559); -x_561 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__78; +x_561 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__78; lean_inc(x_560); x_562 = lean_array_push(x_561, x_560); x_563 = lean_array_push(x_562, x_560); lean_inc(x_11); x_564 = lean_array_push(x_563, x_11); -x_565 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__76; +x_565 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__76; x_566 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_566, 0, x_565); lean_ctor_set(x_566, 1, x_564); @@ -3769,11 +3769,11 @@ x_574 = lean_array_push(x_561, x_553); lean_inc(x_574); x_575 = lean_array_push(x_574, x_573); x_576 = lean_array_push(x_575, x_486); -x_577 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__64; +x_577 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__64; x_578 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_578, 0, x_577); lean_ctor_set(x_578, 1, x_576); -x_579 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__79; +x_579 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__79; x_580 = lean_array_push(x_579, x_491); lean_inc(x_580); x_581 = lean_array_push(x_580, x_501); @@ -3782,26 +3782,26 @@ x_583 = lean_array_push(x_582, x_578); x_584 = lean_array_push(x_583, x_486); x_585 = lean_array_push(x_584, x_486); x_586 = lean_array_push(x_585, x_486); -x_587 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__22; +x_587 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__22; x_588 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_588, 0, x_587); lean_ctor_set(x_588, 1, x_586); x_589 = lean_array_push(x_497, x_489); x_590 = lean_array_push(x_589, x_588); -x_591 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__8; +x_591 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__8; x_592 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_592, 0, x_591); lean_ctor_set(x_592, 1, x_590); -x_593 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__82; +x_593 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__82; lean_inc(x_471); x_594 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_594, 0, x_471); lean_ctor_set(x_594, 1, x_593); -x_595 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__96; +x_595 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__96; lean_inc(x_473); lean_inc(x_474); x_596 = l_Lean_addMacroScope(x_474, x_595, x_473); -x_597 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__95; +x_597 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__95; lean_inc(x_471); x_598 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_598, 0, x_471); @@ -3814,13 +3814,13 @@ lean_ctor_set(x_600, 0, x_482); lean_ctor_set(x_600, 1, x_599); x_601 = lean_array_push(x_497, x_598); x_602 = lean_array_push(x_601, x_600); -x_603 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__92; +x_603 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__92; x_604 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_604, 0, x_603); lean_ctor_set(x_604, 1, x_602); -x_605 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__97; +x_605 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__97; x_606 = lean_array_push(x_605, x_604); -x_607 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__84; +x_607 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__84; x_608 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_608, 0, x_607); lean_ctor_set(x_608, 1, x_606); @@ -3828,7 +3828,7 @@ x_609 = lean_array_push(x_477, x_608); x_610 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_610, 0, x_482); lean_ctor_set(x_610, 1, x_609); -x_611 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__98; +x_611 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__98; lean_inc(x_471); x_612 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_612, 0, x_471); @@ -3837,7 +3837,7 @@ x_613 = lean_array_push(x_561, x_594); x_614 = lean_array_push(x_613, x_610); lean_inc(x_612); x_615 = lean_array_push(x_614, x_612); -x_616 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__81; +x_616 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__81; x_617 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_617, 0, x_616); lean_ctor_set(x_617, 1, x_615); @@ -3845,7 +3845,7 @@ x_618 = lean_array_push(x_477, x_617); x_619 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_619, 0, x_482); lean_ctor_set(x_619, 1, x_618); -x_620 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__17; +x_620 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__17; x_621 = lean_array_push(x_620, x_619); x_622 = lean_array_push(x_621, x_486); x_623 = lean_array_push(x_622, x_486); @@ -3854,16 +3854,16 @@ x_625 = lean_array_push(x_624, x_486); x_626 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_626, 0, x_488); lean_ctor_set(x_626, 1, x_625); -x_627 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__99; +x_627 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__99; lean_inc(x_471); x_628 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_628, 0, x_471); lean_ctor_set(x_628, 1, x_627); -x_629 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__104; +x_629 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__104; lean_inc(x_473); lean_inc(x_474); x_630 = l_Lean_addMacroScope(x_474, x_629, x_473); -x_631 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__103; +x_631 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__103; lean_inc(x_471); x_632 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_632, 0, x_471); @@ -3877,16 +3877,16 @@ x_635 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_635, 0, x_500); lean_ctor_set(x_635, 1, x_634); x_636 = lean_array_push(x_548, x_545); -x_637 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__106; +x_637 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__106; x_638 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_638, 0, x_637); lean_ctor_set(x_638, 1, x_636); -x_639 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__107; +x_639 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__107; x_640 = lean_array_push(x_639, x_628); x_641 = lean_array_push(x_640, x_635); x_642 = lean_array_push(x_641, x_638); x_643 = lean_array_push(x_642, x_486); -x_644 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__100; +x_644 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__100; x_645 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_645, 0, x_644); lean_ctor_set(x_645, 1, x_643); @@ -3895,11 +3895,11 @@ x_647 = lean_array_push(x_646, x_645); x_648 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_648, 0, x_591); lean_ctor_set(x_648, 1, x_647); -x_649 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__114; +x_649 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__114; lean_inc(x_473); lean_inc(x_474); x_650 = l_Lean_addMacroScope(x_474, x_649, x_473); -x_651 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__113; +x_651 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__113; lean_inc(x_471); x_652 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_652, 0, x_471); @@ -3911,12 +3911,12 @@ x_653 = lean_array_push(x_477, x_652); x_654 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_654, 0, x_482); lean_ctor_set(x_654, 1, x_653); -x_655 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__118; +x_655 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__118; lean_inc(x_473); lean_inc(x_474); x_656 = l_Lean_addMacroScope(x_474, x_655, x_473); -x_657 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__117; -x_658 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__121; +x_657 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__117; +x_658 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__121; lean_inc(x_471); x_659 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_659, 0, x_471); @@ -3945,44 +3945,44 @@ x_670 = lean_array_push(x_669, x_547); x_671 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_671, 0, x_550); lean_ctor_set(x_671, 1, x_670); -x_672 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__122; +x_672 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__122; lean_inc(x_471); x_673 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_673, 0, x_471); lean_ctor_set(x_673, 1, x_672); -x_674 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__130; +x_674 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__130; lean_inc(x_471); x_675 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_675, 0, x_471); lean_ctor_set(x_675, 1, x_674); -x_676 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__137; +x_676 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__137; lean_inc(x_473); lean_inc(x_474); x_677 = l_Lean_addMacroScope(x_474, x_676, x_473); -x_678 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__135; +x_678 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__135; lean_inc(x_471); x_679 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_679, 0, x_471); lean_ctor_set(x_679, 1, x_678); lean_ctor_set(x_679, 2, x_677); lean_ctor_set(x_679, 3, x_494); -x_680 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__138; +x_680 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__138; x_681 = lean_array_push(x_680, x_679); -x_682 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__132; +x_682 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__132; x_683 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_683, 0, x_682); lean_ctor_set(x_683, 1, x_681); -x_684 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__139; +x_684 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__139; lean_inc(x_471); x_685 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_685, 0, x_471); lean_ctor_set(x_685, 1, x_684); -x_686 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__142; +x_686 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__142; lean_inc(x_471); x_687 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_687, 0, x_471); lean_ctor_set(x_687, 1, x_686); -x_688 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__145; +x_688 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__145; lean_inc(x_471); x_689 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_689, 0, x_471); @@ -3991,23 +3991,23 @@ x_690 = lean_array_push(x_517, x_11); x_691 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_691, 0, x_482); lean_ctor_set(x_691, 1, x_690); -x_692 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__149; +x_692 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__149; lean_inc(x_471); x_693 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_693, 0, x_471); lean_ctor_set(x_693, 1, x_692); -x_694 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__16; +x_694 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__16; lean_inc(x_689); x_695 = lean_array_push(x_694, x_689); x_696 = lean_array_push(x_695, x_486); x_697 = lean_array_push(x_696, x_486); -x_698 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__148; +x_698 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__148; x_699 = lean_array_push(x_697, x_698); lean_inc(x_699); x_700 = lean_array_push(x_699, x_691); lean_inc(x_693); x_701 = lean_array_push(x_700, x_693); -x_702 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__144; +x_702 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__144; x_703 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_703, 0, x_702); lean_ctor_set(x_703, 1, x_701); @@ -4017,13 +4017,13 @@ lean_ctor_set(x_705, 0, x_482); lean_ctor_set(x_705, 1, x_704); x_706 = lean_array_push(x_497, x_687); x_707 = lean_array_push(x_706, x_705); -x_708 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__141; +x_708 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__141; x_709 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_709, 0, x_708); lean_ctor_set(x_709, 1, x_707); x_710 = lean_array_push(x_497, x_709); x_711 = lean_array_push(x_710, x_486); -x_712 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__127; +x_712 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__127; x_713 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_713, 0, x_712); lean_ctor_set(x_713, 1, x_711); @@ -4032,38 +4032,38 @@ x_715 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_715, 0, x_482); lean_ctor_set(x_715, 1, x_714); x_716 = lean_array_push(x_477, x_715); -x_717 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__125; +x_717 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__125; x_718 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_718, 0, x_717); lean_ctor_set(x_718, 1, x_716); -x_719 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__150; +x_719 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__150; lean_inc(x_471); x_720 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_720, 0, x_471); lean_ctor_set(x_720, 1, x_719); -x_721 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__158; +x_721 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__158; lean_inc(x_473); lean_inc(x_474); x_722 = l_Lean_addMacroScope(x_474, x_721, x_473); -x_723 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__157; -x_724 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__161; +x_723 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__157; +x_724 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__161; lean_inc(x_471); x_725 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_725, 0, x_471); lean_ctor_set(x_725, 1, x_723); lean_ctor_set(x_725, 2, x_722); lean_ctor_set(x_725, 3, x_724); -x_726 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__162; +x_726 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__162; lean_inc(x_471); x_727 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_727, 0, x_471); lean_ctor_set(x_727, 1, x_726); -x_728 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__166; +x_728 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__166; lean_inc(x_473); lean_inc(x_474); x_729 = l_Lean_addMacroScope(x_474, x_728, x_473); -x_730 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__165; -x_731 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__171; +x_730 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__165; +x_731 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__171; lean_inc(x_471); x_732 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_732, 0, x_471); @@ -4073,7 +4073,7 @@ lean_ctor_set(x_732, 3, x_731); x_733 = lean_array_push(x_497, x_689); lean_inc(x_693); x_734 = lean_array_push(x_733, x_693); -x_735 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__175; +x_735 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__175; x_736 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_736, 0, x_735); lean_ctor_set(x_736, 1, x_734); @@ -4084,7 +4084,7 @@ lean_ctor_set(x_739, 0, x_702); lean_ctor_set(x_739, 1, x_738); x_740 = lean_array_push(x_497, x_736); x_741 = lean_array_push(x_740, x_739); -x_742 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__173; +x_742 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__173; x_743 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_743, 0, x_742); lean_ctor_set(x_743, 1, x_741); @@ -4099,63 +4099,63 @@ x_748 = lean_array_push(x_747, x_746); x_749 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_749, 0, x_541); lean_ctor_set(x_749, 1, x_748); -x_750 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__180; +x_750 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__180; lean_inc(x_473); lean_inc(x_474); x_751 = l_Lean_addMacroScope(x_474, x_750, x_473); -x_752 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__178; -x_753 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__183; +x_752 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__178; +x_753 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__183; lean_inc(x_471); x_754 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_754, 0, x_471); lean_ctor_set(x_754, 1, x_752); lean_ctor_set(x_754, 2, x_751); lean_ctor_set(x_754, 3, x_753); -x_755 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__186; +x_755 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__186; lean_inc(x_471); x_756 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_756, 0, x_471); lean_ctor_set(x_756, 1, x_755); -x_757 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__192; +x_757 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__192; lean_inc(x_473); lean_inc(x_474); x_758 = l_Lean_addMacroScope(x_474, x_757, x_473); -x_759 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__191; +x_759 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__191; lean_inc(x_471); x_760 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_760, 0, x_471); lean_ctor_set(x_760, 1, x_759); lean_ctor_set(x_760, 2, x_758); lean_ctor_set(x_760, 3, x_494); -x_761 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__193; +x_761 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__193; lean_inc(x_471); x_762 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_762, 0, x_471); lean_ctor_set(x_762, 1, x_761); -x_763 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__198; +x_763 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__198; lean_inc(x_473); lean_inc(x_474); x_764 = l_Lean_addMacroScope(x_474, x_763, x_473); -x_765 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__196; -x_766 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__201; +x_765 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__196; +x_766 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__201; lean_inc(x_471); x_767 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_767, 0, x_471); lean_ctor_set(x_767, 1, x_765); lean_ctor_set(x_767, 2, x_764); lean_ctor_set(x_767, 3, x_766); -x_768 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__204; +x_768 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__204; lean_inc(x_471); x_769 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_769, 0, x_471); lean_ctor_set(x_769, 1, x_768); -x_770 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__207; +x_770 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__207; lean_inc(x_471); x_771 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_771, 0, x_471); lean_ctor_set(x_771, 1, x_770); x_772 = lean_array_push(x_477, x_771); -x_773 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__206; +x_773 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__206; x_774 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_774, 0, x_773); lean_ctor_set(x_774, 1, x_772); @@ -4165,11 +4165,11 @@ x_776 = lean_array_push(x_775, x_769); x_777 = lean_array_push(x_776, x_774); lean_inc(x_612); x_778 = lean_array_push(x_777, x_612); -x_779 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__203; +x_779 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__203; x_780 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_780, 0, x_779); lean_ctor_set(x_780, 1, x_778); -x_781 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__208; +x_781 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__208; lean_inc(x_471); x_782 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_782, 0, x_471); @@ -4185,12 +4185,12 @@ x_788 = lean_array_push(x_787, x_612); x_789 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_789, 0, x_779); lean_ctor_set(x_789, 1, x_788); -x_790 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__215; +x_790 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__215; lean_inc(x_473); lean_inc(x_474); x_791 = l_Lean_addMacroScope(x_474, x_790, x_473); -x_792 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__213; -x_793 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__217; +x_792 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__213; +x_793 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__217; lean_inc(x_471); x_794 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_794, 0, x_471); @@ -4216,7 +4216,7 @@ lean_inc(x_803); x_804 = lean_array_push(x_803, x_802); lean_inc(x_521); x_805 = lean_array_push(x_804, x_521); -x_806 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__210; +x_806 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__210; x_807 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_807, 0, x_806); lean_ctor_set(x_807, 1, x_805); @@ -4231,7 +4231,7 @@ x_813 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_813, 0, x_541); lean_ctor_set(x_813, 1, x_812); x_814 = lean_array_push(x_477, x_813); -x_815 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__152; +x_815 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__152; x_816 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_816, 0, x_815); lean_ctor_set(x_816, 1, x_814); @@ -4241,14 +4241,14 @@ x_818 = lean_array_push(x_817, x_486); lean_inc(x_762); x_819 = lean_array_push(x_818, x_762); x_820 = lean_array_push(x_819, x_816); -x_821 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__188; +x_821 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__188; x_822 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_822, 0, x_821); lean_ctor_set(x_822, 1, x_820); x_823 = lean_array_push(x_561, x_756); x_824 = lean_array_push(x_823, x_486); x_825 = lean_array_push(x_824, x_822); -x_826 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__185; +x_826 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__185; x_827 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_827, 0, x_826); lean_ctor_set(x_827, 1, x_825); @@ -4257,10 +4257,10 @@ x_829 = lean_array_push(x_828, x_486); x_830 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_830, 0, x_712); lean_ctor_set(x_830, 1, x_829); -x_831 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__223; +x_831 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__223; x_832 = l_Lean_addMacroScope(x_474, x_831, x_473); -x_833 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__222; -x_834 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__226; +x_833 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__222; +x_834 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__226; x_835 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_835, 0, x_471); lean_ctor_set(x_835, 1, x_833); @@ -4277,7 +4277,7 @@ lean_ctor_set(x_840, 0, x_541); lean_ctor_set(x_840, 1, x_839); x_841 = lean_array_push(x_497, x_762); x_842 = lean_array_push(x_841, x_840); -x_843 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__219; +x_843 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__219; x_844 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_844, 0, x_843); lean_ctor_set(x_844, 1, x_842); @@ -4320,7 +4320,7 @@ lean_ctor_set(x_864, 1, x_863); x_865 = lean_array_push(x_497, x_673); lean_inc(x_865); x_866 = lean_array_push(x_865, x_864); -x_867 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__123; +x_867 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__123; x_868 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_868, 0, x_867); lean_ctor_set(x_868, 1, x_866); @@ -4337,7 +4337,7 @@ x_874 = lean_array_push(x_561, x_749); lean_inc(x_727); x_875 = lean_array_push(x_874, x_727); x_876 = lean_array_push(x_875, x_873); -x_877 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__154; +x_877 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__154; x_878 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_878, 0, x_877); lean_ctor_set(x_878, 1, x_876); @@ -4375,7 +4375,7 @@ x_897 = lean_array_push(x_896, x_685); x_898 = lean_array_push(x_897, x_718); x_899 = lean_array_push(x_898, x_486); x_900 = lean_array_push(x_899, x_894); -x_901 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__129; +x_901 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__129; x_902 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_902, 0, x_901); lean_ctor_set(x_902, 1, x_900); @@ -4410,7 +4410,7 @@ x_920 = lean_array_push(x_919, x_486); x_921 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_921, 0, x_587); lean_ctor_set(x_921, 1, x_920); -x_922 = l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__227; +x_922 = l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__227; x_923 = lean_array_push(x_922, x_921); x_924 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_924, 0, x_591); @@ -4484,460 +4484,460 @@ l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__18 = _init_l_L lean_mark_persistent(l_Lean_Elab_Tactic_commandDeclare__config__elab___________closed__18); l_Lean_Elab_Tactic_commandDeclare__config__elab________ = _init_l_Lean_Elab_Tactic_commandDeclare__config__elab________(); lean_mark_persistent(l_Lean_Elab_Tactic_commandDeclare__config__elab________); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__1 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__1); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__2 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__2); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__3 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__3); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__4 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__4); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__5 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__5); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__6 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__6(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__6); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__7 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__7(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__7); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__8 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__8(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__8); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__9 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__9(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__9); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__10 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__10(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__10); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__11 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__11(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__11); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__12 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__12(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__12); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__13 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__13(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__13); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__14 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__14(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__14); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__15 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__15(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__15); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__16 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__16(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__16); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__17 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__17(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__17); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__18 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__18(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__18); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__19 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__19(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__19); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__20 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__20(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__20); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__21 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__21(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__21); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__22 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__22(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__22); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__23 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__23(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__23); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__24 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__24(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__24); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__25 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__25(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__25); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__26 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__26(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__26); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__27 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__27(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__27); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__28 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__28(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__28); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__29 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__29(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__29); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__30 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__30(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__30); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__31 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__31(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__31); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__32 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__32(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__32); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__33); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__34 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__34(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__34); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__35 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__35(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__35); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__36 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__36(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__36); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__37 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__37(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__37); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__38 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__38(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__38); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__39 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__39(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__39); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__40 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__40(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__40); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__41 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__41(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__41); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__42 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__42(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__42); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__43 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__43(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__43); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__44 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__44(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__44); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__45 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__45(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__45); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__46 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__46(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__46); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__47 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__47(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__47); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__48 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__48(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__48); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__49 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__49(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__49); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__50 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__50(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__50); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__51 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__51(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__51); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__52 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__52(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__52); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__53 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__53(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__53); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__54 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__54(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__54); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__55 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__55(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__55); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__56 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__56(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__56); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__57 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__57(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__57); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__58 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__58(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__58); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__59 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__59(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__59); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__60 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__60(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__60); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__61 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__61(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__61); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__62 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__62(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__62); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__63 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__63(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__63); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__64 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__64(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__64); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__65 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__65(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__65); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__66 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__66(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__66); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__67 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__67(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__67); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__68 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__68(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__68); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__69 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__69(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__69); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__70 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__70(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__70); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__71 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__71(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__71); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__72 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__72(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__72); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__73 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__73(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__73); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__74 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__74(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__74); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__75 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__75(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__75); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__76 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__76(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__76); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__77 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__77(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__77); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__78 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__78(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__78); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__79 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__79(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__79); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__80 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__80(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__80); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__81 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__81(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__81); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__82 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__82(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__82); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__83 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__83(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__83); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__84 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__84(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__84); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__85 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__85(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__85); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__86 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__86(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__86); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__87 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__87(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__87); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__88 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__88(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__88); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__89 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__89(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__89); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__90 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__90(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__90); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__91 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__91(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__91); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__92 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__92(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__92); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__93 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__93(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__93); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__94 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__94(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__94); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__95 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__95(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__95); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__96 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__96(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__96); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__97 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__97(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__97); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__98 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__98(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__98); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__99 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__99(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__99); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__100 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__100(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__100); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__101 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__101(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__101); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__102 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__102(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__102); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__103 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__103(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__103); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__104 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__104(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__104); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__105 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__105(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__105); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__106 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__106(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__106); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__107 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__107(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__107); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__108 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__108(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__108); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__109 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__109(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__109); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__110 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__110(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__110); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__111 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__111(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__111); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__112 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__112(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__112); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__113 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__113(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__113); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__114 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__114(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__114); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__115 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__115(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__115); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__116 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__116(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__116); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__117 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__117(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__117); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__118 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__118(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__118); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__119 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__119(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__119); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__120 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__120(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__120); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__121 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__121(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__121); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__122 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__122(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__122); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__123 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__123(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__123); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__124 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__124(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__124); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__125 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__125(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__125); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__126 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__126(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__126); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__127 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__127(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__127); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__128 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__128(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__128); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__129 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__129(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__129); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__130 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__130(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__130); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__131 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__131(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__131); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__132 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__132(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__132); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__133 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__133(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__133); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__134 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__134(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__134); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__135 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__135(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__135); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__136 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__136(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__136); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__137 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__137(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__137); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__138 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__138(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__138); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__139 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__139(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__139); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__140 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__140(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__140); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__141 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__141(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__141); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__142 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__142(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__142); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__143 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__143(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__143); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__144 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__144(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__144); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__145 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__145(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__145); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__146 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__146(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__146); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__147 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__147(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__147); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__148 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__148(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__148); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__149 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__149(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__149); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__150 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__150(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__150); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__151 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__151(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__151); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__152 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__152(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__152); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__153 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__153(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__153); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__154 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__154(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__154); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__155 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__155(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__155); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__156 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__156(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__156); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__157 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__157(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__157); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__158 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__158(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__158); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__159 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__159(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__159); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__160 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__160(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__160); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__161 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__161(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__161); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__162 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__162(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__162); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__163 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__163(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__163); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__164 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__164(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__164); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__165 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__165(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__165); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__166 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__166(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__166); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__167 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__167(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__167); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__168 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__168(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__168); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__169 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__169(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__169); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__170 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__170(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__170); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__171 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__171(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__171); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__172 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__172(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__172); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__173 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__173(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__173); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__174 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__174(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__174); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__175 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__175(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__175); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__176 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__176(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__176); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__177 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__177(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__177); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__178 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__178(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__178); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__179 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__179(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__179); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__180 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__180(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__180); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__181 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__181(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__181); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__182 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__182(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__182); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__183 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__183(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__183); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__184 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__184(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__184); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__185 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__185(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__185); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__186 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__186(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__186); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__187 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__187(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__187); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__188 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__188(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__188); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__189 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__189(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__189); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__190 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__190(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__190); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__191 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__191(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__191); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__192 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__192(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__192); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__193 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__193(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__193); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__194 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__194(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__194); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__195 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__195(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__195); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__196 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__196(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__196); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__197 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__197(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__197); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__198 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__198(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__198); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__199 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__199(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__199); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__200 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__200(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__200); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__201 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__201(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__201); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__202 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__202(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__202); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__203 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__203(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__203); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__204 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__204(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__204); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__205 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__205(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__205); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__206 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__206(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__206); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__207 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__207(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__207); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__208 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__208(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__208); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__209 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__209(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__209); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__210 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__210(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__210); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__211 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__211(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__211); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__212 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__212(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__212); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__213 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__213(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__213); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__214 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__214(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__214); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__215 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__215(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__215); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__216 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__216(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__216); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__217 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__217(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__217); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__218 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__218(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__218); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__219 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__219(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__219); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__220 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__220(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__220); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__221 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__221(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__221); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__222 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__222(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__222); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__223 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__223(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__223); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__224 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__224(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__224); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__225 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__225(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__225); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__226 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__226(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__226); -l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__227 = _init_l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__227(); -lean_mark_persistent(l_Lean_Elab_Tactic_myMacro____x40_Lean_Elab_Tactic_Config___hyg_24____closed__227); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__1 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__1); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__2 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__2); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__3 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__3); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__4 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__4); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__5 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__5); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__6 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__6); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__7 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__7); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__8 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__8(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__8); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__9 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__9(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__9); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__10 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__10(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__10); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__11 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__11(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__11); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__12 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__12(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__12); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__13 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__13(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__13); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__14 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__14(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__14); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__15 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__15(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__15); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__16 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__16(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__16); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__17 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__17(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__17); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__18 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__18(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__18); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__19 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__19(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__19); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__20 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__20(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__20); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__21 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__21(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__21); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__22 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__22(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__22); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__23 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__23(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__23); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__24 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__24(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__24); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__25 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__25(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__25); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__26 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__26(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__26); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__27 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__27(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__27); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__28 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__28(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__28); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__29 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__29(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__29); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__30 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__30(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__30); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__31 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__31(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__31); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__32 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__32(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__32); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__33); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__34 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__34(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__34); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__35 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__35(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__35); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__36 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__36(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__36); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__37 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__37(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__37); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__38 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__38(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__38); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__39 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__39(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__39); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__40 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__40(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__40); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__41 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__41(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__41); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__42 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__42(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__42); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__43 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__43(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__43); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__44 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__44(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__44); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__45 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__45(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__45); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__46 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__46(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__46); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__47 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__47(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__47); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__48 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__48(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__48); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__49 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__49(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__49); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__50 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__50(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__50); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__51 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__51(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__51); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__52 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__52(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__52); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__53 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__53(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__53); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__54 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__54(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__54); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__55 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__55(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__55); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__56 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__56(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__56); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__57 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__57(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__57); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__58 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__58(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__58); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__59 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__59(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__59); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__60 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__60(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__60); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__61 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__61(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__61); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__62 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__62(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__62); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__63 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__63(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__63); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__64 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__64(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__64); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__65 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__65(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__65); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__66 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__66(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__66); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__67 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__67(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__67); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__68 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__68(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__68); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__69 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__69(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__69); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__70 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__70(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__70); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__71 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__71(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__71); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__72 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__72(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__72); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__73 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__73(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__73); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__74 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__74(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__74); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__75 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__75(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__75); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__76 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__76(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__76); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__77 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__77(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__77); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__78 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__78(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__78); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__79 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__79(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__79); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__80 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__80(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__80); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__81 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__81(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__81); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__82 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__82(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__82); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__83 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__83(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__83); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__84 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__84(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__84); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__85 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__85(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__85); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__86 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__86(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__86); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__87 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__87(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__87); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__88 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__88(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__88); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__89 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__89(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__89); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__90 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__90(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__90); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__91 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__91(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__91); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__92 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__92(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__92); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__93 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__93(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__93); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__94 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__94(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__94); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__95 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__95(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__95); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__96 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__96(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__96); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__97 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__97(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__97); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__98 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__98(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__98); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__99 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__99(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__99); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__100 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__100(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__100); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__101 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__101(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__101); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__102 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__102(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__102); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__103 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__103(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__103); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__104 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__104(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__104); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__105 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__105(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__105); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__106 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__106(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__106); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__107 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__107(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__107); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__108 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__108(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__108); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__109 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__109(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__109); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__110 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__110(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__110); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__111 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__111(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__111); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__112 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__112(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__112); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__113 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__113(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__113); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__114 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__114(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__114); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__115 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__115(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__115); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__116 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__116(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__116); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__117 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__117(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__117); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__118 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__118(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__118); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__119 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__119(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__119); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__120 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__120(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__120); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__121 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__121(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__121); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__122 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__122(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__122); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__123 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__123(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__123); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__124 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__124(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__124); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__125 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__125(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__125); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__126 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__126(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__126); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__127 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__127(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__127); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__128 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__128(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__128); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__129 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__129(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__129); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__130 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__130(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__130); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__131 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__131(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__131); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__132 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__132(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__132); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__133 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__133(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__133); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__134 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__134(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__134); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__135 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__135(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__135); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__136 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__136(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__136); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__137 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__137(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__137); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__138 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__138(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__138); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__139 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__139(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__139); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__140 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__140(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__140); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__141 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__141(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__141); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__142 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__142(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__142); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__143 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__143(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__143); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__144 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__144(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__144); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__145 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__145(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__145); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__146 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__146(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__146); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__147 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__147(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__147); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__148 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__148(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__148); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__149 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__149(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__149); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__150 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__150(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__150); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__151 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__151(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__151); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__152 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__152(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__152); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__153 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__153(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__153); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__154 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__154(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__154); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__155 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__155(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__155); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__156 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__156(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__156); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__157 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__157(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__157); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__158 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__158(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__158); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__159 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__159(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__159); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__160 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__160(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__160); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__161 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__161(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__161); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__162 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__162(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__162); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__163 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__163(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__163); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__164 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__164(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__164); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__165 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__165(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__165); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__166 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__166(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__166); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__167 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__167(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__167); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__168 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__168(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__168); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__169 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__169(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__169); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__170 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__170(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__170); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__171 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__171(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__171); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__172 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__172(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__172); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__173 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__173(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__173); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__174 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__174(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__174); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__175 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__175(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__175); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__176 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__176(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__176); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__177 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__177(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__177); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__178 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__178(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__178); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__179 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__179(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__179); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__180 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__180(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__180); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__181 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__181(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__181); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__182 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__182(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__182); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__183 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__183(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__183); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__184 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__184(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__184); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__185 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__185(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__185); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__186 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__186(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__186); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__187 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__187(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__187); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__188 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__188(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__188); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__189 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__189(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__189); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__190 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__190(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__190); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__191 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__191(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__191); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__192 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__192(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__192); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__193 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__193(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__193); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__194 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__194(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__194); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__195 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__195(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__195); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__196 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__196(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__196); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__197 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__197(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__197); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__198 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__198(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__198); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__199 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__199(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__199); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__200 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__200(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__200); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__201 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__201(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__201); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__202 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__202(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__202); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__203 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__203(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__203); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__204 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__204(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__204); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__205 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__205(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__205); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__206 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__206(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__206); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__207 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__207(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__207); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__208 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__208(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__208); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__209 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__209(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__209); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__210 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__210(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__210); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__211 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__211(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__211); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__212 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__212(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__212); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__213 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__213(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__213); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__214 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__214(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__214); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__215 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__215(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__215); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__216 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__216(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__216); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__217 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__217(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__217); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__218 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__218(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__218); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__219 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__219(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__219); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__220 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__220(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__220); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__221 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__221(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__221); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__222 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__222(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__222); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__223 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__223(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__223); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__224 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__224(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__224); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__225 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__225(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__225); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__226 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__226(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__226); +l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__227 = _init_l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__227(); +lean_mark_persistent(l_Lean_Elab_Tactic___aux__Lean__Elab__Tactic__Config______macroRules__Lean__Elab__Tactic__commandDeclare__config__elab__________1___closed__227); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Exception.c b/stage0/stdlib/Lean/Exception.c index b28c8b96ad..b9181eada6 100644 --- a/stage0/stdlib/Lean/Exception.c +++ b/stage0/stdlib/Lean/Exception.c @@ -13,39 +13,34 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); lean_object* l_Lean_InternalExceptionId_toString(lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__20; static lean_object* l_Lean_termThrowError_______closed__6; lean_object* lean_mk_empty_array_with_capacity(lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__10; static lean_object* l_Lean_withIncRecDepth___rarg___lambda__2___closed__2; -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__1; LEAN_EXPORT lean_object* l_Lean_instMonadRecDepthReaderT___rarg___lambda__2(lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withIncRecDepth___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__4; LEAN_EXPORT lean_object* l_Lean_withIncRecDepth___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__10; static lean_object* l_Lean_termThrowError_______closed__2; static lean_object* l_Lean_termThrowErrorAt_________closed__6; static lean_object* l_Lean_withIncRecDepth___rarg___lambda__2___closed__1; static lean_object* l_Lean_throwUnknownConstant___rarg___closed__4; static lean_object* l_Lean_instInhabitedException___closed__2; extern lean_object* l_Lean_maxRecDepthErrorMessage; -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__3; static lean_object* l_Lean_termThrowError_______closed__13; -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__15; -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__7; -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__18; +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__20; LEAN_EXPORT lean_object* l_Lean_withIncRecDepth___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instMonadRecDepthReaderT___rarg___lambda__3(lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__24; +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__12; static lean_object* l_Lean_termThrowError_______closed__17; -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__7; static lean_object* l_Lean_termThrowError_______closed__1; LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___rarg(lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); static lean_object* l_Lean_termThrowErrorAt_________closed__8; +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); static lean_object* l_Lean_termThrowErrorAt_________closed__2; LEAN_EXPORT lean_object* l_Lean_throwErrorAt___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_termThrowError____; @@ -56,97 +51,102 @@ LEAN_EXPORT lean_object* l_Lean_throwKernelException(lean_object*, lean_object*) static lean_object* l_Lean_termThrowErrorAt_________closed__1; static lean_object* l_Lean_termThrowError_______closed__9; LEAN_EXPORT lean_object* l_Lean_instMonadRecDepthStateRefT_x27(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1(lean_object*, lean_object*, lean_object*); lean_object* lean_string_utf8_byte_size(lean_object*); LEAN_EXPORT lean_object* l_Lean_instMonadRecDepthMonadCacheT(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__25; static lean_object* l_Lean_termThrowError_______closed__8; lean_object* lean_nat_add(lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__12; static lean_object* l_Lean_throwUnknownConstant___rarg___closed__2; static lean_object* l_Lean_instInhabitedException___closed__1; -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__11; LEAN_EXPORT lean_object* l_Lean_instMonadRecDepthReaderT___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instMonadRecDepthReaderT___rarg___lambda__2___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instMonadRecDepthMonadCacheT___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__19; static lean_object* l_Lean_termThrowError_______closed__15; +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__11; LEAN_EXPORT lean_object* l_Lean_withIncRecDepth___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_termThrowError_______closed__14; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__23; static lean_object* l_Lean_termThrowErrorAt_________closed__7; static lean_object* l_Lean_termThrowError_______closed__18; LEAN_EXPORT lean_object* l_Lean_instMonadRecDepthReaderT___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instMonadRecDepthMonadCacheT___rarg(lean_object*); static lean_object* l_Lean_termThrowError_______closed__3; static lean_object* l_Lean_termThrowError_______closed__5; +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__2; +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__27; static lean_object* l_Lean_throwUnknownConstant___rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_throwKernelException___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KernelException_toMessageData(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instAddErrorMessageContext___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__9; lean_object* l_Lean_replaceRef(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__5; LEAN_EXPORT lean_object* l_Lean_instAddErrorMessageContext(lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__5; +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__8; +LEAN_EXPORT lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__17; static lean_object* l_Lean_termThrowErrorAt_________closed__5; -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__3; +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__26; +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__1; LEAN_EXPORT lean_object* l_Lean_instAddErrorMessageContext___rarg___lambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instMonadRecDepthReaderT___rarg(lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__4; -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__16; static lean_object* l_Lean_termThrowErrorAt_________closed__3; -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__27; -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__2; +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__21; +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__6; static lean_object* l_Lean_throwUnknownConstant___rarg___closed__3; LEAN_EXPORT lean_object* l_Lean_throwErrorAt___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instMonadRecDepthReaderT(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__13; +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__1; LEAN_EXPORT lean_object* l_Lean_Exception_getRef___boxed(lean_object*); lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___rarg___lambda__1(lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__19; +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__15; +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__3; LEAN_EXPORT lean_object* l_Lean_throwError(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instInhabitedException; -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__9; +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__2; static lean_object* l_Lean_termThrowError_______closed__10; +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__22; LEAN_EXPORT lean_object* l_Lean_withIncRecDepth(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__3; static lean_object* l_Lean_termThrowError_______closed__7; lean_object* l_Lean_Syntax_getKind(lean_object*); +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__6; LEAN_EXPORT lean_object* l_Lean_throwKernelException___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___rarg___lambda__1___boxed(lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__1; +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__4; static lean_object* l_Lean_termThrowError_______closed__16; -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__26; LEAN_EXPORT lean_object* l_Lean_Exception_getRef(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__18; +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__5; LEAN_EXPORT lean_object* l_Lean_throwError___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__5; -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__2; -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__14; static lean_object* l_Lean_termThrowError_______closed__19; LEAN_EXPORT lean_object* l_Lean_withIncRecDepth___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__22; +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__7; static lean_object* l_Lean_termThrowError_______closed__11; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_termThrowErrorAt______; LEAN_EXPORT lean_object* l_Lean_throwError___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instMonadRecDepthStateRefT_x27___rarg(lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__13; -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__23; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__14; static lean_object* l_Lean_termThrowErrorAt_________closed__4; -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__6; -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__21; +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__16; LEAN_EXPORT lean_object* l_Lean_ofExcept(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__6; LEAN_EXPORT lean_object* l_Lean_instMonadRecDepthReaderT___rarg___lambda__3___boxed(lean_object*, lean_object*); lean_object* l_Lean_mkConst(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_1034_(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__7; static lean_object* l_Lean_termThrowError_______closed__12; -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__8; -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__17; +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__25; LEAN_EXPORT lean_object* l_Lean_instMonadRecDepthStateRefT_x27___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Exception_toMessageData(lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__4; +static lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__24; LEAN_EXPORT lean_object* l_Lean_ofExcept___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withIncRecDepth___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Exception_toMessageData(lean_object* x_1) { @@ -1101,7 +1101,7 @@ x_1 = l_Lean_termThrowErrorAt_________closed__8; return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__1() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__1() { _start: { lean_object* x_1; @@ -1109,17 +1109,17 @@ x_1 = lean_mk_string("Parser"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__2() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_termThrowError_______closed__2; -x_2 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__1; +x_2 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__3() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__3() { _start: { lean_object* x_1; @@ -1127,17 +1127,17 @@ x_1 = lean_mk_string("Term"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__4() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__2; -x_2 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__3; +x_1 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__2; +x_2 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__5() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__5() { _start: { lean_object* x_1; @@ -1145,17 +1145,17 @@ x_1 = lean_mk_string("app"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__6() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__4; -x_2 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__5; +x_1 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__4; +x_2 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__7() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__7() { _start: { lean_object* x_1; @@ -1163,22 +1163,22 @@ x_1 = lean_mk_string("Lean.throwError"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__8() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__7; +x_1 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__7; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__9() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__7; +x_1 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__7; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__8; +x_3 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__8; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1186,7 +1186,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__10() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__10() { _start: { lean_object* x_1; @@ -1194,41 +1194,41 @@ x_1 = lean_mk_string("throwError"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__11() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_termThrowError_______closed__2; -x_2 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__10; +x_2 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__10; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__12() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__11; +x_2 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__11; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__13() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__12; +x_2 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__12; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__14() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__14() { _start: { lean_object* x_1; @@ -1236,17 +1236,17 @@ x_1 = lean_mk_string("null"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__15() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__14; +x_2 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__14; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__16() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__16() { _start: { lean_object* x_1; lean_object* x_2; @@ -1255,7 +1255,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__17() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__17() { _start: { lean_object* x_1; lean_object* x_2; @@ -1264,7 +1264,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__18() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__18() { _start: { lean_object* x_1; @@ -1272,17 +1272,17 @@ x_1 = lean_mk_string("paren"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__19() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__4; -x_2 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__18; +x_1 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__4; +x_2 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__18; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__20() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__20() { _start: { lean_object* x_1; @@ -1290,7 +1290,7 @@ x_1 = lean_mk_string("("); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__21() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__21() { _start: { lean_object* x_1; @@ -1298,17 +1298,17 @@ x_1 = lean_mk_string("termM!_"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__22() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_termThrowError_______closed__2; -x_2 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__21; +x_2 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__21; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__23() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__23() { _start: { lean_object* x_1; @@ -1316,7 +1316,7 @@ x_1 = lean_mk_string("m!"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__24() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__24() { _start: { lean_object* x_1; lean_object* x_2; @@ -1325,19 +1325,19 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__25() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__25() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__15; -x_2 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__24; +x_1 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__15; +x_2 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__24; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__26() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__26() { _start: { lean_object* x_1; @@ -1345,7 +1345,7 @@ x_1 = lean_mk_string(")"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__27() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__27() { _start: { lean_object* x_1; lean_object* x_2; @@ -1354,7 +1354,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_845_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -1387,7 +1387,7 @@ if (x_12 == 0) { lean_object* x_13; uint8_t x_14; lean_inc(x_2); -x_13 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_13 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_14 = !lean_is_exclusive(x_13); if (x_14 == 0) { @@ -1398,25 +1398,25 @@ lean_inc(x_16); x_17 = lean_ctor_get(x_2, 1); lean_inc(x_17); lean_dec(x_2); -x_18 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__11; +x_18 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__11; x_19 = l_Lean_addMacroScope(x_17, x_18, x_16); -x_20 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__9; -x_21 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__13; +x_20 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__9; +x_21 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__13; x_22 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_22, 0, x_15); lean_ctor_set(x_22, 1, x_20); lean_ctor_set(x_22, 2, x_19); lean_ctor_set(x_22, 3, x_21); -x_23 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__16; +x_23 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__16; x_24 = lean_array_push(x_23, x_9); -x_25 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__15; +x_25 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__15; 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_27 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__17; +x_27 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__17; x_28 = lean_array_push(x_27, x_22); x_29 = lean_array_push(x_28, x_26); -x_30 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__6; +x_30 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__6; x_31 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -1436,25 +1436,25 @@ lean_inc(x_34); x_35 = lean_ctor_get(x_2, 1); lean_inc(x_35); lean_dec(x_2); -x_36 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__11; +x_36 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__11; x_37 = l_Lean_addMacroScope(x_35, x_36, x_34); -x_38 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__9; -x_39 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__13; +x_38 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__9; +x_39 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__13; x_40 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_40, 0, x_32); lean_ctor_set(x_40, 1, x_38); lean_ctor_set(x_40, 2, x_37); lean_ctor_set(x_40, 3, x_39); -x_41 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__16; +x_41 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__16; x_42 = lean_array_push(x_41, x_9); -x_43 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__15; +x_43 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__15; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); -x_45 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__17; +x_45 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__17; x_46 = lean_array_push(x_45, x_40); x_47 = lean_array_push(x_46, x_44); -x_48 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__6; +x_48 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__6; x_49 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); @@ -1468,7 +1468,7 @@ else { lean_object* x_51; uint8_t x_52; lean_inc(x_2); -x_51 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_51 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_52 = !lean_is_exclusive(x_51); if (x_52 == 0) { @@ -1479,60 +1479,60 @@ lean_inc(x_54); x_55 = lean_ctor_get(x_2, 1); lean_inc(x_55); lean_dec(x_2); -x_56 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__11; +x_56 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__11; x_57 = l_Lean_addMacroScope(x_55, x_56, x_54); -x_58 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__9; -x_59 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__13; +x_58 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__9; +x_59 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__13; lean_inc(x_53); x_60 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_60, 0, x_53); lean_ctor_set(x_60, 1, x_58); lean_ctor_set(x_60, 2, x_57); lean_ctor_set(x_60, 3, x_59); -x_61 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__20; +x_61 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__20; lean_inc(x_53); x_62 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_62, 0, x_53); lean_ctor_set(x_62, 1, x_61); -x_63 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__23; +x_63 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__23; lean_inc(x_53); x_64 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_64, 0, x_53); lean_ctor_set(x_64, 1, x_63); -x_65 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__17; +x_65 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__17; x_66 = lean_array_push(x_65, x_64); x_67 = lean_array_push(x_66, x_9); -x_68 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__22; +x_68 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__22; x_69 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_69, 0, x_68); lean_ctor_set(x_69, 1, x_67); x_70 = lean_array_push(x_65, x_69); -x_71 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__25; +x_71 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__25; x_72 = lean_array_push(x_70, x_71); -x_73 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__15; +x_73 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__15; x_74 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_74, 0, x_73); lean_ctor_set(x_74, 1, x_72); -x_75 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__26; +x_75 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__26; x_76 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_76, 0, x_53); lean_ctor_set(x_76, 1, x_75); -x_77 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__27; +x_77 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__27; x_78 = lean_array_push(x_77, x_62); x_79 = lean_array_push(x_78, x_74); x_80 = lean_array_push(x_79, x_76); -x_81 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__19; +x_81 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__19; x_82 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_82, 0, x_81); lean_ctor_set(x_82, 1, x_80); -x_83 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__16; +x_83 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__16; x_84 = lean_array_push(x_83, x_82); x_85 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_85, 0, x_73); lean_ctor_set(x_85, 1, x_84); x_86 = lean_array_push(x_65, x_60); x_87 = lean_array_push(x_86, x_85); -x_88 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__6; +x_88 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__6; x_89 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_89, 0, x_88); lean_ctor_set(x_89, 1, x_87); @@ -1552,60 +1552,60 @@ lean_inc(x_92); x_93 = lean_ctor_get(x_2, 1); lean_inc(x_93); lean_dec(x_2); -x_94 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__11; +x_94 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__11; x_95 = l_Lean_addMacroScope(x_93, x_94, x_92); -x_96 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__9; -x_97 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__13; +x_96 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__9; +x_97 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__13; lean_inc(x_90); x_98 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_98, 0, x_90); lean_ctor_set(x_98, 1, x_96); lean_ctor_set(x_98, 2, x_95); lean_ctor_set(x_98, 3, x_97); -x_99 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__20; +x_99 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__20; lean_inc(x_90); x_100 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_100, 0, x_90); lean_ctor_set(x_100, 1, x_99); -x_101 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__23; +x_101 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__23; lean_inc(x_90); x_102 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_102, 0, x_90); lean_ctor_set(x_102, 1, x_101); -x_103 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__17; +x_103 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__17; x_104 = lean_array_push(x_103, x_102); x_105 = lean_array_push(x_104, x_9); -x_106 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__22; +x_106 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__22; x_107 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_107, 0, x_106); lean_ctor_set(x_107, 1, x_105); x_108 = lean_array_push(x_103, x_107); -x_109 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__25; +x_109 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__25; x_110 = lean_array_push(x_108, x_109); -x_111 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__15; +x_111 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__15; x_112 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_112, 0, x_111); lean_ctor_set(x_112, 1, x_110); -x_113 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__26; +x_113 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__26; x_114 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_114, 0, x_90); lean_ctor_set(x_114, 1, x_113); -x_115 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__27; +x_115 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__27; x_116 = lean_array_push(x_115, x_100); x_117 = lean_array_push(x_116, x_112); x_118 = lean_array_push(x_117, x_114); -x_119 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__19; +x_119 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__19; x_120 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_120, 0, x_119); lean_ctor_set(x_120, 1, x_118); -x_121 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__16; +x_121 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__16; x_122 = lean_array_push(x_121, x_120); x_123 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_123, 0, x_111); lean_ctor_set(x_123, 1, x_122); x_124 = lean_array_push(x_103, x_98); x_125 = lean_array_push(x_124, x_123); -x_126 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__6; +x_126 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__6; x_127 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_127, 0, x_126); lean_ctor_set(x_127, 1, x_125); @@ -1618,7 +1618,7 @@ return x_128; } } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__1() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__1() { _start: { lean_object* x_1; @@ -1626,22 +1626,22 @@ x_1 = lean_mk_string("Lean.throwErrorAt"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__2() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__1; +x_1 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__3() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__1; +x_1 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__2; +x_3 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1649,7 +1649,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__4() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__4() { _start: { lean_object* x_1; @@ -1657,41 +1657,41 @@ x_1 = lean_mk_string("throwErrorAt"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__5() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_termThrowError_______closed__2; -x_2 = l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__4; +x_2 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__6() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__5; +x_2 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__5; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__7() { +static lean_object* _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__6; +x_2 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__6; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_1034_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -1726,7 +1726,7 @@ if (x_14 == 0) { lean_object* x_15; uint8_t x_16; lean_inc(x_2); -x_15 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_15 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_16 = !lean_is_exclusive(x_15); if (x_16 == 0) { @@ -1737,25 +1737,25 @@ lean_inc(x_18); x_19 = lean_ctor_get(x_2, 1); lean_inc(x_19); lean_dec(x_2); -x_20 = l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__5; +x_20 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__5; x_21 = l_Lean_addMacroScope(x_19, x_20, x_18); -x_22 = l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__3; -x_23 = l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__7; +x_22 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__3; +x_23 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__7; x_24 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_24, 0, x_17); lean_ctor_set(x_24, 1, x_22); lean_ctor_set(x_24, 2, x_21); lean_ctor_set(x_24, 3, x_23); -x_25 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__17; +x_25 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__17; x_26 = lean_array_push(x_25, x_9); x_27 = lean_array_push(x_26, x_11); -x_28 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__15; +x_28 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__15; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); x_30 = lean_array_push(x_25, x_24); x_31 = lean_array_push(x_30, x_29); -x_32 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__6; +x_32 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__6; x_33 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_33, 0, x_32); lean_ctor_set(x_33, 1, x_31); @@ -1775,25 +1775,25 @@ lean_inc(x_36); x_37 = lean_ctor_get(x_2, 1); lean_inc(x_37); lean_dec(x_2); -x_38 = l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__5; +x_38 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__5; x_39 = l_Lean_addMacroScope(x_37, x_38, x_36); -x_40 = l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__3; -x_41 = l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__7; +x_40 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__3; +x_41 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__7; x_42 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_42, 0, x_34); lean_ctor_set(x_42, 1, x_40); lean_ctor_set(x_42, 2, x_39); lean_ctor_set(x_42, 3, x_41); -x_43 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__17; +x_43 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__17; x_44 = lean_array_push(x_43, x_9); x_45 = lean_array_push(x_44, x_11); -x_46 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__15; +x_46 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__15; x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_46); lean_ctor_set(x_47, 1, x_45); x_48 = lean_array_push(x_43, x_42); x_49 = lean_array_push(x_48, x_47); -x_50 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__6; +x_50 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__6; x_51 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_51, 0, x_50); lean_ctor_set(x_51, 1, x_49); @@ -1807,7 +1807,7 @@ else { lean_object* x_53; uint8_t x_54; lean_inc(x_2); -x_53 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_53 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_54 = !lean_is_exclusive(x_53); if (x_54 == 0) { @@ -1818,49 +1818,49 @@ lean_inc(x_56); x_57 = lean_ctor_get(x_2, 1); lean_inc(x_57); lean_dec(x_2); -x_58 = l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__5; +x_58 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__5; x_59 = l_Lean_addMacroScope(x_57, x_58, x_56); -x_60 = l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__3; -x_61 = l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__7; +x_60 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__3; +x_61 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__7; lean_inc(x_55); x_62 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_62, 0, x_55); lean_ctor_set(x_62, 1, x_60); lean_ctor_set(x_62, 2, x_59); lean_ctor_set(x_62, 3, x_61); -x_63 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__20; +x_63 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__20; lean_inc(x_55); x_64 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_64, 0, x_55); lean_ctor_set(x_64, 1, x_63); -x_65 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__23; +x_65 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__23; lean_inc(x_55); x_66 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_66, 0, x_55); lean_ctor_set(x_66, 1, x_65); -x_67 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__17; +x_67 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__17; x_68 = lean_array_push(x_67, x_66); x_69 = lean_array_push(x_68, x_11); -x_70 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__22; +x_70 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__22; x_71 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_71, 0, x_70); lean_ctor_set(x_71, 1, x_69); x_72 = lean_array_push(x_67, x_71); -x_73 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__25; +x_73 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__25; x_74 = lean_array_push(x_72, x_73); -x_75 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__15; +x_75 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__15; x_76 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_74); -x_77 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__26; +x_77 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__26; x_78 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_78, 0, x_55); lean_ctor_set(x_78, 1, x_77); -x_79 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__27; +x_79 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__27; x_80 = lean_array_push(x_79, x_64); x_81 = lean_array_push(x_80, x_76); x_82 = lean_array_push(x_81, x_78); -x_83 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__19; +x_83 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__19; x_84 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_84, 0, x_83); lean_ctor_set(x_84, 1, x_82); @@ -1871,7 +1871,7 @@ lean_ctor_set(x_87, 0, x_75); lean_ctor_set(x_87, 1, x_86); x_88 = lean_array_push(x_67, x_62); x_89 = lean_array_push(x_88, x_87); -x_90 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__6; +x_90 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__6; x_91 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_91, 0, x_90); lean_ctor_set(x_91, 1, x_89); @@ -1891,49 +1891,49 @@ lean_inc(x_94); x_95 = lean_ctor_get(x_2, 1); lean_inc(x_95); lean_dec(x_2); -x_96 = l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__5; +x_96 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__5; x_97 = l_Lean_addMacroScope(x_95, x_96, x_94); -x_98 = l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__3; -x_99 = l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__7; +x_98 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__3; +x_99 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__7; lean_inc(x_92); x_100 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_100, 0, x_92); lean_ctor_set(x_100, 1, x_98); lean_ctor_set(x_100, 2, x_97); lean_ctor_set(x_100, 3, x_99); -x_101 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__20; +x_101 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__20; lean_inc(x_92); x_102 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_102, 0, x_92); lean_ctor_set(x_102, 1, x_101); -x_103 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__23; +x_103 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__23; lean_inc(x_92); x_104 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_104, 0, x_92); lean_ctor_set(x_104, 1, x_103); -x_105 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__17; +x_105 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__17; x_106 = lean_array_push(x_105, x_104); x_107 = lean_array_push(x_106, x_11); -x_108 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__22; +x_108 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__22; x_109 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_109, 0, x_108); lean_ctor_set(x_109, 1, x_107); x_110 = lean_array_push(x_105, x_109); -x_111 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__25; +x_111 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__25; x_112 = lean_array_push(x_110, x_111); -x_113 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__15; +x_113 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__15; x_114 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_114, 0, x_113); lean_ctor_set(x_114, 1, x_112); -x_115 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__26; +x_115 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__26; x_116 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_116, 0, x_92); lean_ctor_set(x_116, 1, x_115); -x_117 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__27; +x_117 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__27; x_118 = lean_array_push(x_117, x_102); x_119 = lean_array_push(x_118, x_114); x_120 = lean_array_push(x_119, x_116); -x_121 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__19; +x_121 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__19; x_122 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_122, 0, x_121); lean_ctor_set(x_122, 1, x_120); @@ -1944,7 +1944,7 @@ lean_ctor_set(x_125, 0, x_113); lean_ctor_set(x_125, 1, x_124); x_126 = lean_array_push(x_105, x_100); x_127 = lean_array_push(x_126, x_125); -x_128 = l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__6; +x_128 = l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__6; x_129 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_129, 0, x_128); lean_ctor_set(x_129, 1, x_127); @@ -2058,74 +2058,74 @@ l_Lean_termThrowErrorAt_________closed__8 = _init_l_Lean_termThrowErrorAt_______ lean_mark_persistent(l_Lean_termThrowErrorAt_________closed__8); l_Lean_termThrowErrorAt______ = _init_l_Lean_termThrowErrorAt______(); lean_mark_persistent(l_Lean_termThrowErrorAt______); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__1 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__1(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__1); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__2 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__2(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__2); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__3 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__3(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__3); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__4 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__4(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__4); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__5 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__5(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__5); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__6 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__6(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__6); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__7 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__7(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__7); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__8 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__8(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__8); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__9 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__9(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__9); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__10 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__10(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__10); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__11 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__11(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__11); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__12 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__12(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__12); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__13 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__13(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__13); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__14 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__14(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__14); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__15 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__15(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__15); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__16 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__16(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__16); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__17 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__17(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__17); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__18 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__18(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__18); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__19 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__19(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__19); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__20 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__20(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__20); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__21 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__21(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__21); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__22 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__22(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__22); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__23 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__23(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__23); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__24 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__24(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__24); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__25 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__25(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__25); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__26 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__26(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__26); -l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__27 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__27(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_845____closed__27); -l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__1 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__1(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__1); -l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__2 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__2(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__2); -l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__3 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__3(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__3); -l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__4 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__4(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__4); -l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__5 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__5(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__5); -l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__6 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__6(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__6); -l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__7 = _init_l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__7(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Exception___hyg_1034____closed__7); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__1 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__1(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__1); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__2 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__2(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__2); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__3 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__3(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__3); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__4 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__4(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__4); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__5 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__5(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__5); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__6 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__6(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__6); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__7 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__7(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__7); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__8 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__8(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__8); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__9 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__9(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__9); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__10 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__10(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__10); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__11 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__11(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__11); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__12 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__12(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__12); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__13 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__13(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__13); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__14 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__14(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__14); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__15 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__15(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__15); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__16 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__16(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__16); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__17 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__17(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__17); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__18 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__18(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__18); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__19 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__19(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__19); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__20 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__20(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__20); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__21 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__21(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__21); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__22 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__22(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__22); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__23 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__23(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__23); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__24 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__24(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__24); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__25 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__25(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__25); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__26 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__26(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__26); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__27 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__27(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowError______1___closed__27); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__1 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__1(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__1); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__2 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__2(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__2); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__3 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__3(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__3); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__4 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__4(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__4); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__5 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__5(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__5); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__6 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__6(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__6); +l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__7 = _init_l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__7(); +lean_mark_persistent(l_Lean___aux__Lean__Exception______macroRules__Lean__termThrowErrorAt________1___closed__7); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Message.c b/stage0/stdlib/Lean/Message.c index 88dca1e635..710d17c8ce 100644 --- a/stage0/stdlib/Lean/Message.c +++ b/stage0/stdlib/Lean/Message.c @@ -18,7 +18,6 @@ static lean_object* l_Lean_KernelException_toMessageData___closed__32; LEAN_EXPORT lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlFromMAux___at_Lean_MessageLog_toList___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_KernelException_toMessageData___closed__10; static lean_object* l_Lean_instToMessageDataOption___rarg___closed__1; -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); static lean_object* l_Lean_MessageData_instCoeArrayExprMessageData___closed__2; LEAN_EXPORT lean_object* l_String_splitAux___at_Lean_stringToMessageData___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -30,7 +29,6 @@ LEAN_EXPORT uint8_t l_Lean_MessageData_isNest(lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); static lean_object* l_Lean_termM_x21_____closed__2; static lean_object* l_Lean_KernelException_toMessageData___closed__19; -static lean_object* l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__8; LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_beqMessageSeverity____x40_Lean_Message___hyg_100____boxed(lean_object*, lean_object*); static lean_object* l_Lean_MessageData_instantiateMVars___closed__1; static lean_object* l_Lean_instBEqMessageSeverity___closed__1; @@ -53,12 +51,12 @@ LEAN_EXPORT lean_object* l_Lean_MessageData_instCoeNameMessageData(lean_object*) LEAN_EXPORT lean_object* l_Lean_MessageLog_hasErrors___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlFromMAux___at_Lean_MessageLog_getInfoMessages___spec__2(lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_KernelException_toMessageData___closed__24; +static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__12; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_sbracket(lean_object*); LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_instCoeStringMessageData; static lean_object* l_Lean_termM_x21_____closed__13; -static lean_object* l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__4; static lean_object* l_Lean_Message_toString___lambda__3___closed__3; static lean_object* l_Lean_MessageData_instantiateMVars___closed__4; LEAN_EXPORT lean_object* l_Std_PersistentArray_mapM___at_Lean_MessageLog_errorsToWarnings___spec__1(lean_object*); @@ -67,19 +65,18 @@ size_t lean_usize_sub(size_t, size_t); lean_object* l_Std_PersistentArray_append___rarg(lean_object*, lean_object*); lean_object* l_id___rarg___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_instBEqMessageSeverity; -static lean_object* l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__1; LEAN_EXPORT lean_object* l_Lean_Message_toString___lambda__1(lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_nil; LEAN_EXPORT lean_object* l_Lean_instToMessageDataArray___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_instCoeFormatMessageData(lean_object*); +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); static lean_object* l_Lean_MessageSeverity_noConfusion___rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_instToMessageDataFormat(lean_object*); static lean_object* l_Lean_instInhabitedMessageLog___closed__1; LEAN_EXPORT lean_object* l_Lean_MessageSeverity_noConfusion___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_instantiateMVars(lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__13; lean_object* lean_string_append(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_instCoeStringMessageData___lambda__1(lean_object*); static lean_object* l_Lean_KernelException_toMessageData___closed__16; @@ -94,7 +91,6 @@ static lean_object* l_Lean_instInhabitedMessageLog___closed__2; LEAN_EXPORT lean_object* l_Lean_MessageData_instCoeArrayExprMessageData(lean_object*); size_t lean_usize_shift_right(size_t, size_t); static lean_object* l_Lean_Message_toString___lambda__3___closed__1; -static lean_object* l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__9; static lean_object* l_Lean_MessageData_arrayExpr_toMessageData___closed__5; static lean_object* l_Lean_MessageData_instCoeStringMessageData___closed__2; lean_object* lean_string_utf8_byte_size(lean_object*); @@ -107,13 +103,11 @@ uint8_t lean_usize_dec_lt(size_t, size_t); static lean_object* l_Lean_instToMessageDataOption___rarg___closed__4; LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___rarg___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__2; LEAN_EXPORT lean_object* l_Lean_MessageSeverity_noConfusion___rarg___lambda__1(lean_object*); static lean_object* l_Lean_MessageData_arrayExpr_toMessageData___closed__3; static lean_object* l_Lean_MessageData_instCoeOptionExprMessageData___closed__3; lean_object* lean_nat_add(lean_object*, lean_object*); static lean_object* l_Lean_KernelException_toMessageData___closed__22; -static lean_object* l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__6; static lean_object* l_Lean_MessageData_formatAux___closed__7; static lean_object* l_Lean_KernelException_toMessageData___closed__37; static lean_object* l_Lean_MessageData_instCoeArrayExprMessageData___closed__3; @@ -124,11 +118,13 @@ lean_object* lean_string_utf8_next(lean_object*, lean_object*); static lean_object* l_Lean_instToMessageDataOption___rarg___closed__5; LEAN_EXPORT uint8_t l_Lean_MessageData_hasTag(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageLog_toList(lean_object*); +static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__7; LEAN_EXPORT lean_object* l_Lean_instToMessageDataLevel(lean_object*); lean_object* l_Lean_ppGoal(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlMAux___at_Lean_MessageLog_getInfoMessages___spec__3(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MessageLog_getInfoMessages___spec__4(lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_KernelException_toMessageData___closed__6; +static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__10; LEAN_EXPORT lean_object* l_List_mapTRAux___at_Lean_MessageData_instCoeListExprMessageData___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MessageLog_getInfoMessages___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); @@ -147,6 +143,7 @@ static lean_object* l_Lean_Message_toString___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Lean_MessageData_instAppendMessageData(lean_object*, lean_object*); static lean_object* l_Lean_KernelException_toMessageData___closed__29; static lean_object* l_Lean_mkErrorStringWithPos___closed__4; +static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__16; static lean_object* l_Lean_termM_x21_____closed__11; LEAN_EXPORT lean_object* l_Lean_stringToMessageData___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_KernelException_toMessageData(lean_object*, lean_object*); @@ -176,8 +173,6 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MessageLog_toList__ LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_MessageLog_hasErrors___spec__4(lean_object*, size_t, size_t); LEAN_EXPORT lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlFromMAux___at_Lean_MessageLog_toList___spec__2(lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_instToMessageDataString___closed__1; -static lean_object* l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__14; -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Lean_Message___hyg_2585_(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instInhabitedMessage; lean_object* l_Nat_repr(lean_object*); static lean_object* l_Lean_KernelException_toMessageData___closed__18; @@ -187,17 +182,19 @@ LEAN_EXPORT uint8_t l_Lean_instInhabitedMessageSeverity; LEAN_EXPORT lean_object* l_Lean_Message_toString___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MessageData_formatAux___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); static lean_object* l_Lean_termM_x21_____closed__12; +static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__14; lean_object* lean_format_pretty(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instToMessageDataOptionExpr___boxed(lean_object*); static lean_object* l_Lean_KernelException_toMessageData___closed__33; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_MessageLog_errorsToWarnings___spec__4(size_t, size_t, lean_object*); static lean_object* l_Lean_instToMessageDataOptionExpr___closed__1; +static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__5; lean_object* l_Std_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); static lean_object* l_Lean_MessageData_instantiateMVars___closed__3; static lean_object* l_Lean_KernelException_toMessageData___closed__14; -static lean_object* l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__3; static lean_object* l_Lean_KernelException_toMessageData___closed__28; -static lean_object* l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__15; +LEAN_EXPORT lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__15; static lean_object* l_Lean_Message_toString___closed__1; lean_object* l_Function_comp___rarg(lean_object*, lean_object*, lean_object*); size_t lean_usize_shift_left(size_t, size_t); @@ -205,6 +202,7 @@ static lean_object* l_Lean_instInhabitedMessage___closed__2; LEAN_EXPORT lean_object* l_Lean_MessageData_instCoeSyntaxMessageData(lean_object*); lean_object* lean_array_to_list(lean_object*, lean_object*); static lean_object* l_Lean_MessageData_formatAux___closed__10; +static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__3; LEAN_EXPORT lean_object* l_Std_PersistentArray_anyM___at_Lean_MessageLog_hasErrors___spec__1___boxed(lean_object*); static lean_object* l_Lean_mkErrorStringWithPos___closed__1; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MessageLog_toList___spec__4(lean_object*, size_t, size_t, lean_object*); @@ -212,7 +210,6 @@ uint32_t lean_string_utf8_get(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instToMessageDataName(lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_MessageLog_hasErrors___spec__3(lean_object*, size_t, size_t); lean_object* lean_expr_dbg_to_string(lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__7; static lean_object* l_Lean_KernelException_toMessageData___closed__34; LEAN_EXPORT lean_object* l_Lean_MessageData_instCoeLevelMessageData(lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_MessageLog_hasErrors___spec__3___boxed(lean_object*, lean_object*, lean_object*); @@ -224,9 +221,9 @@ static lean_object* l_Lean_KernelException_toMessageData___closed__15; uint8_t l_Std_PersistentArray_isEmpty___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_addMessageContextPartial___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instToMessageDataMessageData; -static lean_object* l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__16; LEAN_EXPORT lean_object* l_List_mapTRAux___at_Lean_stringToMessageData___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlMAux___at_Lean_MessageLog_toList___spec__3(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__6; LEAN_EXPORT lean_object* l_Lean_MessageSeverity_noConfusion___rarg___lambda__1___boxed(lean_object*); static lean_object* l_Lean_MessageData_ofList___closed__2; static lean_object* l_Lean_KernelException_toMessageData___closed__27; @@ -245,7 +242,6 @@ LEAN_EXPORT lean_object* l_Lean_addMessageContextFull(lean_object*); static lean_object* l_Lean_KernelException_toMessageData___closed__9; LEAN_EXPORT lean_object* l_Lean_MessageData_instCoeListMessageDataMessageData; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__5; LEAN_EXPORT lean_object* l_Lean_MessageData_mkPPContext(lean_object*, lean_object*); static lean_object* l_Lean_MessageData_instCoeListMessageDataMessageData___closed__1; static lean_object* l_Lean_KernelException_toMessageData___closed__36; @@ -261,6 +257,7 @@ LEAN_EXPORT lean_object* l_Lean_instToMessageDataSubarray(lean_object*); LEAN_EXPORT lean_object* l_Lean_instToMessageDataList(lean_object*); static lean_object* l_Lean_instToMessageDataOption___rarg___closed__3; static lean_object* l_Lean_MessageData_formatAux___closed__6; +static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__8; uint8_t lean_uint32_dec_eq(uint32_t, uint32_t); static lean_object* l_Lean_MessageData_instantiateMVars___closed__5; static lean_object* l_Lean_MessageData_formatAux___closed__5; @@ -275,7 +272,6 @@ uint8_t l_String_isEmpty(lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_instCoeOptionExprMessageData(lean_object*); LEAN_EXPORT lean_object* l_Lean_instInhabitedMessageLog; static lean_object* l_Lean_KernelException_toMessageData___closed__4; -static lean_object* l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__10; LEAN_EXPORT lean_object* l_Lean_Message_toString___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_MessageLog_msgs___default___closed__1; LEAN_EXPORT lean_object* l_Lean_MessageData_nestD(lean_object*); @@ -291,6 +287,7 @@ LEAN_EXPORT lean_object* l_Lean_MessageData_hasTag___boxed(lean_object*, lean_ob static lean_object* l_Lean_mkErrorStringWithPos___closed__2; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MessageLog_toList___spec__5(lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_termM_x21_____closed__16; +static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__13; LEAN_EXPORT lean_object* l_Lean_MessageLog_getInfoMessages(lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageSeverity_noConfusion___rarg(uint8_t, uint8_t, lean_object*); lean_object* l_Std_PersistentArray_forM___rarg(lean_object*, lean_object*, lean_object*); @@ -314,14 +311,17 @@ LEAN_EXPORT lean_object* l_Lean_MessageData_isNest___boxed(lean_object*); static lean_object* l_Lean_KernelException_toMessageData___closed__23; LEAN_EXPORT lean_object* l_Lean_instToMessageDataList___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instAddMessageContext___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__2; static lean_object* l_Lean_instInhabitedMessageData___closed__1; LEAN_EXPORT lean_object* l_Lean_instToMessageDataOption___rarg(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__1; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MessageData_formatAux___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_MessageData_formatAux___closed__4; static lean_object* l_Lean_KernelException_toMessageData___closed__12; static lean_object* l_Lean_MessageData_instCoeStringMessageData___closed__1; LEAN_EXPORT lean_object* l_Lean_MessageLog_msgs___default; static lean_object* l_Lean_KernelException_toMessageData___closed__13; +static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__9; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); static lean_object* l_Lean_termM_x21_____closed__15; LEAN_EXPORT lean_object* l_Lean_MessageLog_forM(lean_object*); @@ -336,6 +336,7 @@ static lean_object* l_Lean_termM_x21_____closed__14; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_MessageData_hasTag___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instToMessageDataString; static size_t l_Lean_instInhabitedMessageLog___closed__3; +static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__4; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); static lean_object* l_Lean_MessageData_arrayExpr_toMessageData___closed__4; LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -368,7 +369,6 @@ LEAN_EXPORT lean_object* l_Lean_Message_toString___lambda__1___boxed(lean_object static lean_object* l_Lean_addMessageContextPartial___rarg___lambda__1___closed__2; static lean_object* l_Lean_MessageData_formatAux___closed__2; LEAN_EXPORT lean_object* l_Lean_MessageLog_add(lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__12; size_t lean_usize_of_nat(lean_object*); lean_object* lean_nat_to_int(lean_object*); LEAN_EXPORT lean_object* l_Lean_addMessageContextPartial(lean_object*); @@ -376,6 +376,7 @@ LEAN_EXPORT lean_object* l_Std_PersistentArray_foldlM___at_Lean_MessageLog_toLis LEAN_EXPORT lean_object* l_Lean_mkErrorStringWithPos(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_isNil___boxed(lean_object*); lean_object* l_Lean_Syntax_formatStxAux(lean_object*, uint8_t, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__11; static lean_object* l_Lean_MessageData_ofList___closed__1; static lean_object* l_Lean_MessageData_arrayExpr_toMessageData___closed__1; static lean_object* l_Lean_KernelException_toMessageData___closed__11; @@ -389,7 +390,6 @@ LEAN_EXPORT lean_object* l_Lean_MessageData_instantiateMVars_visit(lean_object*, LEAN_EXPORT lean_object* l_String_split___at_Lean_stringToMessageData___spec__1___boxed(lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__11; LEAN_EXPORT lean_object* l_String_splitAux___at_Lean_stringToMessageData___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* _init_l_Lean_mkErrorStringWithPos___closed__1() { _start: @@ -6303,7 +6303,7 @@ x_1 = l_Lean_termM_x21_____closed__16; return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__1() { +static lean_object* _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__1() { _start: { lean_object* x_1; @@ -6311,22 +6311,22 @@ x_1 = lean_mk_string("MessageData"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__2() { +static lean_object* _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__1; +x_1 = l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__3() { +static lean_object* _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__1; +x_1 = l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__2; +x_3 = l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -6334,51 +6334,51 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__4() { +static lean_object* _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__1; +x_2 = l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__5() { +static lean_object* _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_termM_x21_____closed__2; -x_2 = l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__1; +x_2 = l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__6() { +static lean_object* _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__5; +x_2 = l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__5; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__7() { +static lean_object* _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__6; +x_2 = l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__6; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__8() { +static lean_object* _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__8() { _start: { lean_object* x_1; @@ -6386,22 +6386,22 @@ x_1 = lean_mk_string("toMessageData"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__9() { +static lean_object* _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__8; +x_1 = l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__8; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__10() { +static lean_object* _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__8; +x_1 = l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__8; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__9; +x_3 = l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__9; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -6409,17 +6409,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__11() { +static lean_object* _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__8; +x_2 = l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__8; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__12() { +static lean_object* _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__12() { _start: { lean_object* x_1; @@ -6427,51 +6427,51 @@ x_1 = lean_mk_string("ToMessageData"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__13() { +static lean_object* _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_termM_x21_____closed__2; -x_2 = l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__12; +x_2 = l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__12; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__14() { +static lean_object* _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__13; -x_2 = l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__8; +x_1 = l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__13; +x_2 = l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__8; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__15() { +static lean_object* _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__14; +x_2 = l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__14; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__16() { +static lean_object* _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__15; +x_2 = l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__15; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Lean_Message___hyg_2585_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -6496,7 +6496,7 @@ x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); lean_inc(x_2); -x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_11 = lean_ctor_get(x_10, 0); lean_inc(x_11); x_12 = lean_ctor_get(x_10, 1); @@ -6506,28 +6506,28 @@ x_13 = lean_ctor_get(x_2, 2); lean_inc(x_13); x_14 = lean_ctor_get(x_2, 1); lean_inc(x_14); -x_15 = l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__4; +x_15 = l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__4; lean_inc(x_13); lean_inc(x_14); x_16 = l_Lean_addMacroScope(x_14, x_15, x_13); -x_17 = l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__3; -x_18 = l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__7; +x_17 = l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__3; +x_18 = l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__7; x_19 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_19, 0, x_11); lean_ctor_set(x_19, 1, x_17); lean_ctor_set(x_19, 2, x_16); lean_ctor_set(x_19, 3, x_18); lean_inc(x_2); -x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_12); +x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_12); 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 = l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__11; +x_23 = l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__11; x_24 = l_Lean_addMacroScope(x_14, x_23, x_13); -x_25 = l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__10; -x_26 = l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__16; +x_25 = l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__10; +x_26 = l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__16; x_27 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_27, 0, x_21); lean_ctor_set(x_27, 1, x_25); @@ -7507,38 +7507,38 @@ l_Lean_termM_x21_____closed__16 = _init_l_Lean_termM_x21_____closed__16(); lean_mark_persistent(l_Lean_termM_x21_____closed__16); l_Lean_termM_x21__ = _init_l_Lean_termM_x21__(); lean_mark_persistent(l_Lean_termM_x21__); -l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__1 = _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__1(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__1); -l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__2 = _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__2(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__2); -l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__3 = _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__3(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__3); -l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__4 = _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__4(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__4); -l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__5 = _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__5(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__5); -l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__6 = _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__6(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__6); -l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__7 = _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__7(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__7); -l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__8 = _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__8(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__8); -l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__9 = _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__9(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__9); -l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__10 = _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__10(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__10); -l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__11 = _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__11(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__11); -l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__12 = _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__12(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__12); -l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__13 = _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__13(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__13); -l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__14 = _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__14(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__14); -l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__15 = _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__15(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__15); -l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__16 = _init_l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__16(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Message___hyg_2585____closed__16); +l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__1 = _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__1(); +lean_mark_persistent(l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__1); +l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__2 = _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__2(); +lean_mark_persistent(l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__2); +l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__3 = _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__3(); +lean_mark_persistent(l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__3); +l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__4 = _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__4(); +lean_mark_persistent(l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__4); +l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__5 = _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__5(); +lean_mark_persistent(l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__5); +l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__6 = _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__6(); +lean_mark_persistent(l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__6); +l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__7 = _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__7(); +lean_mark_persistent(l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__7); +l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__8 = _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__8(); +lean_mark_persistent(l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__8); +l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__9 = _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__9(); +lean_mark_persistent(l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__9); +l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__10 = _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__10(); +lean_mark_persistent(l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__10); +l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__11 = _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__11(); +lean_mark_persistent(l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__11); +l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__12 = _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__12(); +lean_mark_persistent(l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__12); +l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__13 = _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__13(); +lean_mark_persistent(l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__13); +l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__14 = _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__14(); +lean_mark_persistent(l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__14); +l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__15 = _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__15(); +lean_mark_persistent(l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__15); +l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__16 = _init_l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__16(); +lean_mark_persistent(l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__16); l_Lean_KernelException_toMessageData___closed__1 = _init_l_Lean_KernelException_toMessageData___closed__1(); lean_mark_persistent(l_Lean_KernelException_toMessageData___closed__1); l_Lean_KernelException_toMessageData___closed__2 = _init_l_Lean_KernelException_toMessageData___closed__2(); diff --git a/stage0/stdlib/Lean/Meta/Basic.c b/stage0/stdlib/Lean/Meta/Basic.c index dc2b663cf9..763d5ed28d 100644 --- a/stage0/stdlib/Lean/Meta/Basic.c +++ b/stage0/stdlib/Lean/Meta/Basic.c @@ -204,7 +204,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_isReadOnlyLevelMVar___boxed(lean_object*, l LEAN_EXPORT lean_object* l_Lean_Meta_forallMetaBoundedTelescope(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAuxAux_process___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_isClassExpensive_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8076_(uint8_t, uint8_t); +uint8_t l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8082_(uint8_t, uint8_t); static lean_object* l_Lean_Meta_instAlternativeMetaM___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_setInlineAttribute___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withConfig___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1237,7 +1237,7 @@ x_5 = lean_ctor_get(x_1, 1); x_6 = lean_ctor_get_uint8(x_2, sizeof(void*)*2); x_7 = lean_ctor_get(x_2, 0); x_8 = lean_ctor_get(x_2, 1); -x_9 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8076_(x_3, x_6); +x_9 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8082_(x_3, x_6); if (x_9 == 0) { uint8_t x_10; @@ -6273,7 +6273,7 @@ x_8 = lean_ctor_get(x_6, 0); x_9 = 0; x_10 = lean_unbox(x_8); lean_dec(x_8); -x_11 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8076_(x_10, x_9); +x_11 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8082_(x_10, x_9); x_12 = lean_box(x_11); lean_ctor_set(x_6, 0, x_12); return x_6; @@ -6289,7 +6289,7 @@ lean_dec(x_6); x_15 = 0; x_16 = lean_unbox(x_13); lean_dec(x_13); -x_17 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8076_(x_16, x_15); +x_17 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8082_(x_16, x_15); x_18 = lean_box(x_17); x_19 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_19, 0, x_18); @@ -6323,7 +6323,7 @@ x_8 = lean_ctor_get(x_6, 0); x_9 = 2; x_10 = lean_unbox(x_8); lean_dec(x_8); -x_11 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8076_(x_10, x_9); +x_11 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8082_(x_10, x_9); x_12 = lean_box(x_11); lean_ctor_set(x_6, 0, x_12); return x_6; @@ -6339,7 +6339,7 @@ lean_dec(x_6); x_15 = 2; x_16 = lean_unbox(x_13); lean_dec(x_13); -x_17 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8076_(x_16, x_15); +x_17 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8082_(x_16, x_15); x_18 = lean_box(x_17); x_19 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_19, 0, x_18); diff --git a/stage0/stdlib/Lean/Meta/GetConst.c b/stage0/stdlib/Lean/Meta/GetConst.c index d6bcd0ba2d..f2d27f4644 100644 --- a/stage0/stdlib/Lean/Meta/GetConst.c +++ b/stage0/stdlib/Lean/Meta/GetConst.c @@ -19,7 +19,7 @@ lean_object* lean_environment_find(lean_object*, lean_object*); lean_object* lean_st_ref_get(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getConstNoEx_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getConst_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8076_(uint8_t, uint8_t); +uint8_t l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8082_(uint8_t, uint8_t); lean_object* l_Lean_ConstantInfo_name(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_GetConst_0__Lean_Meta_getDefInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwUnknownConstant___at___private_Lean_Meta_Basic_0__Lean_Meta_getConstTemp_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -61,7 +61,7 @@ x_18 = lean_ctor_get(x_17, 0); lean_inc(x_18); lean_dec(x_17); x_19 = 3; -x_20 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8076_(x_8, x_19); +x_20 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8082_(x_8, x_19); if (x_20 == 0) { lean_object* x_21; @@ -106,7 +106,7 @@ x_27 = lean_ctor_get(x_25, 0); lean_inc(x_27); lean_dec(x_25); x_28 = 3; -x_29 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8076_(x_8, x_28); +x_29 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8082_(x_8, x_28); if (x_29 == 0) { lean_object* x_30; lean_object* x_31; @@ -202,7 +202,7 @@ x_51 = lean_ctor_get(x_50, 0); lean_inc(x_51); lean_dec(x_50); x_52 = 3; -x_53 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8076_(x_8, x_52); +x_53 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8082_(x_8, x_52); if (x_53 == 0) { lean_object* x_54; @@ -247,7 +247,7 @@ x_60 = lean_ctor_get(x_58, 0); lean_inc(x_60); lean_dec(x_58); x_61 = 3; -x_62 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8076_(x_8, x_61); +x_62 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8082_(x_8, x_61); if (x_62 == 0) { lean_object* x_63; lean_object* x_64; diff --git a/stage0/stdlib/Lean/Meta/WHNF.c b/stage0/stdlib/Lean/Meta/WHNF.c index 3f8b88d7e6..1dad62cc3b 100644 --- a/stage0/stdlib/Lean/Meta/WHNF.c +++ b/stage0/stdlib/Lean/Meta/WHNF.c @@ -110,7 +110,7 @@ static lean_object* l_Lean_Meta_reduceNative_x3f___closed__14; LEAN_EXPORT lean_object* l_Lean_Meta_smartUnfoldingMatch_x3f(lean_object*); lean_object* l_Lean_Expr_getRevArg_x21(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_reduceNatNative___rarg(lean_object*); -uint8_t l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8076_(uint8_t, uint8_t); +uint8_t l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8082_(uint8_t, uint8_t); static lean_object* l_Lean_Meta_toCtorIfLit___closed__16; uint8_t lean_usize_dec_lt(size_t, size_t); LEAN_EXPORT lean_object* l___private_Lean_Meta_WHNF_0__Lean_Meta_deltaDefinition___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -5132,7 +5132,7 @@ lean_inc(x_18); lean_dec(x_16); x_19 = 2; x_20 = lean_unbox(x_17); -x_21 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8076_(x_20, x_19); +x_21 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8082_(x_20, x_19); if (x_21 == 0) { lean_object* x_22; uint8_t x_23; lean_object* x_24; @@ -12586,7 +12586,7 @@ x_10 = lean_ctor_get(x_7, 1); x_11 = 3; x_12 = lean_unbox(x_9); lean_dec(x_9); -x_13 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8076_(x_12, x_11); +x_13 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8082_(x_12, x_11); if (x_13 == 0) { lean_object* x_14; @@ -13182,7 +13182,7 @@ lean_dec(x_7); x_163 = 3; x_164 = lean_unbox(x_161); lean_dec(x_161); -x_165 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8076_(x_164, x_163); +x_165 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_8082_(x_164, x_163); if (x_165 == 0) { lean_object* x_166; lean_object* x_167; diff --git a/stage0/stdlib/Lean/Parser/Extra.c b/stage0/stdlib/Lean/Parser/Extra.c index bfdc616c0e..835e26819a 100644 --- a/stage0/stdlib/Lean/Parser/Extra.c +++ b/stage0/stdlib/Lean/Parser/Extra.c @@ -13,32 +13,29 @@ #ifdef __cplusplus extern "C" { #endif -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__15; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__14; lean_object* l_Lean_PrettyPrinter_Formatter_rawIdentNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__2; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__28; lean_object* l_Lean_PrettyPrinter_Parenthesizer_withoutInfo_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_many___closed__3; static lean_object* l_Lean_Parser_termRegister__parser__alias_________closed__17; -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__18; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__9; LEAN_EXPORT lean_object* l_Lean_Parser_many1Indent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_charLit___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_nonReservedSymbol_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__22; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__30; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__27; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__25; lean_object* l_Lean_PrettyPrinter_Formatter_visitArgs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_numLit___elambda__1___closed__2; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__4; static lean_object* l_Lean_Parser_termRegister__parser__alias_________closed__1; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__34; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__22; lean_object* l_Lean_PrettyPrinter_Parenthesizer_categoryParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__14; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__6; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__50; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__29; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__48; lean_object* l_Lean_Parser_andthenInfo(lean_object*, lean_object*); +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__40; lean_object* l_Lean_PrettyPrinter_Formatter_numLitNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__25; LEAN_EXPORT lean_object* l_Lean_Parser_ppHardSpace_parenthesizer___rarg(lean_object*); static lean_object* l_Lean_Parser_optional___closed__1; static lean_object* l_Lean_Parser_commandParser_formatter___rarg___closed__2; @@ -52,123 +49,118 @@ static lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__10; LEAN_EXPORT lean_object* l_Lean_ppHardSpace_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_rawIdentNoAntiquot_parenthesizer___boxed(lean_object*); static lean_object* l_Lean_Parser_ppHardSpace___closed__1; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__46; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__29; extern lean_object* l_Lean_nullKind; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__48; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__46; static lean_object* l_Lean_Parser_mkAntiquotSplice_formatter___closed__6; static lean_object* l_Lean_Parser_ppHardSpace___closed__2; lean_object* l_Lean_Parser_notFollowedByFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__13; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__34; lean_object* l_Lean_PrettyPrinter_Formatter_sepByNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_many(lean_object*); static lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___closed__10; lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getOptional_x3f(lean_object*); static lean_object* l_Lean_Parser_numLit___closed__4; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__42; static lean_object* l_Lean_Parser_antiquotExpr_formatter___closed__2; lean_object* l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ppSpace_parenthesizer___rarg(lean_object*); +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__1; uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_734____at_Lean_Parser_ParserState_hasError___spec__1(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_identNoAntiquot_parenthesizer___boxed(lean_object*); static lean_object* l_Lean_Parser_many1Indent_parenthesizer___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_sepBy1_parenthesizer(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__37; static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_sepBy_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ppGroup___boxed(lean_object*); static lean_object* l_Lean_Parser_termRegister__parser__alias_________closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_symbol_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_charLit; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__45; static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__15; static lean_object* l_Lean_Parser_numLit___elambda__1___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_indent(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__25; static lean_object* l_Lean_Parser_many___closed__5; static lean_object* l_Lean_Parser_ident_formatter___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_sepBy_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_atomic_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__29; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_group_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_manyNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_nameLit_formatter___closed__3; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__37; static lean_object* l_Lean_Parser_termRegister__parser__alias_________closed__8; static lean_object* l_Lean_Parser_ident_formatter___closed__2; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__46; static lean_object* l_Lean_Parser_many___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_scientificLit; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__4; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__18; LEAN_EXPORT lean_object* l_Lean_ppSpace_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__31; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__7; lean_object* l_Lean_Parser_tokenWithAntiquotFn(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__15; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__45; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__28; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__14; static lean_object* l_Lean_Parser_many_parenthesizer___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_orelse_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_group(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__7; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__27; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__15; LEAN_EXPORT lean_object* l_Lean_Parser_ident; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__28; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__14; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__18; static lean_object* l_Lean_Parser_termRegister__parser__alias_________closed__13; lean_object* l_id___rarg___boxed(lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__9; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__30; lean_object* l_Lean_Parser_ParserState_mkNode(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_sepByElemParser_formatter___closed__3; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__22; LEAN_EXPORT lean_object* l_Lean_Parser_withAntiquotSpliceAndSuffix_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_many1Indent___lambda__1(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__30; static lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_pushLine(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_scientificLit___elambda__1(lean_object*, lean_object*); +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__47; static lean_object* l_Lean_Parser_strLit_formatter___closed__1; static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__8; lean_object* l_Lean_PrettyPrinter_Parenthesizer_nameLitNoAntiquot_parenthesizer___boxed(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__5; static lean_object* l_Lean_Parser_termRegister__parser__alias_________closed__6; lean_object* lean_array_push(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_optional_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__5; lean_object* lean_array_get_size(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__42; LEAN_EXPORT lean_object* l_Lean_Parser_ppIndent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_optional_formatter___closed__4; lean_object* lean_string_append(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__54; static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__9; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__23; static lean_object* l_Lean_Parser_strLit_formatter___closed__2; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__52; lean_object* l_Lean_Parser_mkAtomicInfo(lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__47; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__2; static lean_object* l_Lean_Parser_termRegister__parser__alias_________closed__2; static lean_object* l_Lean_Parser_charLit___elambda__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_unicodeSymbol_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__34; static lean_object* l_Lean_Parser_numLit___closed__3; static lean_object* l_Lean_Parser_optional_formatter___closed__2; static lean_object* l_Lean_Parser_charLit___elambda__1___closed__2; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__33; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__3; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__2; static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_nonReservedSymbolNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_sepBy1_formatter(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__3; lean_object* l_Lean_PrettyPrinter_Parenthesizer_numLitNoAntiquot_parenthesizer___boxed(lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__3; static lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__5; lean_object* l_Lean_PrettyPrinter_Formatter_unicodeSymbolNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__5; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_group_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_scientificLitNoAntiquot_parenthesizer___boxed(lean_object*); static lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__47; lean_object* lean_string_utf8_byte_size(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_mkAntiquot_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_leadingNode_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_termRegister__parser__alias_________closed__14; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__1; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__13; static lean_object* l_Lean_Parser_scientificLit___closed__4; static lean_object* l_Lean_Parser_termRegister__parser__alias_________closed__5; lean_object* l_Lean_Parser_checkColGeFn___boxed(lean_object*, lean_object*, lean_object*); @@ -180,69 +172,69 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(lean_objec LEAN_EXPORT lean_object* l_Lean_Parser_ppLine; extern lean_object* l_Lean_nameLitKind; static lean_object* l_Lean_Parser_strLit___closed__1; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__41; LEAN_EXPORT lean_object* l_Lean_Parser_rawIdent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__2; static lean_object* l_Lean_Parser_strLit_formatter___closed__3; static lean_object* l_Lean_Parser_leadingNode_formatter___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_optional_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__3; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__5; lean_object* l_Lean_PrettyPrinter_Parenthesizer_sepByNoAntiquot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__50; static lean_object* l_Lean_Parser_ident___closed__1; lean_object* l_Lean_PrettyPrinter_Parenthesizer_atomic_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__40; static lean_object* l_Lean_Parser_rawIdent___closed__3; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__45; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__8; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__17; lean_object* l_Lean_PrettyPrinter_Parenthesizer_unicodeSymbolNoAntiquot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_optional(lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__44; static lean_object* l_Lean_Parser_numLit___closed__1; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__9; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__42; lean_object* l_Lean_Parser_rawIdentFn(lean_object*, lean_object*); lean_object* l_Lean_Parser_registerAliasCore___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__27; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_strLit___elambda__1(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__4; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__46; lean_object* l_Lean_PrettyPrinter_Formatter_checkColGe_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__9; LEAN_EXPORT lean_object* l_Lean_ppIndent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_symbolNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__7; lean_object* l_Lean_PrettyPrinter_Parenthesizer_setExpected_parenthesizer___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_termParser_formatter___boxed(lean_object*); static lean_object* l_Lean_Parser_ident_formatter___closed__3; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__27; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__6; static lean_object* l_Lean_Parser_numLit___closed__2; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__40; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__45; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__25; static lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__2; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__8; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__37; lean_object* l_Lean_PrettyPrinter_Formatter_tokenWithAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__53; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__42; static lean_object* l_Lean_Parser_ident___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_ppSpace_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquotSplice_parenthesizer___closed__1; static lean_object* l_Lean_Parser_ident___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_sepByElemParser_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__55; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__33; LEAN_EXPORT lean_object* l_Lean_Parser_ppHardSpace_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__7; static lean_object* l_Lean_Parser_termRegister__parser__alias_________closed__12; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__17; static lean_object* l_Lean_Parser_charLit_formatter___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_mkAntiquotSplice_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_setExpected_formatter___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_strLitNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_strLit_parenthesizer___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_termRegister__parser__alias______; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__50; lean_object* l_Lean_Parser_nodeInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_symbolFn___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_rawIdent___closed__4; extern lean_object* l_Lean_numLitKind; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__16; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__54; static lean_object* l_Lean_Parser_strLit_parenthesizer___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_charLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_charLit_formatter___closed__4; static lean_object* l_Lean_Parser_termRegister__parser__alias_________closed__9; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__50; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__48; lean_object* l_Lean_PrettyPrinter_Parenthesizer_nonReservedSymbolNoAntiquot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_scientificLit_formatter___closed__3; lean_object* l_Lean_Parser_noFirstTokenInfo(lean_object*); @@ -250,52 +242,54 @@ LEAN_EXPORT lean_object* l_Lean_Parser_scientificLit_formatter(lean_object*, lea extern lean_object* l_Lean_strLitKind; static lean_object* l_Lean_Parser_mkAntiquotSplice_parenthesizer___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_strLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__48; lean_object* l_Lean_PrettyPrinter_Formatter_checkPrec_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__22; lean_object* l_Lean_PrettyPrinter_Formatter_decQuotDepth_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_visitArgs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__38; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__21; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__29; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_nodeWithAntiquot_formatter(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__17; LEAN_EXPORT lean_object* l_Lean_Parser_manyIndent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_numLit_formatter___closed__1; static lean_object* l_Lean_Parser_sepByElemParser_formatter___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_notSymbol_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__6; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__38; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__21; lean_object* l_Lean_Name_toString(lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_Parser_ppHardSpace_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_nameLit___closed__3; static lean_object* l_Lean_Parser_many___closed__1; lean_object* l_Lean_Parser_numLitFn(lean_object*, lean_object*); +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__44; uint8_t l_Lean_Parser_tryAnti(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_many1_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_optionaInfo(lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__20; static lean_object* l_Lean_Parser_strLit___elambda__1___closed__2; static lean_object* l_Lean_Parser_mkAntiquotSplice_formatter___closed__5; lean_object* l_Lean_PrettyPrinter_Parenthesizer_manyNoAntiquot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__10; LEAN_EXPORT lean_object* l_Lean_Parser_nameLit; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__32; lean_object* l_Lean_PrettyPrinter_Formatter_node_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__43; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__23; static lean_object* l_Lean_Parser_many1Indent_formatter___closed__1; lean_object* l_Lean_Parser_charLitFn(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__34; static lean_object* l_Lean_Parser_strLit_formatter___closed__4; static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__6; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__13; lean_object* l_Lean_Parser_strLitFn(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__41; static lean_object* l_Lean_Parser_charLit___closed__3; lean_object* l_Lean_PrettyPrinter_Parenthesizer_charLitNoAntiquot_parenthesizer___boxed(lean_object*); +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_many1___elambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_manyIndent(lean_object*); static lean_object* l_Lean_Parser_nameLit___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_antiquotNestedExpr_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__39; static lean_object* l_Lean_Parser_numLit_formatter___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_ppSpace; static lean_object* l_Lean_Parser_optional___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_ppHardSpace; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__55; extern lean_object* l_Lean_Parser_parserAliasesRef; lean_object* l_Lean_Parser_orelseInfo(lean_object*, lean_object*); static lean_object* l_Lean_Parser_nameLit___closed__2; @@ -303,12 +297,16 @@ LEAN_EXPORT lean_object* l_Lean_Parser_termParser_formatter___rarg(lean_object*, static lean_object* l_Lean_Parser_sepByElemParser_formatter___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_ppIndent(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_scientificLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__23; LEAN_EXPORT lean_object* l_Lean_Parser_commandParser_formatter___boxed(lean_object*); static lean_object* l_Lean_Parser_mkAntiquotSplice_formatter___closed__3; lean_object* l_Lean_Syntax_getId(lean_object*); +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__14; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__13; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__41; extern lean_object* l_Lean_charLitKind; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__28; static lean_object* l_Lean_Parser_nameLit___closed__4; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__37; extern lean_object* l_Lean_Parser_maxPrec; LEAN_EXPORT lean_object* l_Lean_Parser_strLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_rawIdent; @@ -320,24 +318,26 @@ static lean_object* l_Lean_Parser_rawIdent___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_many1Indent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_scientificLitFn(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_nodeWithAntiquot_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__53; static lean_object* l_Lean_Parser_charLit___closed__2; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__11; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__39; lean_object* l_Lean_PrettyPrinter_Formatter_scientificLitNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__11; LEAN_EXPORT lean_object* l_Lean_Parser_ppLine_parenthesizer___rarg(lean_object*); lean_object* l_Lean_Syntax_mkStrLit(lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__10; static lean_object* l_Lean_Parser_termRegister__parser__alias_________closed__16; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__49; static lean_object* l_Lean_Parser_antiquotExpr_parenthesizer___closed__1; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__31; static lean_object* l_Lean_Parser_optional_formatter___closed__3; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__26; lean_object* l_Lean_PrettyPrinter_Parenthesizer_pushNone_parenthesizer___boxed(lean_object*); static lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___closed__8; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__12; static lean_object* l_Lean_Parser_rawIdent___elambda__1___closed__1; static lean_object* l_Lean_Parser_numLit_formatter___closed__3; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__31; static lean_object* l_Lean_Parser_scientificLit___closed__3; static lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___closed__9; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__12; static lean_object* l_Lean_Parser_numLit_parenthesizer___closed__2; static lean_object* l_Lean_ppHardSpace_formatter___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_ppIndent___boxed(lean_object*); @@ -347,62 +347,68 @@ static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__11; LEAN_EXPORT lean_object* l_Lean_Parser_nonReservedSymbol_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_sepBy1_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__16; +LEAN_EXPORT lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_commandParser_formatter(lean_object*); static lean_object* l_Lean_Parser_rawIdent_parenthesizer___closed__1; static lean_object* l_Lean_Parser_strLit___closed__3; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__36; lean_object* l_Lean_Parser_manyAux(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_charLit___closed__4; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__44; static lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__6; static lean_object* l_Lean_ppHardSpace_formatter___closed__1; static lean_object* l_Lean_Parser_numLit_parenthesizer___closed__1; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___closed__2; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__26; lean_object* l_Lean_PrettyPrinter_Formatter_nameLitNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_rawIdent___closed__2; static lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_mkAntiquot_formatter(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__7; LEAN_EXPORT lean_object* l_Lean_ppHardSpace_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__26; LEAN_EXPORT lean_object* l_Lean_Parser_many1_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__24; static lean_object* l_Lean_Parser_nameLit___elambda__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_notSymbol(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_sepByElemParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_termParser_formatter(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__35; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__35; LEAN_EXPORT lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ppLine_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__36; extern lean_object* l_Lean_groupKind; static lean_object* l_Lean_Parser_ident___elambda__1___closed__1; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__10; LEAN_EXPORT lean_object* l_Lean_ppGroup_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___closed__1; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__32; extern lean_object* l_Lean_identKind; LEAN_EXPORT lean_object* l_Lean_Parser_commandParser_formatter___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_many_formatter___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_ident___elambda__1(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__24; lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkNoWsBefore_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_charLit___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_nameLit_parenthesizer___closed__1; -LEAN_EXPORT lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290_(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_numLit; static lean_object* l_Lean_Parser_many___closed__4; static lean_object* l_Lean_Parser_charLit_formatter___closed__1; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__19; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__21; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__38; LEAN_EXPORT lean_object* l_Lean_Parser_ppHardSpace___lambda__1___boxed(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__49; LEAN_EXPORT lean_object* l_Lean_Parser_numLit___elambda__1(lean_object*, lean_object*); +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__52; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__51; lean_object* l_Lean_PrettyPrinter_Parenthesizer_decQuotDepth_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ppDedent___boxed(lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__31; lean_object* l_Lean_PrettyPrinter_Formatter_push(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549_(lean_object*); extern lean_object* l_Lean_PrettyPrinter_Formatter_formatterAliasesRef; extern lean_object* l_Lean_scientificLitKind; static lean_object* l_Lean_Parser_scientificLit___elambda__1___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_checkNoWsBefore_formatter___boxed(lean_object*); +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__43; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__11; static lean_object* l_Lean_Parser_termParser_formatter___rarg___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_ppGroup_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_commandParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -410,29 +416,26 @@ static lean_object* l_Lean_Parser_scientificLit_parenthesizer___closed__2; static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__16; lean_object* l_Lean_Name_append(lean_object*, lean_object*); static lean_object* l_Lean_Parser_scientificLit___elambda__1___closed__2; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__20; static lean_object* l_Lean_Parser_termParser_formatter___rarg___closed__1; static lean_object* l_Lean_Parser_termRegister__parser__alias_________closed__10; static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__7; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__51; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__43; static lean_object* l_Lean_Parser_nameLit_parenthesizer___closed__2; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__19; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__32; LEAN_EXPORT lean_object* l_Lean_Parser_many___elambda__1(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__51; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__19; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__10; static lean_object* l_Lean_Parser_charLit_parenthesizer___closed__1; lean_object* l_Lean_Parser_symbolInfo(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_charLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___closed__6; static lean_object* l_Lean_Parser_charLit_parenthesizer___closed__2; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__43; static lean_object* l_Lean_Parser_charLit_formatter___closed__3; static lean_object* l_Lean_Parser_termRegister__parser__alias_________closed__11; lean_object* l_Lean_Parser_orelseFnCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_epsilonInfo; LEAN_EXPORT lean_object* l_Lean_Parser_notSymbol_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__32; LEAN_EXPORT lean_object* l_Lean_ppLine_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__10; static lean_object* l_Lean_Parser_optional___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_many1Indent(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkNoImmediateColon_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -440,14 +443,13 @@ static lean_object* l_Lean_ppDedent_formatter___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_pushNone_formatter___boxed(lean_object*); lean_object* l_Std_Format_getIndent(lean_object*); static lean_object* l_Lean_Parser_ident___elambda__1___closed__2; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__49; LEAN_EXPORT lean_object* l_Lean_Parser_notSymbol_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_sepBy_formatter(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__19; static lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__9; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__24; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__24; lean_object* l_Lean_Parser_withAntiquotSpliceAndSuffix(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__38; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__21; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__12; LEAN_EXPORT lean_object* l_Lean_Parser_leadingNode_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquotSplice_formatter___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_sepByElemParser_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -456,30 +458,30 @@ LEAN_EXPORT lean_object* l_Lean_Parser_antiquotExpr_parenthesizer(lean_object*, LEAN_EXPORT lean_object* l_Lean_Parser_ident_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_optional_formatter___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_checkNoImmediateColon_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__20; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__16; LEAN_EXPORT lean_object* l_Lean_Parser_mkAntiquotSplice_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__39; static lean_object* l_Lean_Parser_mkAntiquotSplice_formatter___closed__1; lean_object* l_Lean_PrettyPrinter_Parenthesizer_symbolNoAntiquot_parenthesizer___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_numLit_formatter___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_sepBy1_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_numLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__20; LEAN_EXPORT lean_object* l_Lean_ppSpace_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_scientificLit_formatter___closed__4; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__16; lean_object* l_String_trim(lean_object*); lean_object* l_Lean_Parser_nodeFn(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__49; lean_object* l_Lean_Parser_optionalFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_withoutInfo_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_many_formatter___closed__2; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__26; LEAN_EXPORT lean_object* l_Lean_Parser_nameLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__35; LEAN_EXPORT lean_object* l_Lean_Parser_unicodeSymbol_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__39; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_rawIdent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_scientificLit_formatter___closed__1; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__36; lean_object* l_Lean_PrettyPrinter_Parenthesizer_withAntiquotSuffixSplice_parenthesizer___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_ppLine_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_int_sub(lean_object*, lean_object*); @@ -490,7 +492,6 @@ static lean_object* l_Lean_Parser_scientificLit_formatter___closed__2; static lean_object* l_Lean_Parser_strLit___closed__4; static lean_object* l_Lean_ppLine_formatter___closed__1; static lean_object* l_Lean_Parser_mkAntiquotSplice_formatter___closed__4; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__17; lean_object* l_Lean_PrettyPrinter_Formatter_charLitNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__13; LEAN_EXPORT lean_object* l_Lean_Parser_withAntiquotSpliceAndSuffix_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -498,32 +499,31 @@ lean_object* l_Lean_Parser_mkAntiquot(lean_object*, lean_object*, uint8_t); lean_object* l_Lean_PrettyPrinter_Parenthesizer_withPosition_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_nameLit_formatter___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_ppGroup(lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__8; static lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__4; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_many_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__4; static lean_object* l_Lean_Parser_ident_parenthesizer___closed__1; static lean_object* l_Lean_Parser_optional___closed__4; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__40; static lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___closed__3; static lean_object* l_Lean_Parser_termRegister__parser__alias_________closed__3; lean_object* l_Lean_PrettyPrinter_Parenthesizer_strLitNoAntiquot_parenthesizer___boxed(lean_object*); static lean_object* l_Lean_ppLine_formatter___closed__2; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__30; static lean_object* l_Lean_Parser_rawIdent_formatter___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_ppHardSpace___lambda__1(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkColGe_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__2; static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__12; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__12; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__15; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__18; LEAN_EXPORT lean_object* l_Lean_Parser_mkAntiquotSplice_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_notSymbol_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_nonReservedSymbol_formatter(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_antiquotExpr_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__8; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_numLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_optional___elambda__1(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__47; LEAN_EXPORT lean_object* l_Lean_Parser_sepBy_parenthesizer(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_ident___closed__3; static lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___closed__5; @@ -532,20 +532,19 @@ static lean_object* l_Lean_Parser_termRegister__parser__alias_________closed__7; lean_object* l_Lean_PrettyPrinter_Formatter_withAntiquotSuffixSplice_formatter___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_setLhsPrec_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ident_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__33; static lean_object* l_Lean_Parser_scientificLit___closed__2; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__51; static lean_object* l_Lean_Parser_many1Indent___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_symbol_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_tokenWithAntiquot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_group(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__44; lean_object* l_Lean_Parser_identFn(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_nameLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_to_int(lean_object*); static lean_object* l_Lean_Parser_scientificLit_parenthesizer___closed__1; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__36; static lean_object* l_Lean_Parser_termRegister__parser__alias_________closed__18; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__1; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__23; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__11; static lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___closed__7; static lean_object* l_Lean_Parser_nameLit___elambda__1___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_nonReservedSymbol_parenthesizer(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -554,6 +553,8 @@ LEAN_EXPORT lean_object* l_Lean_Parser_notSymbol_parenthesizer___rarg(lean_objec LEAN_EXPORT lean_object* l_Lean_Parser_rawIdent___elambda__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_strLit; LEAN_EXPORT lean_object* l_Lean_Parser_many1(lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__33; +static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__35; lean_object* l_Lean_PrettyPrinter_Formatter_andthen_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_scientificLit___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_mkAntiquotSplice_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -564,7 +565,6 @@ LEAN_EXPORT lean_object* l_Lean_Parser_ppDedent_parenthesizer(lean_object*, lean LEAN_EXPORT lean_object* l_Lean_Parser_notSymbol_formatter___rarg(lean_object*); static lean_object* l_Lean_Parser_antiquotExpr_formatter___closed__1; static lean_object* l_Lean_Parser_leadingNode_formatter___closed__2; -static lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__41; LEAN_EXPORT lean_object* l_Lean_Parser_termParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_ppDedent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_manyIndent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -4464,7 +4464,7 @@ x_1 = l_Lean_Parser_termRegister__parser__alias_________closed__18; return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__1() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__1() { _start: { lean_object* x_1; @@ -4472,17 +4472,17 @@ x_1 = lean_mk_string("Term"); return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__2() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_termRegister__parser__alias_________closed__4; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__1; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__3() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__3() { _start: { lean_object* x_1; @@ -4490,17 +4490,17 @@ x_1 = lean_mk_string("do"); return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__4() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__2; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__3; +x_1 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__2; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__5() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__5() { _start: { lean_object* x_1; @@ -4508,17 +4508,17 @@ x_1 = lean_mk_string("doSeqIndent"); return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__6() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__2; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__5; +x_1 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__2; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__7() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__7() { _start: { lean_object* x_1; @@ -4526,17 +4526,17 @@ x_1 = lean_mk_string("null"); return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__8() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__7; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__9() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__9() { _start: { lean_object* x_1; @@ -4544,17 +4544,17 @@ x_1 = lean_mk_string("doSeqItem"); return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__10() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__2; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__9; +x_1 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__2; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__9; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__11() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__11() { _start: { lean_object* x_1; @@ -4562,17 +4562,17 @@ x_1 = lean_mk_string("doExpr"); return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__12() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__2; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__11; +x_1 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__2; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__11; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__13() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__13() { _start: { lean_object* x_1; @@ -4580,17 +4580,17 @@ x_1 = lean_mk_string("app"); return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__14() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__2; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__13; +x_1 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__2; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__13; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__15() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__15() { _start: { lean_object* x_1; @@ -4598,22 +4598,22 @@ x_1 = lean_mk_string("Parser.registerAlias"); return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__16() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__16() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__15; +x_1 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__15; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__17() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__15; +x_1 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__15; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__16; +x_3 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__16; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -4621,7 +4621,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__18() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -4631,7 +4631,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__19() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__19() { _start: { lean_object* x_1; @@ -4639,51 +4639,51 @@ x_1 = lean_mk_string("registerAlias"); return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__20() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__18; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__19; +x_1 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__18; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__19; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__21() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_termRegister__parser__alias_________closed__4; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__19; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__19; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__22() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__21; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__21; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__23() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__22; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__22; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__24() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__24() { _start: { lean_object* x_1; lean_object* x_2; @@ -4692,7 +4692,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__25() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__25() { _start: { lean_object* x_1; lean_object* x_2; @@ -4701,7 +4701,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__26() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__26() { _start: { lean_object* x_1; lean_object* x_2; @@ -4710,19 +4710,19 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__27() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__27() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__8; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__26; +x_1 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__8; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__26; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__28() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__28() { _start: { lean_object* x_1; @@ -4730,22 +4730,22 @@ x_1 = lean_mk_string("PrettyPrinter.Formatter.registerAlias"); return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__29() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__29() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__28; +x_1 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__28; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__30() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__30() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__28; +x_1 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__28; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__29; +x_3 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__29; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -4753,7 +4753,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__31() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__31() { _start: { lean_object* x_1; @@ -4761,17 +4761,17 @@ x_1 = lean_mk_string("PrettyPrinter"); return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__32() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__32() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__31; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__31; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__33() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__33() { _start: { lean_object* x_1; @@ -4779,81 +4779,81 @@ x_1 = lean_mk_string("Formatter"); return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__34() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__34() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__32; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__33; +x_1 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__32; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__33; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__35() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__35() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__34; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__19; +x_1 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__34; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__19; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__36() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__36() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_termRegister__parser__alias_________closed__2; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__31; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__31; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__37() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__37() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__36; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__33; +x_1 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__36; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__33; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__38() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__38() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__37; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__19; +x_1 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__37; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__19; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__39() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__39() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__38; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__38; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__40() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__40() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__39; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__39; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__41() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__41() { _start: { lean_object* x_1; @@ -4861,17 +4861,17 @@ x_1 = lean_mk_string("formatter"); return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__42() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__42() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__41; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__41; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__43() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__43() { _start: { lean_object* x_1; @@ -4879,22 +4879,22 @@ x_1 = lean_mk_string("PrettyPrinter.Parenthesizer.registerAlias"); return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__44() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__44() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__43; +x_1 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__43; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__45() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__45() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__43; +x_1 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__43; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__44; +x_3 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__44; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -4902,7 +4902,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__46() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__46() { _start: { lean_object* x_1; @@ -4910,71 +4910,71 @@ x_1 = lean_mk_string("Parenthesizer"); return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__47() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__47() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__32; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__46; +x_1 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__32; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__46; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__48() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__48() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__47; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__19; +x_1 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__47; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__19; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__49() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__49() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__36; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__46; +x_1 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__36; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__46; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__50() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__50() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__49; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__19; +x_1 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__49; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__19; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__51() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__51() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__50; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__50; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__52() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__52() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__51; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__51; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__53() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__53() { _start: { lean_object* x_1; @@ -4982,17 +4982,17 @@ x_1 = lean_mk_string("parenthesizer"); return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__54() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__54() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__53; +x_2 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__53; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__55() { +static lean_object* _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__55() { _start: { lean_object* x_1; lean_object* x_2; @@ -5001,7 +5001,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -5037,7 +5037,7 @@ x_96 = lean_box(2); x_97 = l_Lean_Syntax_mkStrLit(x_95, x_96); lean_dec(x_95); lean_inc(x_2); -x_98 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_98 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); if (lean_obj_tag(x_12) == 0) { lean_object* x_99; lean_object* x_100; @@ -5076,64 +5076,64 @@ lean_inc(x_17); x_18 = lean_ctor_get(x_2, 1); lean_inc(x_18); lean_dec(x_2); -x_19 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__3; +x_19 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__3; lean_inc(x_15); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_15); lean_ctor_set(x_20, 1, x_19); -x_21 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__20; +x_21 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__20; lean_inc(x_17); lean_inc(x_18); x_22 = l_Lean_addMacroScope(x_18, x_21, x_17); -x_23 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__17; -x_24 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__23; +x_23 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__17; +x_24 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__23; lean_inc(x_15); x_25 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_25, 0, x_15); lean_ctor_set(x_25, 1, x_23); lean_ctor_set(x_25, 2, x_22); lean_ctor_set(x_25, 3, x_24); -x_26 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__24; +x_26 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__24; x_27 = lean_array_push(x_26, x_14); lean_inc(x_11); lean_inc(x_27); x_28 = lean_array_push(x_27, x_11); -x_29 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__8; +x_29 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__8; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); x_31 = lean_array_push(x_26, x_25); x_32 = lean_array_push(x_31, x_30); -x_33 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__14; +x_33 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__14; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); -x_35 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__25; +x_35 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__25; x_36 = lean_array_push(x_35, x_34); -x_37 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__12; +x_37 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__12; x_38 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_38, 0, x_37); lean_ctor_set(x_38, 1, x_36); x_39 = lean_array_push(x_26, x_38); -x_40 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__27; +x_40 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__27; x_41 = lean_array_push(x_39, x_40); -x_42 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__10; +x_42 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__10; x_43 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_43, 0, x_42); lean_ctor_set(x_43, 1, x_41); -x_44 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__35; +x_44 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__35; lean_inc(x_17); lean_inc(x_18); x_45 = l_Lean_addMacroScope(x_18, x_44, x_17); -x_46 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__30; -x_47 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__40; +x_46 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__30; +x_47 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__40; lean_inc(x_15); x_48 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_48, 0, x_15); lean_ctor_set(x_48, 1, x_46); lean_ctor_set(x_48, 2, x_45); lean_ctor_set(x_48, 3, x_47); -x_49 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__42; +x_49 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__42; x_50 = l_Lean_Name_append(x_13, x_49); lean_inc(x_11); x_51 = l_Lean_mkIdentFrom(x_11, x_50); @@ -5156,16 +5156,16 @@ x_60 = lean_array_push(x_59, x_40); x_61 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_61, 0, x_42); lean_ctor_set(x_61, 1, x_60); -x_62 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__48; +x_62 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__48; x_63 = l_Lean_addMacroScope(x_18, x_62, x_17); -x_64 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__45; -x_65 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__52; +x_64 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__45; +x_65 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__52; x_66 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_66, 0, x_15); lean_ctor_set(x_66, 1, x_64); lean_ctor_set(x_66, 2, x_63); lean_ctor_set(x_66, 3, x_65); -x_67 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__54; +x_67 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__54; x_68 = l_Lean_Name_append(x_13, x_67); lean_dec(x_13); x_69 = l_Lean_mkIdentFrom(x_11, x_68); @@ -5187,7 +5187,7 @@ x_78 = lean_array_push(x_77, x_40); x_79 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_79, 0, x_42); lean_ctor_set(x_79, 1, x_78); -x_80 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__55; +x_80 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__55; x_81 = lean_array_push(x_80, x_43); x_82 = lean_array_push(x_81, x_61); x_83 = lean_array_push(x_82, x_79); @@ -5195,13 +5195,13 @@ x_84 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_84, 0, x_29); lean_ctor_set(x_84, 1, x_83); x_85 = lean_array_push(x_35, x_84); -x_86 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__6; +x_86 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__6; x_87 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_87, 0, x_86); lean_ctor_set(x_87, 1, x_85); x_88 = lean_array_push(x_26, x_20); x_89 = lean_array_push(x_88, x_87); -x_90 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__4; +x_90 = l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__4; x_91 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_91, 0, x_90); lean_ctor_set(x_91, 1, x_89); @@ -5213,7 +5213,7 @@ return x_92; } } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__1() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__1() { _start: { lean_object* x_1; @@ -5221,17 +5221,17 @@ x_1 = lean_mk_string("group"); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__2() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__1; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__3() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__3() { _start: { lean_object* x_1; @@ -5239,17 +5239,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_group), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__4() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__3; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__3; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__5() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__5() { _start: { lean_object* x_1; @@ -5257,17 +5257,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_group_formatter), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__6() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__5; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__5; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__7() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__7() { _start: { lean_object* x_1; @@ -5275,17 +5275,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_group_parenthesizer), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__8() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__7; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__7; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__9() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__9() { _start: { lean_object* x_1; @@ -5293,17 +5293,17 @@ x_1 = lean_mk_string("ppHardSpace"); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__10() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__9; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__9; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__11() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__11() { _start: { lean_object* x_1; lean_object* x_2; @@ -5313,7 +5313,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__12() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__12() { _start: { lean_object* x_1; @@ -5321,17 +5321,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppHardSpace_formatter___boxed), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__13() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__13() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__12; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__12; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__14() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__14() { _start: { lean_object* x_1; @@ -5339,17 +5339,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppHardSpace_parenthesizer___boxed return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__15() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__15() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__14; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__14; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__16() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__16() { _start: { lean_object* x_1; @@ -5357,17 +5357,17 @@ x_1 = lean_mk_string("ppSpace"); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__17() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__16; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__16; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__18() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__18() { _start: { lean_object* x_1; @@ -5375,17 +5375,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppSpace_formatter___boxed), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__19() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__19() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__18; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__18; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__20() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__20() { _start: { lean_object* x_1; @@ -5393,17 +5393,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppSpace_parenthesizer___boxed), 4 return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__21() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__21() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__20; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__20; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__22() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__22() { _start: { lean_object* x_1; @@ -5411,17 +5411,17 @@ x_1 = lean_mk_string("ppLine"); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__23() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__22; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__22; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__24() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__24() { _start: { lean_object* x_1; @@ -5429,17 +5429,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppLine_formatter___boxed), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__25() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__25() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__24; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__24; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__26() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__26() { _start: { lean_object* x_1; @@ -5447,17 +5447,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppLine_parenthesizer___boxed), 4, return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__27() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__27() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__26; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__26; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__28() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__28() { _start: { lean_object* x_1; @@ -5465,17 +5465,17 @@ x_1 = lean_mk_string("ppGroup"); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__29() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__29() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__28; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__28; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__30() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__30() { _start: { lean_object* x_1; @@ -5483,17 +5483,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppGroup___boxed), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__31() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__31() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__30; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__30; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__32() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__32() { _start: { lean_object* x_1; @@ -5501,17 +5501,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppGroup_formatter), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__33() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__33() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__32; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__32; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__34() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__34() { _start: { lean_object* x_1; @@ -5519,17 +5519,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppGroup_parenthesizer), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__35() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__35() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__34; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__34; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__36() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__36() { _start: { lean_object* x_1; @@ -5537,17 +5537,17 @@ x_1 = lean_mk_string("ppIndent"); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__37() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__37() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__36; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__36; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__38() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__38() { _start: { lean_object* x_1; @@ -5555,17 +5555,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppIndent___boxed), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__39() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__39() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__38; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__38; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__40() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__40() { _start: { lean_object* x_1; @@ -5573,17 +5573,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppIndent_formatter), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__41() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__41() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__40; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__40; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__42() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__42() { _start: { lean_object* x_1; @@ -5591,17 +5591,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppIndent_parenthesizer), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__43() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__43() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__42; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__42; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__44() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__44() { _start: { lean_object* x_1; @@ -5609,17 +5609,17 @@ x_1 = lean_mk_string("ppDedent"); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__45() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__45() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__44; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__44; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__46() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__46() { _start: { lean_object* x_1; @@ -5627,17 +5627,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppDedent___boxed), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__47() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__47() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__46; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__46; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__48() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__48() { _start: { lean_object* x_1; @@ -5645,17 +5645,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppDedent_formatter), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__49() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__49() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__48; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__48; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__50() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__50() { _start: { lean_object* x_1; @@ -5663,23 +5663,23 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppDedent_parenthesizer), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__51() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__51() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__50; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__50; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Parser_parserAliasesRef; -x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__2; -x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__4; +x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__2; +x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__4; x_5 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_3, x_4, x_1); if (lean_obj_tag(x_5) == 0) { @@ -5688,7 +5688,7 @@ x_6 = lean_ctor_get(x_5, 1); lean_inc(x_6); lean_dec(x_5); x_7 = l_Lean_PrettyPrinter_Formatter_formatterAliasesRef; -x_8 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__6; +x_8 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__6; x_9 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_3, x_8, x_6); if (lean_obj_tag(x_9) == 0) { @@ -5697,7 +5697,7 @@ x_10 = lean_ctor_get(x_9, 1); lean_inc(x_10); lean_dec(x_9); x_11 = l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; -x_12 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__8; +x_12 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__8; x_13 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_3, x_12, x_10); if (lean_obj_tag(x_13) == 0) { @@ -5705,8 +5705,8 @@ lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; x_14 = lean_ctor_get(x_13, 1); lean_inc(x_14); lean_dec(x_13); -x_15 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__10; -x_16 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__11; +x_15 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__10; +x_16 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__11; x_17 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_15, x_16, x_14); if (lean_obj_tag(x_17) == 0) { @@ -5714,7 +5714,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_17, 1); lean_inc(x_18); lean_dec(x_17); -x_19 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__13; +x_19 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__13; x_20 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_15, x_19, x_18); if (lean_obj_tag(x_20) == 0) { @@ -5722,7 +5722,7 @@ lean_object* x_21; lean_object* x_22; lean_object* x_23; x_21 = lean_ctor_get(x_20, 1); lean_inc(x_21); lean_dec(x_20); -x_22 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__15; +x_22 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__15; x_23 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_15, x_22, x_21); if (lean_obj_tag(x_23) == 0) { @@ -5730,7 +5730,7 @@ lean_object* x_24; lean_object* x_25; lean_object* x_26; x_24 = lean_ctor_get(x_23, 1); lean_inc(x_24); lean_dec(x_23); -x_25 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__17; +x_25 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__17; x_26 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_25, x_16, x_24); if (lean_obj_tag(x_26) == 0) { @@ -5738,7 +5738,7 @@ lean_object* x_27; lean_object* x_28; lean_object* x_29; x_27 = lean_ctor_get(x_26, 1); lean_inc(x_27); lean_dec(x_26); -x_28 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__19; +x_28 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__19; x_29 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_25, x_28, x_27); if (lean_obj_tag(x_29) == 0) { @@ -5746,7 +5746,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_29, 1); lean_inc(x_30); lean_dec(x_29); -x_31 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__21; +x_31 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__21; x_32 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_25, x_31, x_30); if (lean_obj_tag(x_32) == 0) { @@ -5754,7 +5754,7 @@ lean_object* x_33; lean_object* x_34; lean_object* x_35; x_33 = lean_ctor_get(x_32, 1); lean_inc(x_33); lean_dec(x_32); -x_34 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__23; +x_34 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__23; x_35 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_34, x_16, x_33); if (lean_obj_tag(x_35) == 0) { @@ -5762,7 +5762,7 @@ lean_object* x_36; lean_object* x_37; lean_object* x_38; x_36 = lean_ctor_get(x_35, 1); lean_inc(x_36); lean_dec(x_35); -x_37 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__25; +x_37 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__25; x_38 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_34, x_37, x_36); if (lean_obj_tag(x_38) == 0) { @@ -5770,7 +5770,7 @@ lean_object* x_39; lean_object* x_40; lean_object* x_41; x_39 = lean_ctor_get(x_38, 1); lean_inc(x_39); lean_dec(x_38); -x_40 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__27; +x_40 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__27; x_41 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_34, x_40, x_39); if (lean_obj_tag(x_41) == 0) { @@ -5778,8 +5778,8 @@ lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; x_42 = lean_ctor_get(x_41, 1); lean_inc(x_42); lean_dec(x_41); -x_43 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__29; -x_44 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__31; +x_43 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__29; +x_44 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__31; x_45 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_43, x_44, x_42); if (lean_obj_tag(x_45) == 0) { @@ -5787,7 +5787,7 @@ lean_object* x_46; lean_object* x_47; lean_object* x_48; x_46 = lean_ctor_get(x_45, 1); lean_inc(x_46); lean_dec(x_45); -x_47 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__33; +x_47 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__33; x_48 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_43, x_47, x_46); if (lean_obj_tag(x_48) == 0) { @@ -5795,7 +5795,7 @@ lean_object* x_49; lean_object* x_50; lean_object* x_51; x_49 = lean_ctor_get(x_48, 1); lean_inc(x_49); lean_dec(x_48); -x_50 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__35; +x_50 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__35; x_51 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_43, x_50, x_49); if (lean_obj_tag(x_51) == 0) { @@ -5803,8 +5803,8 @@ lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; x_52 = lean_ctor_get(x_51, 1); lean_inc(x_52); lean_dec(x_51); -x_53 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__37; -x_54 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__39; +x_53 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__37; +x_54 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__39; x_55 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_53, x_54, x_52); if (lean_obj_tag(x_55) == 0) { @@ -5812,7 +5812,7 @@ lean_object* x_56; lean_object* x_57; lean_object* x_58; x_56 = lean_ctor_get(x_55, 1); lean_inc(x_56); lean_dec(x_55); -x_57 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__41; +x_57 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__41; x_58 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_53, x_57, x_56); if (lean_obj_tag(x_58) == 0) { @@ -5820,7 +5820,7 @@ lean_object* x_59; lean_object* x_60; lean_object* x_61; x_59 = lean_ctor_get(x_58, 1); lean_inc(x_59); lean_dec(x_58); -x_60 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__43; +x_60 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__43; x_61 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_53, x_60, x_59); if (lean_obj_tag(x_61) == 0) { @@ -5828,8 +5828,8 @@ lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; x_62 = lean_ctor_get(x_61, 1); lean_inc(x_62); lean_dec(x_61); -x_63 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__45; -x_64 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__47; +x_63 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__45; +x_64 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__47; x_65 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_63, x_64, x_62); if (lean_obj_tag(x_65) == 0) { @@ -5837,7 +5837,7 @@ lean_object* x_66; lean_object* x_67; lean_object* x_68; x_66 = lean_ctor_get(x_65, 1); lean_inc(x_66); lean_dec(x_65); -x_67 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__49; +x_67 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__49; x_68 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_63, x_67, x_66); if (lean_obj_tag(x_68) == 0) { @@ -5845,7 +5845,7 @@ lean_object* x_69; lean_object* x_70; lean_object* x_71; x_69 = lean_ctor_get(x_68, 1); lean_inc(x_69); lean_dec(x_68); -x_70 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__51; +x_70 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__51; x_71 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_63, x_70, x_69); return x_71; } @@ -6731,219 +6731,219 @@ l_Lean_Parser_termRegister__parser__alias_________closed__18 = _init_l_Lean_Pars lean_mark_persistent(l_Lean_Parser_termRegister__parser__alias_________closed__18); l_Lean_Parser_termRegister__parser__alias______ = _init_l_Lean_Parser_termRegister__parser__alias______(); lean_mark_persistent(l_Lean_Parser_termRegister__parser__alias______); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__1 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__1(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__1); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__2 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__2(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__2); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__3 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__3(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__3); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__4 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__4(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__4); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__5 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__5(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__5); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__6 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__6(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__6); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__7 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__7(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__7); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__8 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__8(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__8); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__9 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__9(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__9); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__10 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__10(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__10); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__11 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__11(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__11); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__12 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__12(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__12); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__13 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__13(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__13); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__14 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__14(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__14); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__15 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__15(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__15); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__16 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__16(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__16); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__17 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__17(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__17); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__18 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__18(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__18); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__19 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__19(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__19); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__20 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__20(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__20); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__21 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__21(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__21); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__22 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__22(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__22); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__23 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__23(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__23); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__24 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__24(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__24); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__25 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__25(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__25); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__26 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__26(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__26); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__27 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__27(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__27); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__28 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__28(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__28); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__29 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__29(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__29); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__30 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__30(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__30); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__31 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__31(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__31); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__32 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__32(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__32); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__33 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__33(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__33); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__34 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__34(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__34); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__35 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__35(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__35); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__36 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__36(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__36); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__37 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__37(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__37); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__38 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__38(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__38); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__39 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__39(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__39); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__40 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__40(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__40); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__41 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__41(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__41); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__42 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__42(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__42); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__43 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__43(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__43); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__44 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__44(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__44); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__45 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__45(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__45); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__46 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__46(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__46); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__47 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__47(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__47); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__48 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__48(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__48); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__49 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__49(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__49); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__50 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__50(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__50); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__51 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__51(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__51); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__52 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__52(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__52); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__53 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__53(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__53); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__54 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__54(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__54); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__55 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__55(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_290____closed__55); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__1(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__1); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__2(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__2); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__3(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__3); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__4 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__4(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__4); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__5 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__5(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__5); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__6 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__6(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__6); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__7 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__7(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__7); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__8 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__8(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__8); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__9 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__9(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__9); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__10 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__10(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__10); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__11 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__11(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__11); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__12 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__12(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__12); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__13 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__13(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__13); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__14 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__14(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__14); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__15 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__15(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__15); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__16 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__16(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__16); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__17 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__17(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__17); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__18 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__18(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__18); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__19 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__19(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__19); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__20 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__20(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__20); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__21 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__21(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__21); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__22 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__22(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__22); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__23 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__23(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__23); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__24 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__24(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__24); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__25 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__25(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__25); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__26 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__26(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__26); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__27 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__27(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__27); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__28 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__28(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__28); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__29 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__29(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__29); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__30 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__30(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__30); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__31 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__31(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__31); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__32 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__32(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__32); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__33 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__33(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__33); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__34 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__34(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__34); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__35 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__35(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__35); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__36 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__36(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__36); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__37 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__37(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__37); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__38 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__38(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__38); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__39 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__39(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__39); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__40 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__40(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__40); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__41 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__41(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__41); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__42 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__42(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__42); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__43 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__43(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__43); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__44 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__44(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__44); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__45 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__45(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__45); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__46 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__46(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__46); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__47 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__47(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__47); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__48 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__48(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__48); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__49 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__49(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__49); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__50 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__50(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__50); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__51 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__51(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548____closed__51); -res = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_548_(lean_io_mk_world()); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__1 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__1(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__1); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__2 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__2(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__2); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__3 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__3(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__3); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__4 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__4(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__4); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__5 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__5(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__5); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__6 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__6(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__6); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__7 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__7(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__7); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__8 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__8(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__8); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__9 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__9(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__9); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__10 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__10(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__10); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__11 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__11(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__11); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__12 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__12(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__12); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__13 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__13(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__13); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__14 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__14(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__14); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__15 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__15(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__15); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__16 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__16(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__16); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__17 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__17(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__17); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__18 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__18(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__18); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__19 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__19(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__19); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__20 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__20(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__20); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__21 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__21(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__21); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__22 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__22(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__22); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__23 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__23(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__23); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__24 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__24(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__24); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__25 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__25(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__25); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__26 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__26(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__26); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__27 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__27(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__27); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__28 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__28(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__28); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__29 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__29(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__29); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__30 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__30(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__30); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__31 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__31(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__31); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__32 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__32(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__32); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__33 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__33(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__33); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__34 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__34(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__34); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__35 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__35(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__35); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__36 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__36(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__36); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__37 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__37(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__37); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__38 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__38(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__38); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__39 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__39(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__39); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__40 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__40(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__40); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__41 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__41(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__41); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__42 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__42(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__42); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__43 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__43(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__43); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__44 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__44(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__44); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__45 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__45(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__45); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__46 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__46(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__46); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__47 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__47(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__47); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__48 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__48(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__48); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__49 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__49(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__49); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__50 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__50(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__50); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__51 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__51(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__51); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__52 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__52(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__52); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__53 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__53(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__53); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__54 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__54(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__54); +l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__55 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__55(); +lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias________1___closed__55); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__1(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__1); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__2(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__2); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__3(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__3); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__4 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__4(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__4); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__5 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__5(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__5); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__6 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__6(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__6); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__7 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__7(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__7); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__8 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__8(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__8); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__9 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__9(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__9); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__10 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__10(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__10); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__11 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__11(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__11); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__12 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__12(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__12); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__13 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__13(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__13); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__14 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__14(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__14); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__15 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__15(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__15); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__16 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__16(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__16); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__17 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__17(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__17); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__18 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__18(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__18); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__19 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__19(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__19); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__20 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__20(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__20); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__21 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__21(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__21); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__22 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__22(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__22); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__23 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__23(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__23); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__24 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__24(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__24); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__25 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__25(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__25); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__26 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__26(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__26); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__27 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__27(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__27); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__28 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__28(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__28); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__29 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__29(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__29); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__30 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__30(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__30); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__31 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__31(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__31); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__32 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__32(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__32); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__33 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__33(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__33); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__34 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__34(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__34); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__35 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__35(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__35); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__36 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__36(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__36); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__37 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__37(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__37); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__38 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__38(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__38); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__39 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__39(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__39); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__40 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__40(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__40); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__41 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__41(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__41); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__42 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__42(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__42); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__43 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__43(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__43); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__44 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__44(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__44); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__45 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__45(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__45); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__46 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__46(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__46); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__47 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__47(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__47); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__48 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__48(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__48); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__49 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__49(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__49); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__50 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__50(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__50); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__51 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__51(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549____closed__51); +res = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_549_(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 4e206824b2..7d0d5106a7 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c @@ -772,7 +772,6 @@ static lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppMatch___lambda__6__ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_delabDIte_delabBranch___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabNameMkStr___closed__2; static lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfScientific___lambda__1___closed__4; -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(size_t, size_t, lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_delabLetFun___lambda__1___closed__4; uint8_t l_Lean_BinderInfo_isExplicit(uint8_t); lean_object* l_Lean_Syntax_getKind(lean_object*); @@ -983,6 +982,7 @@ static lean_object* l_Lean_PrettyPrinter_Delaborator_delabConst___closed__7; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_delabBinders___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isProp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(size_t, size_t, lean_object*); lean_object* l_Lean_Meta_Match_Extension_getMatcherInfo_x3f(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppImplicit___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_delabDoElems___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -3868,7 +3868,7 @@ x_61 = lean_array_get_size(x_60); x_62 = lean_usize_of_nat(x_61); lean_dec(x_61); x_63 = x_60; -x_64 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7135____spec__3(x_62, x_57, x_63); +x_64 = l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules___xabterm_x25_x5b___x7c___x5d_xbb__1___spec__3(x_62, x_57, x_63); x_65 = x_64; x_66 = l_Lean_PrettyPrinter_Delaborator_delabConst___closed__13; x_67 = l_Lean_mkSepArray(x_65, x_66); diff --git a/stage0/stdlib/Lean/Util/Trace.c b/stage0/stdlib/Lean/Util/Trace.c index b55c7c8c2c..52d9bbf6f8 100644 --- a/stage0/stdlib/Lean/Util/Trace.c +++ b/stage0/stdlib/Lean/Util/Trace.c @@ -13,30 +13,30 @@ #ifdef __cplusplus extern "C" { #endif -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__14; -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__28; lean_object* l_Lean_KVMap_setBool(lean_object*, lean_object*, uint8_t); size_t lean_usize_add(size_t, size_t); static lean_object* l_Lean_addTrace_addTraceOptions___closed__2; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__25; LEAN_EXPORT lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); lean_object* lean_erase_macro_scopes(lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); +LEAN_EXPORT lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_printTraces___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_doElemTrace_x5b_____x5d_______closed__24; uint8_t l_Lean_MessageData_isNest(lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); static lean_object* l_Lean_doElemTrace_x5b_____x5d_______closed__7; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__26; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Util_Trace_0__Lean_withNestedTracesFinalizer___spec__4(lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_addTrace_addTraceOptions___closed__1; LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__7; LEAN_EXPORT lean_object* l_Lean_traceCtx___rarg___lambda__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); lean_object* lean_name_mk_string(lean_object*, lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); static lean_object* l_Lean_doElemTrace_x5b_____x5d_______closed__16; LEAN_EXPORT lean_object* l_Std_PersistentArray_forM___at_Lean_printTraces___spec__1___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__12; lean_object* l_Lean_MessageData_format(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_printTraces___spec__4___rarg___lambda__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_printTraces___rarg(lean_object*, lean_object*, lean_object*); @@ -44,17 +44,11 @@ static lean_object* l_Lean_registerTraceClass___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withNestedTracesFinalizer___rarg___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__13; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__5; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__7; LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___rarg___lambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_traceCtx___rarg___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__18; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__15; size_t lean_usize_sub(size_t, size_t); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__1; LEAN_EXPORT lean_object* l_Lean_addTrace_addTraceOptions(lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__24; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__33; LEAN_EXPORT lean_object* l_Lean_enableTracing___rarg___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_printTraces___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_trace___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); @@ -63,39 +57,41 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_printTraces___spec_ lean_object* l_Std_PersistentArray_append___rarg(lean_object*, lean_object*); static lean_object* l_Lean_TraceState_traces___default___closed__1; static lean_object* l_Std_PersistentArray_getAux___at___private_Lean_Util_Trace_0__Lean_TraceState_toFormat___spec__2___closed__1; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__15; uint8_t lean_name_eq(lean_object*, lean_object*); static lean_object* l_Lean_resetTraceState___rarg___closed__1; static lean_object* l_Lean_doElemTrace_x5b_____x5d_______closed__2; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Util_Trace_0__Lean_addNode___spec__1(size_t, size_t, lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__3; extern lean_object* l_Lean_MessageData_nil; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__42; LEAN_EXPORT lean_object* l_Std_PersistentArray_getAux___at___private_Lean_Util_Trace_0__Lean_TraceState_toFormat___spec__2___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_registerTraceClass___closed__3; LEAN_EXPORT lean_object* l_Lean_enableTracing___rarg(lean_object*, lean_object*, uint8_t); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__3; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__2; +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__14; LEAN_EXPORT lean_object* l_Lean_traceCtx___rarg___lambda__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); static lean_object* l_Lean_doElemTrace_x5b_____x5d_______closed__21; lean_object* lean_string_append(lean_object*, lean_object*); extern lean_object* l_Lean_interpolatedStrKind; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__28; LEAN_EXPORT lean_object* l_Lean_getTraces(lean_object*); static lean_object* l_Lean_doElemTrace_x5b_____x5d_______closed__13; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__30; static lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Util_Trace_0__Lean_withNestedTracesFinalizer___spec__5___closed__1; static lean_object* l_Lean_doElemTrace_x5b_____x5d_______closed__23; LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_printTraces___spec__5___rarg___lambda__1(size_t, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_printTraces___spec__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__30; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__13; size_t lean_usize_shift_right(size_t, size_t); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__22; static lean_object* l_Lean_instInhabitedTraceState___closed__5; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_printTraces___spec__3___rarg___lambda__1(size_t, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*); static lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___rarg___lambda__3___closed__1; lean_object* lean_string_utf8_byte_size(lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__29; static lean_object* l_Lean_addTrace_addTraceOptions___closed__4; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__22; LEAN_EXPORT lean_object* l_Lean_withNestedTraces___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_traceM___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PersistentArray_forM___at_Lean_printTraces___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -104,7 +100,10 @@ LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM__ extern lean_object* l_Lean_nameLitKind; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Util_Trace_0__Lean_withNestedTracesFinalizer___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withNestedTracesFinalizer___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__5; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__14; lean_object* lean_nat_add(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__36; LEAN_EXPORT lean_object* l_Std_PersistentArray_foldlM___at___private_Lean_Util_Trace_0__Lean_withNestedTracesFinalizer___spec__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_addTrace___rarg___lambda__1___closed__4; LEAN_EXPORT lean_object* l_Lean_instInhabitedTraceState; @@ -112,45 +111,46 @@ LEAN_EXPORT lean_object* l_Lean_traceCtx___rarg___lambda__7(lean_object*, lean_o LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM(lean_object*); LEAN_EXPORT lean_object* l_Lean_doElemTrace_x5b_____x5d____; LEAN_EXPORT lean_object* l_Lean_trace(lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__16; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__3; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Util_Trace_0__Lean_withNestedTracesFinalizer___spec__5(lean_object*, size_t, size_t, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Util_Trace_0__Lean_withNestedTracesFinalizer___spec__5___closed__2; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__37; LEAN_EXPORT lean_object* l_Lean_setTraceState(lean_object*); LEAN_EXPORT lean_object* l_Lean_withNestedTraces(lean_object*, lean_object*); static lean_object* l_Lean_doElemTrace_x5b_____x5d_______closed__12; LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addNode(lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__5; LEAN_EXPORT lean_object* l_Lean_traceM___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_printTraces___spec__3(lean_object*); LEAN_EXPORT lean_object* l_Lean_setTraceState___rarg___lambda__1(lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__5; static lean_object* l_Lean_doElemTrace_x5b_____x5d_______closed__26; LEAN_EXPORT lean_object* l_Lean_enableTracing___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_modifyTraces(lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__16; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__3; LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withNestedTracesFinalizer(lean_object*, lean_object*); lean_object* l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__7; LEAN_EXPORT lean_object* l_Nat_foldM_loop___at___private_Lean_Util_Trace_0__Lean_TraceState_toFormat___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__39; LEAN_EXPORT lean_object* l_Lean_addTrace___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__38; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__21; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__9; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__40; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__45; uint8_t l_Lean_KVMap_getBool(lean_object*, lean_object*, uint8_t); static lean_object* l_Lean_doElemTrace_x5b_____x5d_______closed__22; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__25; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__46; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__41; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__35; LEAN_EXPORT lean_object* l_Lean_enableTracing___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__10; static lean_object* l_Lean_registerTraceClass___closed__2; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__10; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__32; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__12; static lean_object* l_Lean_doElemTrace_x5b_____x5d_______closed__5; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__34; LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withNestedTracesFinalizer___boxed(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__43; static lean_object* l_Lean_doElemTrace_x5b_____x5d_______closed__14; uint8_t l_Lean_MessageData_isNil(lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__23; static lean_object* l_Lean_doElemTrace_x5b_____x5d_______closed__15; LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addNode___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_traceCtx___rarg___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -161,15 +161,16 @@ static lean_object* l_Lean_addTrace___rarg___lambda__1___closed__1; static lean_object* l_Lean_doElemTrace_x5b_____x5d_______closed__3; static lean_object* l_Lean_addTrace___rarg___lambda__1___closed__8; static lean_object* l_Lean_addTrace___rarg___lambda__1___closed__2; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__2; static lean_object* l_Lean_TraceState_traces___default___closed__2; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__16; lean_object* l_Lean_Syntax_getId(lean_object*); static lean_object* l_Lean_traceCtx___rarg___lambda__2___closed__1; lean_object* l___private_Init_Meta_0__Lean_quoteNameMk(lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__20; LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor(lean_object*); LEAN_EXPORT lean_object* l_Lean_traceCtx___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__15; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_printTraces___spec__4(lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__16; LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces(lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withNestedTraces___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -178,31 +179,33 @@ LEAN_EXPORT lean_object* l_Lean_resetTraceState___rarg(lean_object*); LEAN_EXPORT lean_object* l_Nat_foldM_loop___at___private_Lean_Util_Trace_0__Lean_TraceState_toFormat___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_shift_left(size_t, size_t); LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___rarg___lambda__1(lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__13; LEAN_EXPORT lean_object* l_Lean_traceCtx___rarg___lambda__4(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_KVMap_contains(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withNestedTraces___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__14; LEAN_EXPORT lean_object* l_Lean_withNestedTraces___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__1; LEAN_EXPORT lean_object* l_Lean_enableTracing(lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__26; LEAN_EXPORT lean_object* l_Std_PersistentArray_forMAux___at_Lean_printTraces___spec__2(lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_printTraces___spec__4___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__29; uint8_t l_Std_PersistentArray_isEmpty___rarg(lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__6; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_printTraces___spec__5(lean_object*); LEAN_EXPORT lean_object* l_Lean_addTrace___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_modifyTraces___rarg___lambda__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MonadTracer_trace___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_doElemTrace_x5b_____x5d_______closed__9; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__44; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_printTraces___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_addTrace___rarg___lambda__1___closed__6; static lean_object* l_Lean_doElemTrace_x5b_____x5d_______closed__17; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__6; LEAN_EXPORT lean_object* l_Lean_addTrace___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Lean_traceCtx___rarg___lambda__3___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_doElemTrace_x5b_____x5d_______closed__4; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__38; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__21; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___rarg(lean_object*, lean_object*); static lean_object* l_Lean_instInhabitedTraceElem___closed__1; @@ -210,21 +213,20 @@ LEAN_EXPORT lean_object* l_Lean_modifyTraces___rarg(lean_object*, lean_object*); static lean_object* l_Lean_doElemTrace_x5b_____x5d_______closed__8; size_t lean_usize_land(size_t, size_t); static lean_object* l_Lean_addTrace_addTraceOptions___closed__3; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__41; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__13; static lean_object* l_Lean_instInhabitedTraceState___closed__1; LEAN_EXPORT lean_object* l_Lean_traceCtx___rarg___lambda__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__46; static lean_object* l_Lean_instInhabitedTraceState___closed__2; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__4; static lean_object* l_Lean_doElemTrace_x5b_____x5d_______closed__20; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__45; lean_object* l_String_intercalate(lean_object*, lean_object*); static lean_object* l_Lean_addTrace___rarg___lambda__1___closed__3; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__40; static lean_object* l_Lean_doElemTrace_x5b_____x5d_______closed__10; lean_object* l_Std_PersistentArray_push___rarg(lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__19; LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___rarg___lambda__2(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__10; LEAN_EXPORT lean_object* l_Lean_resetTraceState(lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__19; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_printTraces___spec__3___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MonadTracer_trace(lean_object*); LEAN_EXPORT lean_object* l_Lean_setTraceState___rarg(lean_object*, lean_object*); @@ -233,18 +235,19 @@ LEAN_EXPORT lean_object* l_Lean_enableTracing___rarg___lambda__3___boxed(lean_ob LEAN_EXPORT lean_object* l_Lean_traceCtx(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_TraceState_traces___default; static lean_object* l_Lean_addTrace___rarg___lambda__1___closed__5; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__39; static lean_object* l_Lean_resetTraceState___rarg___lambda__1___closed__1; static lean_object* l___private_Lean_Util_Trace_0__Lean_addNode___rarg___lambda__1___closed__1; static lean_object* l_Lean_TraceState_traces___default___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addNode___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_instInhabitedTraceState___closed__4; LEAN_EXPORT lean_object* l_Lean_instMonadTrace___rarg(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__11; uint8_t lean_nat_dec_le(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_PersistentArray_get_x21___at___private_Lean_Util_Trace_0__Lean_TraceState_toFormat___spec__1(lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__33; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__9; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__34; lean_object* l_Std_PersistentArray_toArray___rarg(lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__12; +LEAN_EXPORT lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); LEAN_EXPORT lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlMAux___at___private_Lean_Util_Trace_0__Lean_withNestedTracesFinalizer___spec__3(lean_object*, lean_object*); @@ -252,44 +255,42 @@ LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addNode___rarg(lean LEAN_EXPORT lean_object* l_Lean_traceCtx___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_enableTracing___rarg___lambda__1___boxed(lean_object*, lean_object*); static lean_object* l_Lean_instInhabitedTraceElem___closed__2; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__11; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__31; LEAN_EXPORT lean_object* l_Lean_enableTracing___rarg___lambda__2(lean_object*, uint8_t, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__31; LEAN_EXPORT lean_object* l_Std_PersistentArray_forMAux___at_Lean_printTraces___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_register_option(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Util_Trace_0__Lean_withNestedTracesFinalizer___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__27; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__11; LEAN_EXPORT lean_object* l_Lean_printTraces(lean_object*); LEAN_EXPORT lean_object* l_Lean_checkTraceOption___boxed(lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__17; static lean_object* l_Lean_checkTraceOption___closed__1; LEAN_EXPORT lean_object* l_Lean_traceM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__4; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__8; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__17; LEAN_EXPORT lean_object* l_Lean_addTrace(lean_object*); LEAN_EXPORT lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlFromMAux___at___private_Lean_Util_Trace_0__Lean_withNestedTracesFinalizer___spec__2(lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_resetTraceState___rarg___lambda__1___boxed(lean_object*); lean_object* l_IO_println___at_Lean_instEval__1___spec__1(lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__36; static lean_object* l_Lean_addTrace___rarg___lambda__1___closed__7; LEAN_EXPORT lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlFromMAux___at___private_Lean_Util_Trace_0__Lean_withNestedTracesFinalizer___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_printTraces___spec__4___rarg___lambda__2(size_t, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__44; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__7; static lean_object* l_Lean_doElemTrace_x5b_____x5d_______closed__6; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__35; static size_t l_Lean_instInhabitedTraceState___closed__3; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__6; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Util_Trace_0__Lean_addNode___spec__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_printTraces___spec__5___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_resetTraceState___rarg___lambda__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_enableTracing___rarg___lambda__1(uint8_t, lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__18; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__15; static lean_object* l___private_Lean_Util_Trace_0__Lean_addNode___rarg___lambda__1___closed__2; static lean_object* l_Lean_doElemTrace_x5b_____x5d_______closed__25; LEAN_EXPORT lean_object* l_Lean_trace___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_traceCtx___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__9; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__8; LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265_(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__4; LEAN_EXPORT lean_object* l_Lean_addTrace___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_traceCtx___rarg___lambda__5___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_printTraces___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -298,14 +299,16 @@ lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instMonadTrace___rarg___lambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_setTraceState___rarg___lambda__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getTraces___rarg(lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__24; static lean_object* l_Lean_doElemTrace_x5b_____x5d_______closed__1; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__6; +LEAN_EXPORT lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__2; LEAN_EXPORT lean_object* l_Lean_trace___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_traceCtx___rarg___lambda__1(lean_object*); uint8_t l_List_isEmpty___rarg(lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__23; LEAN_EXPORT lean_object* l_Std_PersistentArray_getAux___at___private_Lean_Util_Trace_0__Lean_TraceState_toFormat___spec__2(lean_object*, size_t, size_t); -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_usize_to_nat(size_t); LEAN_EXPORT lean_object* l_Lean_instMonadTrace(lean_object*, lean_object*); lean_object* l_Std_instInhabitedPersistentArrayNode(lean_object*); @@ -313,24 +316,21 @@ LEAN_EXPORT lean_object* l_Lean_traceCtx___rarg___lambda__6___boxed(lean_object* static lean_object* l_Lean_traceCtx___rarg___lambda__6___closed__1; LEAN_EXPORT lean_object* l_Lean_getTraces___rarg___lambda__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_traceCtx___rarg___lambda__5(lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__11; LEAN_EXPORT lean_object* l_Lean_withNestedTraces___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__37; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__42; LEAN_EXPORT lean_object* l_Lean_traceCtx___rarg___lambda__3(lean_object*, uint8_t, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__1; -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__43; static lean_object* l_Lean_checkTraceOption___closed__2; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__4; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__27; size_t lean_usize_of_nat(lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__9; LEAN_EXPORT uint8_t l___private_Lean_Util_Trace_0__Lean_checkTraceOptionAux(lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__20; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__2; static lean_object* l_Lean_doElemTrace_x5b_____x5d_______closed__11; static lean_object* l_Lean_doElemTrace_x5b_____x5d_______closed__19; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__8; LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_TraceState_toFormat(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__32; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__10; -static lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__12; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__1; +static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__8; lean_object* l_Lean_Syntax_mkLit(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionAux___boxed(lean_object*, lean_object*); @@ -3261,7 +3261,7 @@ x_1 = l_Lean_doElemTrace_x5b_____x5d_______closed__26; return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__1() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -3269,7 +3269,7 @@ x_1 = lean_mk_string("Parser"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__2() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__2() { _start: { lean_object* x_1; @@ -3277,7 +3277,7 @@ x_1 = lean_mk_string("Term"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__3() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__3() { _start: { lean_object* x_1; @@ -3285,7 +3285,7 @@ x_1 = lean_mk_string("doNested"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__4() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__4() { _start: { lean_object* x_1; @@ -3293,7 +3293,7 @@ x_1 = lean_mk_string("do"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__5() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__5() { _start: { lean_object* x_1; @@ -3301,7 +3301,7 @@ x_1 = lean_mk_string("doSeqIndent"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__6() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__6() { _start: { lean_object* x_1; @@ -3309,17 +3309,17 @@ x_1 = lean_mk_string("null"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__7() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__6; +x_2 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__8() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__8() { _start: { lean_object* x_1; @@ -3327,7 +3327,7 @@ x_1 = lean_mk_string("doSeqItem"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__9() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__9() { _start: { lean_object* x_1; @@ -3335,7 +3335,7 @@ x_1 = lean_mk_string("doLet"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__10() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__10() { _start: { lean_object* x_1; @@ -3343,11 +3343,11 @@ x_1 = lean_mk_string("let"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__11() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__7; +x_1 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__7; x_2 = l_Lean_instInhabitedTraceState___closed__1; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -3355,7 +3355,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__12() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__12() { _start: { lean_object* x_1; @@ -3363,7 +3363,7 @@ x_1 = lean_mk_string("letDecl"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__13() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__13() { _start: { lean_object* x_1; @@ -3371,7 +3371,7 @@ x_1 = lean_mk_string("letIdDecl"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__14() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__14() { _start: { lean_object* x_1; @@ -3379,22 +3379,22 @@ x_1 = lean_mk_string("cls"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__15() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__15() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__14; +x_1 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__14; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__16() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__14; +x_1 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__14; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__15; +x_3 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__15; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -3402,17 +3402,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__17() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__14; +x_2 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__14; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__18() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__18() { _start: { lean_object* x_1; @@ -3420,7 +3420,7 @@ x_1 = lean_mk_string(":="); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__19() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__19() { _start: { lean_object* x_1; lean_object* x_2; @@ -3429,7 +3429,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__20() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__20() { _start: { lean_object* x_1; lean_object* x_2; @@ -3438,7 +3438,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__21() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__21() { _start: { lean_object* x_1; lean_object* x_2; @@ -3447,7 +3447,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__22() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__22() { _start: { lean_object* x_1; lean_object* x_2; @@ -3456,7 +3456,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__23() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__23() { _start: { lean_object* x_1; @@ -3464,7 +3464,7 @@ x_1 = lean_mk_string("doIf"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__24() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__24() { _start: { lean_object* x_1; @@ -3472,7 +3472,7 @@ x_1 = lean_mk_string("if"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__25() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__25() { _start: { lean_object* x_1; @@ -3480,7 +3480,7 @@ x_1 = lean_mk_string("doIfProp"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__26() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__26() { _start: { lean_object* x_1; @@ -3488,7 +3488,7 @@ x_1 = lean_mk_string("paren"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__27() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__27() { _start: { lean_object* x_1; @@ -3496,7 +3496,7 @@ x_1 = lean_mk_string("("); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__28() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__28() { _start: { lean_object* x_1; @@ -3504,7 +3504,7 @@ x_1 = lean_mk_string("liftMethod"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__29() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__29() { _start: { lean_object* x_1; @@ -3512,7 +3512,7 @@ x_1 = lean_mk_string("←"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__30() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__30() { _start: { lean_object* x_1; @@ -3520,7 +3520,7 @@ x_1 = lean_mk_string("app"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__31() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__31() { _start: { lean_object* x_1; @@ -3528,22 +3528,22 @@ x_1 = lean_mk_string("Lean.isTracingEnabledFor"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__32() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__32() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__31; +x_1 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__31; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__33() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__31; +x_1 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__31; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__32; +x_3 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__32; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -3551,7 +3551,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__34() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__34() { _start: { lean_object* x_1; @@ -3559,7 +3559,7 @@ x_1 = lean_mk_string("isTracingEnabledFor"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__35() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__35() { _start: { lean_object* x_1; @@ -3567,17 +3567,17 @@ x_1 = lean_mk_string(")"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__36() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__36() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__22; -x_2 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__11; +x_1 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__22; +x_2 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__11; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__37() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__37() { _start: { lean_object* x_1; @@ -3585,7 +3585,7 @@ x_1 = lean_mk_string("then"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__38() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__38() { _start: { lean_object* x_1; @@ -3593,7 +3593,7 @@ x_1 = lean_mk_string("doExpr"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__39() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__39() { _start: { lean_object* x_1; @@ -3601,22 +3601,22 @@ x_1 = lean_mk_string("Lean.addTrace"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__40() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__40() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__39; +x_1 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__39; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__41() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__41() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__39; +x_1 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__39; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__40; +x_3 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__40; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -3624,7 +3624,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__42() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__42() { _start: { lean_object* x_1; @@ -3632,7 +3632,7 @@ x_1 = lean_mk_string("addTrace"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__43() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__43() { _start: { lean_object* x_1; lean_object* x_2; @@ -3641,7 +3641,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__44() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__44() { _start: { lean_object* x_1; @@ -3649,7 +3649,7 @@ x_1 = lean_mk_string("quotedName"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__45() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__45() { _start: { lean_object* x_1; @@ -3657,7 +3657,7 @@ x_1 = lean_mk_string("."); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__46() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__46() { _start: { lean_object* x_1; @@ -3665,12 +3665,12 @@ x_1 = lean_mk_string("`"); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1(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; uint8_t x_7; lean_inc(x_4); -x_6 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_4, x_5); +x_6 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_4, x_5); x_7 = !lean_is_exclusive(x_6); if (x_7 == 0) { @@ -3681,52 +3681,52 @@ lean_inc(x_9); x_10 = lean_ctor_get(x_4, 1); lean_inc(x_10); lean_dec(x_4); -x_11 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__1; +x_11 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__1; lean_inc(x_1); x_12 = lean_name_mk_string(x_1, x_11); -x_13 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__2; +x_13 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__2; x_14 = lean_name_mk_string(x_12, x_13); -x_15 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__3; +x_15 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__3; lean_inc(x_14); x_16 = lean_name_mk_string(x_14, x_15); -x_17 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__4; +x_17 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__4; lean_inc(x_8); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_8); lean_ctor_set(x_18, 1, x_17); -x_19 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__5; +x_19 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__5; lean_inc(x_14); x_20 = lean_name_mk_string(x_14, x_19); -x_21 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__8; +x_21 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__8; lean_inc(x_14); x_22 = lean_name_mk_string(x_14, x_21); -x_23 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__9; +x_23 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__9; lean_inc(x_14); x_24 = lean_name_mk_string(x_14, x_23); -x_25 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__10; +x_25 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__10; lean_inc(x_8); x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_8); lean_ctor_set(x_26, 1, x_25); -x_27 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__12; +x_27 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__12; lean_inc(x_14); x_28 = lean_name_mk_string(x_14, x_27); -x_29 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__13; +x_29 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__13; lean_inc(x_14); x_30 = lean_name_mk_string(x_14, x_29); -x_31 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__17; +x_31 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__17; lean_inc(x_9); lean_inc(x_10); x_32 = l_Lean_addMacroScope(x_10, x_31, x_9); x_33 = lean_box(0); -x_34 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__16; +x_34 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__16; lean_inc(x_8); x_35 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_35, 0, x_8); lean_ctor_set(x_35, 1, x_34); lean_ctor_set(x_35, 2, x_32); lean_ctor_set(x_35, 3, x_33); -x_36 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__18; +x_36 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__18; lean_inc(x_8); x_37 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_37, 0, x_8); @@ -3735,47 +3735,47 @@ x_38 = l_Lean_Syntax_getId(x_2); x_39 = lean_erase_macro_scopes(x_38); lean_inc(x_39); x_40 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_33, x_39); -x_41 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__19; +x_41 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__19; lean_inc(x_35); x_42 = lean_array_push(x_41, x_35); -x_43 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__11; +x_43 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__11; x_44 = lean_array_push(x_42, x_43); x_45 = lean_array_push(x_44, x_43); x_46 = lean_array_push(x_45, x_37); -x_47 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__21; +x_47 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__21; x_48 = lean_array_push(x_47, x_26); x_49 = lean_array_push(x_48, x_43); -x_50 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__23; +x_50 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__23; lean_inc(x_14); x_51 = lean_name_mk_string(x_14, x_50); -x_52 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__24; +x_52 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__24; lean_inc(x_8); x_53 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_53, 0, x_8); lean_ctor_set(x_53, 1, x_52); -x_54 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__25; +x_54 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__25; lean_inc(x_14); x_55 = lean_name_mk_string(x_14, x_54); -x_56 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__26; +x_56 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__26; lean_inc(x_14); x_57 = lean_name_mk_string(x_14, x_56); -x_58 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__27; +x_58 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__27; lean_inc(x_8); x_59 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_59, 0, x_8); lean_ctor_set(x_59, 1, x_58); -x_60 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__28; +x_60 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__28; lean_inc(x_14); x_61 = lean_name_mk_string(x_14, x_60); -x_62 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__29; +x_62 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__29; lean_inc(x_8); x_63 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_63, 0, x_8); lean_ctor_set(x_63, 1, x_62); -x_64 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__30; +x_64 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__30; lean_inc(x_14); x_65 = lean_name_mk_string(x_14, x_64); -x_66 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__34; +x_66 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__34; lean_inc(x_1); x_67 = lean_name_mk_string(x_1, x_66); lean_inc(x_9); @@ -3788,21 +3788,21 @@ lean_ctor_set(x_69, 1, x_33); x_70 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_70, 0, x_69); lean_ctor_set(x_70, 1, x_33); -x_71 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__33; +x_71 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__33; lean_inc(x_8); x_72 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_72, 0, x_8); lean_ctor_set(x_72, 1, x_71); lean_ctor_set(x_72, 2, x_68); lean_ctor_set(x_72, 3, x_70); -x_73 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__20; +x_73 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__20; lean_inc(x_35); x_74 = lean_array_push(x_73, x_35); -x_75 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__7; +x_75 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__7; x_76 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_74); -x_77 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__22; +x_77 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__22; x_78 = lean_array_push(x_77, x_72); x_79 = lean_array_push(x_78, x_76); lean_inc(x_65); @@ -3819,7 +3819,7 @@ x_85 = lean_array_push(x_84, x_43); x_86 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_86, 0, x_75); lean_ctor_set(x_86, 1, x_85); -x_87 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__35; +x_87 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__35; lean_inc(x_8); x_88 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_88, 0, x_8); @@ -3830,20 +3830,20 @@ x_91 = lean_array_push(x_90, x_88); x_92 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_92, 0, x_57); lean_ctor_set(x_92, 1, x_91); -x_93 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__36; +x_93 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__36; x_94 = lean_array_push(x_93, x_92); x_95 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_95, 0, x_55); lean_ctor_set(x_95, 1, x_94); -x_96 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__37; +x_96 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__37; lean_inc(x_8); x_97 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_97, 0, x_8); lean_ctor_set(x_97, 1, x_96); -x_98 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__38; +x_98 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__38; lean_inc(x_14); x_99 = lean_name_mk_string(x_14, x_98); -x_100 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__42; +x_100 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__42; x_101 = lean_name_mk_string(x_1, x_100); lean_inc(x_101); x_102 = l_Lean_addMacroScope(x_10, x_101, x_9); @@ -3853,7 +3853,7 @@ lean_ctor_set(x_103, 1, x_33); x_104 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_104, 0, x_103); lean_ctor_set(x_104, 1, x_33); -x_105 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__41; +x_105 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__41; x_106 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_106, 0, x_8); lean_ctor_set(x_106, 1, x_105); @@ -3888,7 +3888,7 @@ lean_inc(x_20); x_121 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_121, 0, x_20); lean_ctor_set(x_121, 1, x_120); -x_122 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__43; +x_122 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__43; x_123 = lean_array_push(x_122, x_53); x_124 = lean_array_push(x_123, x_95); x_125 = lean_array_push(x_124, x_97); @@ -3950,11 +3950,11 @@ lean_dec(x_39); x_151 = lean_ctor_get(x_40, 0); lean_inc(x_151); lean_dec(x_40); -x_152 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__44; +x_152 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__44; x_153 = lean_name_mk_string(x_14, x_152); -x_154 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__45; +x_154 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__45; x_155 = l_String_intercalate(x_154, x_151); -x_156 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__46; +x_156 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__46; x_157 = lean_string_append(x_156, x_155); lean_dec(x_155); x_158 = l_Lean_nameLitKind; @@ -4011,52 +4011,52 @@ lean_inc(x_181); x_182 = lean_ctor_get(x_4, 1); lean_inc(x_182); lean_dec(x_4); -x_183 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__1; +x_183 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__1; lean_inc(x_1); x_184 = lean_name_mk_string(x_1, x_183); -x_185 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__2; +x_185 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__2; x_186 = lean_name_mk_string(x_184, x_185); -x_187 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__3; +x_187 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__3; lean_inc(x_186); x_188 = lean_name_mk_string(x_186, x_187); -x_189 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__4; +x_189 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__4; lean_inc(x_179); x_190 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_190, 0, x_179); lean_ctor_set(x_190, 1, x_189); -x_191 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__5; +x_191 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__5; lean_inc(x_186); x_192 = lean_name_mk_string(x_186, x_191); -x_193 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__8; +x_193 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__8; lean_inc(x_186); x_194 = lean_name_mk_string(x_186, x_193); -x_195 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__9; +x_195 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__9; lean_inc(x_186); x_196 = lean_name_mk_string(x_186, x_195); -x_197 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__10; +x_197 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__10; lean_inc(x_179); x_198 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_198, 0, x_179); lean_ctor_set(x_198, 1, x_197); -x_199 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__12; +x_199 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__12; lean_inc(x_186); x_200 = lean_name_mk_string(x_186, x_199); -x_201 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__13; +x_201 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__13; lean_inc(x_186); x_202 = lean_name_mk_string(x_186, x_201); -x_203 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__17; +x_203 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__17; lean_inc(x_181); lean_inc(x_182); x_204 = l_Lean_addMacroScope(x_182, x_203, x_181); x_205 = lean_box(0); -x_206 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__16; +x_206 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__16; lean_inc(x_179); x_207 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_207, 0, x_179); lean_ctor_set(x_207, 1, x_206); lean_ctor_set(x_207, 2, x_204); lean_ctor_set(x_207, 3, x_205); -x_208 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__18; +x_208 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__18; lean_inc(x_179); x_209 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_209, 0, x_179); @@ -4065,47 +4065,47 @@ x_210 = l_Lean_Syntax_getId(x_2); x_211 = lean_erase_macro_scopes(x_210); lean_inc(x_211); x_212 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_205, x_211); -x_213 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__19; +x_213 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__19; lean_inc(x_207); x_214 = lean_array_push(x_213, x_207); -x_215 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__11; +x_215 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__11; x_216 = lean_array_push(x_214, x_215); x_217 = lean_array_push(x_216, x_215); x_218 = lean_array_push(x_217, x_209); -x_219 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__21; +x_219 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__21; x_220 = lean_array_push(x_219, x_198); x_221 = lean_array_push(x_220, x_215); -x_222 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__23; +x_222 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__23; lean_inc(x_186); x_223 = lean_name_mk_string(x_186, x_222); -x_224 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__24; +x_224 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__24; lean_inc(x_179); x_225 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_225, 0, x_179); lean_ctor_set(x_225, 1, x_224); -x_226 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__25; +x_226 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__25; lean_inc(x_186); x_227 = lean_name_mk_string(x_186, x_226); -x_228 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__26; +x_228 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__26; lean_inc(x_186); x_229 = lean_name_mk_string(x_186, x_228); -x_230 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__27; +x_230 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__27; lean_inc(x_179); x_231 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_231, 0, x_179); lean_ctor_set(x_231, 1, x_230); -x_232 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__28; +x_232 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__28; lean_inc(x_186); x_233 = lean_name_mk_string(x_186, x_232); -x_234 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__29; +x_234 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__29; lean_inc(x_179); x_235 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_235, 0, x_179); lean_ctor_set(x_235, 1, x_234); -x_236 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__30; +x_236 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__30; lean_inc(x_186); x_237 = lean_name_mk_string(x_186, x_236); -x_238 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__34; +x_238 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__34; lean_inc(x_1); x_239 = lean_name_mk_string(x_1, x_238); lean_inc(x_181); @@ -4118,21 +4118,21 @@ lean_ctor_set(x_241, 1, x_205); x_242 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_242, 0, x_241); lean_ctor_set(x_242, 1, x_205); -x_243 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__33; +x_243 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__33; lean_inc(x_179); x_244 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_244, 0, x_179); lean_ctor_set(x_244, 1, x_243); lean_ctor_set(x_244, 2, x_240); lean_ctor_set(x_244, 3, x_242); -x_245 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__20; +x_245 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__20; lean_inc(x_207); x_246 = lean_array_push(x_245, x_207); -x_247 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__7; +x_247 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__7; x_248 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_248, 0, x_247); lean_ctor_set(x_248, 1, x_246); -x_249 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__22; +x_249 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__22; x_250 = lean_array_push(x_249, x_244); x_251 = lean_array_push(x_250, x_248); lean_inc(x_237); @@ -4149,7 +4149,7 @@ x_257 = lean_array_push(x_256, x_215); x_258 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_258, 0, x_247); lean_ctor_set(x_258, 1, x_257); -x_259 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__35; +x_259 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__35; lean_inc(x_179); x_260 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_260, 0, x_179); @@ -4160,20 +4160,20 @@ x_263 = lean_array_push(x_262, x_260); x_264 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_264, 0, x_229); lean_ctor_set(x_264, 1, x_263); -x_265 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__36; +x_265 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__36; x_266 = lean_array_push(x_265, x_264); x_267 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_267, 0, x_227); lean_ctor_set(x_267, 1, x_266); -x_268 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__37; +x_268 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__37; lean_inc(x_179); x_269 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_269, 0, x_179); lean_ctor_set(x_269, 1, x_268); -x_270 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__38; +x_270 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__38; lean_inc(x_186); x_271 = lean_name_mk_string(x_186, x_270); -x_272 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__42; +x_272 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__42; x_273 = lean_name_mk_string(x_1, x_272); lean_inc(x_273); x_274 = l_Lean_addMacroScope(x_182, x_273, x_181); @@ -4183,7 +4183,7 @@ lean_ctor_set(x_275, 1, x_205); x_276 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_276, 0, x_275); lean_ctor_set(x_276, 1, x_205); -x_277 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__41; +x_277 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__41; x_278 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_278, 0, x_179); lean_ctor_set(x_278, 1, x_277); @@ -4218,7 +4218,7 @@ lean_inc(x_192); x_293 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_293, 0, x_192); lean_ctor_set(x_293, 1, x_292); -x_294 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__43; +x_294 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__43; x_295 = lean_array_push(x_294, x_225); x_296 = lean_array_push(x_295, x_267); x_297 = lean_array_push(x_296, x_269); @@ -4282,11 +4282,11 @@ lean_dec(x_211); x_324 = lean_ctor_get(x_212, 0); lean_inc(x_324); lean_dec(x_212); -x_325 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__44; +x_325 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__44; x_326 = lean_name_mk_string(x_186, x_325); -x_327 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__45; +x_327 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__45; x_328 = l_String_intercalate(x_327, x_324); -x_329 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__46; +x_329 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__46; x_330 = lean_string_append(x_329, x_328); lean_dec(x_328); x_331 = l_Lean_nameLitKind; @@ -4334,37 +4334,37 @@ return x_352; } } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__1() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_doElemTrace_x5b_____x5d_______closed__2; -x_2 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__1; +x_2 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__2() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__1; -x_2 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__2; +x_1 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__1; +x_2 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__2; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__3() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__2; -x_2 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__26; +x_1 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__2; +x_2 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__26; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__4() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__4() { _start: { lean_object* x_1; @@ -4372,17 +4372,17 @@ x_1 = lean_mk_string("typeAscription"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__5() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__2; -x_2 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__4; +x_1 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__2; +x_2 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__6() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__6() { _start: { lean_object* x_1; @@ -4390,7 +4390,7 @@ x_1 = lean_mk_string(":"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__7() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__7() { _start: { lean_object* x_1; @@ -4398,22 +4398,22 @@ x_1 = lean_mk_string("MessageData"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__8() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__7; +x_1 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__7; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__9() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__7; +x_1 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__7; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__8; +x_3 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__8; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -4421,51 +4421,51 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__10() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__7; +x_2 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__11() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_doElemTrace_x5b_____x5d_______closed__2; -x_2 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__7; +x_2 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__12() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__11; +x_2 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__11; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__13() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__12; +x_2 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__12; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__14() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__14() { _start: { lean_object* x_1; @@ -4473,17 +4473,17 @@ x_1 = lean_mk_string("termM!_"); return x_1; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__15() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_doElemTrace_x5b_____x5d_______closed__2; -x_2 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__14; +x_2 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__14; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__16() { +static lean_object* _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__16() { _start: { lean_object* x_1; @@ -4491,7 +4491,7 @@ x_1 = lean_mk_string("m!"); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -4526,7 +4526,7 @@ if (x_14 == 0) { lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_inc(x_2); -x_15 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_15 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_16 = lean_ctor_get(x_15, 0); lean_inc(x_16); x_17 = lean_ctor_get(x_15, 1); @@ -4536,36 +4536,36 @@ x_18 = lean_ctor_get(x_2, 2); lean_inc(x_18); x_19 = lean_ctor_get(x_2, 1); lean_inc(x_19); -x_20 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__27; +x_20 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__27; lean_inc(x_16); x_21 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_21, 0, x_16); lean_ctor_set(x_21, 1, x_20); -x_22 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__6; +x_22 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__6; lean_inc(x_16); x_23 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_23, 0, x_16); lean_ctor_set(x_23, 1, x_22); -x_24 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__10; +x_24 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__10; x_25 = l_Lean_addMacroScope(x_19, x_24, x_18); -x_26 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__9; -x_27 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__13; +x_26 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__9; +x_27 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__13; lean_inc(x_16); x_28 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_28, 0, x_16); lean_ctor_set(x_28, 1, x_26); lean_ctor_set(x_28, 2, x_25); lean_ctor_set(x_28, 3, x_27); -x_29 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__22; +x_29 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__22; x_30 = lean_array_push(x_29, x_23); x_31 = lean_array_push(x_30, x_28); -x_32 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__5; +x_32 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__5; x_33 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_33, 0, x_32); lean_ctor_set(x_33, 1, x_31); -x_34 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__20; +x_34 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__20; x_35 = lean_array_push(x_34, x_33); -x_36 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__7; +x_36 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__7; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); @@ -4574,20 +4574,20 @@ x_39 = lean_array_push(x_38, x_37); x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_36); lean_ctor_set(x_40, 1, x_39); -x_41 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__35; +x_41 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__35; x_42 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_42, 0, x_16); lean_ctor_set(x_42, 1, x_41); -x_43 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__21; +x_43 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__21; x_44 = lean_array_push(x_43, x_21); x_45 = lean_array_push(x_44, x_40); x_46 = lean_array_push(x_45, x_42); -x_47 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__3; +x_47 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__3; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); x_49 = l_Lean_doElemTrace_x5b_____x5d_______closed__2; -x_50 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1(x_49, x_9, x_48, x_2, x_17); +x_50 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1(x_49, x_9, x_48, x_2, x_17); lean_dec(x_9); return x_50; } @@ -4595,36 +4595,36 @@ else { lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_inc(x_2); -x_51 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_73____spec__1(x_2, x_3); +x_51 = l_Lean_MonadRef_mkInfoFromRefPos___at___aux__Init__Notation______macroRules__precMax__1___spec__1(x_2, x_3); x_52 = lean_ctor_get(x_51, 0); lean_inc(x_52); x_53 = lean_ctor_get(x_51, 1); lean_inc(x_53); lean_dec(x_51); -x_54 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__16; +x_54 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__16; x_55 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_55, 0, x_52); lean_ctor_set(x_55, 1, x_54); -x_56 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__22; +x_56 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__22; x_57 = lean_array_push(x_56, x_55); x_58 = lean_array_push(x_57, x_11); -x_59 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__15; +x_59 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__15; x_60 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_60, 0, x_59); lean_ctor_set(x_60, 1, x_58); x_61 = l_Lean_doElemTrace_x5b_____x5d_______closed__2; -x_62 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1(x_61, x_9, x_60, x_2, x_53); +x_62 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1(x_61, x_9, x_60, x_2, x_53); lean_dec(x_9); return x_62; } } } } -LEAN_EXPORT lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___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_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_2); return x_6; } @@ -5519,130 +5519,130 @@ l_Lean_doElemTrace_x5b_____x5d_______closed__26 = _init_l_Lean_doElemTrace_x5b__ lean_mark_persistent(l_Lean_doElemTrace_x5b_____x5d_______closed__26); l_Lean_doElemTrace_x5b_____x5d____ = _init_l_Lean_doElemTrace_x5b_____x5d____(); lean_mark_persistent(l_Lean_doElemTrace_x5b_____x5d____); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__1 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__1(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__1); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__2 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__2(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__2); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__3 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__3(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__3); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__4 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__4(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__4); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__5 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__5(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__5); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__6 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__6(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__6); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__7 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__7(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__7); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__8 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__8(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__8); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__9 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__9(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__9); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__10 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__10(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__10); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__11 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__11(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__11); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__12 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__12(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__12); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__13 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__13(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__13); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__14 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__14(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__14); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__15 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__15(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__15); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__16 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__16(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__16); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__17 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__17(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__17); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__18 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__18(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__18); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__19 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__19(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__19); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__20 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__20(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__20); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__21 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__21(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__21); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__22 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__22(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__22); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__23 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__23(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__23); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__24 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__24(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__24); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__25 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__25(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__25); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__26 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__26(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__26); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__27 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__27(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__27); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__28 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__28(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__28); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__29 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__29(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__29); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__30 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__30(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__30); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__31 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__31(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__31); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__32 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__32(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__32); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__33 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__33(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__33); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__34 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__34(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__34); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__35 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__35(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__35); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__36 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__36(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__36); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__37 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__37(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__37); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__38 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__38(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__38); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__39 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__39(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__39); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__40 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__40(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__40); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__41 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__41(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__41); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__42 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__42(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__42); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__43 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__43(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__43); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__44 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__44(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__44); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__45 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__45(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__45); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__46 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__46(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____lambda__1___closed__46); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__1 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__1(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__1); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__2 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__2(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__2); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__3 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__3(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__3); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__4 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__4(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__4); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__5 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__5(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__5); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__6 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__6(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__6); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__7 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__7(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__7); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__8 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__8(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__8); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__9 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__9(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__9); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__10 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__10(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__10); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__11 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__11(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__11); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__12 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__12(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__12); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__13 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__13(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__13); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__14 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__14(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__14); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__15 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__15(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__15); -l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__16 = _init_l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__16(); -lean_mark_persistent(l_Lean_myMacro____x40_Lean_Util_Trace___hyg_1265____closed__16); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__1 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__1(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__1); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__2 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__2(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__2); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__3 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__3(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__3); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__4 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__4(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__4); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__5 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__5(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__5); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__6 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__6(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__6); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__7 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__7(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__7); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__8 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__8(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__8); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__9 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__9(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__9); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__10 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__10(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__10); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__11 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__11(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__11); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__12 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__12(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__12); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__13 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__13(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__13); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__14 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__14(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__14); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__15 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__15(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__15); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__16 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__16(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__16); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__17 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__17(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__17); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__18 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__18(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__18); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__19 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__19(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__19); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__20 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__20(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__20); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__21 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__21(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__21); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__22 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__22(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__22); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__23 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__23(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__23); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__24 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__24(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__24); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__25 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__25(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__25); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__26 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__26(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__26); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__27 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__27(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__27); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__28 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__28(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__28); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__29 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__29(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__29); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__30 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__30(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__30); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__31 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__31(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__31); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__32 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__32(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__32); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__33 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__33(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__33); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__34 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__34(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__34); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__35 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__35(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__35); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__36 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__36(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__36); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__37 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__37(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__37); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__38 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__38(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__38); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__39 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__39(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__39); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__40 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__40(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__40); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__41 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__41(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__41); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__42 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__42(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__42); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__43 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__43(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__43); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__44 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__44(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__44); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__45 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__45(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__45); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__46 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__46(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___lambda__1___closed__46); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__1 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__1(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__1); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__2 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__2(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__2); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__3 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__3(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__3); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__4 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__4(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__4); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__5 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__5(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__5); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__6 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__6(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__6); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__7 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__7(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__7); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__8 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__8(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__8); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__9 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__9(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__9); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__10 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__10(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__10); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__11 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__11(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__11); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__12 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__12(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__12); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__13 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__13(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__13); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__14 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__14(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__14); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__15 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__15(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__15); +l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__16 = _init_l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__16(); +lean_mark_persistent(l_Lean___aux__Lean__Util__Trace______macroRules__Lean___xabdoElemTrace_x5b_____x5d_____xbb__1___closed__16); l_Array_foldlMUnsafe_fold___at___private_Lean_Util_Trace_0__Lean_withNestedTracesFinalizer___spec__5___closed__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Util_Trace_0__Lean_withNestedTracesFinalizer___spec__5___closed__1(); lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Util_Trace_0__Lean_withNestedTracesFinalizer___spec__5___closed__1); l_Array_foldlMUnsafe_fold___at___private_Lean_Util_Trace_0__Lean_withNestedTracesFinalizer___spec__5___closed__2 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Util_Trace_0__Lean_withNestedTracesFinalizer___spec__5___closed__2();