From 11d3fb1a157a25e2664fcefaa314979c72208f50 Mon Sep 17 00:00:00 2001 From: Burak Bilge Yalcinkaya Date: Thu, 16 May 2024 15:52:31 +0300 Subject: [PATCH 1/5] rename `` => `` --- .../kmultiversx/kdist/mx-semantics/kasmer.md | 96 +++++++++---------- .../kdist/runtime/llvm-kasmer.json | 2 +- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/kmultiversx/src/kmultiversx/kdist/mx-semantics/kasmer.md b/kmultiversx/src/kmultiversx/kdist/mx-semantics/kasmer.md index e70c9d50..e8f1aff8 100644 --- a/kmultiversx/src/kmultiversx/kdist/mx-semantics/kasmer.md +++ b/kmultiversx/src/kmultiversx/kdist/mx-semantics/kasmer.md @@ -15,28 +15,28 @@ module KASMER ```k configuration - + .Map // file path -> wasm module AST false - + - syntax Bytes ::= "#foundryRunner" [macro] + syntax Bytes ::= "#kasmerRunner" [macro] // -------------------------------------------------------- - rule #foundryRunner + rule #kasmerRunner => b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00k-test________________" ``` -## Foundry Host Functions +## Kasmer Host Functions -Only the `#foundryRunner` account can execute these commands/host functions. +Only the `#kasmerRunner` account can execute these commands/host functions. ### Create account ```k rule [testapi-createAccount]: hostCall ( "env" , "createAccount" , [ i32 i64 i32 .ValTypes ] -> [ .ValTypes ] ) - => foundryCreateAccount( getBuffer(ADDR_HANDLE), NONCE, getBigInt(BALANCE_HANDLE)) + => kasmerCreateAccount( getBuffer(ADDR_HANDLE), NONCE, getBigInt(BALANCE_HANDLE)) ... @@ -44,12 +44,12 @@ Only the `#foundryRunner` account can execute these commands/host functions. 1 |-> NONCE 2 |-> BALANCE_HANDLE - #foundryRunner + #kasmerRunner - syntax InternalInstr ::= foundryCreateAccount(BytesResult, Int, IntResult) + syntax InternalInstr ::= kasmerCreateAccount(BytesResult, Int, IntResult) // ---------------------------------------------------------------------------- - rule [foundryCreateAccount]: - foundryCreateAccount(ADDR:Bytes, NONCE, BALANCE:Int) + rule [kasmerCreateAccount]: + kasmerCreateAccount(ADDR:Bytes, NONCE, BALANCE:Int) => #waitCommands ... @@ -58,8 +58,8 @@ Only the `#foundryRunner` account can execute these commands/host functions. ) ... - rule [foundryCreateAccount-err]: - foundryCreateAccount(_, _, _) + rule [kasmerCreateAccount-err]: + kasmerCreateAccount(_, _, _) => #throwException(ExecutionFailed, "Could not create account") ... @@ -72,7 +72,7 @@ Only the `#foundryRunner` account can execute these commands/host functions. ```k rule [testapi-registerNewAddress]: hostCall ( "env" , "registerNewAddress" , [ i32 i64 i32 .ValTypes ] -> [ .ValTypes ] ) - => foundryRegisterNewAddress( getBuffer(OWNER_HANDLE), NONCE, getBuffer(ADDR_HANDLE)) + => kasmerRegisterNewAddress( getBuffer(OWNER_HANDLE), NONCE, getBuffer(ADDR_HANDLE)) ... @@ -80,18 +80,18 @@ Only the `#foundryRunner` account can execute these commands/host functions. 1 |-> NONCE 2 |-> ADDR_HANDLE - #foundryRunner + #kasmerRunner - syntax InternalInstr ::= foundryRegisterNewAddress(BytesResult, Int, BytesResult) + syntax InternalInstr ::= kasmerRegisterNewAddress(BytesResult, Int, BytesResult) // ---------------------------------------------------------------------------- - rule [foundryRegisterNewAddress]: - foundryRegisterNewAddress(CREATOR:Bytes, NONCE, NEW:Bytes) + rule [kasmerRegisterNewAddress]: + kasmerRegisterNewAddress(CREATOR:Bytes, NONCE, NEW:Bytes) => .K ... NEWADDRESSES => NEWADDRESSES [tuple(CREATOR, NONCE) <- NEW] - rule [foundryRegisterNewAddress-err]: - foundryRegisterNewAddress(_, _, _) + rule [kasmerRegisterNewAddress-err]: + kasmerRegisterNewAddress(_, _, _) => #throwException(ExecutionFailed, "Could not register address") ... [owise] @@ -103,7 +103,7 @@ Only the `#foundryRunner` account can execute these commands/host functions. ```k rule [testapi-deployContract]: hostCall("env", "deployContract", [i32 i64 i32 i32 i32 i32 .ValTypes] -> [.ValTypes]) - => foundryDeployContract( + => kasmerDeployContract( getBuffer(OWNER_HANDLE), GAS_LIMIT, getBigInt(VALUE_HANDLE), @@ -121,12 +121,12 @@ Only the `#foundryRunner` account can execute these commands/host functions. 4 |-> ARGS_HANDLE 5 |-> RESULT_ADDR_HANDLE - #foundryRunner + #kasmerRunner - syntax InternalInstr ::= foundryDeployContract(BytesResult, Int, IntResult, BytesResult, ListBytesResult, Int) + syntax InternalInstr ::= kasmerDeployContract(BytesResult, Int, IntResult, BytesResult, ListBytesResult, Int) // ---------------------------------------------------------------------------- - rule [foundryDeployContract]: - foundryDeployContract(OWNER:Bytes, GAS, VALUE:Int, PATH:Bytes, ARGS:ListBytes, RESULT_ADDR_HANDLE) + rule [kasmerDeployContract]: + kasmerDeployContract(OWNER:Bytes, GAS, VALUE:Int, PATH:Bytes, ARGS:ListBytes, RESULT_ADDR_HANDLE) => #waitCommands ~> #setBuffer(RESULT_ADDR_HANDLE, NEWADDR) ... @@ -147,8 +147,8 @@ Only the `#foundryRunner` account can execute these commands/host functions. ... tuple(OWNER, NONCE) |-> NEWADDR:Bytes ... ... PATH |-> MODULE - rule [foundryDeployContract-err]: - foundryDeployContract(_, _, _, _, _, _) + rule [kasmerDeployContract-err]: + kasmerDeployContract(_, _, _, _, _, _) => #throwException(ExecutionFailed, "Could not deploy contract") ... @@ -173,14 +173,14 @@ Only the `#foundryRunner` account can execute these commands/host functions. 1 |-> KEY_HANDLE 2 |-> DEST_HANDLE - #foundryRunner + #kasmerRunner rule [testapi-setStorage]: hostCall ( "env" , "setStorage" , [ i32 i32 i32 .ValTypes ] -> [ .ValTypes ] ) => #getBuffer(VAL_HANDLE) ~> #getBuffer(KEY_HANDLE) ~> #getBuffer(ADDR_HANDLE) - ~> foundryWriteToStorage + ~> kasmerWriteToStorage ~> #dropBytes ~> #dropBytes ~> #dropBytes @@ -191,12 +191,12 @@ Only the `#foundryRunner` account can execute these commands/host functions. 1 |-> KEY_HANDLE 2 |-> VAL_HANDLE - #foundryRunner + #kasmerRunner - syntax InternalInstr ::= "foundryWriteToStorage" + syntax InternalInstr ::= "kasmerWriteToStorage" // ------------------------------------------------- - rule [foundryWriteToStorage-empty]: - foundryWriteToStorage => .K ... + rule [kasmerWriteToStorage-empty]: + kasmerWriteToStorage => .K ... ADDR : KEY : VALUE : _
ADDR
@@ -205,8 +205,8 @@ Only the `#foundryRunner` account can execute these commands/host functions.
requires VALUE ==K .Bytes - rule [foundryWriteToStorage]: - foundryWriteToStorage => .K ... + rule [kasmerWriteToStorage]: + kasmerWriteToStorage => .K ... ADDR : KEY : VALUE : _
ADDR
@@ -230,7 +230,7 @@ Only the `#foundryRunner` account can execute these commands/host functions. 0 |-> ADDR_HANDLE 1 |-> VAL_HANDLE - #foundryRunner + #kasmerRunner syntax InternalInstr ::= #setBalance(BytesResult, IntResult) // ------------------------------------------------------------ @@ -290,7 +290,7 @@ Only the `#foundryRunner` account can execute these commands/host functions. 1 |-> TOK_ID_HANDLE 2 |-> VAL_HANDLE - #foundryRunner + #kasmerRunner syntax InternalInstr ::= #setESDTBalance(IntResult) @@ -511,7 +511,7 @@ Only the `#foundryRunner` account can execute these commands/host functions. => S +String " -- setBlockTimestamp " +String Int2String(TIMESTAMP) - #foundryRunner + #kasmerRunner ``` @@ -526,13 +526,13 @@ Only the `#foundryRunner` account can execute these commands/host functions. 0 |-> P - syntax InternalInstr ::= #assert(Int) [symbol, klabel(foundryAssert)] + syntax InternalInstr ::= #assert(Int) [symbol, klabel(kasmerAssert)] // ------------------------------------------------------------------------- - rule [foundryAssert-true]: + rule [kasmerAssert-true]: #assert( I ) => .K ... requires I =/=Int 0 - rule [foundryAssert-false]: + rule [kasmerAssert-false]: #assert( I ) => #throwException(ExecutionFailed, "assertion failed") ... @@ -547,13 +547,13 @@ Only the `#foundryRunner` account can execute these commands/host functions. 0 |-> P - syntax IternalInstr ::= #assume(Int) [symbol, klabel(foundryAssume)] + syntax IternalInstr ::= #assume(Int) [symbol, klabel(kasmerAssume)] // ------------------------------------------------------------------------ - rule [foundryAssume-true]: + rule [kasmerAssume-true]: #assume(P) => .K ... requires P =/=Int 0 - rule [foundryAssume-false]: + rule [kasmerAssume-false]: #assume(P) => #endFoundryImmediately ... requires P ==Int 0 @@ -590,13 +590,13 @@ Only the `#foundryRunner` account can execute these commands/host functions. 0 |-> ADDR_HANDLE - #foundryRunner + #kasmerRunner syntax InternalInstr ::= #startPrank(BytesResult) // ------------------------------------------------- rule [startPrank]: #startPrank(ADDR:Bytes) => .K ... - #foundryRunner => ADDR + #kasmerRunner => ADDR false => true rule [startPrank-not-allowed]: @@ -606,7 +606,7 @@ Only the `#foundryRunner` account can execute these commands/host functions.
ADDR PRANK - requires ADDR =/=K #foundryRunner + requires ADDR =/=K #kasmerRunner orBool PRANK rule [startPrank-err]: @@ -620,7 +620,7 @@ Only the `#foundryRunner` account can execute these commands/host functions. => .K ...
.Map - _ => #foundryRunner + _ => #kasmerRunner true => false rule [testapi-stopPrank-err]: diff --git a/kmultiversx/src/kmultiversx/kdist/runtime/llvm-kasmer.json b/kmultiversx/src/kmultiversx/kdist/runtime/llvm-kasmer.json index bdabd2e4..cb9a5975 100644 --- a/kmultiversx/src/kmultiversx/kdist/runtime/llvm-kasmer.json +++ b/kmultiversx/src/kmultiversx/kdist/runtime/llvm-kasmer.json @@ -1 +1 @@ -{"format": "KAST", "term": {"args": [{"args": [{"args": [{"args": [{"arity": 0, "items": [], "node": "KSequence"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"arity": 0, "items": [], "node": "KSequence"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Bytes", "node": "KSort"}, "token": "b\"\""}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".String", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Bytes", "node": "KSort"}, "token": "b\"\""}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".ListBytes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "DirectCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Bytes", "node": "KSort"}, "token": "b\"\""}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 8, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"arity": 0, "items": [], "node": "KSequence"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".ValStack", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Int", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".ModuleInstCellMap", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".FuncDefCellMap", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".TabInstCellMap", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".MemInstCellMap", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".GlobalInstCellMap", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".ElemInstCellMap", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 10, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Bool", "node": "KSort"}, "token": "true"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 9, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".MapIntToInt", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".MapIntToBytes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"bytesStackList\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Int", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".ListAsyncCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".ListBytes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 12, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".VMOutput", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"node": "KToken", "sort": {"name": "Bytes", "node": "KSort"}, "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\xff\\xff\""}], "arity": 1, "label": {"name": "
", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".EsdtDataCellMap", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131244"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "29"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "33"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "loadOpLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131352"}], "arity": 3, "label": {"name": "aLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4294967295"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131352"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "15"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131085"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "23"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "35"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131108"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "33"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "11"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aReturn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "22"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131111"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "37"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "13"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "38"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "loadOpLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 3, "label": {"name": "aLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "loadOpLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131356"}], "arity": 3, "label": {"name": "aLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intGe_s", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "32"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "39"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "24"}], "arity": 3, "label": {"name": "aLoop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "23"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "33"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131336"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "11"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intSub", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "24"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShl", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "65280"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAnd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShl", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intOr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShr_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "65280"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAnd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "24"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShr_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intOr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intOr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "33"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "7"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "32"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4294967296"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intLt_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131278"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "13"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131208"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "14"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "34"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "25"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "32"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "9"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "32"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intEq", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131297"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131305"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "34"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "26"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "32"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "loadOpLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131356"}], "arity": 3, "label": {"name": "aLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intGt_s", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aReturn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "27"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131165"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "18"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "10"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intNe", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aReturn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "28"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131183"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "25"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "loadOpLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131356"}], "arity": 3, "label": {"name": "aLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intLt_s", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aReturn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "29"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131148"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "17"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "10"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131356"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intSub", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "33"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "9"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "9"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intGe_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "13"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aBr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "32"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intEq", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShl", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "loadOpLoad8_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 3, "label": {"name": "aLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intOr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "34"}], "arity": 3, "label": {"name": "aLoop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "33"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "256"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intGe_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "31"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "aWrap_i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aCvtOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aReturn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "30"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "50"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131222"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "22"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "35"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131208"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "14"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intSub", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "52"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "49"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12336"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore16", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "808464432"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intNe", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "52"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "49"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "255"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAnd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "aExtend_i32_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aCvtOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "56"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShl", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "255"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAnd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intEq", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131336"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aBr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "38"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intEq", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "loadOpLoad8_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 3, "label": {"name": "aLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "aEqz", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTestOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intSub", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aBr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "41"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "53"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "40"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "39"}], "arity": 3, "label": {"name": "aLoop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "37"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "loadOpLoad8_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 3, "label": {"name": "aLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore8", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "36"}], "arity": 3, "label": {"name": "aLoop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "35"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "35"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "14"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131260"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131321"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "14"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "35"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "63"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "55"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131336"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "14"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "15"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "46"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intSub", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "36"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "48"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "47"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "44"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "44"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "40"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "42"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131261"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "17"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "37"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "loadOpLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 3, "label": {"name": "aLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "45"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "51"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "aEqz", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTestOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "17"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intLt_s", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "33"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "18"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "38"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "38"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "30"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "39"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "38"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "33"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "19"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "39"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "20"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131072"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "13"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "35"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4294967271"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "21"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4294967271"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "22"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "33"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "23"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "24"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "38"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "7"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "38"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "38"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "9"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "30"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "33"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "25"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "26"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "24"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShl", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "65280"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAnd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShl", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intOr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShr_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "65280"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAnd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "24"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShr_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intOr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intOr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "24"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShl", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "65280"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAnd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShl", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intOr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShr_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "65280"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAnd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "24"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShr_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intOr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intOr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "9"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "9"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "7"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "27"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "43"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "28"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aReturn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "42"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "31"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intSub", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "36"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "48"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "47"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "44"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "44"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131261"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "17"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "37"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "loadOpLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 3, "label": {"name": "aLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "45"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "51"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "28"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intSub", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "36"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "48"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "47"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "44"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "44"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "42"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131261"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "17"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "37"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "loadOpLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 3, "label": {"name": "aLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "45"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "51"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "28"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intSub", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "15"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "48"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "47"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "41"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "43"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131291"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "37"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "loadOpLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 3, "label": {"name": "aLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "45"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "36"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "46"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "44"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "44"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "44"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "42"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "51"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "28"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "54"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "limitsMinMax", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "funcref", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aTableDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "limitsMin", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aMemoryDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "mutVar", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aGlobalType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131072"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aGlobalDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "mutConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aGlobalType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131360"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aGlobalDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "mutConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aGlobalType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131360"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aGlobalDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131072"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Bytes", "node": "KSort"}, "token": "b\"ESDTLocalMintargument decode error (): function does not accept ESDT paymenttoo few argumentstoo many argumentswrong number of argumentsinput too longstorage decode error: Invalid token ID-_token_properties_num_decimals_roles_addressbad array lengthnrIssuedTokens\\x00panic occurred\""}], "arity": 3, "label": {"name": "aDataDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131352"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Bytes", "node": "KSort"}, "token": "b\"\\x9c\\xff\\xff\\xff\""}], "arity": 3, "label": {"name": "aDataDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"signalError\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"mBufferNew\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"mBufferAppend\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"mBufferGetArgument\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"mBufferAppendBytes\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"managedSignalError\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"getNumESDTTransfers\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"bigIntGetUnsignedArgument\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"smallIntGetUnsignedArgument\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"mBufferGetLength\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"getNumArguments\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"mBufferSetBytes\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"mBufferStorageLoad\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"mBufferGetByteSlice\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "7"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"mBufferStorageStore\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"checkNoPayment\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"validateTokenIdentifier\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"bigIntSign\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"managedCaller\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"mBufferFromBigIntUnsigned\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"getGasLeft\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "9"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"managedSCAddress\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"bigIntNew\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "10"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"managedExecuteOnDestContext\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "11"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"cleanReturnData\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"bigIntSetInt64\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"bigIntAdd\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "13"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"managedMultiTransferESDTNFTExecute\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "14"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"mBufferFinish\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"memory\""}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aExportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"init\""}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "56"}], "arity": 2, "label": {"name": "aExportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"issue\""}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "57"}], "arity": 2, "label": {"name": "aExportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"issueNonFungible\""}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "58"}], "arity": 2, "label": {"name": "aExportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"registerMetaESDT\""}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "59"}], "arity": 2, "label": {"name": "aExportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"setSpecialRole\""}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "60"}], "arity": 2, "label": {"name": "aExportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"registerAndSetAllRoles\""}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "61"}], "arity": 2, "label": {"name": "aExportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"callBack\""}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "62"}], "arity": 2, "label": {"name": "aExportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"issueSemiFungible\""}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "58"}], "arity": 2, "label": {"name": "aExportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"__data_end\""}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aExportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"__heap_base\""}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aExportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "String", "node": "KSort"}, "token": "\"src/esdt-system-sc/output/esdt-system-sc.wasm\""}], "arity": 3, "label": {"name": "moduleMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 11, "label": {"name": "aModuleDecl", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Bytes", "node": "KSort"}, "token": "b\"\""}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".MapBytesToBytes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 7, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Bytes", "node": "KSort"}, "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\""}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 5, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Bytes", "node": "KSort"}, "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\""}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 5, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 8, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "String", "node": "KSort"}, "token": "\"\""}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 6, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Bool", "node": "KSort"}, "token": "false"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, "version": 3} \ No newline at end of file +{"format": "KAST", "term": {"args": [{"args": [{"args": [{"args": [{"arity": 0, "items": [], "node": "KSequence"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"arity": 0, "items": [], "node": "KSequence"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Bytes", "node": "KSort"}, "token": "b\"\""}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".String", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Bytes", "node": "KSort"}, "token": "b\"\""}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".ListBytes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "DirectCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Bytes", "node": "KSort"}, "token": "b\"\""}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 8, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"arity": 0, "items": [], "node": "KSequence"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".ValStack", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Int", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".ModuleInstCellMap", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".FuncDefCellMap", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".TabInstCellMap", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".MemInstCellMap", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".GlobalInstCellMap", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".ElemInstCellMap", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 10, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Bool", "node": "KSort"}, "token": "true"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 9, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".MapIntToInt", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".MapIntToBytes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"bytesStackList\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Int", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".ListAsyncCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".ListBytes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 12, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".VMOutput", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"node": "KToken", "sort": {"name": "Bytes", "node": "KSort"}, "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\xff\\xff\""}], "arity": 1, "label": {"name": "
", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".EsdtDataCellMap", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aFuncType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTypeDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131244"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "29"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "33"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "loadOpLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131352"}], "arity": 3, "label": {"name": "aLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4294967295"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131352"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "15"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131085"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "23"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "35"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131108"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "33"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "11"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aReturn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "22"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131111"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "37"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "13"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "38"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "loadOpLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 3, "label": {"name": "aLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "loadOpLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131356"}], "arity": 3, "label": {"name": "aLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intGe_s", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "32"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "39"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "24"}], "arity": 3, "label": {"name": "aLoop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "23"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "33"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131336"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "11"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intSub", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "24"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShl", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "65280"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAnd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShl", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intOr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShr_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "65280"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAnd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "24"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShr_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intOr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intOr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "33"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "7"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "32"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4294967296"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intLt_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131278"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "13"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131208"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "14"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "34"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "25"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "32"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "9"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "32"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intEq", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131297"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131305"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "34"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "26"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "32"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "loadOpLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131356"}], "arity": 3, "label": {"name": "aLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intGt_s", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aReturn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "27"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131165"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "18"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "10"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intNe", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aReturn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "28"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131183"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "25"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "loadOpLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131356"}], "arity": 3, "label": {"name": "aLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intLt_s", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aReturn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "29"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131148"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "17"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "10"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131356"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intSub", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "33"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "9"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "9"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intGe_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "13"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aBr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "32"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intEq", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShl", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "loadOpLoad8_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 3, "label": {"name": "aLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intOr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "34"}], "arity": 3, "label": {"name": "aLoop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "33"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "256"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intGe_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "31"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "aWrap_i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aCvtOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aReturn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "30"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "50"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131222"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "22"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "35"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131208"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "14"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intSub", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "52"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "49"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12336"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore16", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "808464432"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intNe", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "52"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "49"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "255"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAnd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "aExtend_i32_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aCvtOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "56"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShl", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "255"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAnd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intEq", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131336"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aBr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "38"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intEq", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "loadOpLoad8_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 3, "label": {"name": "aLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "aEqz", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTestOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intSub", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aBr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "41"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "53"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "40"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "39"}], "arity": 3, "label": {"name": "aLoop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "37"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "loadOpLoad8_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 3, "label": {"name": "aLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore8", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "36"}], "arity": 3, "label": {"name": "aLoop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "35"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "35"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "14"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131260"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131321"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "14"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "35"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "63"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "55"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131336"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "14"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "15"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "46"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intSub", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "36"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "48"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "47"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "44"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "44"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "40"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "42"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131261"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "17"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "37"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "loadOpLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 3, "label": {"name": "aLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "45"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "51"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "aEqz", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aTestOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "17"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intLt_s", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIRelOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aBr_if", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "33"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "18"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "38"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "38"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "30"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "39"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "38"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "33"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "19"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "39"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "20"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131072"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "13"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "35"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4294967271"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "21"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4294967271"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "22"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "33"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "23"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "24"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "38"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "7"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "38"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "38"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "9"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "30"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "33"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "25"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "26"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "24"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShl", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "65280"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAnd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShl", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intOr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShr_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "65280"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAnd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "24"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShr_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intOr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intOr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "24"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShl", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "65280"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAnd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShl", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intOr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShr_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "65280"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAnd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "24"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intShr_u", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intOr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intOr", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "9"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "9"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i64", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "7"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "27"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "43"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "28"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aReturn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "42"}], "arity": 3, "label": {"name": "aBlock", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "31"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intSub", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "36"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "48"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "47"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "44"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "44"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131261"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "17"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "37"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "loadOpLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 3, "label": {"name": "aLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "45"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "51"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "28"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intSub", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "36"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "48"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "47"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "44"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "44"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "42"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131261"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "17"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "37"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "loadOpLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 3, "label": {"name": "aLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "45"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "51"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "28"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intSub", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.tee", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "15"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "48"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "47"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "41"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "43"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "storeOpStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 3, "label": {"name": "aStore", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131291"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "37"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "loadOpLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 3, "label": {"name": "aLoad", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "45"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "16"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "intAdd", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aIBinOp", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aGlobal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "listValTypes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "36"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "46"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "44"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "44"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.set", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "44"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "42"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "aLocal.get", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "51"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "28"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aDrop", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}, {"args": [{"args": [], "arity": 0, "label": {"name": ".List{\"listValTypes\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "aVecType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "54"}], "arity": 1, "label": {"name": "aCall", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": "aUnreachable", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "funcMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 4, "label": {"name": "aFuncDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "limitsMinMax", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "funcref", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aTableDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 1, "label": {"name": "limitsMin", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aMemoryDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "mutVar", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aGlobalType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131072"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aGlobalDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "mutConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aGlobalType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131360"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aGlobalDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "mutConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "aGlobalType", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131360"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aGlobalDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131072"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Bytes", "node": "KSort"}, "token": "b\"ESDTLocalMintargument decode error (): function does not accept ESDT paymenttoo few argumentstoo many argumentswrong number of argumentsinput too longstorage decode error: Invalid token ID-_token_properties_num_decimals_roles_addressbad array lengthnrIssuedTokens\\x00panic occurred\""}], "arity": 3, "label": {"name": "aDataDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}, {"args": [{"args": [{"args": [], "arity": 0, "label": {"name": "i32", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "131352"}], "arity": 2, "label": {"name": "aIConst", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Instrs_Instr_Instrs", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Bytes", "node": "KSort"}, "token": "b\"\\x9c\\xff\\xff\\xff\""}], "arity": 3, "label": {"name": "aDataDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"signalError\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"mBufferNew\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"mBufferAppend\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"mBufferGetArgument\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"mBufferAppendBytes\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"managedSignalError\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"getNumESDTTransfers\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"bigIntGetUnsignedArgument\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"smallIntGetUnsignedArgument\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "5"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"mBufferGetLength\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"getNumArguments\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"mBufferSetBytes\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "3"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"mBufferStorageLoad\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"mBufferGetByteSlice\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "7"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"mBufferStorageStore\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"checkNoPayment\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"validateTokenIdentifier\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"bigIntSign\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"managedCaller\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"mBufferFromBigIntUnsigned\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"getGasLeft\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "9"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"managedSCAddress\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "4"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"bigIntNew\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "10"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"managedExecuteOnDestContext\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "11"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"cleanReturnData\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "8"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"bigIntSetInt64\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "12"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"bigIntAdd\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "13"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"managedMultiTransferESDTNFTExecute\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "14"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"env\""}, {"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"mBufferFinish\""}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "6"}], "arity": 2, "label": {"name": "aFuncDesc", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "aImportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"memory\""}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 2, "label": {"name": "aExportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"init\""}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "56"}], "arity": 2, "label": {"name": "aExportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"issue\""}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "57"}], "arity": 2, "label": {"name": "aExportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"issueNonFungible\""}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "58"}], "arity": 2, "label": {"name": "aExportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"registerMetaESDT\""}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "59"}], "arity": 2, "label": {"name": "aExportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"setSpecialRole\""}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "60"}], "arity": 2, "label": {"name": "aExportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"registerAndSetAllRoles\""}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "61"}], "arity": 2, "label": {"name": "aExportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"callBack\""}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "62"}], "arity": 2, "label": {"name": "aExportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"issueSemiFungible\""}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "58"}], "arity": 2, "label": {"name": "aExportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"__data_end\""}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "1"}], "arity": 2, "label": {"name": "aExportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "WasmStringToken", "node": "KSort"}, "token": "\"__heap_base\""}, {"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "2"}], "arity": 2, "label": {"name": "aExportDefn", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".List{\"listStmt\"}", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "___WASM-COMMON-SYNTAX_Defns_Defn_Defns", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Identifier", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"node": "KToken", "sort": {"name": "String", "node": "KSort"}, "token": "\"src/esdt-system-sc/output/esdt-system-sc.wasm\""}], "arity": 3, "label": {"name": "moduleMeta", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 11, "label": {"name": "aModuleDecl", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Bytes", "node": "KSort"}, "token": "b\"\""}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".MapBytesToBytes", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 7, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Bytes", "node": "KSort"}, "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\""}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 5, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Bytes", "node": "KSort"}, "token": "b\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\""}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 5, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 8, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "String", "node": "KSort"}, "token": "\"\""}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 6, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"args": [], "arity": 0, "label": {"name": ".Map", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Bool", "node": "KSort"}, "token": "false"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 3, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, {"args": [{"node": "KToken", "sort": {"name": "Int", "node": "KSort"}, "token": "0"}], "arity": 1, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}], "arity": 2, "label": {"name": "", "node": "KLabel", "params": []}, "node": "KApply", "variable": false}, "version": 3} \ No newline at end of file From 2c96f82cc6d86f3ca59faae48c12cb36150504c9 Mon Sep 17 00:00:00 2001 From: Burak Bilge Yalcinkaya Date: Thu, 16 May 2024 15:54:05 +0300 Subject: [PATCH 2/5] rename foundry.json => kasmer.json --- kmultiversx/src/kmultiversx/kasmer.py | 4 ++-- tests/contracts/foundrylike/{foundry.json => kasmer.json} | 0 .../test_adder_concrete/{foundry.json => kasmer.json} | 0 tests/contracts/test_adder_fail/{foundry.json => kasmer.json} | 0 .../contracts/test_adder_magic/{foundry.json => kasmer.json} | 0 .../test_adder_passing/{foundry.json => kasmer.json} | 0 tests/contracts/test_coindrip/{foundry.json => kasmer.json} | 0 .../test_crowdfunding-esdt/{foundry.json => kasmer.json} | 0 tests/contracts/test_multisig/{foundry.json => kasmer.json} | 0 tests/contracts/test_pair/{foundry.json => kasmer.json} | 0 tests/contracts/test_testapi/{foundry.json => kasmer.json} | 0 11 files changed, 2 insertions(+), 2 deletions(-) rename tests/contracts/foundrylike/{foundry.json => kasmer.json} (100%) rename tests/contracts/test_adder_concrete/{foundry.json => kasmer.json} (100%) rename tests/contracts/test_adder_fail/{foundry.json => kasmer.json} (100%) rename tests/contracts/test_adder_magic/{foundry.json => kasmer.json} (100%) rename tests/contracts/test_adder_passing/{foundry.json => kasmer.json} (100%) rename tests/contracts/test_coindrip/{foundry.json => kasmer.json} (100%) rename tests/contracts/test_crowdfunding-esdt/{foundry.json => kasmer.json} (100%) rename tests/contracts/test_multisig/{foundry.json => kasmer.json} (100%) rename tests/contracts/test_pair/{foundry.json => kasmer.json} (100%) rename tests/contracts/test_testapi/{foundry.json => kasmer.json} (100%) diff --git a/kmultiversx/src/kmultiversx/kasmer.py b/kmultiversx/src/kmultiversx/kasmer.py index d7cf151d..52881f07 100644 --- a/kmultiversx/src/kmultiversx/kasmer.py +++ b/kmultiversx/src/kmultiversx/kasmer.py @@ -42,7 +42,7 @@ from pyk.kast.outer import KClaim from pyk.ktool.krun import KPrint -INPUT_FILE_NAME = 'foundry.json' +INPUT_FILE_NAME = 'kasmer.json' TEST_PREFIX = 'test_' ROOT_ACCT_ADDR = 'address:k' @@ -477,7 +477,7 @@ def main() -> None: '--definition-dir', dest='definition_dir', type=dir_path, - help='Path to Foundry LLVM definition to use.', + help='Path to Kasmer LLVM definition to use.', ) parser.add_argument('-d', '--directory', required=True, help='Path to the test contract.') parser.add_argument( diff --git a/tests/contracts/foundrylike/foundry.json b/tests/contracts/foundrylike/kasmer.json similarity index 100% rename from tests/contracts/foundrylike/foundry.json rename to tests/contracts/foundrylike/kasmer.json diff --git a/tests/contracts/test_adder_concrete/foundry.json b/tests/contracts/test_adder_concrete/kasmer.json similarity index 100% rename from tests/contracts/test_adder_concrete/foundry.json rename to tests/contracts/test_adder_concrete/kasmer.json diff --git a/tests/contracts/test_adder_fail/foundry.json b/tests/contracts/test_adder_fail/kasmer.json similarity index 100% rename from tests/contracts/test_adder_fail/foundry.json rename to tests/contracts/test_adder_fail/kasmer.json diff --git a/tests/contracts/test_adder_magic/foundry.json b/tests/contracts/test_adder_magic/kasmer.json similarity index 100% rename from tests/contracts/test_adder_magic/foundry.json rename to tests/contracts/test_adder_magic/kasmer.json diff --git a/tests/contracts/test_adder_passing/foundry.json b/tests/contracts/test_adder_passing/kasmer.json similarity index 100% rename from tests/contracts/test_adder_passing/foundry.json rename to tests/contracts/test_adder_passing/kasmer.json diff --git a/tests/contracts/test_coindrip/foundry.json b/tests/contracts/test_coindrip/kasmer.json similarity index 100% rename from tests/contracts/test_coindrip/foundry.json rename to tests/contracts/test_coindrip/kasmer.json diff --git a/tests/contracts/test_crowdfunding-esdt/foundry.json b/tests/contracts/test_crowdfunding-esdt/kasmer.json similarity index 100% rename from tests/contracts/test_crowdfunding-esdt/foundry.json rename to tests/contracts/test_crowdfunding-esdt/kasmer.json diff --git a/tests/contracts/test_multisig/foundry.json b/tests/contracts/test_multisig/kasmer.json similarity index 100% rename from tests/contracts/test_multisig/foundry.json rename to tests/contracts/test_multisig/kasmer.json diff --git a/tests/contracts/test_pair/foundry.json b/tests/contracts/test_pair/kasmer.json similarity index 100% rename from tests/contracts/test_pair/foundry.json rename to tests/contracts/test_pair/kasmer.json diff --git a/tests/contracts/test_testapi/foundry.json b/tests/contracts/test_testapi/kasmer.json similarity index 100% rename from tests/contracts/test_testapi/foundry.json rename to tests/contracts/test_testapi/kasmer.json From d368c97f650bc3e59dac09ca80e58c7968cc589a Mon Sep 17 00:00:00 2001 From: devops Date: Fri, 24 May 2024 11:51:39 +0000 Subject: [PATCH 3/5] Set Version: 0.1.64 --- kmultiversx/pyproject.toml | 2 +- package/version | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kmultiversx/pyproject.toml b/kmultiversx/pyproject.toml index 7c5ac49d..8fac66db 100644 --- a/kmultiversx/pyproject.toml +++ b/kmultiversx/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "kmultiversx" -version = "0.1.63" +version = "0.1.64" description = "Python tools for Elrond semantics" authors = [ "Runtime Verification, Inc. ", diff --git a/package/version b/package/version index abf5cfcd..9810a3b1 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -0.1.63 +0.1.64 From b84f5df0496126bec804993e5e60ad9d6e794deb Mon Sep 17 00:00:00 2001 From: devops Date: Fri, 24 May 2024 16:22:54 +0000 Subject: [PATCH 4/5] Set Version: 0.1.66 --- kmultiversx/pyproject.toml | 2 +- package/version | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kmultiversx/pyproject.toml b/kmultiversx/pyproject.toml index 144b117d..cf380566 100644 --- a/kmultiversx/pyproject.toml +++ b/kmultiversx/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "kmultiversx" -version = "0.1.65" +version = "0.1.66" description = "Python tools for Elrond semantics" authors = [ "Runtime Verification, Inc. ", diff --git a/package/version b/package/version index c472eaf6..c24b7ee5 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -0.1.65 +0.1.66 From a5cb1b27d6be064a17688623450cd8fb4d204f5b Mon Sep 17 00:00:00 2001 From: devops Date: Tue, 28 May 2024 09:03:34 +0000 Subject: [PATCH 5/5] Set Version: 0.1.67 --- kmultiversx/pyproject.toml | 2 +- package/version | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kmultiversx/pyproject.toml b/kmultiversx/pyproject.toml index 8b234189..fb44f2fa 100644 --- a/kmultiversx/pyproject.toml +++ b/kmultiversx/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "kmultiversx" -version = "0.1.66" +version = "0.1.67" description = "Python tools for Elrond semantics" authors = [ "Runtime Verification, Inc. ", diff --git a/package/version b/package/version index c24b7ee5..5730f92c 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -0.1.66 +0.1.67