diff --git a/client/Client.js b/client/Client.js new file mode 100644 index 0000000..941335c --- /dev/null +++ b/client/Client.js @@ -0,0 +1,230 @@ +var data = []; + +$(document).ready(function () { + makeKey(); + listAccount(); +}); +async function listAccount() { + var data = await eos.getTableRows(1,"humblefirm42","humblefirm42","usrbalance","","","",100); + data=data.rows; + var i=0; + for(i=0;i"+data[i].user+""+data[i].balance+""+data[i].fee+""; +} +async function mint() { + var from = document.getElementsByName("Minter")[0].value; + var to = document.getElementsByName("MintTo")[0].value; + var amount = parseFloat(document.getElementsByName("MintAmount")[0].value).toFixed(4) + " " + symbol;; + var memo = document.getElementsByName("MintMemo")[0].value; + + var ret = httpGet(SAurl + "/mint?account=" + from + "&to=" + to + "&amount=" + amount + "&memo=" + memo + ""); + ret = JSON.parse(ret); + if (confirm("성공! 트랜잭션을 확인하시겠습니까? \r\n txid: " + ret.transaction_id)) + window.open("https://eoscanner.io/transaction/c9e6a950b670c52e5c05f84e92f472d9f58e6ec32de0c0058affa735afdd06b8", "_blank"); + +} +async function sendcoin() { + var from = document.getElementsByName("OwnerPrivateKey")[0].value; + var to = document.getElementsByName("sendPublicKey")[0].value; + var amount = parseFloat(document.getElementsByName("SendAmount")[0].value).toFixed(4) + " " + symbol;; + var memo = document.getElementsByName("SendMemo")[0].value; + + var ret = await transfer(from,to,amount,memo); + ret = JSON.parse(ret); + if (confirm("성공! 트랜잭션을 확인하시겠습니까? \r\n txid: " + ret.transaction_id)) + window.open("https://eoscanner.io/transaction/c9e6a950b670c52e5c05f84e92f472d9f58e6ec32de0c0058affa735afdd06b8", "_blank"); + +} +async function CheckBalance() { + var ret = await getCurrency("EOS8mg3inHz8SHdQGk3CFGWesDNNCDfYwoDLW9adqrKb2GoLNZ9Rc"); + + document.getElementsByName("ViewBalance")[0].value = ret.balance; + document.getElementsByName("ViewFee")[0].value = ret.fee; +} +//data = await getAllActions(); +//result = await filterActions(data,"EOS7jFs7j4Mbc3bq5Azc5QfzHn7YanzEgUpAo9WZFENbeCesrHtdm"); +async function filterActions(data, account) { + var i = 0; + var ret = []; + for (i = 0; i < data.length; i++) { + if (data[i].action_trace.act.data.key != account && data[i].action_trace.act.data.from != account) continue; + ret.push({ + txid: data[i].action_trace.trx_id, + time: data[i].block_time, + type: data[i].action_trace.act.name, + info: data[i].action_trace.act.data + }); + } + return ret; +} +async function getAllActions(contract, part = 100) { + var last = await eos.getActions(contract, -1, -1); + last = last.actions[0].account_action_seq; + if (last == undefined) return "Contract account undefined"; + var i = 0; + if (data != undefined && data.length > 0) i = data[data.length - 1].account_action_seq; + console.log(i + "" + last); + while (i < last) { + var offset = part; + if (i + part > last) offset = last - i; + var temp = await eos.getActions(contract, i, offset); + if (temp.time_limit_exceeded_error) { + part = parseInt(part / 2); + continue; + } + if (data.length > 0 && data[data.length - 1].account_action_seq == temp.actions[0].account_action_seq) data.length--; + data = data.concat(temp.actions); + i += part; + } + return data; +} + +function amount2hex(amount) { + var a = parseInt(parseFloat(amount.trim()).toFixed(4).replace(".", '')); + var b = [0, 0, 0, 0, 0, 0, 0, 0]; + var i = 0; + while (a > 0) { + b[i++] = a % 256 < 128 ? a % 256 : a % 256 - 256; + a = a >> 8; + } + return b; +} +async function getCurrency(key) { + recv = await getaccount(key); + now = parseInt(new Date().getTime() / 1000); //초 + lastclaim = parseInt(recv.lastclaim / 1000000); //초 + refund = (now - lastclaim) * parseFloat(recv.fee) / feeRstTime; + if (refund > parseInt(recv.fee)) refund = parseFloat(recv.fee); + account = { + balance: (parseFloat(recv.balance) + refund).toFixed(4), + fee: (parseFloat(recv.fee) - refund.toFixed(4)).toFixed(4) + }; + return account; +} +//var privateKey; +//var publicKey; +async function makeKey() { + // 수학적으로 안전한 프라이빗키를 하나 생성 + eosjs_ecc.randomKey().then(v1 => { + //생성된 프라이빗키에서 퍼블릭키 추출 + var key = eosjs_ecc.privateToPublic(v1); + //퍼블릭키의 앞 28비트만을 이용해 정수형으로 변환(테이블에서 멀티 인덱스의 인덱스값으로 사용) + var a = keytoid(key); + //keytoid의 중복 문제를 해결하기 위해 이미 사용중인 id인지 확인 + eos.getTableRows(1, contract, contract, account_tb, "id", a, a + 1, 1).then(v2 => { + //사용중이지 않으면 반환 + if (v2.rows[0] == undefined) { + console.log("THIS IS NEW PublicKey:\"" + key + "\" PrivateKey:\"" + v1 + "\"") + document.getElementsByName("myPublicKey")[0].value = key; + document.getElementsByName("myPrivateKey")[0].value = v1; + document.cookie = v1; + privateKey = v1; + publicKey = key; + makeKeyPublic(); + return key; + } else + //사용중이면 재귀호출(수학적으로 재귀호출이 3번 진행될 확률은 1/(1<<28)^3, 재귀호출로 인한 메모리 문제등의 발생 확률은 0에 수렴 + makeKey(); + }) + }) +} + +function makeKeyPublic() { + document.getElementsByName("myPublicKey")[0].value = eosjs_ecc.privateToPublic(document.getElementsByName("myPrivateKey")[0].value); + document.getElementsByName("myPublicKey")[0].value = eosjs_ecc.privateToPublic(document.getElementsByName("myPrivateKey")[0].value); + document.getElementsByName("MintTo")[0].value = document.getElementsByName("myPublicKey")[0].value; + document.getElementsByName("PublicKey")[0].value = document.getElementsByName("myPublicKey")[0].value; + document.getElementsByName("OwnerPrivateKey")[0].value = document.getElementsByName("myPrivateKey")[0].value; +} + +function nonce2hex(nonce) { + var a = nonce; + var b = [0, 0, 0, 0, 0, 0, 0, 0]; + var i = 0; + while (a > 0) { + b[i++] = a % 256 < 128 ? a % 256 : a % 256 - 256; + a = a >> 8; + } + return b; +} + +async function transfer(wif, to, amount, memo) { + var from = eosjs_ecc.privateToPublic(wif); + var nonce = await getaccount(from); + amount = parseFloat(amount).toFixed(4) + " " + symbol; + var sig = maketxdata(from, to, amount, memo, nonce.nonce, wif); + ret = await sendmoney(from, to, amount, memo, sig); + return ret; +} +async function sendmoney(from, to, amount, memo, sig) { + data = { + sender: from, + receiver: to, + amount: amount, + memo: memo, + sig: sig + } + return httpGet(SAurl + "/transfer?data=" + encodeURI(JSON.stringify(data))); +} + +function httpGet(theUrl) { + var xmlHttp = new XMLHttpRequest(); + xmlHttp.open("GET", theUrl, false); // false for synchronous request + xmlHttp.send(null); + return xmlHttp.responseText; +} +async function getaccount(key) { + var ret; + await eos.getTableRows(1, contract, contract, account_tb, "id", keytoid(key), keytoid(key) + 1, 1).then(v1 => ret = v1); + return ret.rows[0]; +} +//데이터와 논스값과 프라이빗키를 이용해 시그니쳐를 생성합니다 +function maketxdata(from, to, amount, memo, nonce, key) { + var fromD = base58.decode(from.replace("EOS", '')); + var toD = base58.decode(to.replace("EOS", '')); + var amountD = amount2hex(amount); + var nonceD = nonce2hex(nonce); + var a = [0], + b = [0], + c = [], + d = [], + e = []; + var i; + for (i = 0; i < 33; i++) { + a.push(fromD[i]); + b.push(toD[i]); + } + + for (i = 0; i < 8; i++) + c.push(amountD[i]); + + if (memo.length > 0) + d.push(memo.length * 2); + else + d.push(0); + for (i = 0; i < 255; i++) + d.push(memo[i] == undefined ? 0 : memo[i].charCodeAt()); + + for (i = 0; i < 8; i++) + e.push(nonceD[i]); + return eosjs_ecc.signHash(eosjs_ecc.sha256(a.concat(b).concat(c).concat(d).concat(e)), key); +} + +function keytoid(key) { + var x, i = 0, + ret = 0, + keyD = base58.decode(key.replace("EOS", '')); + + for (i = 0; i < 6; i++) { + var a = keyD[i]; + a = a < 0 ? 256 + a : a; + ret += a << (i * 4); + } + return ret; +} + +function keyto3word(key) { + var a = keytoid(key); + var ret = []; + +} \ No newline at end of file diff --git a/client/base58.js b/client/base58.js index 3f88b0b..6acde6b 100644 --- a/client/base58.js +++ b/client/base58.js @@ -1,187 +1,5 @@ /* based on https://github.com/jbenet/go-base58/blob/master/base58.go */ - -var data = []; - -$(document).ready(function () { - makeKey(); -}); - -//data = await getAllActions(); -//result = await filterActions(data,"EOS7jFs7j4Mbc3bq5Azc5QfzHn7YanzEgUpAo9WZFENbeCesrHtdm"); -async function filterActions(data, account) { - var i = 0; - var ret = []; - for (i = 0; i < data.length; i++) { - if (data[i].action_trace.act.data.key != account && data[i].action_trace.act.data.from != account) continue; - ret.push({ - txid: data[i].action_trace.trx_id, - time: data[i].block_time, - type: data[i].action_trace.act.name, - info: data[i].action_trace.act.data - }); - } - return ret; -} -async function getAllActions(contract, part = 100) { - var last = await eos.getActions(contract, -1, -1); - last = last.actions[0].account_action_seq; - if (last == undefined) return "Contract account undefined"; - var i = 0; - if (data != undefined && data.length > 0) i = data[data.length - 1].account_action_seq; - console.log(i + "" + last); - while (i < last) { - var offset = part; - if (i + part > last) offset = last - i; - var temp = await eos.getActions(contract, i, offset); - if (temp.time_limit_exceeded_error) { - part = parseInt(part / 2); - continue; - } - if (data.length > 0 && data[data.length - 1].account_action_seq == temp.actions[0].account_action_seq) data.length--; - data = data.concat(temp.actions); - i += part; - } - return data; -} - -function amount2hex(amount) { - var a = parseInt(parseFloat(amount.trim()).toFixed(4).replace(".", '')); - var b = [0, 0, 0, 0, 0, 0, 0, 0]; - var i = 0; - while (a > 0) { - b[i++] = a % 256 < 128 ? a % 256 : a % 256 - 256; - a = a >> 8; - } - return b; -} -async function getCurrency(key) { - recv = await getaccount(key); - now = parseInt(new Date().getTime() / 1000); //초 - lastclaim = parseInt(recv.lastclaim / 1000000); //초 - refund = (now - lastclaim) * parseFloat(recv.fee) / feeRstTime; - if (refund > parseInt(recv.fee)) refund = parseFloat(recv.fee); - account = { - balance: (parseFloat(recv.balance) + refund).toFixed(4), - fee: (parseFloat(recv.fee) - refund.toFixed(4)).toFixed(4) - }; - return account; -} -//var privateKey; -//var publicKey; -async function makeKey() { - // 수학적으로 안전한 프라이빗키를 하나 생성 - eosjs_ecc.randomKey().then(v1 => { - //생성된 프라이빗키에서 퍼블릭키 추출 - var key = eosjs_ecc.privateToPublic(v1); - //퍼블릭키의 앞 28비트만을 이용해 정수형으로 변환(테이블에서 멀티 인덱스의 인덱스값으로 사용) - var a = keytoid(key); - //keytoid의 중복 문제를 해결하기 위해 이미 사용중인 id인지 확인 - eos.getTableRows(1, contract, contract, account_tb, "id", a, a + 1, 1).then(v2 => { - //사용중이지 않으면 반환 - if (v2.rows[0] == undefined) { - console.log("THIS IS NEW PublicKey:\"" + key + "\" PrivateKey:\"" + v1 + "\"") - privateKey = v1; - publicKey = key; - return key; - } else - //사용중이면 재귀호출(수학적으로 재귀호출이 3번 진행될 확률은 1/(1<<28)^3, 재귀호출로 인한 메모리 문제등의 발생 확률은 0에 수렴 - makeKey(); - }) - }) -} - -function nonce2hex(nonce) { - var a = nonce; - var b = [0, 0, 0, 0, 0, 0, 0, 0]; - var i = 0; - while (a > 0) { - b[i++] = a % 256 < 128 ? a % 256 : a % 256 - 256; - a = a >> 8; - } - return b; -} - -async function transfer(wif, to, amount, memo) { - var from = eosjs_ecc.privateToPublic(wif); - var nonce = await getaccount(from); - amount = parseFloat(amount).toFixed(4) + " " + symbol; - var sig = maketxdata(from, to, amount, memo, nonce.nonce, wif); - ret = await sendmoney(from, to, amount, memo, sig); - return ret; -} -async function sendmoney(from, to, amount, memo, sig) { - data = { - sender: from, - receiver: to, - amount: amount, - memo: memo, - sig: sig - } - return httpGet(SAurl+"/transfer?data="+encodeURI(JSON.stringify(data))); -} -function httpGet(theUrl) -{ - var xmlHttp = new XMLHttpRequest(); - xmlHttp.open( "GET", theUrl, false ); // false for synchronous request - xmlHttp.send( null ); - return xmlHttp.responseText; -} -async function getaccount(key) { - var ret; - await eos.getTableRows(1, contract, contract, account_tb, "id", keytoid(key), keytoid(key) + 1, 1).then(v1 => ret = v1); - return ret.rows[0]; -} -//데이터와 논스값과 프라이빗키를 이용해 시그니쳐를 생성합니다 -function maketxdata(from, to, amount, memo, nonce, key) { - var fromD = base58.decode(from.replace("EOS", '')); - var toD = base58.decode(to.replace("EOS", '')); - var amountD = amount2hex(amount); - var nonceD = nonce2hex(nonce); - var a = [0], - b = [0], - c = [], - d = [], - e = []; - var i; - for (i = 0; i < 33; i++) { - a.push(fromD[i]); - b.push(toD[i]); - } - - for (i = 0; i < 8; i++) - c.push(amountD[i]); - - if (memo.length > 0) - d.push(memo.length * 2); - else - d.push(0); - for (i = 0; i < 255; i++) - d.push(memo[i] == undefined ? 0 : memo[i].charCodeAt()); - - for (i = 0; i < 8; i++) - e.push(nonceD[i]); - return eosjs_ecc.signHash(eosjs_ecc.sha256(a.concat(b).concat(c).concat(d).concat(e)), key); -} - -function keytoid(key) { - var x, i = 0, - ret = 0, - keyD = base58.decode(key.replace("EOS", '')); - - for (i = 0; i < 6; i++) { - var a = keyD[i]; - a = a < 0 ? 256 + a : a; - ret += a << (i * 4); - } - return ret; -} - -function keyto3word(key) { - var a = keytoid(key); - var ret = []; - -} var base58 = { alphabet: "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz", bigRadix: new BigInteger("58"), diff --git a/client/config.js b/client/config.js index 6fe25da..504553f 100644 --- a/client/config.js +++ b/client/config.js @@ -3,7 +3,6 @@ var SAurl = "http://127.0.0.1:9880" /*var eos = Eos({ httpEndpoint: 'https://api1.eosasia.one', chainId: 'aca376f206b8fc25a6ed44dbdc66547c36c6c33e3a119ffbeaef943642f0e906', - keyProvider: "privatekeyhere", // NEED CHANGE debug: true })*/ var eos = Eos({ diff --git a/client/index.html b/client/index.html index b339373..d42088d 100644 --- a/client/index.html +++ b/client/index.html @@ -1,4 +1,5 @@ - + + @@ -9,11 +10,86 @@ --> - + + - + + + + 1thefull EOS Test -see console - \ No newline at end of file + + +

My Imformation

+ + + + + +
+ 사용중인 프라이빗키는 따로 저장해주세요!
이후 사용중인 프라이빗키를 입력하면 계정을 불러올 수 있습니다! +
+
+

Mint Coin

+ + +
+ + +
+ + +
+ + + + +
+
+
+

Send Coin

+ + +
+ + +
+ + +
+ + + + +
+
+
+

View Money

+ + + +
+ + + + +
+

Account List

+ + + + + + + + + + + +
Public Keyfeebalance
+ + + diff --git a/contract/super.token.cpp b/contract/super.token.cpp index 0c3a49e..0dda114 100644 --- a/contract/super.token.cpp +++ b/contract/super.token.cpp @@ -21,8 +21,8 @@ class token : public contract void create(public_key owner, asset amount) { require_auth2(_self, N(active)); - eosio_assert(amount.symbol == string_to_symbol(4, "WDF"), - "only accepts WDF"); + eosio_assert(amount.symbol == string_to_symbol(4, "COF"), + "only accepts COF"); asset new_balance; usrbalance_table usrbalance(_self, _self); @@ -51,8 +51,8 @@ class token : public contract void change(public_key owner, asset amount) { require_auth2(_self, N(active)); - eosio_assert(amount.symbol == string_to_symbol(4, "WDF"), - "only accepts WDF"); + eosio_assert(amount.symbol == string_to_symbol(4, "COF"), + "only accepts COF"); asset new_balance; usrbalance_table usrbalance(_self, _self); @@ -86,8 +86,8 @@ class token : public contract void mint(string from, public_key key, asset amount, string memo) { require_auth2(_self, N(active)); - eosio_assert(amount.symbol == string_to_symbol(4, "WDF"), - "only accepts WDF"); + eosio_assert(amount.symbol == string_to_symbol(4, "COF"), + "only accepts COF"); bool newaccount = false; @@ -139,12 +139,11 @@ class token : public contract void transfer(public_key sender, public_key receiver, asset amount, string memo, signature sig) { - require_auth2(_self, N(pub)); - eosio_assert(amount.symbol == string_to_symbol(4, "WDF"), - "only accepts WDF"); - eosio_assert(amount.amount > 0, "must transfer positive quantity"); + eosio_assert(amount.symbol == string_to_symbol(4, "COF"), + "only accepts COF"); eosio_assert(memo.size() <= 256, "memo has more than 256 bytes"); eosio_assert(amount.is_valid(), "invalid quantity"); + eosio_assert(amount.amount > 0, "must transfer positive quantity"); usrbalance_table usrbalance(_self, _self); auto from = usrbalance.find(keytoid(sender)); diff --git a/contract/super.token/super.token.abi b/contract/super.token/super.token.abi new file mode 100644 index 0000000..c5d86ef --- /dev/null +++ b/contract/super.token/super.token.abi @@ -0,0 +1,252 @@ +{ + "____comment": "This file was generated by eosio-abigen. DO NOT EDIT - 2018-10-01T11:18:15", + "version": "eosio::abi/1.0", + "types": [], + "structs": [{ + "name": "globalstate", + "base": "", + "fields": [{ + "name": "id", + "type": "uint64" + },{ + "name": "total_issued", + "type": "asset" + },{ + "name": "total_volume", + "type": "asset" + },{ + "name": "transfer_volume", + "type": "asset" + },{ + "name": "transfer_count", + "type": "uint64" + },{ + "name": "avg_delay_transfer", + "type": "uint64" + } + ] + },{ + "name": "usrbalance", + "base": "", + "fields": [{ + "name": "id", + "type": "uint64" + },{ + "name": "user", + "type": "public_key" + },{ + "name": "nonce", + "type": "uint64" + },{ + "name": "balance", + "type": "asset" + },{ + "name": "fee", + "type": "asset" + },{ + "name": "lastclaim", + "type": "uint64" + } + ] + },{ + "name": "transfer_st", + "base": "", + "fields": [{ + "name": "sender", + "type": "public_key" + },{ + "name": "receiver", + "type": "public_key" + },{ + "name": "amount", + "type": "asset" + },{ + "name": "memo", + "type": "string" + },{ + "name": "nonce", + "type": "uint64" + } + ] + },{ + "name": "tablek", + "base": "", + "fields": [{ + "name": "id", + "type": "uint64" + },{ + "name": "digest", + "type": "checksum256" + },{ + "name": "pk", + "type": "public_key" + },{ + "name": "sig", + "type": "signature" + },{ + "name": "data", + "type": "transfer_st" + },{ + "name": "merge", + "type": "string" + } + ] + },{ + "name": "create", + "base": "", + "fields": [{ + "name": "owner", + "type": "public_key" + },{ + "name": "amount", + "type": "asset" + } + ] + },{ + "name": "change", + "base": "", + "fields": [{ + "name": "owner", + "type": "public_key" + },{ + "name": "amount", + "type": "asset" + } + ] + },{ + "name": "remove", + "base": "", + "fields": [{ + "name": "owner", + "type": "public_key" + } + ] + },{ + "name": "removest", + "base": "", + "fields": [] + },{ + "name": "mint", + "base": "", + "fields": [{ + "name": "from", + "type": "string" + },{ + "name": "key", + "type": "public_key" + },{ + "name": "amount", + "type": "asset" + },{ + "name": "memo", + "type": "string" + } + ] + },{ + "name": "transfer", + "base": "", + "fields": [{ + "name": "sender", + "type": "public_key" + },{ + "name": "receiver", + "type": "public_key" + },{ + "name": "amount", + "type": "asset" + },{ + "name": "memo", + "type": "string" + },{ + "name": "sig", + "type": "signature" + } + ] + },{ + "name": "verify", + "base": "", + "fields": [{ + "name": "sender", + "type": "public_key" + },{ + "name": "receiver", + "type": "public_key" + },{ + "name": "amount", + "type": "asset" + },{ + "name": "memo", + "type": "string" + },{ + "name": "sig", + "type": "signature" + } + ] + } + ], + "actions": [{ + "name": "create", + "type": "create", + "ricardian_contract": "" + },{ + "name": "change", + "type": "change", + "ricardian_contract": "" + },{ + "name": "remove", + "type": "remove", + "ricardian_contract": "" + },{ + "name": "removest", + "type": "removest", + "ricardian_contract": "" + },{ + "name": "mint", + "type": "mint", + "ricardian_contract": "" + },{ + "name": "transfer", + "type": "transfer", + "ricardian_contract": "" + },{ + "name": "verify", + "type": "verify", + "ricardian_contract": "" + } + ], + "tables": [{ + "name": "globalstate", + "index_type": "i64", + "key_names": [ + "id" + ], + "key_types": [ + "uint64" + ], + "type": "globalstate" + },{ + "name": "usrbalance", + "index_type": "i64", + "key_names": [ + "id" + ], + "key_types": [ + "uint64" + ], + "type": "usrbalance" + },{ + "name": "tablek", + "index_type": "i64", + "key_names": [ + "id" + ], + "key_types": [ + "uint64" + ], + "type": "tablek" + } + ], + "ricardian_clauses": [], + "error_messages": [], + "abi_extensions": [] +} \ No newline at end of file diff --git a/contract/super.token/super.token.wasm b/contract/super.token/super.token.wasm new file mode 100644 index 0000000..e195a07 Binary files /dev/null and b/contract/super.token/super.token.wasm differ diff --git a/contract/super.token/super.token.wast b/contract/super.token/super.token.wast new file mode 100644 index 0000000..52f9dbf --- /dev/null +++ b/contract/super.token/super.token.wast @@ -0,0 +1,42133 @@ +(module + (type $FUNCSIG$viii (func (param i32 i32 i32))) + (type $FUNCSIG$vii (func (param i32 i32))) + (type $FUNCSIG$vi (func (param i32))) + (type $FUNCSIG$viiiiii (func (param i32 i32 i32 i32 i32 i32))) + (type $FUNCSIG$viiiii (func (param i32 i32 i32 i32 i32))) + (type $FUNCSIG$v (func)) + (type $FUNCSIG$iiii (func (param i32 i32 i32) (result i32))) + (type $FUNCSIG$j (func (result i64))) + (type $FUNCSIG$vjj (func (param i64 i64))) + (type $FUNCSIG$ijjjj (func (param i64 i64 i64 i64) (result i32))) + (type $FUNCSIG$vijii (func (param i32 i64 i32 i32))) + (type $FUNCSIG$ijjjjii (func (param i64 i64 i64 i64 i32 i32) (result i32))) + (type $FUNCSIG$i (func (result i32))) + (type $FUNCSIG$iii (func (param i32 i32) (result i32))) + (type $FUNCSIG$vijjjj (func (param i32 i64 i64 i64 i64))) + (type $FUNCSIG$vid (func (param i32 f64))) + (type $FUNCSIG$ijj (func (param i64 i64) (result i32))) + (import "env" "__addtf3" (func $__addtf3 (param i32 i64 i64 i64 i64))) + (import "env" "__eqtf2" (func $__eqtf2 (param i64 i64 i64 i64) (result i32))) + (import "env" "__extenddftf2" (func $__extenddftf2 (param i32 f64))) + (import "env" "__fixtfsi" (func $__fixtfsi (param i64 i64) (result i32))) + (import "env" "__fixunstfsi" (func $__fixunstfsi (param i64 i64) (result i32))) + (import "env" "__floatsitf" (func $__floatsitf (param i32 i32))) + (import "env" "__floatunsitf" (func $__floatunsitf (param i32 i32))) + (import "env" "__multf3" (func $__multf3 (param i32 i64 i64 i64 i64))) + (import "env" "__netf2" (func $__netf2 (param i64 i64 i64 i64) (result i32))) + (import "env" "__subtf3" (func $__subtf3 (param i32 i64 i64 i64 i64))) + (import "env" "__unordtf2" (func $__unordtf2 (param i64 i64 i64 i64) (result i32))) + (import "env" "abort" (func $abort)) + (import "env" "action_data_size" (func $action_data_size (result i32))) + (import "env" "assert_recover_key" (func $assert_recover_key (param i32 i32 i32 i32 i32))) + (import "env" "current_receiver" (func $current_receiver (result i64))) + (import "env" "current_time" (func $current_time (result i64))) + (import "env" "db_find_i64" (func $db_find_i64 (param i64 i64 i64 i64) (result i32))) + (import "env" "db_get_i64" (func $db_get_i64 (param i32 i32 i32) (result i32))) + (import "env" "db_next_i64" (func $db_next_i64 (param i32 i32) (result i32))) + (import "env" "db_remove_i64" (func $db_remove_i64 (param i32))) + (import "env" "db_store_i64" (func $db_store_i64 (param i64 i64 i64 i64 i32 i32) (result i32))) + (import "env" "db_update_i64" (func $db_update_i64 (param i32 i64 i32 i32))) + (import "env" "eosio_assert" (func $eosio_assert (param i32 i32))) + (import "env" "memcpy" (func $memcpy (param i32 i32 i32) (result i32))) + (import "env" "memmove" (func $memmove (param i32 i32 i32) (result i32))) + (import "env" "memset" (func $memset (param i32 i32 i32) (result i32))) + (import "env" "prints" (func $prints (param i32))) + (import "env" "read_action_data" (func $read_action_data (param i32 i32) (result i32))) + (import "env" "require_auth2" (func $require_auth2 (param i64 i64))) + (import "env" "sha256" (func $sha256 (param i32 i32 i32))) + (table 9 9 anyfunc) + (elem (i32.const 0) $__wasm_nullptr $_ZN5token6verifyE10public_keyS0_N5eosio5assetENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE9signature $_ZN5token8removestEv $_ZN5token6createE10public_keyN5eosio5assetE $_ZN5token8transferE10public_keyS0_N5eosio5assetENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE9signature $_ZN5token4mintENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE10public_keyN5eosio5assetES6_ $_ZN5token6removeE10public_key $_ZN5token6changeE10public_keyN5eosio5assetE $sn_write) + (memory $0 1) + (data (i32.const 4) "\00q\00\00") + (data (i32.const 16) "onerror\00") + (data (i32.const 32) "eosio\00") + (data (i32.const 48) "onerror action\'s are only valid from the \"eosio\" system account\00") + (data (i32.const 112) "object passed to iterator_to is not in multi_index\00") + (data (i32.const 176) "invalid symbol name\00") + (data (i32.const 208) "cannot pass end iterator to modify\00") + (data (i32.const 256) "magnitude of asset amount must be less than 2^62\00") + (data (i32.const 320) "object passed to modify is not in multi_index\00") + (data (i32.const 368) "cannot modify objects in table of another contract\00") + (data (i32.const 432) "updater cannot change primary key when modifying an object\00") + (data (i32.const 496) "write\00") + (data (i32.const 512) "error reading iterator\00") + (data (i32.const 544) "read\00") + (data (i32.const 560) "get\00") + (data (i32.const 576) "cannot create objects in table of another contract\00") + (data (i32.const 640) "memo has more than 256 bytes\00") + (data (i32.const 672) "invalid quantity\00") + (data (i32.const 704) "must transfer positive quantity\00") + (data (i32.const 736) "complete!\00") + (data (i32.const 752) "no account found\00") + (data (i32.const 784) "overdrawn balance\00") + (data (i32.const 816) "not enough balance for transfer fee\00") + (data (i32.const 864) "only accepts COF\00") + (data (i32.const 896) "attempt to subtract asset with different symbol\00") + (data (i32.const 944) "subtraction underflow\00") + (data (i32.const 976) "subtraction overflow\00") + (data (i32.const 1008) "Too much transfer, Please try again in a few hours\00") + (data (i32.const 1072) "active\00") + (data (i32.const 1088) "attempt to add asset with different symbol\00") + (data (i32.const 1136) "addition underflow\00") + (data (i32.const 1168) "addition overflow\00") + (data (i32.const 1200) "cannot pass end iterator to erase\00") + (data (i32.const 1248) "cannot increment end iterator\00") + (data (i32.const 1280) "object passed to erase is not in multi_index\00") + (data (i32.const 1328) "cannot erase objects in table of another contract\00") + (data (i32.const 1392) "attempt to remove object that was not in multi_index\00") + (data (i32.const 1456) "Account doesn\'t exist\00") + (data (i32.const 9888) "malloc_from_freed was designed to only be called after _heap was completely allocated\00") + (data (i32.const 9984) "%d\00") + (data (i32.const 10000) "\19\00\n\00\19\19\19\00\00\00\00\05\00\00\00\00\00\00\t\00\00\00\00\0b\00\00\00\00\00\00\00\00\19\00\11\n\19\19\19\03\n\07\00\01\1b\t\0b\18\00\00\t\06\0b\00\00\0b\00\06\19\00\00\00\19\19\19\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\0e\00\00\00\00\00\00\00\00\19\00\n\0d\19\19\19\00\0d\00\00\02\00\t\0e\00\00\00\t\00\0e\00\00\0e\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\0c\00\00\00\00\00\00\00\00\00\00\00\13\00\00\00\00\13\00\00\00\00\t\0c\00\00\00\00\00\0c\00\00\0c\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\10\00\00\00\00\00\00\00\00\00\00\00\0f\00\00\00\04\0f\00\00\00\00\t\10\00\00\00\00\00\10\00\00\10\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\12\00\00\00\00\00\00\00\00\00\00\00\11\00\00\00\00\11\00\00\00\00\t\12\00\00\00\00\00\12\00\00\12\00\00\1a\00\00\00\1a\1a\1a\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\1a\00\00\00\1a\1a\1a\00\00\00\00\00\00\t\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\14\00\00\00\00\00\00\00\00\00\00\00\17\00\00\00\00\17\00\00\00\00\t\14\00\00\00\00\00\14\00\00\14\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\16\00\00\00\00\00\00\00\00\00\00\00\15\00\00\00\00\15\00\00\00\00\t\16\00\00\00\00\00\16\00\00\16\00\00") + (data (i32.const 10464) "0123456789ABCDEF") + (data (i32.const 10480) "-+ 0X0x\00") + (data (i32.const 10496) "(null)\00") + (data (i32.const 10512) "-0X+0X 0X-0x+0x 0x\00") + (data (i32.const 10544) "inf\00") + (data (i32.const 10560) "INF\00") + (data (i32.const 10576) "nan\00") + (data (i32.const 10592) "NAN\00") + (data (i32.const 10608) ".\00") + (data (i32.const 10624) "T!\"\19\0d\01\02\03\11K\1c\0c\10\04\0b\1d\12\1e\'hnopqb \05\06\0f\13\14\15\1a\08\16\07($\17\18\t\n\0e\1b\1f%#\83\82}&*+<=>?CGJMXYZ[\\]^_`acdefgijklrstyz{|\00") + (data (i32.const 10720) "Illegal byte sequence\00Domain error\00Result not representable\00Not a tty\00Permission denied\00Operation not permitted\00No such file or directory\00No such process\00File exists\00Value too large for data type\00No space left on device\00Out of memory\00Resource busy\00Interrupted system call\00Resource temporarily unavailable\00Invalid seek\00Cross-device link\00Read-only file system\00Directory not empty\00Connection reset by peer\00Operation timed out\00Connection refused\00Host is down\00Host is unreachable\00Address in use\00Broken pipe\00I/O error\00No such device or address\00Block device required\00No such device\00Not a directory\00Is a directory\00Text file busy\00Exec format error\00Invalid argument\00Argument list too long\00Symbolic link loop\00Filename too long\00Too many open files in system\00No file descriptors available\00Bad file descriptor\00No child process\00Bad address\00File too large\00Too many links\00No locks available\00Resource deadlock would occur\00State not recoverable\00Previous owner died\00Operation canceled\00Function not implemented\00No message of desired type\00Identifier removed\00Device not a stream\00No data available\00Device timeout\00Out of streams resources\00Link has been severed\00Protocol error\00Bad message\00File descriptor in bad state\00Not a socket\00Destination address required\00Message too large\00Protocol wrong type for socket\00Protocol not available\00Protocol not supported\00Socket type not supported\00Not supported\00Protocol family not supported\00Address family not supported by protocol\00Address not available\00Network is down\00Network unreachable\00Connection reset by network\00Connection aborted\00No buffer space available\00Socket is connected\00Socket not connected\00Cannot send after socket shutdown\00Operation already in progress\00Operation in progress\00Stale file handle\00Remote I/O error\00Quota exceeded\00No medium found\00Wrong medium type\00No error information\00\00") + (export "memory" (memory $0)) + (export "_ZeqRK11checksum256S1_" (func $_ZeqRK11checksum256S1_)) + (export "_ZeqRK11checksum160S1_" (func $_ZeqRK11checksum160S1_)) + (export "_ZneRK11checksum160S1_" (func $_ZneRK11checksum160S1_)) + (export "now" (func $now)) + (export "_ZN5eosio12require_authERKNS_16permission_levelE" (func $_ZN5eosio12require_authERKNS_16permission_levelE)) + (export "apply" (func $apply)) + (export "malloc" (func $malloc)) + (export "free" (func $free)) + (export "_ZNSt3__19to_stringEi" (func $_ZNSt3__19to_stringEi)) + (export "snprintf" (func $snprintf)) + (export "vsnprintf" (func $vsnprintf)) + (export "__errno_location" (func $__errno_location)) + (export "vfprintf" (func $vfprintf)) + (export "__lockfile" (func $__lockfile)) + (export "__unlockfile" (func $__unlockfile)) + (export "__fwritex" (func $__fwritex)) + (export "strerror" (func $strerror)) + (export "strnlen" (func $strnlen)) + (export "wctomb" (func $wctomb)) + (export "__signbitl" (func $__signbitl)) + (export "__fpclassifyl" (func $__fpclassifyl)) + (export "frexpl" (func $frexpl)) + (export "wcrtomb" (func $wcrtomb)) + (export "memchr" (func $memchr)) + (export "__lctrans" (func $__lctrans)) + (export "__lctrans_impl" (func $__lctrans_impl)) + (export "__mo_lookup" (func $__mo_lookup)) + (export "strcmp" (func $strcmp)) + (export "__towrite" (func $__towrite)) + (export "memcmp" (func $memcmp)) + (func $_ZeqRK11checksum256S1_ (param $0 i32) (param $1 i32) (result i32) + (i32.eqz + (call $memcmp + (get_local $0) + (get_local $1) + (i32.const 32) + ) + ) + ) + (func $_ZeqRK11checksum160S1_ (param $0 i32) (param $1 i32) (result i32) + (i32.eqz + (call $memcmp + (get_local $0) + (get_local $1) + (i32.const 32) + ) + ) + ) + (func $_ZneRK11checksum160S1_ (param $0 i32) (param $1 i32) (result i32) + (i32.ne + (call $memcmp + (get_local $0) + (get_local $1) + (i32.const 32) + ) + (i32.const 0) + ) + ) + (func $now (result i32) + (i32.wrap/i64 + (i64.div_u + (call $current_time) + (i64.const 1000000) + ) + ) + ) + (func $_ZN5eosio12require_authERKNS_16permission_levelE (param $0 i32) + (call $require_auth2 + (i64.load + (get_local $0) + ) + (i64.load offset=8 + (get_local $0) + ) + ) + ) + (func $apply (param $0 i64) (param $1 i64) (param $2 i64) + (local $3 i32) + (local $4 i32) + (local $5 i64) + (local $6 i64) + (local $7 i64) + (local $8 i64) + (local $9 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $9 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 144) + ) + ) + ) + (set_local $6 + (i64.const 0) + ) + (set_local $5 + (i64.const 59) + ) + (set_local $4 + (i32.const 16) + ) + (set_local $7 + (i64.const 0) + ) + (loop $label$0 + (block $label$1 + (block $label$2 + (block $label$3 + (block $label$4 + (block $label$5 + (br_if $label$5 + (i64.gt_u + (get_local $6) + (i64.const 6) + ) + ) + (br_if $label$4 + (i32.gt_u + (i32.and + (i32.add + (tee_local $3 + (i32.load8_s + (get_local $4) + ) + ) + (i32.const -97) + ) + (i32.const 255) + ) + (i32.const 25) + ) + ) + (set_local $3 + (i32.add + (get_local $3) + (i32.const 165) + ) + ) + (br $label$3) + ) + (set_local $8 + (i64.const 0) + ) + (br_if $label$2 + (i64.le_u + (get_local $6) + (i64.const 11) + ) + ) + (br $label$1) + ) + (set_local $3 + (select + (i32.add + (get_local $3) + (i32.const 208) + ) + (i32.const 0) + (i32.lt_u + (i32.and + (i32.add + (get_local $3) + (i32.const -49) + ) + (i32.const 255) + ) + (i32.const 5) + ) + ) + ) + ) + (set_local $8 + (i64.shr_s + (i64.shl + (i64.extend_u/i32 + (get_local $3) + ) + (i64.const 56) + ) + (i64.const 56) + ) + ) + ) + (set_local $8 + (i64.shl + (i64.and + (get_local $8) + (i64.const 31) + ) + (i64.and + (get_local $5) + (i64.const 4294967295) + ) + ) + ) + ) + (set_local $4 + (i32.add + (get_local $4) + (i32.const 1) + ) + ) + (set_local $6 + (i64.add + (get_local $6) + (i64.const 1) + ) + ) + (set_local $7 + (i64.or + (get_local $8) + (get_local $7) + ) + ) + (br_if $label$0 + (i64.ne + (tee_local $5 + (i64.add + (get_local $5) + (i64.const -5) + ) + ) + (i64.const -6) + ) + ) + ) + (block $label$6 + (br_if $label$6 + (i64.ne + (get_local $7) + (get_local $2) + ) + ) + (set_local $6 + (i64.const 0) + ) + (set_local $5 + (i64.const 59) + ) + (set_local $4 + (i32.const 32) + ) + (set_local $7 + (i64.const 0) + ) + (loop $label$7 + (block $label$8 + (block $label$9 + (block $label$10 + (block $label$11 + (block $label$12 + (br_if $label$12 + (i64.gt_u + (get_local $6) + (i64.const 4) + ) + ) + (br_if $label$11 + (i32.gt_u + (i32.and + (i32.add + (tee_local $3 + (i32.load8_s + (get_local $4) + ) + ) + (i32.const -97) + ) + (i32.const 255) + ) + (i32.const 25) + ) + ) + (set_local $3 + (i32.add + (get_local $3) + (i32.const 165) + ) + ) + (br $label$10) + ) + (set_local $8 + (i64.const 0) + ) + (br_if $label$9 + (i64.le_u + (get_local $6) + (i64.const 11) + ) + ) + (br $label$8) + ) + (set_local $3 + (select + (i32.add + (get_local $3) + (i32.const 208) + ) + (i32.const 0) + (i32.lt_u + (i32.and + (i32.add + (get_local $3) + (i32.const -49) + ) + (i32.const 255) + ) + (i32.const 5) + ) + ) + ) + ) + (set_local $8 + (i64.shr_s + (i64.shl + (i64.extend_u/i32 + (get_local $3) + ) + (i64.const 56) + ) + (i64.const 56) + ) + ) + ) + (set_local $8 + (i64.shl + (i64.and + (get_local $8) + (i64.const 31) + ) + (i64.and + (get_local $5) + (i64.const 4294967295) + ) + ) + ) + ) + (set_local $4 + (i32.add + (get_local $4) + (i32.const 1) + ) + ) + (set_local $6 + (i64.add + (get_local $6) + (i64.const 1) + ) + ) + (set_local $7 + (i64.or + (get_local $8) + (get_local $7) + ) + ) + (br_if $label$7 + (i64.ne + (tee_local $5 + (i64.add + (get_local $5) + (i64.const -5) + ) + ) + (i64.const -6) + ) + ) + ) + (call $eosio_assert + (i64.eq + (get_local $7) + (get_local $1) + ) + (i32.const 48) + ) + ) + (block $label$13 + (block $label$14 + (br_if $label$14 + (i64.eq + (get_local $1) + (get_local $0) + ) + ) + (set_local $6 + (i64.const 0) + ) + (set_local $5 + (i64.const 59) + ) + (set_local $4 + (i32.const 16) + ) + (set_local $7 + (i64.const 0) + ) + (loop $label$15 + (block $label$16 + (block $label$17 + (block $label$18 + (block $label$19 + (block $label$20 + (br_if $label$20 + (i64.gt_u + (get_local $6) + (i64.const 6) + ) + ) + (br_if $label$19 + (i32.gt_u + (i32.and + (i32.add + (tee_local $3 + (i32.load8_s + (get_local $4) + ) + ) + (i32.const -97) + ) + (i32.const 255) + ) + (i32.const 25) + ) + ) + (set_local $3 + (i32.add + (get_local $3) + (i32.const 165) + ) + ) + (br $label$18) + ) + (set_local $8 + (i64.const 0) + ) + (br_if $label$17 + (i64.le_u + (get_local $6) + (i64.const 11) + ) + ) + (br $label$16) + ) + (set_local $3 + (select + (i32.add + (get_local $3) + (i32.const 208) + ) + (i32.const 0) + (i32.lt_u + (i32.and + (i32.add + (get_local $3) + (i32.const -49) + ) + (i32.const 255) + ) + (i32.const 5) + ) + ) + ) + ) + (set_local $8 + (i64.shr_s + (i64.shl + (i64.extend_u/i32 + (get_local $3) + ) + (i64.const 56) + ) + (i64.const 56) + ) + ) + ) + (set_local $8 + (i64.shl + (i64.and + (get_local $8) + (i64.const 31) + ) + (i64.and + (get_local $5) + (i64.const 4294967295) + ) + ) + ) + ) + (set_local $4 + (i32.add + (get_local $4) + (i32.const 1) + ) + ) + (set_local $6 + (i64.add + (get_local $6) + (i64.const 1) + ) + ) + (set_local $7 + (i64.or + (get_local $8) + (get_local $7) + ) + ) + (br_if $label$15 + (i64.ne + (tee_local $5 + (i64.add + (get_local $5) + (i64.const -5) + ) + ) + (i64.const -6) + ) + ) + ) + (br_if $label$13 + (i64.ne + (get_local $7) + (get_local $2) + ) + ) + ) + (i64.store offset=128 + (get_local $9) + (i64.const 10000) + ) + (i64.store offset=120 + (get_local $9) + (get_local $0) + ) + (i64.store offset=136 + (get_local $9) + (i64.const 3030196224) + ) + (block $label$21 + (block $label$22 + (block $label$23 + (block $label$24 + (block $label$25 + (block $label$26 + (br_if $label$26 + (i64.le_s + (get_local $2) + (i64.const -3617168760277827585) + ) + ) + (br_if $label$25 + (i64.gt_s + (get_local $2) + (i64.const 4849591919174483967) + ) + ) + (br_if $label$24 + (i64.eq + (get_local $2) + (i64.const -3617168760277827584) + ) + ) + (br_if $label$13 + (i64.ne + (get_local $2) + (i64.const -2688959074178957312) + ) + ) + (i32.store offset=68 + (get_local $9) + (i32.const 0) + ) + (i32.store offset=64 + (get_local $9) + (i32.const 1) + ) + (i64.store offset=56 align=4 + (get_local $9) + (i64.load offset=64 + (get_local $9) + ) + ) + (drop + (call $_ZN5eosio14execute_actionI5tokenS1_J10public_keyS2_NS_5assetENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE9signatureEEEbPT_MT0_FvDpT1_E + (i32.add + (get_local $9) + (i32.const 120) + ) + (i32.add + (get_local $9) + (i32.const 56) + ) + ) + ) + (br $label$13) + ) + (br_if $label$23 + (i64.eq + (get_local $2) + (i64.const -7807113099349065728) + ) + ) + (br_if $label$22 + (i64.eq + (get_local $2) + (i64.const -4997502827547852800) + ) + ) + (br_if $label$13 + (i64.ne + (get_local $2) + (i64.const -4997502814243520512) + ) + ) + (i32.store offset=92 + (get_local $9) + (i32.const 0) + ) + (i32.store offset=88 + (get_local $9) + (i32.const 2) + ) + (i64.store offset=32 align=4 + (get_local $9) + (i64.load offset=88 + (get_local $9) + ) + ) + (drop + (call $_ZN5eosio14execute_actionI5tokenS1_JEEEbPT_MT0_FvDpT1_E + (i32.add + (get_local $9) + (i32.const 120) + ) + (i32.add + (get_local $9) + (i32.const 32) + ) + ) + ) + (br $label$13) + ) + (br_if $label$21 + (i64.eq + (get_local $2) + (i64.const 4849591919174483968) + ) + ) + (br_if $label$13 + (i64.ne + (get_local $2) + (i64.const 5031766152489992192) + ) + ) + (i32.store offset=116 + (get_local $9) + (i32.const 0) + ) + (i32.store offset=112 + (get_local $9) + (i32.const 3) + ) + (i64.store offset=8 align=4 + (get_local $9) + (i64.load offset=112 + (get_local $9) + ) + ) + (drop + (call $_ZN5eosio14execute_actionI5tokenS1_J10public_keyNS_5assetEEEEbPT_MT0_FvDpT1_E + (i32.add + (get_local $9) + (i32.const 120) + ) + (i32.add + (get_local $9) + (i32.const 8) + ) + ) + ) + (br $label$13) + ) + (i32.store offset=76 + (get_local $9) + (i32.const 0) + ) + (i32.store offset=72 + (get_local $9) + (i32.const 4) + ) + (i64.store offset=48 align=4 + (get_local $9) + (i64.load offset=72 + (get_local $9) + ) + ) + (drop + (call $_ZN5eosio14execute_actionI5tokenS1_J10public_keyS2_NS_5assetENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE9signatureEEEbPT_MT0_FvDpT1_E + (i32.add + (get_local $9) + (i32.const 120) + ) + (i32.add + (get_local $9) + (i32.const 48) + ) + ) + ) + (br $label$13) + ) + (i32.store offset=84 + (get_local $9) + (i32.const 0) + ) + (i32.store offset=80 + (get_local $9) + (i32.const 5) + ) + (i64.store offset=40 align=4 + (get_local $9) + (i64.load offset=80 + (get_local $9) + ) + ) + (drop + (call $_ZN5eosio14execute_actionI5tokenS1_JNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEE10public_keyNS_5assetES8_EEEbPT_MT0_FvDpT1_E + (i32.add + (get_local $9) + (i32.const 120) + ) + (i32.add + (get_local $9) + (i32.const 40) + ) + ) + ) + (br $label$13) + ) + (i32.store offset=100 + (get_local $9) + (i32.const 0) + ) + (i32.store offset=96 + (get_local $9) + (i32.const 6) + ) + (i64.store offset=24 align=4 + (get_local $9) + (i64.load offset=96 + (get_local $9) + ) + ) + (drop + (call $_ZN5eosio14execute_actionI5tokenS1_J10public_keyEEEbPT_MT0_FvDpT1_E + (i32.add + (get_local $9) + (i32.const 120) + ) + (i32.add + (get_local $9) + (i32.const 24) + ) + ) + ) + (br $label$13) + ) + (i32.store offset=108 + (get_local $9) + (i32.const 0) + ) + (i32.store offset=104 + (get_local $9) + (i32.const 7) + ) + (i64.store offset=16 align=4 + (get_local $9) + (i64.load offset=104 + (get_local $9) + ) + ) + (drop + (call $_ZN5eosio14execute_actionI5tokenS1_J10public_keyNS_5assetEEEEbPT_MT0_FvDpT1_E + (i32.add + (get_local $9) + (i32.const 120) + ) + (i32.add + (get_local $9) + (i32.const 16) + ) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $9) + (i32.const 144) + ) + ) + ) + (func $_ZN5token6createE10public_keyN5eosio5assetE (type $FUNCSIG$viii) (param $0 i32) (param $1 i32) (param $2 i32) + (local $3 i64) + (local $4 i32) + (local $5 i32) + (local $6 i64) + (local $7 i64) + (local $8 i64) + (local $9 i64) + (local $10 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $10 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 64) + ) + ) + ) + (set_local $3 + (i64.load + (get_local $0) + ) + ) + (set_local $7 + (i64.const 0) + ) + (set_local $6 + (i64.const 59) + ) + (set_local $5 + (i32.const 1072) + ) + (set_local $8 + (i64.const 0) + ) + (loop $label$0 + (block $label$1 + (block $label$2 + (block $label$3 + (block $label$4 + (block $label$5 + (br_if $label$5 + (i64.gt_u + (get_local $7) + (i64.const 5) + ) + ) + (br_if $label$4 + (i32.gt_u + (i32.and + (i32.add + (tee_local $4 + (i32.load8_s + (get_local $5) + ) + ) + (i32.const -97) + ) + (i32.const 255) + ) + (i32.const 25) + ) + ) + (set_local $4 + (i32.add + (get_local $4) + (i32.const 165) + ) + ) + (br $label$3) + ) + (set_local $9 + (i64.const 0) + ) + (br_if $label$2 + (i64.le_u + (get_local $7) + (i64.const 11) + ) + ) + (br $label$1) + ) + (set_local $4 + (select + (i32.add + (get_local $4) + (i32.const 208) + ) + (i32.const 0) + (i32.lt_u + (i32.and + (i32.add + (get_local $4) + (i32.const -49) + ) + (i32.const 255) + ) + (i32.const 5) + ) + ) + ) + ) + (set_local $9 + (i64.shr_s + (i64.shl + (i64.extend_u/i32 + (get_local $4) + ) + (i64.const 56) + ) + (i64.const 56) + ) + ) + ) + (set_local $9 + (i64.shl + (i64.and + (get_local $9) + (i64.const 31) + ) + (i64.and + (get_local $6) + (i64.const 4294967295) + ) + ) + ) + ) + (set_local $5 + (i32.add + (get_local $5) + (i32.const 1) + ) + ) + (set_local $7 + (i64.add + (get_local $7) + (i64.const 1) + ) + ) + (set_local $8 + (i64.or + (get_local $9) + (get_local $8) + ) + ) + (br_if $label$0 + (i64.ne + (tee_local $6 + (i64.add + (get_local $6) + (i64.const -5) + ) + ) + (i64.const -6) + ) + ) + ) + (call $require_auth2 + (get_local $3) + (get_local $8) + ) + (call $eosio_assert + (i64.eq + (i64.load offset=8 + (get_local $2) + ) + (i64.const 1179599620) + ) + (i32.const 864) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 256) + ) + (set_local $7 + (i64.const 5462355) + ) + (set_local $5 + (i32.const 0) + ) + (block $label$6 + (block $label$7 + (loop $label$8 + (br_if $label$7 + (i32.gt_u + (i32.add + (i32.shl + (i32.wrap/i64 + (get_local $7) + ) + (i32.const 24) + ) + (i32.const -1073741825) + ) + (i32.const 452984830) + ) + ) + (block $label$9 + (br_if $label$9 + (i64.ne + (i64.and + (tee_local $7 + (i64.shr_u + (get_local $7) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (loop $label$10 + (br_if $label$7 + (i64.ne + (i64.and + (tee_local $7 + (i64.shr_u + (get_local $7) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (br_if $label$10 + (i32.lt_s + (tee_local $5 + (i32.add + (get_local $5) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + ) + ) + (set_local $4 + (i32.const 1) + ) + (br_if $label$8 + (i32.lt_s + (tee_local $5 + (i32.add + (get_local $5) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + (br $label$6) + ) + ) + (set_local $4 + (i32.const 0) + ) + ) + (call $eosio_assert + (get_local $4) + (i32.const 176) + ) + (i32.store + (i32.add + (get_local $10) + (i32.const 56) + ) + (i32.const 0) + ) + (i64.store offset=40 + (get_local $10) + (i64.const -1) + ) + (i64.store offset=48 + (get_local $10) + (i64.const 0) + ) + (i64.store offset=24 + (get_local $10) + (tee_local $7 + (i64.load + (get_local $0) + ) + ) + ) + (i64.store offset=32 + (get_local $10) + (get_local $7) + ) + (block $label$11 + (block $label$12 + (block $label$13 + (br_if $label$13 + (i32.le_s + (tee_local $5 + (call $db_find_i64 + (get_local $7) + (get_local $7) + (i64.const -3013344361224962048) + (i64.add + (i64.add + (i64.extend_s/i32 + (i32.shl + (select + (i32.add + (tee_local $5 + (i32.load8_s offset=5 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $5) + (i32.lt_s + (get_local $5) + (i32.const 0) + ) + ) + (i32.const 16) + ) + ) + (i64.extend_s/i32 + (i32.add + (i32.add + (i32.add + (i32.shl + (select + (i32.add + (tee_local $5 + (i32.load8_s offset=2 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $5) + (i32.lt_s + (get_local $5) + (i32.const 0) + ) + ) + (i32.const 4) + ) + (select + (i32.add + (tee_local $5 + (i32.load8_s offset=1 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $5) + (i32.lt_s + (get_local $5) + (i32.const 0) + ) + ) + ) + (i32.shl + (select + (i32.add + (tee_local $5 + (i32.load8_s offset=3 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $5) + (i32.lt_s + (get_local $5) + (i32.const 0) + ) + ) + (i32.const 8) + ) + ) + (i32.shl + (select + (i32.add + (tee_local $5 + (i32.load8_s offset=4 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $5) + (i32.lt_s + (get_local $5) + (i32.const 0) + ) + ) + (i32.const 12) + ) + ) + ) + ) + (i64.extend_s/i32 + (i32.shl + (select + (i32.add + (tee_local $5 + (i32.load8_s offset=6 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $5) + (i32.lt_s + (get_local $5) + (i32.const 0) + ) + ) + (i32.const 20) + ) + ) + ) + ) + ) + (i32.const -1) + ) + ) + (call $eosio_assert + (i32.eq + (i32.load offset=96 + (tee_local $5 + (call $_ZNK5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE31load_object_by_primary_iteratorEl + (i32.add + (get_local $10) + (i32.const 24) + ) + (get_local $5) + ) + ) + ) + (i32.add + (get_local $10) + (i32.const 24) + ) + ) + (i32.const 112) + ) + (set_local $7 + (i64.load + (get_local $0) + ) + ) + (i32.store offset=8 + (get_local $10) + (get_local $2) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 208) + ) + (call $_ZN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE6modifyIZN5token6createE10public_keyNS_5assetEEUlRT_E_EEvRKS2_yOS8_ + (i32.add + (get_local $10) + (i32.const 24) + ) + (get_local $5) + (get_local $7) + (i32.add + (get_local $10) + (i32.const 8) + ) + ) + (br_if $label$12 + (tee_local $1 + (i32.load offset=48 + (get_local $10) + ) + ) + ) + (br $label$11) + ) + (set_local $7 + (i64.load + (get_local $0) + ) + ) + (i32.store offset=12 + (get_local $10) + (get_local $1) + ) + (i32.store offset=8 + (get_local $10) + (get_local $0) + ) + (i32.store offset=16 + (get_local $10) + (get_local $2) + ) + (call $_ZN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE7emplaceIZN5token6createE10public_keyNS_5assetEEUlRT_E0_EENS3_14const_iteratorEyOS8_ + (get_local $10) + (i32.add + (get_local $10) + (i32.const 24) + ) + (get_local $7) + (i32.add + (get_local $10) + (i32.const 8) + ) + ) + (br_if $label$11 + (i32.eqz + (tee_local $1 + (i32.load offset=48 + (get_local $10) + ) + ) + ) + ) + ) + (block $label$14 + (block $label$15 + (br_if $label$15 + (i32.eq + (tee_local $5 + (i32.load + (tee_local $0 + (i32.add + (get_local $10) + (i32.const 52) + ) + ) + ) + ) + (get_local $1) + ) + ) + (loop $label$16 + (set_local $4 + (i32.load + (tee_local $5 + (i32.add + (get_local $5) + (i32.const -24) + ) + ) + ) + ) + (i32.store + (get_local $5) + (i32.const 0) + ) + (block $label$17 + (br_if $label$17 + (i32.eqz + (get_local $4) + ) + ) + (call $_ZdlPv + (get_local $4) + ) + ) + (br_if $label$16 + (i32.ne + (get_local $1) + (get_local $5) + ) + ) + ) + (set_local $5 + (i32.load + (i32.add + (get_local $10) + (i32.const 48) + ) + ) + ) + (br $label$14) + ) + (set_local $5 + (get_local $1) + ) + ) + (i32.store + (get_local $0) + (get_local $1) + ) + (call $_ZdlPv + (get_local $5) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $10) + (i32.const 64) + ) + ) + ) + (func $_ZN5eosio14execute_actionI5tokenS1_J10public_keyNS_5assetEEEEbPT_MT0_FvDpT1_E (param $0 i32) (param $1 i32) (result i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i64) + (local $8 i32) + (local $9 i32) + (local $10 i32) + (set_local $10 + (tee_local $8 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 288) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (get_local $8) + ) + (set_local $2 + (i32.load offset=4 + (get_local $1) + ) + ) + (set_local $9 + (i32.load + (get_local $1) + ) + ) + (set_local $1 + (i32.const 0) + ) + (set_local $6 + (i32.const 0) + ) + (block $label$0 + (br_if $label$0 + (i32.eqz + (tee_local $3 + (call $action_data_size) + ) + ) + ) + (block $label$1 + (block $label$2 + (br_if $label$2 + (i32.lt_u + (get_local $3) + (i32.const 513) + ) + ) + (set_local $6 + (call $malloc + (get_local $3) + ) + ) + (br $label$1) + ) + (i32.store offset=4 + (i32.const 0) + (tee_local $6 + (i32.sub + (get_local $8) + (i32.and + (i32.add + (get_local $3) + (i32.const 15) + ) + (i32.const -16) + ) + ) + ) + ) + ) + (drop + (call $read_action_data + (get_local $6) + (get_local $3) + ) + ) + ) + (drop + (call $memset + (i32.add + (get_local $10) + (i32.const 64) + ) + (i32.const 0) + (i32.const 34) + ) + ) + (i64.store offset=112 + (get_local $10) + (i64.const 1398362884) + ) + (i64.store offset=104 + (get_local $10) + (i64.const 0) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 256) + ) + (set_local $5 + (i32.add + (get_local $10) + (i32.const 112) + ) + ) + (set_local $4 + (i32.add + (get_local $10) + (i32.const 104) + ) + ) + (set_local $7 + (i64.const 5462355) + ) + (block $label$3 + (loop $label$4 + (set_local $8 + (i32.const 0) + ) + (br_if $label$3 + (i32.gt_u + (i32.add + (i32.shl + (i32.wrap/i64 + (get_local $7) + ) + (i32.const 24) + ) + (i32.const -1073741825) + ) + (i32.const 452984830) + ) + ) + (block $label$5 + (br_if $label$5 + (i64.ne + (i64.and + (tee_local $7 + (i64.shr_u + (get_local $7) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (loop $label$6 + (br_if $label$3 + (i64.ne + (i64.and + (tee_local $7 + (i64.shr_u + (get_local $7) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (br_if $label$6 + (i32.lt_s + (tee_local $1 + (i32.add + (get_local $1) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + ) + ) + (set_local $8 + (i32.const 1) + ) + (br_if $label$4 + (i32.lt_s + (tee_local $1 + (i32.add + (get_local $1) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + ) + ) + (call $eosio_assert + (get_local $8) + (i32.const 176) + ) + (call $eosio_assert + (i32.gt_u + (get_local $3) + (i32.const 33) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $10) + (i32.const 64) + ) + (get_local $6) + (i32.const 34) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.add + (get_local $3) + (i32.const -34) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $4) + (i32.add + (get_local $6) + (i32.const 34) + ) + (i32.const 8) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.add + (get_local $3) + (i32.const -42) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $5) + (i32.add + (get_local $6) + (i32.const 42) + ) + (i32.const 8) + ) + ) + (block $label$7 + (br_if $label$7 + (i32.lt_u + (get_local $3) + (i32.const 513) + ) + ) + (call $free + (get_local $6) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $10) + (i32.const 142) + ) + (i32.add + (get_local $10) + (i32.const 64) + ) + (i32.const 34) + ) + ) + (i64.store + (tee_local $1 + (i32.add + (i32.add + (get_local $10) + (i32.const 120) + ) + (i32.const 8) + ) + ) + (i64.load + (i32.add + (get_local $4) + (i32.const 8) + ) + ) + ) + (i64.store offset=120 + (get_local $10) + (i64.load + (get_local $4) + ) + ) + (i64.store + (i32.add + (i32.add + (get_local $10) + (i32.const 216) + ) + (i32.const 8) + ) + (i64.load + (get_local $1) + ) + ) + (i64.store offset=216 + (get_local $10) + (i64.load offset=120 + (get_local $10) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $10) + (i32.const 176) + ) + (i32.add + (get_local $10) + (i32.const 142) + ) + (i32.const 34) + ) + ) + (set_local $1 + (i32.add + (get_local $0) + (i32.shr_s + (get_local $2) + (i32.const 1) + ) + ) + ) + (block $label$8 + (br_if $label$8 + (i32.eqz + (i32.and + (get_local $2) + (i32.const 1) + ) + ) + ) + (set_local $9 + (i32.load + (i32.add + (i32.load + (get_local $1) + ) + (get_local $9) + ) + ) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $10) + (i32.const 248) + ) + (i32.add + (get_local $10) + (i32.const 176) + ) + (i32.const 34) + ) + ) + (i64.store + (tee_local $8 + (i32.add + (i32.add + (get_local $10) + (i32.const 232) + ) + (i32.const 8) + ) + ) + (i64.load + (i32.add + (i32.add + (get_local $10) + (i32.const 216) + ) + (i32.const 8) + ) + ) + ) + (i64.store offset=232 + (get_local $10) + (i64.load offset=216 + (get_local $10) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $10) + (i32.const 30) + ) + (i32.add + (get_local $10) + (i32.const 248) + ) + (i32.const 34) + ) + ) + (i64.store + (i32.add + (i32.add + (get_local $10) + (i32.const 8) + ) + (i32.const 8) + ) + (i64.load + (get_local $8) + ) + ) + (i64.store offset=8 + (get_local $10) + (i64.load offset=232 + (get_local $10) + ) + ) + (call_indirect (type $FUNCSIG$viii) + (get_local $1) + (i32.add + (get_local $10) + (i32.const 30) + ) + (i32.add + (get_local $10) + (i32.const 8) + ) + (get_local $9) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $10) + (i32.const 288) + ) + ) + (i32.const 1) + ) + (func $_ZN5token6changeE10public_keyN5eosio5assetE (type $FUNCSIG$viii) (param $0 i32) (param $1 i32) (param $2 i32) + (local $3 i64) + (local $4 i32) + (local $5 i32) + (local $6 i64) + (local $7 i64) + (local $8 i64) + (local $9 i64) + (local $10 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $10 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 48) + ) + ) + ) + (set_local $3 + (i64.load + (get_local $0) + ) + ) + (set_local $7 + (i64.const 0) + ) + (set_local $6 + (i64.const 59) + ) + (set_local $5 + (i32.const 1072) + ) + (set_local $8 + (i64.const 0) + ) + (loop $label$0 + (block $label$1 + (block $label$2 + (block $label$3 + (block $label$4 + (block $label$5 + (br_if $label$5 + (i64.gt_u + (get_local $7) + (i64.const 5) + ) + ) + (br_if $label$4 + (i32.gt_u + (i32.and + (i32.add + (tee_local $4 + (i32.load8_s + (get_local $5) + ) + ) + (i32.const -97) + ) + (i32.const 255) + ) + (i32.const 25) + ) + ) + (set_local $4 + (i32.add + (get_local $4) + (i32.const 165) + ) + ) + (br $label$3) + ) + (set_local $9 + (i64.const 0) + ) + (br_if $label$2 + (i64.le_u + (get_local $7) + (i64.const 11) + ) + ) + (br $label$1) + ) + (set_local $4 + (select + (i32.add + (get_local $4) + (i32.const 208) + ) + (i32.const 0) + (i32.lt_u + (i32.and + (i32.add + (get_local $4) + (i32.const -49) + ) + (i32.const 255) + ) + (i32.const 5) + ) + ) + ) + ) + (set_local $9 + (i64.shr_s + (i64.shl + (i64.extend_u/i32 + (get_local $4) + ) + (i64.const 56) + ) + (i64.const 56) + ) + ) + ) + (set_local $9 + (i64.shl + (i64.and + (get_local $9) + (i64.const 31) + ) + (i64.and + (get_local $6) + (i64.const 4294967295) + ) + ) + ) + ) + (set_local $5 + (i32.add + (get_local $5) + (i32.const 1) + ) + ) + (set_local $7 + (i64.add + (get_local $7) + (i64.const 1) + ) + ) + (set_local $8 + (i64.or + (get_local $9) + (get_local $8) + ) + ) + (br_if $label$0 + (i64.ne + (tee_local $6 + (i64.add + (get_local $6) + (i64.const -5) + ) + ) + (i64.const -6) + ) + ) + ) + (call $require_auth2 + (get_local $3) + (get_local $8) + ) + (call $eosio_assert + (i64.eq + (i64.load offset=8 + (get_local $2) + ) + (i64.const 1179599620) + ) + (i32.const 864) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 256) + ) + (set_local $7 + (i64.const 5462355) + ) + (set_local $5 + (i32.const 0) + ) + (block $label$6 + (block $label$7 + (loop $label$8 + (br_if $label$7 + (i32.gt_u + (i32.add + (i32.shl + (i32.wrap/i64 + (get_local $7) + ) + (i32.const 24) + ) + (i32.const -1073741825) + ) + (i32.const 452984830) + ) + ) + (block $label$9 + (br_if $label$9 + (i64.ne + (i64.and + (tee_local $7 + (i64.shr_u + (get_local $7) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (loop $label$10 + (br_if $label$7 + (i64.ne + (i64.and + (tee_local $7 + (i64.shr_u + (get_local $7) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (br_if $label$10 + (i32.lt_s + (tee_local $5 + (i32.add + (get_local $5) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + ) + ) + (set_local $4 + (i32.const 1) + ) + (br_if $label$8 + (i32.lt_s + (tee_local $5 + (i32.add + (get_local $5) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + (br $label$6) + ) + ) + (set_local $4 + (i32.const 0) + ) + ) + (call $eosio_assert + (get_local $4) + (i32.const 176) + ) + (i32.store + (i32.add + (get_local $10) + (i32.const 40) + ) + (i32.const 0) + ) + (i64.store offset=24 + (get_local $10) + (i64.const -1) + ) + (i64.store offset=32 + (get_local $10) + (i64.const 0) + ) + (i64.store offset=8 + (get_local $10) + (tee_local $7 + (i64.load + (get_local $0) + ) + ) + ) + (i64.store offset=16 + (get_local $10) + (get_local $7) + ) + (set_local $5 + (i32.const 0) + ) + (block $label$11 + (br_if $label$11 + (i32.lt_s + (tee_local $4 + (call $db_find_i64 + (get_local $7) + (get_local $7) + (i64.const -3013344361224962048) + (i64.add + (i64.add + (i64.extend_s/i32 + (i32.shl + (select + (i32.add + (tee_local $4 + (i32.load8_s offset=5 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $4) + (i32.lt_s + (get_local $4) + (i32.const 0) + ) + ) + (i32.const 16) + ) + ) + (i64.extend_s/i32 + (i32.add + (i32.add + (i32.add + (i32.shl + (select + (i32.add + (tee_local $4 + (i32.load8_s offset=2 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $4) + (i32.lt_s + (get_local $4) + (i32.const 0) + ) + ) + (i32.const 4) + ) + (select + (i32.add + (tee_local $4 + (i32.load8_s offset=1 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $4) + (i32.lt_s + (get_local $4) + (i32.const 0) + ) + ) + ) + (i32.shl + (select + (i32.add + (tee_local $4 + (i32.load8_s offset=3 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $4) + (i32.lt_s + (get_local $4) + (i32.const 0) + ) + ) + (i32.const 8) + ) + ) + (i32.shl + (select + (i32.add + (tee_local $4 + (i32.load8_s offset=4 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $4) + (i32.lt_s + (get_local $4) + (i32.const 0) + ) + ) + (i32.const 12) + ) + ) + ) + ) + (i64.extend_s/i32 + (i32.shl + (select + (i32.add + (tee_local $4 + (i32.load8_s offset=6 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $4) + (i32.lt_s + (get_local $4) + (i32.const 0) + ) + ) + (i32.const 20) + ) + ) + ) + ) + ) + (i32.const 0) + ) + ) + (call $eosio_assert + (i32.eq + (i32.load offset=96 + (tee_local $5 + (call $_ZNK5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE31load_object_by_primary_iteratorEl + (i32.add + (get_local $10) + (i32.const 8) + ) + (get_local $4) + ) + ) + ) + (i32.add + (get_local $10) + (i32.const 8) + ) + ) + (i32.const 112) + ) + ) + (call $eosio_assert + (tee_local $4 + (i32.ne + (get_local $5) + (i32.const 0) + ) + ) + (i32.const 1456) + ) + (set_local $7 + (i64.load + (get_local $0) + ) + ) + (i32.store + (get_local $10) + (get_local $2) + ) + (call $eosio_assert + (get_local $4) + (i32.const 208) + ) + (call $_ZN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE6modifyIZN5token6changeE10public_keyNS_5assetEEUlRT_E_EEvRKS2_yOS8_ + (i32.add + (get_local $10) + (i32.const 8) + ) + (get_local $5) + (get_local $7) + (get_local $10) + ) + (block $label$12 + (br_if $label$12 + (i32.eqz + (tee_local $1 + (i32.load offset=32 + (get_local $10) + ) + ) + ) + ) + (block $label$13 + (block $label$14 + (br_if $label$14 + (i32.eq + (tee_local $5 + (i32.load + (tee_local $0 + (i32.add + (get_local $10) + (i32.const 36) + ) + ) + ) + ) + (get_local $1) + ) + ) + (loop $label$15 + (set_local $4 + (i32.load + (tee_local $5 + (i32.add + (get_local $5) + (i32.const -24) + ) + ) + ) + ) + (i32.store + (get_local $5) + (i32.const 0) + ) + (block $label$16 + (br_if $label$16 + (i32.eqz + (get_local $4) + ) + ) + (call $_ZdlPv + (get_local $4) + ) + ) + (br_if $label$15 + (i32.ne + (get_local $1) + (get_local $5) + ) + ) + ) + (set_local $5 + (i32.load + (i32.add + (get_local $10) + (i32.const 32) + ) + ) + ) + (br $label$13) + ) + (set_local $5 + (get_local $1) + ) + ) + (i32.store + (get_local $0) + (get_local $1) + ) + (call $_ZdlPv + (get_local $5) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $10) + (i32.const 48) + ) + ) + ) + (func $_ZN5token6removeE10public_key (type $FUNCSIG$vii) (param $0 i32) (param $1 i32) + (local $2 i64) + (local $3 i32) + (local $4 i32) + (local $5 i64) + (local $6 i64) + (local $7 i64) + (local $8 i64) + (local $9 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $9 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 48) + ) + ) + ) + (set_local $2 + (i64.load + (get_local $0) + ) + ) + (set_local $6 + (i64.const 0) + ) + (set_local $5 + (i64.const 59) + ) + (set_local $4 + (i32.const 1072) + ) + (set_local $7 + (i64.const 0) + ) + (loop $label$0 + (block $label$1 + (block $label$2 + (block $label$3 + (block $label$4 + (block $label$5 + (br_if $label$5 + (i64.gt_u + (get_local $6) + (i64.const 5) + ) + ) + (br_if $label$4 + (i32.gt_u + (i32.and + (i32.add + (tee_local $3 + (i32.load8_s + (get_local $4) + ) + ) + (i32.const -97) + ) + (i32.const 255) + ) + (i32.const 25) + ) + ) + (set_local $3 + (i32.add + (get_local $3) + (i32.const 165) + ) + ) + (br $label$3) + ) + (set_local $8 + (i64.const 0) + ) + (br_if $label$2 + (i64.le_u + (get_local $6) + (i64.const 11) + ) + ) + (br $label$1) + ) + (set_local $3 + (select + (i32.add + (get_local $3) + (i32.const 208) + ) + (i32.const 0) + (i32.lt_u + (i32.and + (i32.add + (get_local $3) + (i32.const -49) + ) + (i32.const 255) + ) + (i32.const 5) + ) + ) + ) + ) + (set_local $8 + (i64.shr_s + (i64.shl + (i64.extend_u/i32 + (get_local $3) + ) + (i64.const 56) + ) + (i64.const 56) + ) + ) + ) + (set_local $8 + (i64.shl + (i64.and + (get_local $8) + (i64.const 31) + ) + (i64.and + (get_local $5) + (i64.const 4294967295) + ) + ) + ) + ) + (set_local $4 + (i32.add + (get_local $4) + (i32.const 1) + ) + ) + (set_local $6 + (i64.add + (get_local $6) + (i64.const 1) + ) + ) + (set_local $7 + (i64.or + (get_local $8) + (get_local $7) + ) + ) + (br_if $label$0 + (i64.ne + (tee_local $5 + (i64.add + (get_local $5) + (i64.const -5) + ) + ) + (i64.const -6) + ) + ) + ) + (call $require_auth2 + (get_local $2) + (get_local $7) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 256) + ) + (set_local $6 + (i64.const 5462355) + ) + (set_local $4 + (i32.const 0) + ) + (block $label$6 + (block $label$7 + (loop $label$8 + (br_if $label$7 + (i32.gt_u + (i32.add + (i32.shl + (i32.wrap/i64 + (get_local $6) + ) + (i32.const 24) + ) + (i32.const -1073741825) + ) + (i32.const 452984830) + ) + ) + (block $label$9 + (br_if $label$9 + (i64.ne + (i64.and + (tee_local $6 + (i64.shr_u + (get_local $6) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (loop $label$10 + (br_if $label$7 + (i64.ne + (i64.and + (tee_local $6 + (i64.shr_u + (get_local $6) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (br_if $label$10 + (i32.lt_s + (tee_local $4 + (i32.add + (get_local $4) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + ) + ) + (set_local $3 + (i32.const 1) + ) + (br_if $label$8 + (i32.lt_s + (tee_local $4 + (i32.add + (get_local $4) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + (br $label$6) + ) + ) + (set_local $3 + (i32.const 0) + ) + ) + (call $eosio_assert + (get_local $3) + (i32.const 176) + ) + (i32.store + (i32.add + (get_local $9) + (i32.const 32) + ) + (i32.const 0) + ) + (i64.store offset=16 + (get_local $9) + (i64.const -1) + ) + (i64.store offset=24 + (get_local $9) + (i64.const 0) + ) + (i64.store + (get_local $9) + (tee_local $6 + (i64.load + (get_local $0) + ) + ) + ) + (i64.store offset=8 + (get_local $9) + (get_local $6) + ) + (set_local $4 + (i32.const 0) + ) + (block $label$11 + (br_if $label$11 + (i32.lt_s + (tee_local $3 + (call $db_find_i64 + (get_local $6) + (get_local $6) + (i64.const -3013344361224962048) + (i64.add + (i64.add + (i64.extend_s/i32 + (i32.shl + (select + (i32.add + (tee_local $3 + (i32.load8_s offset=5 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $3) + (i32.lt_s + (get_local $3) + (i32.const 0) + ) + ) + (i32.const 16) + ) + ) + (i64.extend_s/i32 + (i32.add + (i32.add + (i32.add + (i32.shl + (select + (i32.add + (tee_local $3 + (i32.load8_s offset=2 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $3) + (i32.lt_s + (get_local $3) + (i32.const 0) + ) + ) + (i32.const 4) + ) + (select + (i32.add + (tee_local $3 + (i32.load8_s offset=1 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $3) + (i32.lt_s + (get_local $3) + (i32.const 0) + ) + ) + ) + (i32.shl + (select + (i32.add + (tee_local $3 + (i32.load8_s offset=3 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $3) + (i32.lt_s + (get_local $3) + (i32.const 0) + ) + ) + (i32.const 8) + ) + ) + (i32.shl + (select + (i32.add + (tee_local $3 + (i32.load8_s offset=4 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $3) + (i32.lt_s + (get_local $3) + (i32.const 0) + ) + ) + (i32.const 12) + ) + ) + ) + ) + (i64.extend_s/i32 + (i32.shl + (select + (i32.add + (tee_local $3 + (i32.load8_s offset=6 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $3) + (i32.lt_s + (get_local $3) + (i32.const 0) + ) + ) + (i32.const 20) + ) + ) + ) + ) + ) + (i32.const 0) + ) + ) + (call $eosio_assert + (i32.eq + (i32.load offset=96 + (tee_local $4 + (call $_ZNK5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE31load_object_by_primary_iteratorEl + (get_local $9) + (get_local $3) + ) + ) + ) + (get_local $9) + ) + (i32.const 112) + ) + ) + (call $eosio_assert + (tee_local $3 + (i32.ne + (get_local $4) + (i32.const 0) + ) + ) + (i32.const 1456) + ) + (call $eosio_assert + (get_local $3) + (i32.const 1200) + ) + (call $eosio_assert + (get_local $3) + (i32.const 1248) + ) + (block $label$12 + (br_if $label$12 + (i32.lt_s + (tee_local $3 + (call $db_next_i64 + (i32.load offset=100 + (get_local $4) + ) + (i32.add + (get_local $9) + (i32.const 40) + ) + ) + ) + (i32.const 0) + ) + ) + (drop + (call $_ZNK5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE31load_object_by_primary_iteratorEl + (get_local $9) + (get_local $3) + ) + ) + ) + (call $_ZN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE5eraseERKS2_ + (get_local $9) + (get_local $4) + ) + (block $label$13 + (br_if $label$13 + (i32.eqz + (tee_local $1 + (i32.load offset=24 + (get_local $9) + ) + ) + ) + ) + (block $label$14 + (block $label$15 + (br_if $label$15 + (i32.eq + (tee_local $4 + (i32.load + (tee_local $0 + (i32.add + (get_local $9) + (i32.const 28) + ) + ) + ) + ) + (get_local $1) + ) + ) + (loop $label$16 + (set_local $3 + (i32.load + (tee_local $4 + (i32.add + (get_local $4) + (i32.const -24) + ) + ) + ) + ) + (i32.store + (get_local $4) + (i32.const 0) + ) + (block $label$17 + (br_if $label$17 + (i32.eqz + (get_local $3) + ) + ) + (call $_ZdlPv + (get_local $3) + ) + ) + (br_if $label$16 + (i32.ne + (get_local $1) + (get_local $4) + ) + ) + ) + (set_local $4 + (i32.load + (i32.add + (get_local $9) + (i32.const 24) + ) + ) + ) + (br $label$14) + ) + (set_local $4 + (get_local $1) + ) + ) + (i32.store + (get_local $0) + (get_local $1) + ) + (call $_ZdlPv + (get_local $4) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $9) + (i32.const 48) + ) + ) + ) + (func $_ZN5eosio14execute_actionI5tokenS1_J10public_keyEEEbPT_MT0_FvDpT1_E (param $0 i32) (param $1 i32) (result i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (set_local $5 + (tee_local $6 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 192) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (get_local $6) + ) + (set_local $2 + (i32.load offset=4 + (get_local $1) + ) + ) + (set_local $4 + (i32.load + (get_local $1) + ) + ) + (set_local $3 + (i32.const 0) + ) + (block $label$0 + (br_if $label$0 + (i32.eqz + (tee_local $1 + (call $action_data_size) + ) + ) + ) + (block $label$1 + (block $label$2 + (br_if $label$2 + (i32.lt_u + (get_local $1) + (i32.const 513) + ) + ) + (set_local $3 + (call $malloc + (get_local $1) + ) + ) + (br $label$1) + ) + (i32.store offset=4 + (i32.const 0) + (tee_local $3 + (i32.sub + (get_local $6) + (i32.and + (i32.add + (get_local $1) + (i32.const 15) + ) + (i32.const -16) + ) + ) + ) + ) + ) + (drop + (call $read_action_data + (get_local $3) + (get_local $1) + ) + ) + ) + (drop + (call $memset + (i32.add + (get_local $5) + (i32.const 40) + ) + (i32.const 0) + (i32.const 34) + ) + ) + (call $eosio_assert + (i32.gt_u + (get_local $1) + (i32.const 33) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $5) + (i32.const 40) + ) + (get_local $3) + (i32.const 34) + ) + ) + (block $label$3 + (br_if $label$3 + (i32.lt_u + (get_local $1) + (i32.const 513) + ) + ) + (call $free + (get_local $3) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $5) + (i32.const 78) + ) + (i32.add + (get_local $5) + (i32.const 40) + ) + (i32.const 34) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $5) + (i32.const 112) + ) + (i32.add + (get_local $5) + (i32.const 78) + ) + (i32.const 34) + ) + ) + (set_local $1 + (i32.add + (get_local $0) + (i32.shr_s + (get_local $2) + (i32.const 1) + ) + ) + ) + (block $label$4 + (br_if $label$4 + (i32.eqz + (i32.and + (get_local $2) + (i32.const 1) + ) + ) + ) + (set_local $4 + (i32.load + (i32.add + (i32.load + (get_local $1) + ) + (get_local $4) + ) + ) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $5) + (i32.const 152) + ) + (i32.add + (get_local $5) + (i32.const 112) + ) + (i32.const 34) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $5) + (i32.const 6) + ) + (i32.add + (get_local $5) + (i32.const 152) + ) + (i32.const 34) + ) + ) + (call_indirect (type $FUNCSIG$vii) + (get_local $1) + (i32.add + (get_local $5) + (i32.const 6) + ) + (get_local $4) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $5) + (i32.const 192) + ) + ) + (i32.const 1) + ) + (func $_ZN5token8removestEv (type $FUNCSIG$vi) (param $0 i32) + (local $1 i64) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i64) + (local $6 i64) + (local $7 i64) + (local $8 i64) + (local $9 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $9 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 48) + ) + ) + ) + (set_local $1 + (i64.load + (get_local $0) + ) + ) + (set_local $6 + (i64.const 0) + ) + (set_local $5 + (i64.const 59) + ) + (set_local $4 + (i32.const 1072) + ) + (set_local $7 + (i64.const 0) + ) + (loop $label$0 + (block $label$1 + (block $label$2 + (block $label$3 + (block $label$4 + (block $label$5 + (br_if $label$5 + (i64.gt_u + (get_local $6) + (i64.const 5) + ) + ) + (br_if $label$4 + (i32.gt_u + (i32.and + (i32.add + (tee_local $2 + (i32.load8_s + (get_local $4) + ) + ) + (i32.const -97) + ) + (i32.const 255) + ) + (i32.const 25) + ) + ) + (set_local $2 + (i32.add + (get_local $2) + (i32.const 165) + ) + ) + (br $label$3) + ) + (set_local $8 + (i64.const 0) + ) + (br_if $label$2 + (i64.le_u + (get_local $6) + (i64.const 11) + ) + ) + (br $label$1) + ) + (set_local $2 + (select + (i32.add + (get_local $2) + (i32.const 208) + ) + (i32.const 0) + (i32.lt_u + (i32.and + (i32.add + (get_local $2) + (i32.const -49) + ) + (i32.const 255) + ) + (i32.const 5) + ) + ) + ) + ) + (set_local $8 + (i64.shr_s + (i64.shl + (i64.extend_u/i32 + (get_local $2) + ) + (i64.const 56) + ) + (i64.const 56) + ) + ) + ) + (set_local $8 + (i64.shl + (i64.and + (get_local $8) + (i64.const 31) + ) + (i64.and + (get_local $5) + (i64.const 4294967295) + ) + ) + ) + ) + (set_local $4 + (i32.add + (get_local $4) + (i32.const 1) + ) + ) + (set_local $6 + (i64.add + (get_local $6) + (i64.const 1) + ) + ) + (set_local $7 + (i64.or + (get_local $8) + (get_local $7) + ) + ) + (br_if $label$0 + (i64.ne + (tee_local $5 + (i64.add + (get_local $5) + (i64.const -5) + ) + ) + (i64.const -6) + ) + ) + ) + (call $require_auth2 + (get_local $1) + (get_local $7) + ) + (i32.store + (i32.add + (get_local $9) + (i32.const 32) + ) + (i32.const 0) + ) + (i64.store offset=16 + (get_local $9) + (i64.const -1) + ) + (i64.store + (get_local $9) + (tee_local $6 + (i64.load + (get_local $0) + ) + ) + ) + (i64.store offset=8 + (get_local $9) + (get_local $6) + ) + (i64.store offset=24 + (get_local $9) + (i64.const 0) + ) + (set_local $4 + (i32.const 0) + ) + (block $label$6 + (br_if $label$6 + (i32.lt_s + (tee_local $2 + (call $db_find_i64 + (get_local $6) + (get_local $6) + (i64.const 7235159550573564928) + (i64.const 0) + ) + ) + (i32.const 0) + ) + ) + (call $eosio_assert + (i32.eq + (i32.load offset=72 + (tee_local $4 + (call $_ZNK5eosio11multi_indexILy7235159550573564928EN5types11globalstateEJEE31load_object_by_primary_iteratorEl + (get_local $9) + (get_local $2) + ) + ) + ) + (get_local $9) + ) + (i32.const 112) + ) + ) + (call $eosio_assert + (tee_local $2 + (i32.ne + (get_local $4) + (i32.const 0) + ) + ) + (i32.const 1200) + ) + (call $eosio_assert + (get_local $2) + (i32.const 1248) + ) + (block $label$7 + (br_if $label$7 + (i32.lt_s + (tee_local $2 + (call $db_next_i64 + (i32.load offset=76 + (get_local $4) + ) + (i32.add + (get_local $9) + (i32.const 40) + ) + ) + ) + (i32.const 0) + ) + ) + (drop + (call $_ZNK5eosio11multi_indexILy7235159550573564928EN5types11globalstateEJEE31load_object_by_primary_iteratorEl + (get_local $9) + (get_local $2) + ) + ) + ) + (call $_ZN5eosio11multi_indexILy7235159550573564928EN5types11globalstateEJEE5eraseERKS2_ + (get_local $9) + (get_local $4) + ) + (block $label$8 + (br_if $label$8 + (i32.eqz + (tee_local $0 + (i32.load offset=24 + (get_local $9) + ) + ) + ) + ) + (block $label$9 + (block $label$10 + (br_if $label$10 + (i32.eq + (tee_local $4 + (i32.load + (tee_local $3 + (i32.add + (get_local $9) + (i32.const 28) + ) + ) + ) + ) + (get_local $0) + ) + ) + (loop $label$11 + (set_local $2 + (i32.load + (tee_local $4 + (i32.add + (get_local $4) + (i32.const -24) + ) + ) + ) + ) + (i32.store + (get_local $4) + (i32.const 0) + ) + (block $label$12 + (br_if $label$12 + (i32.eqz + (get_local $2) + ) + ) + (call $_ZdlPv + (get_local $2) + ) + ) + (br_if $label$11 + (i32.ne + (get_local $0) + (get_local $4) + ) + ) + ) + (set_local $4 + (i32.load + (i32.add + (get_local $9) + (i32.const 24) + ) + ) + ) + (br $label$9) + ) + (set_local $4 + (get_local $0) + ) + ) + (i32.store + (get_local $3) + (get_local $0) + ) + (call $_ZdlPv + (get_local $4) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $9) + (i32.const 48) + ) + ) + ) + (func $_ZN5eosio14execute_actionI5tokenS1_JEEEbPT_MT0_FvDpT1_E (param $0 i32) (param $1 i32) (result i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (set_local $4 + (tee_local $5 + (i32.load offset=4 + (i32.const 0) + ) + ) + ) + (set_local $2 + (i32.load offset=4 + (get_local $1) + ) + ) + (set_local $1 + (i32.load + (get_local $1) + ) + ) + (block $label$0 + (br_if $label$0 + (i32.eqz + (tee_local $3 + (call $action_data_size) + ) + ) + ) + (block $label$1 + (br_if $label$1 + (i32.le_u + (get_local $3) + (i32.const 512) + ) + ) + (drop + (call $read_action_data + (tee_local $5 + (call $malloc + (get_local $3) + ) + ) + (get_local $3) + ) + ) + (call $free + (get_local $5) + ) + (br $label$0) + ) + (i32.store offset=4 + (i32.const 0) + (tee_local $5 + (i32.sub + (get_local $5) + (i32.and + (i32.add + (get_local $3) + (i32.const 15) + ) + (i32.const -16) + ) + ) + ) + ) + (drop + (call $read_action_data + (get_local $5) + (get_local $3) + ) + ) + ) + (set_local $3 + (i32.add + (get_local $0) + (i32.shr_s + (get_local $2) + (i32.const 1) + ) + ) + ) + (block $label$2 + (br_if $label$2 + (i32.eqz + (i32.and + (get_local $2) + (i32.const 1) + ) + ) + ) + (set_local $1 + (i32.load + (i32.add + (i32.load + (get_local $3) + ) + (get_local $1) + ) + ) + ) + ) + (call_indirect (type $FUNCSIG$vi) + (get_local $3) + (get_local $1) + ) + (i32.store offset=4 + (i32.const 0) + (get_local $4) + ) + (i32.const 1) + ) + (func $_ZN5token4mintENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE10public_keyN5eosio5assetES6_ (type $FUNCSIG$viiiii) (param $0 i32) (param $1 i32) (param $2 i32) (param $3 i32) (param $4 i32) + (local $5 i64) + (local $6 i32) + (local $7 i32) + (local $8 i64) + (local $9 i64) + (local $10 i64) + (local $11 i64) + (local $12 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $12 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 96) + ) + ) + ) + (set_local $5 + (i64.load + (get_local $0) + ) + ) + (set_local $9 + (i64.const 0) + ) + (set_local $8 + (i64.const 59) + ) + (set_local $7 + (i32.const 1072) + ) + (set_local $10 + (i64.const 0) + ) + (loop $label$0 + (block $label$1 + (block $label$2 + (block $label$3 + (block $label$4 + (block $label$5 + (br_if $label$5 + (i64.gt_u + (get_local $9) + (i64.const 5) + ) + ) + (br_if $label$4 + (i32.gt_u + (i32.and + (i32.add + (tee_local $6 + (i32.load8_s + (get_local $7) + ) + ) + (i32.const -97) + ) + (i32.const 255) + ) + (i32.const 25) + ) + ) + (set_local $6 + (i32.add + (get_local $6) + (i32.const 165) + ) + ) + (br $label$3) + ) + (set_local $11 + (i64.const 0) + ) + (br_if $label$2 + (i64.le_u + (get_local $9) + (i64.const 11) + ) + ) + (br $label$1) + ) + (set_local $6 + (select + (i32.add + (get_local $6) + (i32.const 208) + ) + (i32.const 0) + (i32.lt_u + (i32.and + (i32.add + (get_local $6) + (i32.const -49) + ) + (i32.const 255) + ) + (i32.const 5) + ) + ) + ) + ) + (set_local $11 + (i64.shr_s + (i64.shl + (i64.extend_u/i32 + (get_local $6) + ) + (i64.const 56) + ) + (i64.const 56) + ) + ) + ) + (set_local $11 + (i64.shl + (i64.and + (get_local $11) + (i64.const 31) + ) + (i64.and + (get_local $8) + (i64.const 4294967295) + ) + ) + ) + ) + (set_local $7 + (i32.add + (get_local $7) + (i32.const 1) + ) + ) + (set_local $9 + (i64.add + (get_local $9) + (i64.const 1) + ) + ) + (set_local $10 + (i64.or + (get_local $11) + (get_local $10) + ) + ) + (br_if $label$0 + (i64.ne + (tee_local $8 + (i64.add + (get_local $8) + (i64.const -5) + ) + ) + (i64.const -6) + ) + ) + ) + (call $require_auth2 + (get_local $5) + (get_local $10) + ) + (call $eosio_assert + (i64.eq + (i64.load offset=8 + (get_local $3) + ) + (i64.const 1179599620) + ) + (i32.const 864) + ) + (i32.store + (i32.add + (get_local $12) + (i32.const 88) + ) + (i32.const 0) + ) + (i64.store offset=72 + (get_local $12) + (i64.const -1) + ) + (i64.store offset=80 + (get_local $12) + (i64.const 0) + ) + (i64.store offset=56 + (get_local $12) + (tee_local $9 + (i64.load + (get_local $0) + ) + ) + ) + (i64.store offset=64 + (get_local $12) + (get_local $9) + ) + (block $label$6 + (block $label$7 + (br_if $label$7 + (i32.lt_s + (tee_local $7 + (call $db_find_i64 + (get_local $9) + (get_local $9) + (i64.const -3013344361224962048) + (i64.add + (i64.add + (i64.extend_s/i32 + (i32.shl + (select + (i32.add + (tee_local $7 + (i32.load8_s offset=5 + (get_local $2) + ) + ) + (i32.const 256) + ) + (get_local $7) + (i32.lt_s + (get_local $7) + (i32.const 0) + ) + ) + (i32.const 16) + ) + ) + (i64.extend_s/i32 + (i32.add + (i32.add + (i32.add + (i32.shl + (select + (i32.add + (tee_local $7 + (i32.load8_s offset=2 + (get_local $2) + ) + ) + (i32.const 256) + ) + (get_local $7) + (i32.lt_s + (get_local $7) + (i32.const 0) + ) + ) + (i32.const 4) + ) + (select + (i32.add + (tee_local $7 + (i32.load8_s offset=1 + (get_local $2) + ) + ) + (i32.const 256) + ) + (get_local $7) + (i32.lt_s + (get_local $7) + (i32.const 0) + ) + ) + ) + (i32.shl + (select + (i32.add + (tee_local $7 + (i32.load8_s offset=3 + (get_local $2) + ) + ) + (i32.const 256) + ) + (get_local $7) + (i32.lt_s + (get_local $7) + (i32.const 0) + ) + ) + (i32.const 8) + ) + ) + (i32.shl + (select + (i32.add + (tee_local $7 + (i32.load8_s offset=4 + (get_local $2) + ) + ) + (i32.const 256) + ) + (get_local $7) + (i32.lt_s + (get_local $7) + (i32.const 0) + ) + ) + (i32.const 12) + ) + ) + ) + ) + (i64.extend_s/i32 + (i32.shl + (select + (i32.add + (tee_local $7 + (i32.load8_s offset=6 + (get_local $2) + ) + ) + (i32.const 256) + ) + (get_local $7) + (i32.lt_s + (get_local $7) + (i32.const 0) + ) + ) + (i32.const 20) + ) + ) + ) + ) + ) + (i32.const 0) + ) + ) + (call $eosio_assert + (i32.eq + (i32.load offset=96 + (tee_local $7 + (call $_ZNK5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE31load_object_by_primary_iteratorEl + (i32.add + (get_local $12) + (i32.const 56) + ) + (get_local $7) + ) + ) + ) + (i32.add + (get_local $12) + (i32.const 56) + ) + ) + (i32.const 112) + ) + (set_local $9 + (i64.load + (get_local $0) + ) + ) + (i32.store offset=8 + (get_local $12) + (get_local $3) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 208) + ) + (call $_ZN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE6modifyIZN5token4mintENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEE10public_keyNS_5assetESC_EUlRT_E_EEvRKS2_yOSF_ + (i32.add + (get_local $12) + (i32.const 56) + ) + (get_local $7) + (get_local $9) + (i32.add + (get_local $12) + (i32.const 8) + ) + ) + (br $label$6) + ) + (set_local $9 + (i64.load + (get_local $0) + ) + ) + (i32.store offset=12 + (get_local $12) + (get_local $2) + ) + (i32.store offset=8 + (get_local $12) + (get_local $0) + ) + (i32.store offset=16 + (get_local $12) + (get_local $3) + ) + (call $_ZN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE7emplaceIZN5token4mintENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEE10public_keyNS_5assetESC_EUlRT_E0_EENS3_14const_iteratorEyOSF_ + (i32.add + (get_local $12) + (i32.const 48) + ) + (i32.add + (get_local $12) + (i32.const 56) + ) + (get_local $9) + (i32.add + (get_local $12) + (i32.const 8) + ) + ) + ) + (i32.store + (i32.add + (get_local $12) + (i32.const 40) + ) + (i32.const 0) + ) + (i64.store offset=24 + (get_local $12) + (i64.const -1) + ) + (i64.store offset=8 + (get_local $12) + (tee_local $9 + (i64.load + (get_local $0) + ) + ) + ) + (i64.store offset=16 + (get_local $12) + (get_local $9) + ) + (i64.store offset=32 + (get_local $12) + (i64.const 0) + ) + (block $label$8 + (block $label$9 + (block $label$10 + (br_if $label$10 + (i32.le_s + (tee_local $7 + (call $db_find_i64 + (get_local $9) + (get_local $9) + (i64.const 7235159550573564928) + (i64.const 0) + ) + ) + (i32.const -1) + ) + ) + (call $eosio_assert + (i32.eq + (i32.load offset=72 + (tee_local $7 + (call $_ZNK5eosio11multi_indexILy7235159550573564928EN5types11globalstateEJEE31load_object_by_primary_iteratorEl + (i32.add + (get_local $12) + (i32.const 8) + ) + (get_local $7) + ) + ) + ) + (i32.add + (get_local $12) + (i32.const 8) + ) + ) + (i32.const 112) + ) + (set_local $9 + (i64.load + (get_local $0) + ) + ) + (i32.store offset=48 + (get_local $12) + (get_local $3) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 208) + ) + (call $_ZN5eosio11multi_indexILy7235159550573564928EN5types11globalstateEJEE6modifyIZN5token4mintENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEE10public_keyNS_5assetESC_EUlRT_E1_EEvRKS2_yOSF_ + (i32.add + (get_local $12) + (i32.const 8) + ) + (get_local $7) + (get_local $9) + (i32.add + (get_local $12) + (i32.const 48) + ) + ) + (br_if $label$9 + (tee_local $2 + (i32.load offset=32 + (get_local $12) + ) + ) + ) + (br $label$8) + ) + (set_local $9 + (i64.load + (get_local $0) + ) + ) + (i32.store + (get_local $12) + (get_local $3) + ) + (call $_ZN5eosio11multi_indexILy7235159550573564928EN5types11globalstateEJEE7emplaceIZN5token4mintENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEE10public_keyNS_5assetESC_EUlRT_E2_EENS3_14const_iteratorEyOSF_ + (i32.add + (get_local $12) + (i32.const 48) + ) + (i32.add + (get_local $12) + (i32.const 8) + ) + (get_local $9) + (get_local $12) + ) + (br_if $label$8 + (i32.eqz + (tee_local $2 + (i32.load offset=32 + (get_local $12) + ) + ) + ) + ) + ) + (block $label$11 + (block $label$12 + (br_if $label$12 + (i32.eq + (tee_local $7 + (i32.load + (tee_local $0 + (i32.add + (get_local $12) + (i32.const 36) + ) + ) + ) + ) + (get_local $2) + ) + ) + (loop $label$13 + (set_local $6 + (i32.load + (tee_local $7 + (i32.add + (get_local $7) + (i32.const -24) + ) + ) + ) + ) + (i32.store + (get_local $7) + (i32.const 0) + ) + (block $label$14 + (br_if $label$14 + (i32.eqz + (get_local $6) + ) + ) + (call $_ZdlPv + (get_local $6) + ) + ) + (br_if $label$13 + (i32.ne + (get_local $2) + (get_local $7) + ) + ) + ) + (set_local $7 + (i32.load + (i32.add + (get_local $12) + (i32.const 32) + ) + ) + ) + (br $label$11) + ) + (set_local $7 + (get_local $2) + ) + ) + (i32.store + (get_local $0) + (get_local $2) + ) + (call $_ZdlPv + (get_local $7) + ) + ) + (block $label$15 + (br_if $label$15 + (i32.eqz + (tee_local $2 + (i32.load offset=80 + (get_local $12) + ) + ) + ) + ) + (block $label$16 + (block $label$17 + (br_if $label$17 + (i32.eq + (tee_local $7 + (i32.load + (tee_local $0 + (i32.add + (get_local $12) + (i32.const 84) + ) + ) + ) + ) + (get_local $2) + ) + ) + (loop $label$18 + (set_local $6 + (i32.load + (tee_local $7 + (i32.add + (get_local $7) + (i32.const -24) + ) + ) + ) + ) + (i32.store + (get_local $7) + (i32.const 0) + ) + (block $label$19 + (br_if $label$19 + (i32.eqz + (get_local $6) + ) + ) + (call $_ZdlPv + (get_local $6) + ) + ) + (br_if $label$18 + (i32.ne + (get_local $2) + (get_local $7) + ) + ) + ) + (set_local $7 + (i32.load + (i32.add + (get_local $12) + (i32.const 80) + ) + ) + ) + (br $label$16) + ) + (set_local $7 + (get_local $2) + ) + ) + (i32.store + (get_local $0) + (get_local $2) + ) + (call $_ZdlPv + (get_local $7) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $12) + (i32.const 96) + ) + ) + ) + (func $_ZN5eosio14execute_actionI5tokenS1_JNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEE10public_keyNS_5assetES8_EEEbPT_MT0_FvDpT1_E (param $0 i32) (param $1 i32) (result i32) + (local $2 i32) + (local $3 i64) + (local $4 i32) + (local $5 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $4 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 128) + ) + ) + ) + (i32.store offset=92 + (tee_local $5 + (get_local $4) + ) + (get_local $0) + ) + (i32.store offset=80 + (get_local $5) + (i32.load + (get_local $1) + ) + ) + (i32.store offset=84 + (get_local $5) + (i32.load offset=4 + (get_local $1) + ) + ) + (set_local $1 + (i32.const 0) + ) + (set_local $0 + (i32.const 0) + ) + (block $label$0 + (br_if $label$0 + (i32.eqz + (tee_local $2 + (call $action_data_size) + ) + ) + ) + (block $label$1 + (block $label$2 + (br_if $label$2 + (i32.lt_u + (get_local $2) + (i32.const 513) + ) + ) + (set_local $0 + (call $malloc + (get_local $2) + ) + ) + (br $label$1) + ) + (i32.store offset=4 + (i32.const 0) + (tee_local $0 + (i32.sub + (get_local $4) + (i32.and + (i32.add + (get_local $2) + (i32.const 15) + ) + (i32.const -16) + ) + ) + ) + ) + ) + (drop + (call $read_action_data + (get_local $0) + (get_local $2) + ) + ) + ) + (i32.store offset=8 + (get_local $5) + (i32.const 0) + ) + (i64.store + (get_local $5) + (i64.const 0) + ) + (drop + (call $memset + (i32.add + (get_local $5) + (i32.const 12) + ) + (i32.const 0) + (i32.const 34) + ) + ) + (i64.store + (i32.add + (get_local $5) + (i32.const 56) + ) + (i64.const 1398362884) + ) + (i64.store offset=48 + (get_local $5) + (i64.const 0) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 256) + ) + (set_local $3 + (i64.const 5462355) + ) + (block $label$3 + (block $label$4 + (loop $label$5 + (br_if $label$4 + (i32.gt_u + (i32.add + (i32.shl + (i32.wrap/i64 + (get_local $3) + ) + (i32.const 24) + ) + (i32.const -1073741825) + ) + (i32.const 452984830) + ) + ) + (block $label$6 + (br_if $label$6 + (i64.ne + (i64.and + (tee_local $3 + (i64.shr_u + (get_local $3) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (loop $label$7 + (br_if $label$4 + (i64.ne + (i64.and + (tee_local $3 + (i64.shr_u + (get_local $3) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (br_if $label$7 + (i32.lt_s + (tee_local $1 + (i32.add + (get_local $1) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + ) + ) + (set_local $4 + (i32.const 1) + ) + (br_if $label$5 + (i32.lt_s + (tee_local $1 + (i32.add + (get_local $1) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + (br $label$3) + ) + ) + (set_local $4 + (i32.const 0) + ) + ) + (call $eosio_assert + (get_local $4) + (i32.const 176) + ) + (i32.store + (i32.add + (get_local $5) + (i32.const 72) + ) + (i32.const 0) + ) + (i64.store offset=64 + (get_local $5) + (i64.const 0) + ) + (i32.store offset=100 + (get_local $5) + (get_local $0) + ) + (i32.store offset=96 + (get_local $5) + (get_local $0) + ) + (i32.store offset=104 + (get_local $5) + (i32.add + (get_local $0) + (get_local $2) + ) + ) + (i32.store offset=112 + (get_local $5) + (i32.add + (get_local $5) + (i32.const 96) + ) + ) + (i32.store offset=120 + (get_local $5) + (get_local $5) + ) + (call $_ZN5boost6fusion6detail17for_each_unrolledILi4EE4callINS0_18std_tuple_iteratorINSt3__15tupleIJNS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEE10public_keyN5eosio5assetESD_EEELi0EEEZNSF_rsINSF_10datastreamIPKcEEJSD_SE_SG_SD_EEERT_SP_RNS7_IJDpT0_EEEEUlSP_E_EEvRKSO_RKT0_ + (i32.add + (get_local $5) + (i32.const 120) + ) + (i32.add + (get_local $5) + (i32.const 112) + ) + ) + (block $label$8 + (br_if $label$8 + (i32.lt_u + (get_local $2) + (i32.const 513) + ) + ) + (call $free + (get_local $0) + ) + ) + (i32.store offset=100 + (get_local $5) + (i32.add + (get_local $5) + (i32.const 80) + ) + ) + (i32.store offset=96 + (get_local $5) + (i32.add + (get_local $5) + (i32.const 92) + ) + ) + (call $_ZN5boost4mp116detail16tuple_apply_implIRZN5eosio14execute_actionI5tokenS5_JNSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEE10public_keyNS3_5assetESC_EEEbPT_MT0_FvDpT1_EEUlDpT_E_RNS6_5tupleIJSC_SD_SE_SC_EEEJLj0ELj1ELj2ELj3EEEEDTclclsr3stdE7forwardISF_Efp_Espclsr3stdE3getIXT1_EEclsr3stdE7forwardISH_Efp0_EEEEOSF_OSH_NS0_16integer_sequenceIjJXspT1_EEEE + (i32.add + (get_local $5) + (i32.const 96) + ) + (get_local $5) + ) + (block $label$9 + (br_if $label$9 + (i32.eqz + (i32.and + (i32.load8_u offset=64 + (get_local $5) + ) + (i32.const 1) + ) + ) + ) + (call $_ZdlPv + (i32.load + (i32.add + (get_local $5) + (i32.const 72) + ) + ) + ) + ) + (block $label$10 + (br_if $label$10 + (i32.eqz + (i32.and + (i32.load8_u + (get_local $5) + ) + (i32.const 1) + ) + ) + ) + (call $_ZdlPv + (i32.load + (i32.add + (get_local $5) + (i32.const 8) + ) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $5) + (i32.const 128) + ) + ) + (i32.const 1) + ) + (func $_ZN5token8transferE10public_keyS0_N5eosio5assetENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE9signature (type $FUNCSIG$viiiiii) (param $0 i32) (param $1 i32) (param $2 i32) (param $3 i32) (param $4 i32) (param $5 i32) + (local $6 i32) + (local $7 i32) + (local $8 i32) + (local $9 i64) + (local $10 i32) + (local $11 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $11 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 800) + ) + ) + ) + (call $eosio_assert + (i64.eq + (i64.load offset=8 + (get_local $3) + ) + (i64.const 1179599620) + ) + (i32.const 864) + ) + (block $label$0 + (block $label$1 + (br_if $label$1 + (i32.and + (tee_local $10 + (i32.load8_u + (get_local $4) + ) + ) + (i32.const 1) + ) + ) + (set_local $10 + (i32.shr_u + (get_local $10) + (i32.const 1) + ) + ) + (br $label$0) + ) + (set_local $10 + (i32.load offset=4 + (get_local $4) + ) + ) + ) + (call $eosio_assert + (i32.lt_u + (get_local $10) + (i32.const 257) + ) + (i32.const 640) + ) + (set_local $7 + (i32.const 0) + ) + (set_local $6 + (i32.const 0) + ) + (block $label$2 + (br_if $label$2 + (i64.gt_u + (i64.add + (i64.load + (get_local $3) + ) + (i64.const 4611686018427387903) + ) + (i64.const 9223372036854775806) + ) + ) + (set_local $9 + (i64.shr_u + (i64.load + (i32.add + (get_local $3) + (i32.const 8) + ) + ) + (i64.const 8) + ) + ) + (set_local $10 + (i32.const 0) + ) + (block $label$3 + (loop $label$4 + (br_if $label$3 + (i32.gt_u + (i32.add + (i32.shl + (i32.wrap/i64 + (get_local $9) + ) + (i32.const 24) + ) + (i32.const -1073741825) + ) + (i32.const 452984830) + ) + ) + (block $label$5 + (br_if $label$5 + (i64.ne + (i64.and + (tee_local $9 + (i64.shr_u + (get_local $9) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (loop $label$6 + (br_if $label$3 + (i64.ne + (i64.and + (tee_local $9 + (i64.shr_u + (get_local $9) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (br_if $label$6 + (i32.lt_s + (tee_local $10 + (i32.add + (get_local $10) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + ) + ) + (set_local $6 + (i32.const 1) + ) + (br_if $label$4 + (i32.lt_s + (tee_local $10 + (i32.add + (get_local $10) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + (br $label$2) + ) + ) + (set_local $6 + (i32.const 0) + ) + ) + (call $eosio_assert + (get_local $6) + (i32.const 672) + ) + (call $eosio_assert + (i64.gt_s + (i64.load + (get_local $3) + ) + (i64.const 0) + ) + (i32.const 704) + ) + (i32.store + (i32.add + (get_local $11) + (i32.const 336) + ) + (i32.const 0) + ) + (i64.store offset=320 + (get_local $11) + (i64.const -1) + ) + (i64.store offset=328 + (get_local $11) + (i64.const 0) + ) + (i64.store offset=304 + (get_local $11) + (tee_local $9 + (i64.load + (get_local $0) + ) + ) + ) + (i64.store offset=312 + (get_local $11) + (get_local $9) + ) + (block $label$7 + (br_if $label$7 + (i32.lt_s + (tee_local $10 + (call $db_find_i64 + (get_local $9) + (get_local $9) + (i64.const -3013344361224962048) + (i64.add + (i64.add + (i64.extend_s/i32 + (i32.shl + (select + (i32.add + (tee_local $10 + (i32.load8_s offset=5 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $10) + (i32.lt_s + (get_local $10) + (i32.const 0) + ) + ) + (i32.const 16) + ) + ) + (i64.extend_s/i32 + (i32.add + (i32.add + (i32.add + (i32.shl + (select + (i32.add + (tee_local $10 + (i32.load8_s offset=2 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $10) + (i32.lt_s + (get_local $10) + (i32.const 0) + ) + ) + (i32.const 4) + ) + (select + (i32.add + (tee_local $10 + (i32.load8_s offset=1 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $10) + (i32.lt_s + (get_local $10) + (i32.const 0) + ) + ) + ) + (i32.shl + (select + (i32.add + (tee_local $10 + (i32.load8_s offset=3 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $10) + (i32.lt_s + (get_local $10) + (i32.const 0) + ) + ) + (i32.const 8) + ) + ) + (i32.shl + (select + (i32.add + (tee_local $10 + (i32.load8_s offset=4 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $10) + (i32.lt_s + (get_local $10) + (i32.const 0) + ) + ) + (i32.const 12) + ) + ) + ) + ) + (i64.extend_s/i32 + (i32.shl + (select + (i32.add + (tee_local $10 + (i32.load8_s offset=6 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $10) + (i32.lt_s + (get_local $10) + (i32.const 0) + ) + ) + (i32.const 20) + ) + ) + ) + ) + ) + (i32.const 0) + ) + ) + (call $eosio_assert + (i32.eq + (i32.load offset=96 + (tee_local $7 + (call $_ZNK5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE31load_object_by_primary_iteratorEl + (i32.add + (get_local $11) + (i32.const 304) + ) + (get_local $10) + ) + ) + ) + (i32.add + (get_local $11) + (i32.const 304) + ) + ) + (i32.const 112) + ) + ) + (call $eosio_assert + (tee_local $8 + (i32.ne + (get_local $7) + (i32.const 0) + ) + ) + (i32.const 752) + ) + (call $eosio_assert + (i64.ge_s + (i64.add + (i64.load offset=72 + (get_local $7) + ) + (i64.load offset=56 + (get_local $7) + ) + ) + (i64.load + (get_local $3) + ) + ) + (i32.const 784) + ) + (call $eosio_assert + (i64.ge_u + (i64.add + (i64.load offset=72 + (get_local $7) + ) + (i64.load offset=56 + (get_local $7) + ) + ) + (i64.load offset=8 + (get_local $0) + ) + ) + (i32.const 816) + ) + (i64.store + (tee_local $10 + (i32.add + (get_local $11) + (i32.const 272) + ) + ) + (i64.const 1398362884) + ) + (i64.store offset=264 + (get_local $11) + (i64.const 0) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 256) + ) + (set_local $9 + (i64.shr_u + (i64.load + (get_local $10) + ) + (i64.const 8) + ) + ) + (set_local $10 + (i32.const 0) + ) + (block $label$8 + (block $label$9 + (loop $label$10 + (br_if $label$9 + (i32.gt_u + (i32.add + (i32.shl + (i32.wrap/i64 + (get_local $9) + ) + (i32.const 24) + ) + (i32.const -1073741825) + ) + (i32.const 452984830) + ) + ) + (block $label$11 + (br_if $label$11 + (i64.ne + (i64.and + (tee_local $9 + (i64.shr_u + (get_local $9) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (loop $label$12 + (br_if $label$9 + (i64.ne + (i64.and + (tee_local $9 + (i64.shr_u + (get_local $9) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (br_if $label$12 + (i32.lt_s + (tee_local $10 + (i32.add + (get_local $10) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + ) + ) + (set_local $6 + (i32.const 1) + ) + (br_if $label$10 + (i32.lt_s + (tee_local $10 + (i32.add + (get_local $10) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + (br $label$8) + ) + ) + (set_local $6 + (i32.const 0) + ) + ) + (call $eosio_assert + (get_local $6) + (i32.const 176) + ) + (i32.store + (i32.add + (get_local $11) + (i32.const 284) + ) + (i32.const 0) + ) + (i32.store + (i32.add + (i32.add + (get_local $11) + (i32.const 192) + ) + (i32.const 96) + ) + (i32.const 0) + ) + (i32.store + (i32.add + (get_local $11) + (i32.const 276) + ) + (i32.load + (i32.add + (get_local $3) + (i32.const 12) + ) + ) + ) + (i32.store + (i32.add + (get_local $11) + (i32.const 272) + ) + (i32.load + (i32.add + (get_local $3) + (i32.const 8) + ) + ) + ) + (i32.store + (i32.add + (i32.add + (get_local $11) + (i32.const 192) + ) + (i32.const 76) + ) + (i32.load + (i32.add + (get_local $3) + (i32.const 4) + ) + ) + ) + (i32.store offset=280 + (get_local $11) + (i32.const 0) + ) + (i32.store offset=264 + (get_local $11) + (i32.load + (get_local $3) + ) + ) + (drop + (call $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEaSERKS5_ + (tee_local $10 + (i32.add + (i32.add + (get_local $11) + (i32.const 192) + ) + (i32.const 88) + ) + ) + (get_local $4) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $11) + (i32.const 192) + ) + (get_local $1) + (i32.const 34) + ) + ) + (drop + (call $memcpy + (i32.add + (i32.add + (get_local $11) + (i32.const 192) + ) + (i32.const 34) + ) + (get_local $2) + (i32.const 34) + ) + ) + (i64.store offset=296 + (get_local $11) + (i64.load + (i32.add + (get_local $7) + (i32.const 48) + ) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $11) + (i32.const 80) + ) + (i32.add + (get_local $11) + (i32.const 192) + ) + (i32.const 88) + ) + ) + (drop + (call $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_ + (tee_local $1 + (i32.add + (i32.add + (get_local $11) + (i32.const 80) + ) + (i32.const 88) + ) + ) + (get_local $10) + ) + ) + (i64.store offset=184 + (get_local $11) + (i64.load offset=296 + (get_local $11) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $11) + (i32.const 14) + ) + (get_local $5) + (i32.const 66) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $11) + (i32.const 344) + ) + (i32.add + (get_local $11) + (i32.const 14) + ) + (i32.const 66) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $11) + (i32.const 416) + ) + (i32.add + (get_local $11) + (i32.const 80) + ) + (i32.const 34) + ) + ) + (drop + (call $memcpy + (i32.add + (i32.add + (get_local $11) + (i32.const 416) + ) + (i32.const 34) + ) + (i32.add + (i32.add + (get_local $11) + (i32.const 80) + ) + (i32.const 34) + ) + (i32.const 34) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $11) + (i32.const 484) + ) + (i32.add + (get_local $11) + (i32.const 152) + ) + (i32.const 8) + ) + ) + (drop + (call $memcpy + (i32.add + (i32.add + (get_local $11) + (i32.const 416) + ) + (i32.const 76) + ) + (get_local $1) + (i32.const 12) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $11) + (i32.const 748) + ) + (i32.add + (get_local $11) + (i32.const 184) + ) + (i32.const 8) + ) + ) + (call $sha256 + (i32.add + (get_local $11) + (i32.const 416) + ) + (i32.const 340) + (i32.add + (get_local $11) + (i32.const 768) + ) + ) + (call $assert_recover_key + (i32.add + (get_local $11) + (i32.const 768) + ) + (i32.add + (get_local $11) + (i32.const 344) + ) + (i32.const 66) + (i32.add + (get_local $11) + (i32.const 80) + ) + (i32.const 34) + ) + (block $label$13 + (br_if $label$13 + (i32.eqz + (i32.and + (i32.load8_u offset=168 + (get_local $11) + ) + (i32.const 1) + ) + ) + ) + (call $_ZdlPv + (i32.load + (i32.add + (i32.add + (get_local $11) + (i32.const 80) + ) + (i32.const 96) + ) + ) + ) + ) + (i64.store offset=768 + (get_local $11) + (call $current_time) + ) + (i64.store + (get_local $11) + (i64.const 0) + ) + (set_local $9 + (i64.load + (get_local $0) + ) + ) + (i32.store offset=424 + (get_local $11) + (get_local $0) + ) + (i32.store offset=428 + (get_local $11) + (get_local $3) + ) + (i32.store offset=420 + (get_local $11) + (i32.add + (get_local $11) + (i32.const 768) + ) + ) + (i32.store offset=416 + (get_local $11) + (get_local $11) + ) + (call $eosio_assert + (get_local $8) + (i32.const 208) + ) + (call $_ZN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE6modifyIZN5token8transferE10public_keyS6_NS_5assetENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEE9signatureEUlRT_E_EEvRKS2_yOSG_ + (i32.add + (get_local $11) + (i32.const 304) + ) + (get_local $7) + (get_local $9) + (i32.add + (get_local $11) + (i32.const 416) + ) + ) + (set_local $9 + (i64.add + (i64.add + (i64.extend_s/i32 + (i32.shl + (select + (i32.add + (tee_local $10 + (i32.load8_s offset=5 + (get_local $2) + ) + ) + (i32.const 256) + ) + (get_local $10) + (i32.lt_s + (get_local $10) + (i32.const 0) + ) + ) + (i32.const 16) + ) + ) + (i64.extend_s/i32 + (i32.add + (i32.add + (i32.add + (i32.shl + (select + (i32.add + (tee_local $10 + (i32.load8_s offset=2 + (get_local $2) + ) + ) + (i32.const 256) + ) + (get_local $10) + (i32.lt_s + (get_local $10) + (i32.const 0) + ) + ) + (i32.const 4) + ) + (select + (i32.add + (tee_local $10 + (i32.load8_s offset=1 + (get_local $2) + ) + ) + (i32.const 256) + ) + (get_local $10) + (i32.lt_s + (get_local $10) + (i32.const 0) + ) + ) + ) + (i32.shl + (select + (i32.add + (tee_local $10 + (i32.load8_s offset=3 + (get_local $2) + ) + ) + (i32.const 256) + ) + (get_local $10) + (i32.lt_s + (get_local $10) + (i32.const 0) + ) + ) + (i32.const 8) + ) + ) + (i32.shl + (select + (i32.add + (tee_local $10 + (i32.load8_s offset=4 + (get_local $2) + ) + ) + (i32.const 256) + ) + (get_local $10) + (i32.lt_s + (get_local $10) + (i32.const 0) + ) + ) + (i32.const 12) + ) + ) + ) + ) + (i64.extend_s/i32 + (i32.shl + (select + (i32.add + (tee_local $10 + (i32.load8_s offset=6 + (get_local $2) + ) + ) + (i32.const 256) + ) + (get_local $10) + (i32.lt_s + (get_local $10) + (i32.const 0) + ) + ) + (i32.const 20) + ) + ) + ) + ) + (block $label$14 + (br_if $label$14 + (i32.eq + (tee_local $1 + (i32.load + (i32.add + (get_local $11) + (i32.const 332) + ) + ) + ) + (tee_local $4 + (i32.load + (i32.add + (get_local $11) + (i32.const 328) + ) + ) + ) + ) + ) + (set_local $10 + (i32.add + (get_local $1) + (i32.const -24) + ) + ) + (set_local $6 + (i32.sub + (i32.const 0) + (get_local $4) + ) + ) + (loop $label$15 + (br_if $label$14 + (i64.eq + (i64.load + (i32.load + (get_local $10) + ) + ) + (get_local $9) + ) + ) + (set_local $1 + (get_local $10) + ) + (set_local $10 + (tee_local $7 + (i32.add + (get_local $10) + (i32.const -24) + ) + ) + ) + (br_if $label$15 + (i32.ne + (i32.add + (get_local $7) + (get_local $6) + ) + (i32.const -24) + ) + ) + ) + ) + (block $label$16 + (block $label$17 + (block $label$18 + (block $label$19 + (block $label$20 + (br_if $label$20 + (i32.eq + (get_local $1) + (get_local $4) + ) + ) + (call $eosio_assert + (i32.eq + (i32.load offset=96 + (tee_local $10 + (i32.load + (i32.add + (get_local $1) + (i32.const -24) + ) + ) + ) + ) + (i32.add + (get_local $11) + (i32.const 304) + ) + ) + (i32.const 112) + ) + (set_local $9 + (i64.load + (get_local $0) + ) + ) + (br_if $label$19 + (get_local $10) + ) + (br $label$17) + ) + (br_if $label$18 + (i32.le_s + (tee_local $10 + (call $db_find_i64 + (i64.load offset=304 + (get_local $11) + ) + (i64.load + (i32.add + (get_local $11) + (i32.const 312) + ) + ) + (i64.const -3013344361224962048) + (get_local $9) + ) + ) + (i32.const -1) + ) + ) + (call $eosio_assert + (i32.eq + (i32.load offset=96 + (tee_local $10 + (call $_ZNK5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE31load_object_by_primary_iteratorEl + (i32.add + (get_local $11) + (i32.const 304) + ) + (get_local $10) + ) + ) + ) + (i32.add + (get_local $11) + (i32.const 304) + ) + ) + (i32.const 112) + ) + (set_local $9 + (i64.load + (get_local $0) + ) + ) + ) + (i32.store offset=416 + (get_local $11) + (get_local $3) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 208) + ) + (call $_ZN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE6modifyIZN5token8transferE10public_keyS6_NS_5assetENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEE9signatureEUlRT_E0_EEvRKS2_yOSG_ + (i32.add + (get_local $11) + (i32.const 304) + ) + (get_local $10) + (get_local $9) + (i32.add + (get_local $11) + (i32.const 416) + ) + ) + (br $label$16) + ) + (set_local $9 + (i64.load + (get_local $0) + ) + ) + ) + (i32.store offset=420 + (get_local $11) + (get_local $2) + ) + (i32.store offset=416 + (get_local $11) + (get_local $0) + ) + (i32.store offset=424 + (get_local $11) + (get_local $3) + ) + (call $_ZN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE7emplaceIZN5token8transferE10public_keyS6_NS_5assetENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEE9signatureEUlRT_E1_EENS3_14const_iteratorEyOSG_ + (i32.add + (get_local $11) + (i32.const 344) + ) + (i32.add + (get_local $11) + (i32.const 304) + ) + (get_local $9) + (i32.add + (get_local $11) + (i32.const 416) + ) + ) + ) + (i32.store + (i32.add + (get_local $11) + (i32.const 448) + ) + (i32.const 0) + ) + (i64.store offset=432 + (get_local $11) + (i64.const -1) + ) + (i64.store offset=416 + (get_local $11) + (tee_local $9 + (i64.load + (get_local $0) + ) + ) + ) + (i64.store offset=424 + (get_local $11) + (get_local $9) + ) + (i64.store offset=440 + (get_local $11) + (i64.const 0) + ) + (set_local $10 + (i32.const 0) + ) + (block $label$21 + (br_if $label$21 + (i32.lt_s + (tee_local $7 + (call $db_find_i64 + (get_local $9) + (get_local $9) + (i64.const 7235159550573564928) + (i64.const 0) + ) + ) + (i32.const 0) + ) + ) + (call $eosio_assert + (i32.eq + (i32.load offset=72 + (tee_local $10 + (call $_ZNK5eosio11multi_indexILy7235159550573564928EN5types11globalstateEJEE31load_object_by_primary_iteratorEl + (i32.add + (get_local $11) + (i32.const 416) + ) + (get_local $7) + ) + ) + ) + (i32.add + (get_local $11) + (i32.const 416) + ) + ) + (i32.const 112) + ) + ) + (set_local $9 + (i64.load + (get_local $0) + ) + ) + (i32.store offset=344 + (get_local $11) + (get_local $3) + ) + (i32.store offset=348 + (get_local $11) + (get_local $11) + ) + (i32.store offset=352 + (get_local $11) + (i32.add + (get_local $11) + (i32.const 768) + ) + ) + (call $eosio_assert + (i32.ne + (get_local $10) + (i32.const 0) + ) + (i32.const 208) + ) + (call $_ZN5eosio11multi_indexILy7235159550573564928EN5types11globalstateEJEE6modifyIZN5token8transferE10public_keyS6_NS_5assetENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEE9signatureEUlRT_E2_EEvRKS2_yOSG_ + (i32.add + (get_local $11) + (i32.const 416) + ) + (get_local $10) + (get_local $9) + (i32.add + (get_local $11) + (i32.const 344) + ) + ) + (call $prints + (i32.const 736) + ) + (block $label$22 + (br_if $label$22 + (i32.eqz + (tee_local $1 + (i32.load offset=440 + (get_local $11) + ) + ) + ) + ) + (block $label$23 + (block $label$24 + (br_if $label$24 + (i32.eq + (tee_local $10 + (i32.load + (tee_local $3 + (i32.add + (get_local $11) + (i32.const 444) + ) + ) + ) + ) + (get_local $1) + ) + ) + (loop $label$25 + (set_local $7 + (i32.load + (tee_local $10 + (i32.add + (get_local $10) + (i32.const -24) + ) + ) + ) + ) + (i32.store + (get_local $10) + (i32.const 0) + ) + (block $label$26 + (br_if $label$26 + (i32.eqz + (get_local $7) + ) + ) + (call $_ZdlPv + (get_local $7) + ) + ) + (br_if $label$25 + (i32.ne + (get_local $1) + (get_local $10) + ) + ) + ) + (set_local $10 + (i32.load + (i32.add + (get_local $11) + (i32.const 440) + ) + ) + ) + (br $label$23) + ) + (set_local $10 + (get_local $1) + ) + ) + (i32.store + (get_local $3) + (get_local $1) + ) + (call $_ZdlPv + (get_local $10) + ) + ) + (block $label$27 + (br_if $label$27 + (i32.eqz + (i32.and + (i32.load8_u + (i32.add + (get_local $11) + (i32.const 280) + ) + ) + (i32.const 1) + ) + ) + ) + (call $_ZdlPv + (i32.load + (i32.add + (get_local $11) + (i32.const 288) + ) + ) + ) + ) + (block $label$28 + (br_if $label$28 + (i32.eqz + (tee_local $1 + (i32.load offset=328 + (get_local $11) + ) + ) + ) + ) + (block $label$29 + (block $label$30 + (br_if $label$30 + (i32.eq + (tee_local $10 + (i32.load + (tee_local $3 + (i32.add + (get_local $11) + (i32.const 332) + ) + ) + ) + ) + (get_local $1) + ) + ) + (loop $label$31 + (set_local $7 + (i32.load + (tee_local $10 + (i32.add + (get_local $10) + (i32.const -24) + ) + ) + ) + ) + (i32.store + (get_local $10) + (i32.const 0) + ) + (block $label$32 + (br_if $label$32 + (i32.eqz + (get_local $7) + ) + ) + (call $_ZdlPv + (get_local $7) + ) + ) + (br_if $label$31 + (i32.ne + (get_local $1) + (get_local $10) + ) + ) + ) + (set_local $10 + (i32.load + (i32.add + (get_local $11) + (i32.const 328) + ) + ) + ) + (br $label$29) + ) + (set_local $10 + (get_local $1) + ) + ) + (i32.store + (get_local $3) + (get_local $1) + ) + (call $_ZdlPv + (get_local $10) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $11) + (i32.const 800) + ) + ) + ) + (func $_ZN5eosio14execute_actionI5tokenS1_J10public_keyS2_NS_5assetENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE9signatureEEEbPT_MT0_FvDpT1_E (param $0 i32) (param $1 i32) (result i32) + (local $2 i32) + (local $3 i64) + (local $4 i32) + (local $5 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $4 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 224) + ) + ) + ) + (i32.store offset=188 + (tee_local $5 + (get_local $4) + ) + (get_local $0) + ) + (i32.store offset=176 + (get_local $5) + (i32.load + (get_local $1) + ) + ) + (i32.store offset=180 + (get_local $5) + (i32.load offset=4 + (get_local $1) + ) + ) + (set_local $1 + (i32.const 0) + ) + (set_local $0 + (i32.const 0) + ) + (block $label$0 + (br_if $label$0 + (i32.eqz + (tee_local $2 + (call $action_data_size) + ) + ) + ) + (block $label$1 + (block $label$2 + (br_if $label$2 + (i32.lt_u + (get_local $2) + (i32.const 513) + ) + ) + (set_local $0 + (call $malloc + (get_local $2) + ) + ) + (br $label$1) + ) + (i32.store offset=4 + (i32.const 0) + (tee_local $0 + (i32.sub + (get_local $4) + (i32.and + (i32.add + (get_local $2) + (i32.const 15) + ) + (i32.const -16) + ) + ) + ) + ) + ) + (drop + (call $read_action_data + (get_local $0) + (get_local $2) + ) + ) + ) + (drop + (call $memset + (i32.add + (get_local $5) + (i32.const 8) + ) + (i32.const 0) + (i32.const 34) + ) + ) + (drop + (call $memset + (i32.add + (i32.add + (get_local $5) + (i32.const 8) + ) + (i32.const 34) + ) + (i32.const 0) + (i32.const 34) + ) + ) + (i64.store offset=88 + (get_local $5) + (i64.const 1398362884) + ) + (i64.store offset=80 + (get_local $5) + (i64.const 0) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 256) + ) + (set_local $3 + (i64.const 5462355) + ) + (block $label$3 + (block $label$4 + (loop $label$5 + (br_if $label$4 + (i32.gt_u + (i32.add + (i32.shl + (i32.wrap/i64 + (get_local $3) + ) + (i32.const 24) + ) + (i32.const -1073741825) + ) + (i32.const 452984830) + ) + ) + (block $label$6 + (br_if $label$6 + (i64.ne + (i64.and + (tee_local $3 + (i64.shr_u + (get_local $3) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (loop $label$7 + (br_if $label$4 + (i64.ne + (i64.and + (tee_local $3 + (i64.shr_u + (get_local $3) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (br_if $label$7 + (i32.lt_s + (tee_local $1 + (i32.add + (get_local $1) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + ) + ) + (set_local $4 + (i32.const 1) + ) + (br_if $label$5 + (i32.lt_s + (tee_local $1 + (i32.add + (get_local $1) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + (br $label$3) + ) + ) + (set_local $4 + (i32.const 0) + ) + ) + (call $eosio_assert + (get_local $4) + (i32.const 176) + ) + (i32.store offset=104 + (get_local $5) + (i32.const 0) + ) + (i64.store offset=96 + (get_local $5) + (i64.const 0) + ) + (drop + (call $memset + (i32.add + (get_local $5) + (i32.const 108) + ) + (i32.const 0) + (i32.const 66) + ) + ) + (i32.store offset=196 + (get_local $5) + (get_local $0) + ) + (i32.store offset=192 + (get_local $5) + (get_local $0) + ) + (i32.store offset=200 + (get_local $5) + (i32.add + (get_local $0) + (get_local $2) + ) + ) + (i32.store offset=208 + (get_local $5) + (i32.add + (get_local $5) + (i32.const 192) + ) + ) + (i32.store offset=216 + (get_local $5) + (i32.add + (get_local $5) + (i32.const 8) + ) + ) + (call $_ZN5boost6fusion6detail17for_each_unrolledILi5EE4callINS0_18std_tuple_iteratorINSt3__15tupleIJ10public_keyS8_N5eosio5assetENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEE9signatureEEELi0EEEZNS9_rsINS9_10datastreamIPKcEEJS8_S8_SA_SG_SH_EEERT_SQ_RNS7_IJDpT0_EEEEUlSQ_E_EEvRKSP_RKT0_ + (i32.add + (get_local $5) + (i32.const 216) + ) + (i32.add + (get_local $5) + (i32.const 208) + ) + ) + (block $label$8 + (br_if $label$8 + (i32.lt_u + (get_local $2) + (i32.const 513) + ) + ) + (call $free + (get_local $0) + ) + ) + (i32.store offset=196 + (get_local $5) + (i32.add + (get_local $5) + (i32.const 176) + ) + ) + (i32.store offset=192 + (get_local $5) + (i32.add + (get_local $5) + (i32.const 188) + ) + ) + (call $_ZN5boost4mp116detail16tuple_apply_implIRZN5eosio14execute_actionI5tokenS5_J10public_keyS6_NS3_5assetENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEE9signatureEEEbPT_MT0_FvDpT1_EEUlDpT_E_RNS8_5tupleIJS6_S6_S7_SE_SF_EEEJLj0ELj1ELj2ELj3ELj4EEEEDTclclsr3stdE7forwardISG_Efp_Espclsr3stdE3getIXT1_EEclsr3stdE7forwardISI_Efp0_EEEEOSG_OSI_NS0_16integer_sequenceIjJXspT1_EEEE + (i32.add + (get_local $5) + (i32.const 192) + ) + (i32.add + (get_local $5) + (i32.const 8) + ) + ) + (block $label$9 + (br_if $label$9 + (i32.eqz + (i32.and + (i32.load8_u + (i32.add + (get_local $5) + (i32.const 96) + ) + ) + (i32.const 1) + ) + ) + ) + (call $_ZdlPv + (i32.load + (i32.add + (get_local $5) + (i32.const 104) + ) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $5) + (i32.const 224) + ) + ) + (i32.const 1) + ) + (func $_ZN5token6verifyE10public_keyS0_N5eosio5assetENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE9signature (type $FUNCSIG$viiiiii) (param $0 i32) (param $1 i32) (param $2 i32) (param $3 i32) (param $4 i32) (param $5 i32) + (local $6 i32) + (local $7 i32) + (local $8 i32) + (local $9 i64) + (local $10 i32) + (local $11 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $11 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 624) + ) + ) + ) + (set_local $7 + (i32.const 0) + ) + (i32.store offset=616 + (get_local $11) + (i32.const 0) + ) + (i64.store offset=608 + (get_local $11) + (i64.const 0) + ) + (i32.store + (i32.add + (get_local $11) + (i32.const 216) + ) + (i32.const 0) + ) + (i64.store offset=200 + (get_local $11) + (i64.const -1) + ) + (i64.store offset=208 + (get_local $11) + (i64.const 0) + ) + (i64.store offset=184 + (get_local $11) + (tee_local $9 + (i64.load + (get_local $0) + ) + ) + ) + (i64.store offset=192 + (get_local $11) + (get_local $9) + ) + (set_local $6 + (i32.const 0) + ) + (block $label$0 + (br_if $label$0 + (i32.lt_s + (tee_local $10 + (call $db_find_i64 + (get_local $9) + (get_local $9) + (i64.const -3013344361224962048) + (i64.add + (i64.add + (i64.extend_s/i32 + (i32.shl + (select + (i32.add + (tee_local $10 + (i32.load8_s offset=5 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $10) + (i32.lt_s + (get_local $10) + (i32.const 0) + ) + ) + (i32.const 16) + ) + ) + (i64.extend_s/i32 + (i32.add + (i32.add + (i32.add + (i32.shl + (select + (i32.add + (tee_local $10 + (i32.load8_s offset=2 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $10) + (i32.lt_s + (get_local $10) + (i32.const 0) + ) + ) + (i32.const 4) + ) + (select + (i32.add + (tee_local $10 + (i32.load8_s offset=1 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $10) + (i32.lt_s + (get_local $10) + (i32.const 0) + ) + ) + ) + (i32.shl + (select + (i32.add + (tee_local $10 + (i32.load8_s offset=3 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $10) + (i32.lt_s + (get_local $10) + (i32.const 0) + ) + ) + (i32.const 8) + ) + ) + (i32.shl + (select + (i32.add + (tee_local $10 + (i32.load8_s offset=4 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $10) + (i32.lt_s + (get_local $10) + (i32.const 0) + ) + ) + (i32.const 12) + ) + ) + ) + ) + (i64.extend_s/i32 + (i32.shl + (select + (i32.add + (tee_local $10 + (i32.load8_s offset=6 + (get_local $1) + ) + ) + (i32.const 256) + ) + (get_local $10) + (i32.lt_s + (get_local $10) + (i32.const 0) + ) + ) + (i32.const 20) + ) + ) + ) + ) + ) + (i32.const 0) + ) + ) + (call $eosio_assert + (i32.eq + (i32.load offset=96 + (tee_local $6 + (call $_ZNK5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE31load_object_by_primary_iteratorEl + (i32.add + (get_local $11) + (i32.const 184) + ) + (get_local $10) + ) + ) + ) + (i32.add + (get_local $11) + (i32.const 184) + ) + ) + (i32.const 112) + ) + ) + (i64.store + (tee_local $10 + (i32.add + (get_local $11) + (i32.const 152) + ) + ) + (i64.const 1398362884) + ) + (i64.store offset=144 + (get_local $11) + (i64.const 0) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 256) + ) + (set_local $9 + (i64.shr_u + (i64.load + (get_local $10) + ) + (i64.const 8) + ) + ) + (block $label$1 + (block $label$2 + (loop $label$3 + (set_local $10 + (i32.const 0) + ) + (br_if $label$2 + (i32.gt_u + (i32.add + (i32.shl + (i32.wrap/i64 + (get_local $9) + ) + (i32.const 24) + ) + (i32.const -1073741825) + ) + (i32.const 452984830) + ) + ) + (block $label$4 + (br_if $label$4 + (i64.ne + (i64.and + (tee_local $9 + (i64.shr_u + (get_local $9) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (loop $label$5 + (br_if $label$2 + (i64.ne + (i64.and + (tee_local $9 + (i64.shr_u + (get_local $9) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (br_if $label$5 + (i32.lt_s + (tee_local $7 + (i32.add + (get_local $7) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + ) + ) + (set_local $8 + (i32.const 1) + ) + (br_if $label$3 + (i32.lt_s + (tee_local $7 + (i32.add + (get_local $7) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + (br $label$1) + ) + ) + (set_local $8 + (i32.const 0) + ) + ) + (call $eosio_assert + (get_local $8) + (i32.const 176) + ) + (i32.store + (i32.add + (get_local $11) + (i32.const 168) + ) + (i32.const 0) + ) + (i64.store offset=160 + (get_local $11) + (i64.const 0) + ) + (drop + (call $memcpy + (i32.add + (get_local $11) + (i32.const 72) + ) + (get_local $1) + (i32.const 34) + ) + ) + (set_local $7 + (call $memcpy + (i32.add + (i32.add + (get_local $11) + (i32.const 72) + ) + (i32.const 34) + ) + (get_local $2) + (i32.const 34) + ) + ) + (i64.store + (i32.add + (get_local $11) + (i32.const 152) + ) + (i64.load + (i32.add + (get_local $3) + (i32.const 8) + ) + ) + ) + (i64.store offset=144 + (get_local $11) + (i64.load + (get_local $3) + ) + ) + (drop + (call $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEaSERKS5_ + (tee_local $8 + (i32.add + (get_local $11) + (i32.const 160) + ) + ) + (get_local $4) + ) + ) + (i64.store offset=176 + (get_local $11) + (i64.load offset=48 + (get_local $6) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $11) + (i32.const 224) + ) + (i32.add + (get_local $11) + (i32.const 72) + ) + (i32.const 34) + ) + ) + (drop + (call $memcpy + (i32.add + (i32.add + (get_local $11) + (i32.const 224) + ) + (i32.const 34) + ) + (get_local $7) + (i32.const 34) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $11) + (i32.const 292) + ) + (i32.add + (get_local $11) + (i32.const 144) + ) + (i32.const 8) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $11) + (i32.const 300) + ) + (get_local $8) + (i32.const 12) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $11) + (i32.const 556) + ) + (i32.add + (get_local $11) + (i32.const 176) + ) + (i32.const 8) + ) + ) + (set_local $6 + (i32.or + (i32.add + (get_local $11) + (i32.const 32) + ) + (i32.const 1) + ) + ) + (loop $label$6 + (call $_ZNSt3__19to_stringEi + (i32.add + (get_local $11) + (i32.const 32) + ) + (i32.load8_s + (i32.add + (i32.add + (get_local $11) + (i32.const 224) + ) + (get_local $10) + ) + ) + ) + (drop + (call $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcj + (i32.add + (get_local $11) + (i32.const 608) + ) + (select + (i32.load + (tee_local $3 + (i32.add + (i32.add + (get_local $11) + (i32.const 32) + ) + (i32.const 8) + ) + ) + ) + (get_local $6) + (tee_local $8 + (i32.and + (tee_local $7 + (i32.load8_u offset=32 + (get_local $11) + ) + ) + (i32.const 1) + ) + ) + ) + (select + (i32.load offset=36 + (get_local $11) + ) + (i32.shr_u + (get_local $7) + (i32.const 1) + ) + (get_local $8) + ) + ) + ) + (block $label$7 + (br_if $label$7 + (i32.eqz + (i32.and + (i32.load8_u offset=32 + (get_local $11) + ) + (i32.const 1) + ) + ) + ) + (call $_ZdlPv + (i32.load + (get_local $3) + ) + ) + ) + (br_if $label$6 + (i32.ne + (tee_local $10 + (i32.add + (get_local $10) + (i32.const 1) + ) + ) + (i32.const 340) + ) + ) + ) + (call $sha256 + (i32.add + (get_local $11) + (i32.const 224) + ) + (i32.const 340) + (i32.add + (get_local $11) + (i32.const 576) + ) + ) + (i32.store + (i32.add + (get_local $11) + (i32.const 64) + ) + (i32.const 0) + ) + (i64.store offset=48 + (get_local $11) + (i64.const -1) + ) + (i64.store offset=56 + (get_local $11) + (i64.const 0) + ) + (i64.store offset=32 + (get_local $11) + (tee_local $9 + (i64.load + (get_local $0) + ) + ) + ) + (i64.store offset=40 + (get_local $11) + (get_local $9) + ) + (block $label$8 + (block $label$9 + (block $label$10 + (br_if $label$10 + (i32.le_s + (tee_local $10 + (call $db_find_i64 + (get_local $9) + (get_local $9) + (i64.const -3922893385794322432) + (i64.add + (i64.add + (i64.extend_s/i32 + (i32.shl + (select + (i32.add + (tee_local $10 + (i32.load8_s + (i32.add + (get_local $1) + (i32.const 5) + ) + ) + ) + (i32.const 256) + ) + (get_local $10) + (i32.lt_s + (get_local $10) + (i32.const 0) + ) + ) + (i32.const 16) + ) + ) + (i64.extend_s/i32 + (i32.add + (i32.add + (i32.add + (i32.shl + (select + (i32.add + (tee_local $10 + (i32.load8_s + (i32.add + (get_local $1) + (i32.const 2) + ) + ) + ) + (i32.const 256) + ) + (get_local $10) + (i32.lt_s + (get_local $10) + (i32.const 0) + ) + ) + (i32.const 4) + ) + (select + (i32.add + (tee_local $10 + (i32.load8_s + (i32.add + (get_local $1) + (i32.const 1) + ) + ) + ) + (i32.const 256) + ) + (get_local $10) + (i32.lt_s + (get_local $10) + (i32.const 0) + ) + ) + ) + (i32.shl + (select + (i32.add + (tee_local $10 + (i32.load8_s + (i32.add + (get_local $1) + (i32.const 3) + ) + ) + ) + (i32.const 256) + ) + (get_local $10) + (i32.lt_s + (get_local $10) + (i32.const 0) + ) + ) + (i32.const 8) + ) + ) + (i32.shl + (select + (i32.add + (tee_local $10 + (i32.load8_s + (i32.add + (get_local $1) + (i32.const 4) + ) + ) + ) + (i32.const 256) + ) + (get_local $10) + (i32.lt_s + (get_local $10) + (i32.const 0) + ) + ) + (i32.const 12) + ) + ) + ) + ) + (i64.extend_s/i32 + (i32.shl + (select + (i32.add + (tee_local $10 + (i32.load8_s + (i32.add + (get_local $1) + (i32.const 6) + ) + ) + ) + (i32.const 256) + ) + (get_local $10) + (i32.lt_s + (get_local $10) + (i32.const 0) + ) + ) + (i32.const 20) + ) + ) + ) + ) + ) + (i32.const -1) + ) + ) + (call $eosio_assert + (i32.eq + (i32.load offset=276 + (tee_local $10 + (call $_ZNK5eosio11multi_indexILy14523850687915229184EN5types6tablekEJEE31load_object_by_primary_iteratorEl + (i32.add + (get_local $11) + (i32.const 32) + ) + (get_local $10) + ) + ) + ) + (i32.add + (get_local $11) + (i32.const 32) + ) + ) + (i32.const 112) + ) + (set_local $9 + (i64.load + (get_local $0) + ) + ) + (i32.store offset=12 + (get_local $11) + (get_local $1) + ) + (i32.store offset=16 + (get_local $11) + (get_local $5) + ) + (i32.store offset=8 + (get_local $11) + (i32.add + (get_local $11) + (i32.const 576) + ) + ) + (i32.store offset=20 + (get_local $11) + (i32.add + (get_local $11) + (i32.const 72) + ) + ) + (i32.store offset=24 + (get_local $11) + (i32.add + (get_local $11) + (i32.const 608) + ) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 208) + ) + (call $_ZN5eosio11multi_indexILy14523850687915229184EN5types6tablekEJEE6modifyIZN5token6verifyE10public_keyS6_NS_5assetENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEE9signatureEUlRT_E_EEvRKS2_yOSG_ + (i32.add + (get_local $11) + (i32.const 32) + ) + (get_local $10) + (get_local $9) + (i32.add + (get_local $11) + (i32.const 8) + ) + ) + (br_if $label$9 + (tee_local $8 + (i32.load offset=56 + (get_local $11) + ) + ) + ) + (br $label$8) + ) + (set_local $9 + (i64.load + (get_local $0) + ) + ) + (i32.store offset=12 + (get_local $11) + (get_local $1) + ) + (i32.store offset=8 + (get_local $11) + (get_local $0) + ) + (i32.store offset=20 + (get_local $11) + (get_local $5) + ) + (i32.store offset=16 + (get_local $11) + (i32.add + (get_local $11) + (i32.const 576) + ) + ) + (i32.store offset=24 + (get_local $11) + (i32.add + (get_local $11) + (i32.const 72) + ) + ) + (i32.store offset=28 + (get_local $11) + (i32.add + (get_local $11) + (i32.const 608) + ) + ) + (call $_ZN5eosio11multi_indexILy14523850687915229184EN5types6tablekEJEE7emplaceIZN5token6verifyE10public_keyS6_NS_5assetENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEE9signatureEUlRT_E0_EENS3_14const_iteratorEyOSG_ + (get_local $11) + (i32.add + (get_local $11) + (i32.const 32) + ) + (get_local $9) + (i32.add + (get_local $11) + (i32.const 8) + ) + ) + (br_if $label$8 + (i32.eqz + (tee_local $8 + (i32.load offset=56 + (get_local $11) + ) + ) + ) + ) + ) + (block $label$11 + (block $label$12 + (br_if $label$12 + (i32.eq + (tee_local $7 + (i32.load + (tee_local $3 + (i32.add + (get_local $11) + (i32.const 60) + ) + ) + ) + ) + (get_local $8) + ) + ) + (loop $label$13 + (set_local $10 + (i32.load + (tee_local $7 + (i32.add + (get_local $7) + (i32.const -24) + ) + ) + ) + ) + (i32.store + (get_local $7) + (i32.const 0) + ) + (block $label$14 + (br_if $label$14 + (i32.eqz + (get_local $10) + ) + ) + (block $label$15 + (br_if $label$15 + (i32.eqz + (i32.and + (i32.load8_u offset=264 + (get_local $10) + ) + (i32.const 1) + ) + ) + ) + (call $_ZdlPv + (i32.load + (i32.add + (get_local $10) + (i32.const 272) + ) + ) + ) + ) + (block $label$16 + (br_if $label$16 + (i32.eqz + (i32.and + (i32.load8_u + (i32.add + (get_local $10) + (i32.const 240) + ) + ) + (i32.const 1) + ) + ) + ) + (call $_ZdlPv + (i32.load + (i32.add + (get_local $10) + (i32.const 248) + ) + ) + ) + ) + (call $_ZdlPv + (get_local $10) + ) + ) + (br_if $label$13 + (i32.ne + (get_local $8) + (get_local $7) + ) + ) + ) + (set_local $10 + (i32.load + (i32.add + (get_local $11) + (i32.const 56) + ) + ) + ) + (br $label$11) + ) + (set_local $10 + (get_local $8) + ) + ) + (i32.store + (get_local $3) + (get_local $8) + ) + (call $_ZdlPv + (get_local $10) + ) + ) + (block $label$17 + (br_if $label$17 + (i32.eqz + (i32.and + (i32.load8_u + (i32.add + (get_local $11) + (i32.const 160) + ) + ) + (i32.const 1) + ) + ) + ) + (call $_ZdlPv + (i32.load + (i32.add + (get_local $11) + (i32.const 168) + ) + ) + ) + ) + (block $label$18 + (br_if $label$18 + (i32.eqz + (tee_local $8 + (i32.load offset=208 + (get_local $11) + ) + ) + ) + ) + (block $label$19 + (block $label$20 + (br_if $label$20 + (i32.eq + (tee_local $10 + (i32.load + (tee_local $3 + (i32.add + (get_local $11) + (i32.const 212) + ) + ) + ) + ) + (get_local $8) + ) + ) + (loop $label$21 + (set_local $7 + (i32.load + (tee_local $10 + (i32.add + (get_local $10) + (i32.const -24) + ) + ) + ) + ) + (i32.store + (get_local $10) + (i32.const 0) + ) + (block $label$22 + (br_if $label$22 + (i32.eqz + (get_local $7) + ) + ) + (call $_ZdlPv + (get_local $7) + ) + ) + (br_if $label$21 + (i32.ne + (get_local $8) + (get_local $10) + ) + ) + ) + (set_local $10 + (i32.load + (i32.add + (get_local $11) + (i32.const 208) + ) + ) + ) + (br $label$19) + ) + (set_local $10 + (get_local $8) + ) + ) + (i32.store + (get_local $3) + (get_local $8) + ) + (call $_ZdlPv + (get_local $10) + ) + ) + (block $label$23 + (br_if $label$23 + (i32.eqz + (i32.and + (i32.load8_u offset=608 + (get_local $11) + ) + (i32.const 1) + ) + ) + ) + (call $_ZdlPv + (i32.load + (i32.add + (get_local $11) + (i32.const 616) + ) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $11) + (i32.const 624) + ) + ) + ) + (func $_ZNK5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE31load_object_by_primary_iteratorEl (param $0 i32) (param $1 i32) (result i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i64) + (local $6 i32) + (local $7 i32) + (local $8 i32) + (local $9 i32) + (set_local $8 + (tee_local $9 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 48) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (get_local $9) + ) + (block $label$0 + (br_if $label$0 + (i32.eq + (tee_local $7 + (i32.load + (i32.add + (get_local $0) + (i32.const 28) + ) + ) + ) + (tee_local $2 + (i32.load offset=24 + (get_local $0) + ) + ) + ) + ) + (set_local $3 + (i32.sub + (i32.const 0) + (get_local $2) + ) + ) + (set_local $6 + (i32.add + (get_local $7) + (i32.const -24) + ) + ) + (loop $label$1 + (br_if $label$0 + (i32.eq + (i32.load + (i32.add + (get_local $6) + (i32.const 16) + ) + ) + (get_local $1) + ) + ) + (set_local $7 + (get_local $6) + ) + (set_local $6 + (tee_local $4 + (i32.add + (get_local $6) + (i32.const -24) + ) + ) + ) + (br_if $label$1 + (i32.ne + (i32.add + (get_local $4) + (get_local $3) + ) + (i32.const -24) + ) + ) + ) + ) + (block $label$2 + (block $label$3 + (br_if $label$3 + (i32.eq + (get_local $7) + (get_local $2) + ) + ) + (set_local $6 + (i32.load + (i32.add + (get_local $7) + (i32.const -24) + ) + ) + ) + (br $label$2) + ) + (call $eosio_assert + (i32.xor + (i32.shr_u + (tee_local $6 + (call $db_get_i64 + (get_local $1) + (i32.const 0) + (i32.const 0) + ) + ) + (i32.const 31) + ) + (i32.const 1) + ) + (i32.const 512) + ) + (block $label$4 + (block $label$5 + (br_if $label$5 + (i32.lt_u + (get_local $6) + (i32.const 513) + ) + ) + (set_local $4 + (call $malloc + (get_local $6) + ) + ) + (br $label$4) + ) + (i32.store offset=4 + (i32.const 0) + (tee_local $4 + (i32.sub + (get_local $9) + (i32.and + (i32.add + (get_local $6) + (i32.const 15) + ) + (i32.const -16) + ) + ) + ) + ) + ) + (drop + (call $db_get_i64 + (get_local $1) + (get_local $4) + (get_local $6) + ) + ) + (i32.store offset=36 + (get_local $8) + (get_local $4) + ) + (i32.store offset=32 + (get_local $8) + (get_local $4) + ) + (i32.store offset=40 + (get_local $8) + (i32.add + (get_local $4) + (get_local $6) + ) + ) + (block $label$6 + (br_if $label$6 + (i32.lt_u + (get_local $6) + (i32.const 513) + ) + ) + (call $free + (get_local $4) + ) + ) + (set_local $4 + (call $_ZN5types10usrbalanceC2Ev + (tee_local $6 + (call $_Znwj + (i32.const 112) + ) + ) + ) + ) + (i32.store offset=96 + (get_local $6) + (get_local $0) + ) + (drop + (call $_ZN5typesrsIN5eosio10datastreamIPKcEEEERT_S7_RNS_10usrbalanceE + (i32.add + (get_local $8) + (i32.const 32) + ) + (get_local $4) + ) + ) + (i32.store offset=100 + (get_local $6) + (get_local $1) + ) + (i32.store offset=24 + (get_local $8) + (get_local $6) + ) + (i64.store offset=16 + (get_local $8) + (tee_local $5 + (i64.load + (get_local $6) + ) + ) + ) + (i32.store offset=12 + (get_local $8) + (tee_local $7 + (i32.load offset=100 + (get_local $6) + ) + ) + ) + (block $label$7 + (block $label$8 + (br_if $label$8 + (i32.ge_u + (tee_local $4 + (i32.load + (tee_local $1 + (i32.add + (get_local $0) + (i32.const 28) + ) + ) + ) + ) + (i32.load + (i32.add + (get_local $0) + (i32.const 32) + ) + ) + ) + ) + (i64.store offset=8 + (get_local $4) + (get_local $5) + ) + (i32.store offset=16 + (get_local $4) + (get_local $7) + ) + (i32.store offset=24 + (get_local $8) + (i32.const 0) + ) + (i32.store + (get_local $4) + (get_local $6) + ) + (i32.store + (get_local $1) + (i32.add + (get_local $4) + (i32.const 24) + ) + ) + (br $label$7) + ) + (call $_ZNSt3__16vectorIN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE8item_ptrENS_9allocatorIS6_EEE24__emplace_back_slow_pathIJNS_10unique_ptrINS5_4itemENS_14default_deleteISC_EEEERyRlEEEvDpOT_ + (i32.add + (get_local $0) + (i32.const 24) + ) + (i32.add + (get_local $8) + (i32.const 24) + ) + (i32.add + (get_local $8) + (i32.const 16) + ) + (i32.add + (get_local $8) + (i32.const 12) + ) + ) + ) + (set_local $4 + (i32.load offset=24 + (get_local $8) + ) + ) + (i32.store offset=24 + (get_local $8) + (i32.const 0) + ) + (br_if $label$2 + (i32.eqz + (get_local $4) + ) + ) + (call $_ZdlPv + (get_local $4) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $8) + (i32.const 48) + ) + ) + (get_local $6) + ) + (func $_ZN5eosio11multi_indexILy14523850687915229184EN5types6tablekEJEE7emplaceIZN5token6verifyE10public_keyS6_NS_5assetENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEE9signatureEUlRT_E0_EENS3_14const_iteratorEyOSG_ (param $0 i32) (param $1 i32) (param $2 i64) (param $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $7 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 48) + ) + ) + ) + (i64.store offset=40 + (get_local $7) + (get_local $2) + ) + (call $eosio_assert + (i64.eq + (i64.load + (get_local $1) + ) + (call $current_receiver) + ) + (i32.const 576) + ) + (i32.store offset=20 + (get_local $7) + (get_local $3) + ) + (i32.store offset=16 + (get_local $7) + (get_local $1) + ) + (i32.store offset=24 + (get_local $7) + (i32.add + (get_local $7) + (i32.const 40) + ) + ) + (i64.store offset=232 + (tee_local $4 + (call $_Znwj + (i32.const 288) + ) + ) + (i64.const 1398362884) + ) + (i64.store offset=224 + (get_local $4) + (i64.const 0) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 256) + ) + (set_local $2 + (i64.const 5462355) + ) + (set_local $3 + (i32.const 0) + ) + (block $label$0 + (block $label$1 + (loop $label$2 + (br_if $label$1 + (i32.gt_u + (i32.add + (i32.shl + (i32.wrap/i64 + (get_local $2) + ) + (i32.const 24) + ) + (i32.const -1073741825) + ) + (i32.const 452984830) + ) + ) + (block $label$3 + (br_if $label$3 + (i64.ne + (i64.and + (tee_local $2 + (i64.shr_u + (get_local $2) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (loop $label$4 + (br_if $label$1 + (i64.ne + (i64.and + (tee_local $2 + (i64.shr_u + (get_local $2) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (br_if $label$4 + (i32.lt_s + (tee_local $3 + (i32.add + (get_local $3) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + ) + ) + (set_local $6 + (i32.const 1) + ) + (br_if $label$2 + (i32.lt_s + (tee_local $3 + (i32.add + (get_local $3) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + (br $label$0) + ) + ) + (set_local $6 + (i32.const 0) + ) + ) + (call $eosio_assert + (get_local $6) + (i32.const 176) + ) + (i32.store offset=248 + (get_local $4) + (i32.const 0) + ) + (i64.store offset=240 align=4 + (get_local $4) + (i64.const 0) + ) + (i32.store offset=264 + (get_local $4) + (i32.const 0) + ) + (i32.store offset=268 + (get_local $4) + (i32.const 0) + ) + (i32.store offset=272 + (get_local $4) + (i32.const 0) + ) + (i32.store offset=276 + (get_local $4) + (get_local $1) + ) + (call $_ZZN5eosio11multi_indexILy14523850687915229184EN5types6tablekEJEE7emplaceIZN5token6verifyE10public_keyS6_NS_5assetENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEE9signatureEUlRT_E0_EENS3_14const_iteratorEyOSG_ENKUlSH_E_clINS3_4itemEEEDaSH_ + (i32.add + (get_local $7) + (i32.const 16) + ) + (get_local $4) + ) + (i32.store offset=32 + (get_local $7) + (get_local $4) + ) + (i64.store offset=16 + (get_local $7) + (tee_local $2 + (i64.load + (get_local $4) + ) + ) + ) + (i32.store offset=12 + (get_local $7) + (tee_local $6 + (i32.load offset=280 + (get_local $4) + ) + ) + ) + (block $label$5 + (block $label$6 + (br_if $label$6 + (i32.ge_u + (tee_local $3 + (i32.load + (tee_local $5 + (i32.add + (get_local $1) + (i32.const 28) + ) + ) + ) + ) + (i32.load + (i32.add + (get_local $1) + (i32.const 32) + ) + ) + ) + ) + (i64.store offset=8 + (get_local $3) + (get_local $2) + ) + (i32.store offset=16 + (get_local $3) + (get_local $6) + ) + (i32.store offset=32 + (get_local $7) + (i32.const 0) + ) + (i32.store + (get_local $3) + (get_local $4) + ) + (i32.store + (get_local $5) + (i32.add + (get_local $3) + (i32.const 24) + ) + ) + (br $label$5) + ) + (call $_ZNSt3__16vectorIN5eosio11multi_indexILy14523850687915229184EN5types6tablekEJEE8item_ptrENS_9allocatorIS6_EEE24__emplace_back_slow_pathIJNS_10unique_ptrINS5_4itemENS_14default_deleteISC_EEEERyRlEEEvDpOT_ + (i32.add + (get_local $1) + (i32.const 24) + ) + (i32.add + (get_local $7) + (i32.const 32) + ) + (i32.add + (get_local $7) + (i32.const 16) + ) + (i32.add + (get_local $7) + (i32.const 12) + ) + ) + ) + (i32.store offset=4 + (get_local $0) + (get_local $4) + ) + (i32.store + (get_local $0) + (get_local $1) + ) + (set_local $3 + (i32.load offset=32 + (get_local $7) + ) + ) + (i32.store offset=32 + (get_local $7) + (i32.const 0) + ) + (block $label$7 + (br_if $label$7 + (i32.eqz + (get_local $3) + ) + ) + (block $label$8 + (br_if $label$8 + (i32.eqz + (i32.and + (i32.load8_u offset=264 + (get_local $3) + ) + (i32.const 1) + ) + ) + ) + (call $_ZdlPv + (i32.load + (i32.add + (get_local $3) + (i32.const 272) + ) + ) + ) + ) + (block $label$9 + (br_if $label$9 + (i32.eqz + (i32.and + (i32.load8_u + (i32.add + (get_local $3) + (i32.const 240) + ) + ) + (i32.const 1) + ) + ) + ) + (call $_ZdlPv + (i32.load + (i32.add + (get_local $3) + (i32.const 248) + ) + ) + ) + ) + (call $_ZdlPv + (get_local $3) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $7) + (i32.const 48) + ) + ) + ) + (func $_ZNK5eosio11multi_indexILy14523850687915229184EN5types6tablekEJEE31load_object_by_primary_iteratorEl (param $0 i32) (param $1 i32) (result i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i64) + (local $8 i32) + (local $9 i32) + (set_local $8 + (tee_local $9 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 48) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (get_local $9) + ) + (block $label$0 + (br_if $label$0 + (i32.eq + (tee_local $6 + (i32.load + (i32.add + (get_local $0) + (i32.const 28) + ) + ) + ) + (tee_local $2 + (i32.load offset=24 + (get_local $0) + ) + ) + ) + ) + (set_local $3 + (i32.sub + (i32.const 0) + (get_local $2) + ) + ) + (set_local $5 + (i32.add + (get_local $6) + (i32.const -24) + ) + ) + (loop $label$1 + (br_if $label$0 + (i32.eq + (i32.load + (i32.add + (get_local $5) + (i32.const 16) + ) + ) + (get_local $1) + ) + ) + (set_local $6 + (get_local $5) + ) + (set_local $5 + (tee_local $4 + (i32.add + (get_local $5) + (i32.const -24) + ) + ) + ) + (br_if $label$1 + (i32.ne + (i32.add + (get_local $4) + (get_local $3) + ) + (i32.const -24) + ) + ) + ) + ) + (block $label$2 + (block $label$3 + (br_if $label$3 + (i32.eq + (get_local $6) + (get_local $2) + ) + ) + (set_local $4 + (i32.load + (i32.add + (get_local $6) + (i32.const -24) + ) + ) + ) + (br $label$2) + ) + (call $eosio_assert + (i32.xor + (i32.shr_u + (tee_local $5 + (call $db_get_i64 + (get_local $1) + (i32.const 0) + (i32.const 0) + ) + ) + (i32.const 31) + ) + (i32.const 1) + ) + (i32.const 512) + ) + (block $label$4 + (block $label$5 + (br_if $label$5 + (i32.lt_u + (get_local $5) + (i32.const 513) + ) + ) + (set_local $4 + (call $malloc + (get_local $5) + ) + ) + (br $label$4) + ) + (i32.store offset=4 + (i32.const 0) + (tee_local $4 + (i32.sub + (get_local $9) + (i32.and + (i32.add + (get_local $5) + (i32.const 15) + ) + (i32.const -16) + ) + ) + ) + ) + ) + (drop + (call $db_get_i64 + (get_local $1) + (get_local $4) + (get_local $5) + ) + ) + (i32.store offset=36 + (get_local $8) + (get_local $4) + ) + (i32.store offset=32 + (get_local $8) + (get_local $4) + ) + (i32.store offset=40 + (get_local $8) + (i32.add + (get_local $4) + (get_local $5) + ) + ) + (block $label$6 + (br_if $label$6 + (i32.lt_u + (get_local $5) + (i32.const 513) + ) + ) + (call $free + (get_local $4) + ) + ) + (set_local $3 + (i32.add + (get_local $0) + (i32.const 24) + ) + ) + (i64.store offset=232 + (tee_local $4 + (call $_Znwj + (i32.const 288) + ) + ) + (i64.const 1398362884) + ) + (i64.store offset=224 + (get_local $4) + (i64.const 0) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 256) + ) + (set_local $7 + (i64.const 5462355) + ) + (set_local $5 + (i32.const 0) + ) + (block $label$7 + (block $label$8 + (loop $label$9 + (br_if $label$8 + (i32.gt_u + (i32.add + (i32.shl + (i32.wrap/i64 + (get_local $7) + ) + (i32.const 24) + ) + (i32.const -1073741825) + ) + (i32.const 452984830) + ) + ) + (block $label$10 + (br_if $label$10 + (i64.ne + (i64.and + (tee_local $7 + (i64.shr_u + (get_local $7) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (loop $label$11 + (br_if $label$8 + (i64.ne + (i64.and + (tee_local $7 + (i64.shr_u + (get_local $7) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (br_if $label$11 + (i32.lt_s + (tee_local $5 + (i32.add + (get_local $5) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + ) + ) + (set_local $6 + (i32.const 1) + ) + (br_if $label$9 + (i32.lt_s + (tee_local $5 + (i32.add + (get_local $5) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + (br $label$7) + ) + ) + (set_local $6 + (i32.const 0) + ) + ) + (call $eosio_assert + (get_local $6) + (i32.const 176) + ) + (i32.store offset=248 + (get_local $4) + (i32.const 0) + ) + (i64.store offset=240 align=4 + (get_local $4) + (i64.const 0) + ) + (i32.store offset=264 + (get_local $4) + (i32.const 0) + ) + (i32.store offset=268 + (get_local $4) + (i32.const 0) + ) + (i32.store offset=272 + (get_local $4) + (i32.const 0) + ) + (i32.store offset=276 + (get_local $4) + (get_local $0) + ) + (drop + (call $_ZN5typesrsIN5eosio10datastreamIPKcEEEERT_S7_RNS_6tablekE + (i32.add + (get_local $8) + (i32.const 32) + ) + (get_local $4) + ) + ) + (i32.store offset=280 + (get_local $4) + (get_local $1) + ) + (i32.store offset=24 + (get_local $8) + (get_local $4) + ) + (i64.store offset=16 + (get_local $8) + (tee_local $7 + (i64.load + (get_local $4) + ) + ) + ) + (i32.store offset=12 + (get_local $8) + (tee_local $6 + (i32.load offset=280 + (get_local $4) + ) + ) + ) + (block $label$12 + (block $label$13 + (br_if $label$13 + (i32.ge_u + (tee_local $5 + (i32.load + (tee_local $1 + (i32.add + (get_local $0) + (i32.const 28) + ) + ) + ) + ) + (i32.load + (i32.add + (get_local $0) + (i32.const 32) + ) + ) + ) + ) + (i64.store offset=8 + (get_local $5) + (get_local $7) + ) + (i32.store offset=16 + (get_local $5) + (get_local $6) + ) + (i32.store offset=24 + (get_local $8) + (i32.const 0) + ) + (i32.store + (get_local $5) + (get_local $4) + ) + (i32.store + (get_local $1) + (i32.add + (get_local $5) + (i32.const 24) + ) + ) + (br $label$12) + ) + (call $_ZNSt3__16vectorIN5eosio11multi_indexILy14523850687915229184EN5types6tablekEJEE8item_ptrENS_9allocatorIS6_EEE24__emplace_back_slow_pathIJNS_10unique_ptrINS5_4itemENS_14default_deleteISC_EEEERyRlEEEvDpOT_ + (get_local $3) + (i32.add + (get_local $8) + (i32.const 24) + ) + (i32.add + (get_local $8) + (i32.const 16) + ) + (i32.add + (get_local $8) + (i32.const 12) + ) + ) + ) + (set_local $5 + (i32.load offset=24 + (get_local $8) + ) + ) + (i32.store offset=24 + (get_local $8) + (i32.const 0) + ) + (br_if $label$2 + (i32.eqz + (get_local $5) + ) + ) + (block $label$14 + (br_if $label$14 + (i32.eqz + (i32.and + (i32.load8_u offset=264 + (get_local $5) + ) + (i32.const 1) + ) + ) + ) + (call $_ZdlPv + (i32.load + (i32.add + (get_local $5) + (i32.const 272) + ) + ) + ) + ) + (block $label$15 + (br_if $label$15 + (i32.eqz + (i32.and + (i32.load8_u + (i32.add + (get_local $5) + (i32.const 240) + ) + ) + (i32.const 1) + ) + ) + ) + (call $_ZdlPv + (i32.load + (i32.add + (get_local $5) + (i32.const 248) + ) + ) + ) + ) + (call $_ZdlPv + (get_local $5) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $8) + (i32.const 48) + ) + ) + (get_local $4) + ) + (func $_ZN5eosio11multi_indexILy14523850687915229184EN5types6tablekEJEE6modifyIZN5token6verifyE10public_keyS6_NS_5assetENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEE9signatureEUlRT_E_EEvRKS2_yOSG_ (param $0 i32) (param $1 i32) (param $2 i64) (param $3 i32) + (local $4 i64) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $7 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 16) + ) + ) + ) + (call $eosio_assert + (i32.eq + (i32.load offset=276 + (get_local $1) + ) + (get_local $0) + ) + (i32.const 320) + ) + (call $eosio_assert + (i64.eq + (i64.load + (get_local $0) + ) + (call $current_receiver) + ) + (i32.const 368) + ) + (i32.store offset=16 + (get_local $1) + (i32.load + (tee_local $6 + (i32.load + (get_local $3) + ) + ) + ) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const 44) + ) + (i32.load + (i32.add + (get_local $6) + (i32.const 28) + ) + ) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const 40) + ) + (i32.load + (i32.add + (get_local $6) + (i32.const 24) + ) + ) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const 36) + ) + (i32.load + (i32.add + (get_local $6) + (i32.const 20) + ) + ) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const 32) + ) + (i32.load + (i32.add + (get_local $6) + (i32.const 16) + ) + ) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const 28) + ) + (i32.load + (i32.add + (get_local $6) + (i32.const 12) + ) + ) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const 24) + ) + (i32.load + (i32.add + (get_local $6) + (i32.const 8) + ) + ) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const 20) + ) + (i32.load + (i32.add + (get_local $6) + (i32.const 4) + ) + ) + ) + (set_local $4 + (i64.load + (get_local $1) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 48) + ) + (i32.load offset=4 + (get_local $3) + ) + (i32.const 34) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 82) + ) + (i32.load offset=8 + (get_local $3) + ) + (i32.const 66) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 152) + ) + (tee_local $6 + (i32.load offset=12 + (get_local $3) + ) + ) + (i32.const 88) + ) + ) + (drop + (call $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEaSERKS5_ + (i32.add + (get_local $1) + (i32.const 240) + ) + (i32.add + (get_local $6) + (i32.const 88) + ) + ) + ) + (i64.store + (i32.add + (get_local $1) + (i32.const 256) + ) + (i64.load offset=104 + (get_local $6) + ) + ) + (drop + (call $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEaSERKS5_ + (i32.add + (get_local $1) + (i32.const 264) + ) + (i32.load offset=16 + (get_local $3) + ) + ) + ) + (call $eosio_assert + (i64.eq + (get_local $4) + (i64.load + (get_local $1) + ) + ) + (i32.const 432) + ) + (i32.store + (tee_local $6 + (get_local $7) + ) + (i32.const 0) + ) + (drop + (call $_ZN5typeslsIN5eosio10datastreamIjEEEERT_S5_RKNS_6tablekE + (get_local $6) + (get_local $1) + ) + ) + (block $label$0 + (block $label$1 + (br_if $label$1 + (i32.lt_u + (tee_local $5 + (i32.load + (get_local $6) + ) + ) + (i32.const 513) + ) + ) + (set_local $3 + (call $malloc + (get_local $5) + ) + ) + (br $label$0) + ) + (i32.store offset=4 + (i32.const 0) + (tee_local $3 + (i32.sub + (get_local $7) + (i32.and + (i32.add + (get_local $5) + (i32.const 15) + ) + (i32.const -16) + ) + ) + ) + ) + ) + (i32.store offset=4 + (get_local $6) + (get_local $3) + ) + (i32.store + (get_local $6) + (get_local $3) + ) + (i32.store offset=8 + (get_local $6) + (i32.add + (get_local $3) + (get_local $5) + ) + ) + (drop + (call $_ZN5typeslsIN5eosio10datastreamIPcEEEERT_S6_RKNS_6tablekE + (get_local $6) + (get_local $1) + ) + ) + (call $db_update_i64 + (i32.load + (i32.add + (get_local $1) + (i32.const 280) + ) + ) + (get_local $2) + (get_local $3) + (get_local $5) + ) + (block $label$2 + (br_if $label$2 + (i32.lt_u + (get_local $5) + (i32.const 513) + ) + ) + (call $free + (get_local $3) + ) + ) + (block $label$3 + (br_if $label$3 + (i64.lt_u + (get_local $4) + (i64.load offset=16 + (get_local $0) + ) + ) + ) + (i64.store + (i32.add + (get_local $0) + (i32.const 16) + ) + (select + (i64.const -2) + (i64.add + (get_local $4) + (i64.const 1) + ) + (i64.gt_u + (get_local $4) + (i64.const -3) + ) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $6) + (i32.const 16) + ) + ) + ) + (func $_ZN5typeslsIN5eosio10datastreamIjEEEERT_S5_RKNS_6tablekE (param $0 i32) (param $1 i32) (result i32) + (local $2 i32) + (local $3 i32) + (local $4 i64) + (local $5 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $5 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 272) + ) + ) + ) + (i32.store + (get_local $0) + (i32.add + (i32.load + (get_local $0) + ) + (i32.const 74) + ) + ) + (i32.store + (get_local $5) + (get_local $0) + ) + (i32.store offset=12 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 83) + ) + ) + (i32.store offset=8 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 82) + ) + ) + (i32.store offset=16 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 84) + ) + ) + (i32.store offset=20 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 85) + ) + ) + (i32.store offset=24 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 86) + ) + ) + (i32.store offset=28 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 87) + ) + ) + (i32.store offset=32 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 88) + ) + ) + (i32.store offset=36 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 89) + ) + ) + (i32.store offset=40 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 90) + ) + ) + (i32.store offset=44 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 91) + ) + ) + (i32.store offset=48 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 92) + ) + ) + (i32.store offset=52 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 93) + ) + ) + (i32.store offset=56 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 94) + ) + ) + (i32.store offset=60 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 95) + ) + ) + (i32.store offset=64 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 96) + ) + ) + (i32.store offset=68 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 97) + ) + ) + (i32.store offset=72 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 98) + ) + ) + (i32.store offset=76 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 99) + ) + ) + (i32.store offset=80 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 100) + ) + ) + (i32.store offset=84 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 101) + ) + ) + (i32.store offset=88 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 102) + ) + ) + (i32.store offset=92 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 103) + ) + ) + (i32.store offset=96 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 104) + ) + ) + (i32.store offset=100 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 105) + ) + ) + (i32.store offset=104 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 106) + ) + ) + (i32.store offset=108 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 107) + ) + ) + (i32.store offset=112 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 108) + ) + ) + (i32.store offset=116 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 109) + ) + ) + (i32.store offset=120 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 110) + ) + ) + (i32.store offset=124 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 111) + ) + ) + (i32.store offset=128 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 112) + ) + ) + (i32.store offset=132 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 113) + ) + ) + (i32.store offset=136 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 114) + ) + ) + (i32.store offset=140 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 115) + ) + ) + (i32.store offset=144 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 116) + ) + ) + (i32.store offset=148 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 117) + ) + ) + (i32.store offset=152 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 118) + ) + ) + (i32.store offset=156 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 119) + ) + ) + (i32.store offset=160 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 120) + ) + ) + (i32.store offset=164 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 121) + ) + ) + (i32.store offset=168 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 122) + ) + ) + (i32.store offset=172 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 123) + ) + ) + (i32.store offset=176 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 124) + ) + ) + (i32.store offset=180 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 125) + ) + ) + (i32.store offset=184 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 126) + ) + ) + (i32.store offset=188 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 127) + ) + ) + (i32.store offset=192 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 128) + ) + ) + (i32.store offset=196 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 129) + ) + ) + (i32.store offset=200 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 130) + ) + ) + (i32.store offset=204 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 131) + ) + ) + (i32.store offset=208 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 132) + ) + ) + (i32.store offset=212 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 133) + ) + ) + (i32.store offset=216 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 134) + ) + ) + (i32.store offset=220 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 135) + ) + ) + (i32.store offset=224 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 136) + ) + ) + (i32.store offset=228 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 137) + ) + ) + (i32.store offset=232 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 138) + ) + ) + (i32.store offset=236 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 139) + ) + ) + (i32.store offset=240 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 140) + ) + ) + (i32.store offset=244 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 141) + ) + ) + (i32.store offset=248 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 142) + ) + ) + (i32.store offset=252 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 143) + ) + ) + (i32.store offset=256 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 144) + ) + ) + (i32.store offset=260 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 145) + ) + ) + (i32.store offset=264 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 146) + ) + ) + (i32.store offset=268 + (get_local $5) + (i32.add + (get_local $1) + (i32.const 147) + ) + ) + (call $_ZN5boost3pfr6detail19for_each_field_implINS1_14sequence_tuple5tupleIJRKhS6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_EEEZN5eosiolsINS8_10datastreamIjEE9signatureLPv0EEERT_SF_RKT0_EUlRKSE_E_JLj0ELj1ELj2ELj3ELj4ELj5ELj6ELj7ELj8ELj9ELj10ELj11ELj12ELj13ELj14ELj15ELj16ELj17ELj18ELj19ELj20ELj21ELj22ELj23ELj24ELj25ELj26ELj27ELj28ELj29ELj30ELj31ELj32ELj33ELj34ELj35ELj36ELj37ELj38ELj39ELj40ELj41ELj42ELj43ELj44ELj45ELj46ELj47ELj48ELj49ELj50ELj51ELj52ELj53ELj54ELj55ELj56ELj57ELj58ELj59ELj60ELj61ELj62ELj63ELj64ELj65EEEEvSF_OSG_NSt3__116integer_sequenceIjJXspT1_EEEENSN_17integral_constantIbLb0EEE + (i32.add + (get_local $5) + (i32.const 8) + ) + (get_local $5) + ) + (i32.store + (get_local $0) + (tee_local $3 + (i32.add + (i32.load + (get_local $0) + ) + (i32.const 84) + ) + ) + ) + (set_local $4 + (i64.extend_u/i32 + (select + (i32.load + (i32.add + (get_local $1) + (i32.const 244) + ) + ) + (i32.shr_u + (tee_local $2 + (i32.load8_u + (i32.add + (get_local $1) + (i32.const 240) + ) + ) + ) + (i32.const 1) + ) + (i32.and + (get_local $2) + (i32.const 1) + ) + ) + ) + ) + (loop $label$0 + (set_local $3 + (i32.add + (get_local $3) + (i32.const 1) + ) + ) + (br_if $label$0 + (i64.ne + (tee_local $4 + (i64.shr_u + (get_local $4) + (i64.const 7) + ) + ) + (i64.const 0) + ) + ) + ) + (i32.store + (get_local $0) + (get_local $3) + ) + (block $label$1 + (br_if $label$1 + (i32.eqz + (tee_local $2 + (select + (i32.load + (i32.add + (get_local $1) + (i32.const 244) + ) + ) + (i32.shr_u + (tee_local $2 + (i32.load8_u + (i32.add + (get_local $1) + (i32.const 240) + ) + ) + ) + (i32.const 1) + ) + (i32.and + (get_local $2) + (i32.const 1) + ) + ) + ) + ) + ) + (i32.store + (get_local $0) + (tee_local $3 + (i32.add + (get_local $2) + (get_local $3) + ) + ) + ) + ) + (i32.store + (get_local $0) + (tee_local $3 + (i32.add + (get_local $3) + (i32.const 8) + ) + ) + ) + (set_local $4 + (i64.extend_u/i32 + (select + (i32.load + (i32.add + (get_local $1) + (i32.const 268) + ) + ) + (i32.shr_u + (tee_local $2 + (i32.load8_u offset=264 + (get_local $1) + ) + ) + (i32.const 1) + ) + (i32.and + (get_local $2) + (i32.const 1) + ) + ) + ) + ) + (loop $label$2 + (set_local $3 + (i32.add + (get_local $3) + (i32.const 1) + ) + ) + (br_if $label$2 + (i64.ne + (tee_local $4 + (i64.shr_u + (get_local $4) + (i64.const 7) + ) + ) + (i64.const 0) + ) + ) + ) + (i32.store + (get_local $0) + (get_local $3) + ) + (block $label$3 + (br_if $label$3 + (i32.eqz + (tee_local $1 + (select + (i32.load + (i32.add + (get_local $1) + (i32.const 268) + ) + ) + (i32.shr_u + (tee_local $1 + (i32.load8_u + (i32.add + (get_local $1) + (i32.const 264) + ) + ) + ) + (i32.const 1) + ) + (i32.and + (get_local $1) + (i32.const 1) + ) + ) + ) + ) + ) + (i32.store + (get_local $0) + (i32.add + (get_local $1) + (get_local $3) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $5) + (i32.const 272) + ) + ) + (get_local $0) + ) + (func $_ZN5typeslsIN5eosio10datastreamIPcEEEERT_S6_RKNS_6tablekE (param $0 i32) (param $1 i32) (result i32) + (local $2 i32) + (local $3 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $3 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 320) + ) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (i32.load offset=4 + (get_local $0) + ) + ) + (i32.const 7) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $0) + ) + (get_local $1) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 31) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $0) + ) + (i32.add + (get_local $1) + (i32.const 16) + ) + (i32.const 32) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 32) + ) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $3) + (i32.const 14) + ) + (i32.add + (get_local $1) + (i32.const 48) + ) + (i32.const 34) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $3) + (i32.const 48) + ) + (i32.add + (get_local $3) + (i32.const 14) + ) + (i32.const 34) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 33) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $0) + ) + (i32.add + (get_local $3) + (i32.const 48) + ) + (i32.const 34) + ) + ) + (i32.store offset=4 + (get_local $0) + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 34) + ) + ) + (i32.store offset=312 + (get_local $3) + (get_local $0) + ) + (i32.store offset=52 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 83) + ) + ) + (i32.store offset=48 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 82) + ) + ) + (i32.store offset=56 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 84) + ) + ) + (i32.store offset=60 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 85) + ) + ) + (i32.store offset=64 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 86) + ) + ) + (i32.store offset=68 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 87) + ) + ) + (i32.store offset=72 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 88) + ) + ) + (i32.store offset=76 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 89) + ) + ) + (i32.store offset=80 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 90) + ) + ) + (i32.store offset=84 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 91) + ) + ) + (i32.store offset=88 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 92) + ) + ) + (i32.store offset=92 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 93) + ) + ) + (i32.store offset=96 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 94) + ) + ) + (i32.store offset=100 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 95) + ) + ) + (i32.store offset=104 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 96) + ) + ) + (i32.store offset=108 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 97) + ) + ) + (i32.store offset=112 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 98) + ) + ) + (i32.store offset=116 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 99) + ) + ) + (i32.store offset=120 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 100) + ) + ) + (i32.store offset=124 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 101) + ) + ) + (i32.store offset=128 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 102) + ) + ) + (i32.store offset=132 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 103) + ) + ) + (i32.store offset=136 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 104) + ) + ) + (i32.store offset=140 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 105) + ) + ) + (i32.store offset=144 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 106) + ) + ) + (i32.store offset=148 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 107) + ) + ) + (i32.store offset=152 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 108) + ) + ) + (i32.store offset=156 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 109) + ) + ) + (i32.store offset=160 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 110) + ) + ) + (i32.store offset=164 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 111) + ) + ) + (i32.store offset=168 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 112) + ) + ) + (i32.store offset=172 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 113) + ) + ) + (i32.store offset=176 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 114) + ) + ) + (i32.store offset=180 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 115) + ) + ) + (i32.store offset=184 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 116) + ) + ) + (i32.store offset=188 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 117) + ) + ) + (i32.store offset=192 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 118) + ) + ) + (i32.store offset=196 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 119) + ) + ) + (i32.store offset=200 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 120) + ) + ) + (i32.store offset=204 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 121) + ) + ) + (i32.store offset=208 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 122) + ) + ) + (i32.store offset=212 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 123) + ) + ) + (i32.store offset=216 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 124) + ) + ) + (i32.store offset=220 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 125) + ) + ) + (i32.store offset=224 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 126) + ) + ) + (i32.store offset=228 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 127) + ) + ) + (i32.store offset=232 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 128) + ) + ) + (i32.store offset=236 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 129) + ) + ) + (i32.store offset=240 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 130) + ) + ) + (i32.store offset=244 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 131) + ) + ) + (i32.store offset=248 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 132) + ) + ) + (i32.store offset=252 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 133) + ) + ) + (i32.store offset=256 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 134) + ) + ) + (i32.store offset=260 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 135) + ) + ) + (i32.store offset=264 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 136) + ) + ) + (i32.store offset=268 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 137) + ) + ) + (i32.store offset=272 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 138) + ) + ) + (i32.store offset=276 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 139) + ) + ) + (i32.store offset=280 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 140) + ) + ) + (i32.store offset=284 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 141) + ) + ) + (i32.store offset=288 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 142) + ) + ) + (i32.store offset=292 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 143) + ) + ) + (i32.store offset=296 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 144) + ) + ) + (i32.store offset=300 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 145) + ) + ) + (i32.store offset=304 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 146) + ) + ) + (i32.store offset=308 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 147) + ) + ) + (call $_ZN5boost3pfr6detail19for_each_field_implINS1_14sequence_tuple5tupleIJRKhS6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_EEEZN5eosiolsINS8_10datastreamIPcEE9signatureLPv0EEERT_SG_RKT0_EUlRKSF_E_JLj0ELj1ELj2ELj3ELj4ELj5ELj6ELj7ELj8ELj9ELj10ELj11ELj12ELj13ELj14ELj15ELj16ELj17ELj18ELj19ELj20ELj21ELj22ELj23ELj24ELj25ELj26ELj27ELj28ELj29ELj30ELj31ELj32ELj33ELj34ELj35ELj36ELj37ELj38ELj39ELj40ELj41ELj42ELj43ELj44ELj45ELj46ELj47ELj48ELj49ELj50ELj51ELj52ELj53ELj54ELj55ELj56ELj57ELj58ELj59ELj60ELj61ELj62ELj63ELj64ELj65EEEEvSG_OSH_NSt3__116integer_sequenceIjJXspT1_EEEENSO_17integral_constantIbLb0EEE + (i32.add + (get_local $3) + (i32.const 48) + ) + (i32.add + (get_local $3) + (i32.const 312) + ) + ) + (i32.store offset=312 + (get_local $3) + (get_local $0) + ) + (i32.store offset=52 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 186) + ) + ) + (i32.store offset=48 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 152) + ) + ) + (i32.store offset=56 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 224) + ) + ) + (i32.store offset=60 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 240) + ) + ) + (i32.store offset=64 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 256) + ) + ) + (call $_ZN5boost3pfr6detail19for_each_field_implINS1_14sequence_tuple5tupleIJRK10public_keyS7_RKN5eosio5assetERKNSt3__112basic_stringIcNSC_11char_traitsIcEENSC_9allocatorIcEEEERKyEEEZNS8_lsINS8_10datastreamIPcEEN5types11transfer_stELPv0EEERT_SW_RKT0_EUlRKSV_E_JLj0ELj1ELj2ELj3ELj4EEEEvSW_OSX_NSC_16integer_sequenceIjJXspT1_EEEENSC_17integral_constantIbLb0EEE + (i32.add + (get_local $3) + (i32.const 48) + ) + (i32.add + (get_local $3) + (i32.const 312) + ) + ) + (set_local $1 + (call $_ZN5eosiolsINS_10datastreamIPcEEEERT_S5_RKNSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEE + (get_local $0) + (i32.add + (get_local $1) + (i32.const 264) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $3) + (i32.const 320) + ) + ) + (get_local $1) + ) + (func $_ZN5boost3pfr6detail19for_each_field_implINS1_14sequence_tuple5tupleIJRKhS6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_EEEZN5eosiolsINS8_10datastreamIPcEE9signatureLPv0EEERT_SG_RKT0_EUlRKSF_E_JLj0ELj1ELj2ELj3ELj4ELj5ELj6ELj7ELj8ELj9ELj10ELj11ELj12ELj13ELj14ELj15ELj16ELj17ELj18ELj19ELj20ELj21ELj22ELj23ELj24ELj25ELj26ELj27ELj28ELj29ELj30ELj31ELj32ELj33ELj34ELj35ELj36ELj37ELj38ELj39ELj40ELj41ELj42ELj43ELj44ELj45ELj46ELj47ELj48ELj49ELj50ELj51ELj52ELj53ELj54ELj55ELj56ELj57ELj58ELj59ELj60ELj61ELj62ELj63ELj64ELj65EEEEvSG_OSH_NSt3__116integer_sequenceIjJXspT1_EEEENSO_17integral_constantIbLb0EEE (param $0 i32) (param $1 i32) + (local $2 i32) + (local $3 i32) + (set_local $3 + (i32.load + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=4 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=8 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=12 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=16 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=20 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=24 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=28 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=32 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=36 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=40 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=44 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=48 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=52 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=56 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=60 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=64 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=68 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=72 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=76 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=80 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=84 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=88 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=92 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=96 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=100 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=104 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=108 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=112 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=116 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=120 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=124 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=128 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=132 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=136 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=140 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=144 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=148 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=152 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=156 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=160 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=164 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=168 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=172 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=176 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=180 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=184 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=188 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=192 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=196 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=200 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=204 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=208 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=212 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=216 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=220 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=224 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=228 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=232 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=236 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=240 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=244 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=248 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=252 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=256 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $2 + (i32.load offset=260 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $0 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $0) + ) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $0) + ) + (get_local $2) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $0) + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 1) + ) + ) + ) + (func $_ZN5boost3pfr6detail19for_each_field_implINS1_14sequence_tuple5tupleIJRK10public_keyS7_RKN5eosio5assetERKNSt3__112basic_stringIcNSC_11char_traitsIcEENSC_9allocatorIcEEEERKyEEEZNS8_lsINS8_10datastreamIPcEEN5types11transfer_stELPv0EEERT_SW_RKT0_EUlRKSV_E_JLj0ELj1ELj2ELj3ELj4EEEEvSW_OSX_NSC_16integer_sequenceIjJXspT1_EEEENSC_17integral_constantIbLb0EEE (param $0 i32) (param $1 i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $5 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 80) + ) + ) + ) + (set_local $2 + (i32.load + (get_local $1) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $5) + (i32.const 6) + ) + (i32.load + (get_local $0) + ) + (i32.const 34) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $5) + (i32.const 40) + ) + (i32.add + (get_local $5) + (i32.const 6) + ) + (i32.const 34) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (get_local $2) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 33) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (i32.add + (get_local $5) + (i32.const 40) + ) + (i32.const 34) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 34) + ) + ) + (set_local $2 + (i32.load + (get_local $1) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $5) + (i32.const 6) + ) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 34) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $5) + (i32.const 40) + ) + (i32.add + (get_local $5) + (i32.const 6) + ) + (i32.const 34) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (get_local $2) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 33) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (i32.add + (get_local $5) + (i32.const 40) + ) + (i32.const 34) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 34) + ) + ) + (set_local $3 + (i32.load offset=8 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 7) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $3) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $2) + (tee_local $4 + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (get_local $2) + ) + (get_local $4) + ) + (i32.const 7) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (i32.add + (get_local $3) + (i32.const 8) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 8) + ) + ) + (drop + (call $_ZN5eosiolsINS_10datastreamIPcEEEERT_S5_RKNSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEE + (i32.load + (get_local $1) + ) + (i32.load offset=12 + (get_local $0) + ) + ) + ) + (set_local $0 + (i32.load offset=16 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 7) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $2) + ) + (get_local $0) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $5) + (i32.const 80) + ) + ) + ) + (func $_ZN5eosiolsINS_10datastreamIPcEEEERT_S5_RKNSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEE (param $0 i32) (param $1 i32) (result i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i64) + (local $8 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $8 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 16) + ) + ) + ) + (set_local $7 + (i64.extend_u/i32 + (select + (i32.load offset=4 + (get_local $1) + ) + (i32.shr_u + (tee_local $5 + (i32.load8_u + (get_local $1) + ) + ) + (i32.const 1) + ) + (i32.and + (get_local $5) + (i32.const 1) + ) + ) + ) + ) + (set_local $6 + (i32.load offset=4 + (get_local $0) + ) + ) + (set_local $4 + (i32.add + (get_local $0) + (i32.const 8) + ) + ) + (set_local $5 + (i32.add + (get_local $0) + (i32.const 4) + ) + ) + (loop $label$0 + (set_local $2 + (i32.wrap/i64 + (get_local $7) + ) + ) + (i32.store8 offset=15 + (get_local $8) + (i32.or + (i32.shl + (tee_local $3 + (i64.ne + (tee_local $7 + (i64.shr_u + (get_local $7) + (i64.const 7) + ) + ) + (i64.const 0) + ) + ) + (i32.const 7) + ) + (i32.and + (get_local $2) + (i32.const 127) + ) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load + (get_local $4) + ) + (get_local $6) + ) + (i32.const 0) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load + (get_local $5) + ) + (i32.add + (get_local $8) + (i32.const 15) + ) + (i32.const 1) + ) + ) + (i32.store + (get_local $5) + (tee_local $6 + (i32.add + (i32.load + (get_local $5) + ) + (i32.const 1) + ) + ) + ) + (br_if $label$0 + (get_local $3) + ) + ) + (block $label$1 + (br_if $label$1 + (i32.eqz + (tee_local $5 + (select + (i32.load + (i32.add + (get_local $1) + (i32.const 4) + ) + ) + (i32.shr_u + (tee_local $5 + (i32.load8_u + (get_local $1) + ) + ) + (i32.const 1) + ) + (tee_local $2 + (i32.and + (get_local $5) + (i32.const 1) + ) + ) + ) + ) + ) + ) + (set_local $3 + (i32.load offset=8 + (get_local $1) + ) + ) + (call $eosio_assert + (i32.ge_s + (i32.sub + (i32.load + (i32.add + (get_local $0) + (i32.const 8) + ) + ) + (get_local $6) + ) + (get_local $5) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load + (tee_local $6 + (i32.add + (get_local $0) + (i32.const 4) + ) + ) + ) + (select + (get_local $3) + (i32.add + (get_local $1) + (i32.const 1) + ) + (get_local $2) + ) + (get_local $5) + ) + ) + (i32.store + (get_local $6) + (i32.add + (i32.load + (get_local $6) + ) + (get_local $5) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $8) + (i32.const 16) + ) + ) + (get_local $0) + ) + (func $_ZN5boost3pfr6detail19for_each_field_implINS1_14sequence_tuple5tupleIJRKhS6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_EEEZN5eosiolsINS8_10datastreamIjEE9signatureLPv0EEERT_SF_RKT0_EUlRKSE_E_JLj0ELj1ELj2ELj3ELj4ELj5ELj6ELj7ELj8ELj9ELj10ELj11ELj12ELj13ELj14ELj15ELj16ELj17ELj18ELj19ELj20ELj21ELj22ELj23ELj24ELj25ELj26ELj27ELj28ELj29ELj30ELj31ELj32ELj33ELj34ELj35ELj36ELj37ELj38ELj39ELj40ELj41ELj42ELj43ELj44ELj45ELj46ELj47ELj48ELj49ELj50ELj51ELj52ELj53ELj54ELj55ELj56ELj57ELj58ELj59ELj60ELj61ELj62ELj63ELj64ELj65EEEEvSF_OSG_NSt3__116integer_sequenceIjJXspT1_EEEENSN_17integral_constantIbLb0EEE (param $0 i32) (param $1 i32) + (local $2 i32) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store + (tee_local $1 + (i32.load + (get_local $1) + ) + ) + (i32.add + (i32.load + (get_local $1) + ) + (i32.const 1) + ) + ) + ) + (func $_ZN5typesrsIN5eosio10datastreamIPKcEEEERT_S7_RNS_6tablekE (param $0 i32) (param $1 i32) (result i32) + (local $2 i32) + (local $3 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $3 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 272) + ) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (i32.load offset=4 + (get_local $0) + ) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $1) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 31) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 16) + ) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 32) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 32) + ) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 33) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 48) + ) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 34) + ) + ) + (i32.store offset=4 + (get_local $0) + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 34) + ) + ) + (i32.store offset=264 + (get_local $3) + (get_local $0) + ) + (i32.store offset=4 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 83) + ) + ) + (i32.store + (get_local $3) + (i32.add + (get_local $1) + (i32.const 82) + ) + ) + (i32.store offset=8 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 84) + ) + ) + (i32.store offset=12 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 85) + ) + ) + (i32.store offset=16 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 86) + ) + ) + (i32.store offset=20 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 87) + ) + ) + (i32.store offset=24 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 88) + ) + ) + (i32.store offset=28 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 89) + ) + ) + (i32.store offset=32 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 90) + ) + ) + (i32.store offset=36 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 91) + ) + ) + (i32.store offset=40 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 92) + ) + ) + (i32.store offset=44 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 93) + ) + ) + (i32.store offset=48 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 94) + ) + ) + (i32.store offset=52 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 95) + ) + ) + (i32.store offset=56 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 96) + ) + ) + (i32.store offset=60 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 97) + ) + ) + (i32.store offset=64 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 98) + ) + ) + (i32.store offset=68 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 99) + ) + ) + (i32.store offset=72 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 100) + ) + ) + (i32.store offset=76 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 101) + ) + ) + (i32.store offset=80 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 102) + ) + ) + (i32.store offset=84 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 103) + ) + ) + (i32.store offset=88 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 104) + ) + ) + (i32.store offset=92 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 105) + ) + ) + (i32.store offset=96 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 106) + ) + ) + (i32.store offset=100 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 107) + ) + ) + (i32.store offset=104 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 108) + ) + ) + (i32.store offset=108 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 109) + ) + ) + (i32.store offset=112 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 110) + ) + ) + (i32.store offset=116 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 111) + ) + ) + (i32.store offset=120 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 112) + ) + ) + (i32.store offset=124 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 113) + ) + ) + (i32.store offset=128 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 114) + ) + ) + (i32.store offset=132 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 115) + ) + ) + (i32.store offset=136 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 116) + ) + ) + (i32.store offset=140 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 117) + ) + ) + (i32.store offset=144 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 118) + ) + ) + (i32.store offset=148 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 119) + ) + ) + (i32.store offset=152 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 120) + ) + ) + (i32.store offset=156 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 121) + ) + ) + (i32.store offset=160 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 122) + ) + ) + (i32.store offset=164 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 123) + ) + ) + (i32.store offset=168 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 124) + ) + ) + (i32.store offset=172 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 125) + ) + ) + (i32.store offset=176 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 126) + ) + ) + (i32.store offset=180 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 127) + ) + ) + (i32.store offset=184 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 128) + ) + ) + (i32.store offset=188 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 129) + ) + ) + (i32.store offset=192 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 130) + ) + ) + (i32.store offset=196 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 131) + ) + ) + (i32.store offset=200 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 132) + ) + ) + (i32.store offset=204 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 133) + ) + ) + (i32.store offset=208 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 134) + ) + ) + (i32.store offset=212 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 135) + ) + ) + (i32.store offset=216 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 136) + ) + ) + (i32.store offset=220 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 137) + ) + ) + (i32.store offset=224 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 138) + ) + ) + (i32.store offset=228 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 139) + ) + ) + (i32.store offset=232 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 140) + ) + ) + (i32.store offset=236 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 141) + ) + ) + (i32.store offset=240 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 142) + ) + ) + (i32.store offset=244 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 143) + ) + ) + (i32.store offset=248 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 144) + ) + ) + (i32.store offset=252 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 145) + ) + ) + (i32.store offset=256 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 146) + ) + ) + (i32.store offset=260 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 147) + ) + ) + (call $_ZN5boost3pfr6detail19for_each_field_implINS1_14sequence_tuple5tupleIJRhS5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_EEEZN5eosiorsINS7_10datastreamIPKcEE9signatureLPv0EEERT_SG_RT0_EUlSG_E_JLj0ELj1ELj2ELj3ELj4ELj5ELj6ELj7ELj8ELj9ELj10ELj11ELj12ELj13ELj14ELj15ELj16ELj17ELj18ELj19ELj20ELj21ELj22ELj23ELj24ELj25ELj26ELj27ELj28ELj29ELj30ELj31ELj32ELj33ELj34ELj35ELj36ELj37ELj38ELj39ELj40ELj41ELj42ELj43ELj44ELj45ELj46ELj47ELj48ELj49ELj50ELj51ELj52ELj53ELj54ELj55ELj56ELj57ELj58ELj59ELj60ELj61ELj62ELj63ELj64ELj65EEEEvSG_OSH_NSt3__116integer_sequenceIjJXspT1_EEEENSL_17integral_constantIbLb0EEE + (get_local $3) + (i32.add + (get_local $3) + (i32.const 264) + ) + ) + (i32.store offset=264 + (get_local $3) + (get_local $0) + ) + (i32.store offset=4 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 186) + ) + ) + (i32.store + (get_local $3) + (i32.add + (get_local $1) + (i32.const 152) + ) + ) + (i32.store offset=8 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 224) + ) + ) + (i32.store offset=12 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 240) + ) + ) + (i32.store offset=16 + (get_local $3) + (i32.add + (get_local $1) + (i32.const 256) + ) + ) + (call $_ZN5boost3pfr6detail19for_each_field_implINS1_14sequence_tuple5tupleIJR10public_keyS6_RN5eosio5assetERNSt3__112basic_stringIcNSA_11char_traitsIcEENSA_9allocatorIcEEEERyEEEZNS7_rsINS7_10datastreamIPKcEEN5types11transfer_stELPv0EEERT_ST_RT0_EUlST_E_JLj0ELj1ELj2ELj3ELj4EEEEvST_OSU_NSA_16integer_sequenceIjJXspT1_EEEENSA_17integral_constantIbLb0EEE + (get_local $3) + (i32.add + (get_local $3) + (i32.const 264) + ) + ) + (set_local $1 + (call $_ZN5eosiorsINS_10datastreamIPKcEEEERT_S6_RNSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEE + (get_local $0) + (i32.add + (get_local $1) + (i32.const 264) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $3) + (i32.const 272) + ) + ) + (get_local $1) + ) + (func $_ZNSt3__16vectorIN5eosio11multi_indexILy14523850687915229184EN5types6tablekEJEE8item_ptrENS_9allocatorIS6_EEE24__emplace_back_slow_pathIJNS_10unique_ptrINS5_4itemENS_14default_deleteISC_EEEERyRlEEEvDpOT_ (param $0 i32) (param $1 i32) (param $2 i32) (param $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (block $label$0 + (block $label$1 + (br_if $label$1 + (i32.ge_u + (tee_local $5 + (i32.add + (tee_local $4 + (i32.div_s + (i32.sub + (i32.load offset=4 + (get_local $0) + ) + (tee_local $6 + (i32.load + (get_local $0) + ) + ) + ) + (i32.const 24) + ) + ) + (i32.const 1) + ) + ) + (i32.const 178956971) + ) + ) + (set_local $7 + (i32.const 178956970) + ) + (block $label$2 + (block $label$3 + (br_if $label$3 + (i32.gt_u + (tee_local $6 + (i32.div_s + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $6) + ) + (i32.const 24) + ) + ) + (i32.const 89478484) + ) + ) + (br_if $label$2 + (i32.eqz + (tee_local $7 + (select + (get_local $5) + (tee_local $7 + (i32.shl + (get_local $6) + (i32.const 1) + ) + ) + (i32.lt_u + (get_local $7) + (get_local $5) + ) + ) + ) + ) + ) + ) + (set_local $6 + (call $_Znwj + (i32.mul + (get_local $7) + (i32.const 24) + ) + ) + ) + (br $label$0) + ) + (set_local $7 + (i32.const 0) + ) + (set_local $6 + (i32.const 0) + ) + (br $label$0) + ) + (call $_ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv + (get_local $0) + ) + (unreachable) + ) + (set_local $5 + (i32.load + (get_local $1) + ) + ) + (i32.store + (get_local $1) + (i32.const 0) + ) + (i32.store + (tee_local $1 + (i32.add + (get_local $6) + (i32.mul + (get_local $4) + (i32.const 24) + ) + ) + ) + (get_local $5) + ) + (i64.store offset=8 + (get_local $1) + (i64.load + (get_local $2) + ) + ) + (i32.store offset=16 + (get_local $1) + (i32.load + (get_local $3) + ) + ) + (set_local $4 + (i32.add + (get_local $6) + (i32.mul + (get_local $7) + (i32.const 24) + ) + ) + ) + (set_local $5 + (i32.add + (get_local $1) + (i32.const 24) + ) + ) + (block $label$4 + (block $label$5 + (br_if $label$5 + (i32.eq + (tee_local $6 + (i32.load + (i32.add + (get_local $0) + (i32.const 4) + ) + ) + ) + (tee_local $7 + (i32.load + (get_local $0) + ) + ) + ) + ) + (loop $label$6 + (set_local $3 + (i32.load + (tee_local $2 + (i32.add + (get_local $6) + (i32.const -24) + ) + ) + ) + ) + (i32.store + (get_local $2) + (i32.const 0) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const -24) + ) + (get_local $3) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const -8) + ) + (i32.load + (i32.add + (get_local $6) + (i32.const -8) + ) + ) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const -12) + ) + (i32.load + (i32.add + (get_local $6) + (i32.const -12) + ) + ) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const -16) + ) + (i32.load + (i32.add + (get_local $6) + (i32.const -16) + ) + ) + ) + (set_local $1 + (i32.add + (get_local $1) + (i32.const -24) + ) + ) + (set_local $6 + (get_local $2) + ) + (br_if $label$6 + (i32.ne + (get_local $7) + (get_local $2) + ) + ) + ) + (set_local $7 + (i32.load + (i32.add + (get_local $0) + (i32.const 4) + ) + ) + ) + (set_local $6 + (i32.load + (get_local $0) + ) + ) + (br $label$4) + ) + (set_local $6 + (get_local $7) + ) + ) + (i32.store + (get_local $0) + (get_local $1) + ) + (i32.store + (i32.add + (get_local $0) + (i32.const 4) + ) + (get_local $5) + ) + (i32.store + (i32.add + (get_local $0) + (i32.const 8) + ) + (get_local $4) + ) + (block $label$7 + (br_if $label$7 + (i32.eq + (get_local $7) + (get_local $6) + ) + ) + (loop $label$8 + (set_local $1 + (i32.load + (tee_local $7 + (i32.add + (get_local $7) + (i32.const -24) + ) + ) + ) + ) + (i32.store + (get_local $7) + (i32.const 0) + ) + (block $label$9 + (br_if $label$9 + (i32.eqz + (get_local $1) + ) + ) + (block $label$10 + (br_if $label$10 + (i32.eqz + (i32.and + (i32.load8_u offset=264 + (get_local $1) + ) + (i32.const 1) + ) + ) + ) + (call $_ZdlPv + (i32.load + (i32.add + (get_local $1) + (i32.const 272) + ) + ) + ) + ) + (block $label$11 + (br_if $label$11 + (i32.eqz + (i32.and + (i32.load8_u + (i32.add + (get_local $1) + (i32.const 240) + ) + ) + (i32.const 1) + ) + ) + ) + (call $_ZdlPv + (i32.load + (i32.add + (get_local $1) + (i32.const 248) + ) + ) + ) + ) + (call $_ZdlPv + (get_local $1) + ) + ) + (br_if $label$8 + (i32.ne + (get_local $6) + (get_local $7) + ) + ) + ) + ) + (block $label$12 + (br_if $label$12 + (i32.eqz + (get_local $6) + ) + ) + (call $_ZdlPv + (get_local $6) + ) + ) + ) + (func $_ZN5boost3pfr6detail19for_each_field_implINS1_14sequence_tuple5tupleIJRhS5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_EEEZN5eosiorsINS7_10datastreamIPKcEE9signatureLPv0EEERT_SG_RT0_EUlSG_E_JLj0ELj1ELj2ELj3ELj4ELj5ELj6ELj7ELj8ELj9ELj10ELj11ELj12ELj13ELj14ELj15ELj16ELj17ELj18ELj19ELj20ELj21ELj22ELj23ELj24ELj25ELj26ELj27ELj28ELj29ELj30ELj31ELj32ELj33ELj34ELj35ELj36ELj37ELj38ELj39ELj40ELj41ELj42ELj43ELj44ELj45ELj46ELj47ELj48ELj49ELj50ELj51ELj52ELj53ELj54ELj55ELj56ELj57ELj58ELj59ELj60ELj61ELj62ELj63ELj64ELj65EEEEvSG_OSH_NSt3__116integer_sequenceIjJXspT1_EEEENSL_17integral_constantIbLb0EEE (param $0 i32) (param $1 i32) + (local $2 i32) + (local $3 i32) + (set_local $3 + (i32.load + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=4 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=8 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=12 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=16 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=20 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=24 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=28 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=32 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=36 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=40 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=44 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=48 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=52 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=56 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=60 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=64 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=68 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=72 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=76 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=80 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=84 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=88 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=92 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=96 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=100 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=104 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=108 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=112 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=116 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=120 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=124 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=128 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=132 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=136 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=140 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=144 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=148 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=152 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=156 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=160 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=164 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=168 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=172 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=176 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=180 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=184 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=188 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=192 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=196 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=200 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=204 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=208 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=212 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=216 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=220 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=224 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=228 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=232 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=236 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=240 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=244 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=248 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=252 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load offset=256 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 1) + ) + ) + (set_local $2 + (i32.load offset=260 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.ne + (i32.load offset=8 + (tee_local $0 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $0) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $2) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $0) + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 1) + ) + ) + ) + (func $_ZN5boost3pfr6detail19for_each_field_implINS1_14sequence_tuple5tupleIJR10public_keyS6_RN5eosio5assetERNSt3__112basic_stringIcNSA_11char_traitsIcEENSA_9allocatorIcEEEERyEEEZNS7_rsINS7_10datastreamIPKcEEN5types11transfer_stELPv0EEERT_ST_RT0_EUlST_E_JLj0ELj1ELj2ELj3ELj4EEEEvST_OSU_NSA_16integer_sequenceIjJXspT1_EEEENSA_17integral_constantIbLb0EEE (param $0 i32) (param $1 i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (set_local $3 + (i32.load + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 33) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 34) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 34) + ) + ) + (set_local $3 + (i32.load offset=4 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 33) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 34) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 34) + ) + ) + (set_local $3 + (i32.load offset=8 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $3) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $2) + (tee_local $4 + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (get_local $2) + ) + (get_local $4) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $3) + (i32.const 8) + ) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 8) + ) + ) + (drop + (call $_ZN5eosiorsINS_10datastreamIPKcEEEERT_S6_RNSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEE + (i32.load + (get_local $1) + ) + (i32.load offset=12 + (get_local $0) + ) + ) + ) + (set_local $0 + (i32.load offset=16 + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (tee_local $2 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $2) + ) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $0) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $2) + (i32.add + (i32.load offset=4 + (get_local $2) + ) + (i32.const 8) + ) + ) + ) + (func $_ZN5eosiorsINS_10datastreamIPKcEEEERT_S6_RNSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEE (param $0 i32) (param $1 i32) (result i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $7 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 32) + ) + ) + ) + (i32.store offset=24 + (get_local $7) + (i32.const 0) + ) + (i64.store offset=16 + (get_local $7) + (i64.const 0) + ) + (drop + (call $_ZN5eosiorsINS_10datastreamIPKcEEEERT_S6_RNSt3__16vectorIcNS7_9allocatorIcEEEE + (get_local $0) + (i32.add + (get_local $7) + (i32.const 16) + ) + ) + ) + (block $label$0 + (block $label$1 + (block $label$2 + (block $label$3 + (block $label$4 + (block $label$5 + (block $label$6 + (block $label$7 + (block $label$8 + (br_if $label$8 + (i32.ne + (tee_local $5 + (i32.load offset=20 + (get_local $7) + ) + ) + (tee_local $4 + (i32.load offset=16 + (get_local $7) + ) + ) + ) + ) + (br_if $label$7 + (i32.and + (i32.load8_u + (get_local $1) + ) + (i32.const 1) + ) + ) + (i32.store16 + (get_local $1) + (i32.const 0) + ) + (set_local $4 + (i32.add + (get_local $1) + (i32.const 8) + ) + ) + (br $label$6) + ) + (i32.store + (i32.add + (get_local $7) + (i32.const 8) + ) + (i32.const 0) + ) + (i64.store + (get_local $7) + (i64.const 0) + ) + (br_if $label$0 + (i32.ge_u + (tee_local $2 + (i32.sub + (get_local $5) + (get_local $4) + ) + ) + (i32.const -16) + ) + ) + (br_if $label$5 + (i32.ge_u + (get_local $2) + (i32.const 11) + ) + ) + (i32.store8 + (get_local $7) + (i32.shl + (get_local $2) + (i32.const 1) + ) + ) + (set_local $6 + (i32.or + (get_local $7) + (i32.const 1) + ) + ) + (br_if $label$4 + (get_local $2) + ) + (br $label$3) + ) + (i32.store8 + (i32.load offset=8 + (get_local $1) + ) + (i32.const 0) + ) + (i32.store offset=4 + (get_local $1) + (i32.const 0) + ) + (set_local $4 + (i32.add + (get_local $1) + (i32.const 8) + ) + ) + ) + (call $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj + (get_local $1) + (i32.const 0) + ) + (i32.store + (get_local $4) + (i32.const 0) + ) + (i64.store align=4 + (get_local $1) + (i64.const 0) + ) + (br_if $label$2 + (tee_local $4 + (i32.load offset=16 + (get_local $7) + ) + ) + ) + (br $label$1) + ) + (set_local $6 + (call $_Znwj + (tee_local $5 + (i32.and + (i32.add + (get_local $2) + (i32.const 16) + ) + (i32.const -16) + ) + ) + ) + ) + (i32.store + (get_local $7) + (i32.or + (get_local $5) + (i32.const 1) + ) + ) + (i32.store offset=8 + (get_local $7) + (get_local $6) + ) + (i32.store offset=4 + (get_local $7) + (get_local $2) + ) + ) + (set_local $3 + (get_local $2) + ) + (set_local $5 + (get_local $6) + ) + (loop $label$9 + (i32.store8 + (get_local $5) + (i32.load8_u + (get_local $4) + ) + ) + (set_local $5 + (i32.add + (get_local $5) + (i32.const 1) + ) + ) + (set_local $4 + (i32.add + (get_local $4) + (i32.const 1) + ) + ) + (br_if $label$9 + (tee_local $3 + (i32.add + (get_local $3) + (i32.const -1) + ) + ) + ) + ) + (set_local $6 + (i32.add + (get_local $6) + (get_local $2) + ) + ) + ) + (i32.store8 + (get_local $6) + (i32.const 0) + ) + (block $label$10 + (block $label$11 + (br_if $label$11 + (i32.and + (i32.load8_u + (get_local $1) + ) + (i32.const 1) + ) + ) + (i32.store16 + (get_local $1) + (i32.const 0) + ) + (br $label$10) + ) + (i32.store8 + (i32.load offset=8 + (get_local $1) + ) + (i32.const 0) + ) + (i32.store offset=4 + (get_local $1) + (i32.const 0) + ) + ) + (call $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj + (get_local $1) + (i32.const 0) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const 8) + ) + (i32.load + (i32.add + (get_local $7) + (i32.const 8) + ) + ) + ) + (i64.store align=4 + (get_local $1) + (i64.load + (get_local $7) + ) + ) + (br_if $label$1 + (i32.eqz + (tee_local $4 + (i32.load offset=16 + (get_local $7) + ) + ) + ) + ) + ) + (i32.store offset=20 + (get_local $7) + (get_local $4) + ) + (call $_ZdlPv + (get_local $4) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $7) + (i32.const 32) + ) + ) + (return + (get_local $0) + ) + ) + (call $_ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv + (get_local $7) + ) + (unreachable) + ) + (func $_ZN5eosiorsINS_10datastreamIPKcEEEERT_S6_RNSt3__16vectorIcNS7_9allocatorIcEEEE (param $0 i32) (param $1 i32) (result i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i64) + (local $7 i32) + (set_local $5 + (i32.load offset=4 + (get_local $0) + ) + ) + (set_local $7 + (i32.const 0) + ) + (set_local $6 + (i64.const 0) + ) + (set_local $2 + (i32.add + (get_local $0) + (i32.const 8) + ) + ) + (set_local $3 + (i32.add + (get_local $0) + (i32.const 4) + ) + ) + (loop $label$0 + (call $eosio_assert + (i32.lt_u + (get_local $5) + (i32.load + (get_local $2) + ) + ) + (i32.const 560) + ) + (set_local $4 + (i32.load8_u + (tee_local $5 + (i32.load + (get_local $3) + ) + ) + ) + ) + (i32.store + (get_local $3) + (tee_local $5 + (i32.add + (get_local $5) + (i32.const 1) + ) + ) + ) + (set_local $6 + (i64.or + (i64.extend_u/i32 + (i32.shl + (i32.and + (get_local $4) + (i32.const 127) + ) + (tee_local $7 + (i32.and + (get_local $7) + (i32.const 255) + ) + ) + ) + ) + (get_local $6) + ) + ) + (set_local $7 + (i32.add + (get_local $7) + (i32.const 7) + ) + ) + (br_if $label$0 + (i32.shr_u + (get_local $4) + (i32.const 7) + ) + ) + ) + (block $label$1 + (block $label$2 + (br_if $label$2 + (i32.le_u + (tee_local $3 + (i32.wrap/i64 + (get_local $6) + ) + ) + (tee_local $2 + (i32.sub + (tee_local $7 + (i32.load offset=4 + (get_local $1) + ) + ) + (tee_local $4 + (i32.load + (get_local $1) + ) + ) + ) + ) + ) + ) + (call $_ZNSt3__16vectorIcNS_9allocatorIcEEE8__appendEj + (get_local $1) + (i32.sub + (get_local $3) + (get_local $2) + ) + ) + (set_local $5 + (i32.load + (i32.add + (get_local $0) + (i32.const 4) + ) + ) + ) + (set_local $7 + (i32.load + (i32.add + (get_local $1) + (i32.const 4) + ) + ) + ) + (set_local $4 + (i32.load + (get_local $1) + ) + ) + (br $label$1) + ) + (br_if $label$1 + (i32.ge_u + (get_local $3) + (get_local $2) + ) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const 4) + ) + (tee_local $7 + (i32.add + (get_local $4) + (get_local $3) + ) + ) + ) + ) + (call $eosio_assert + (i32.ge_u + (i32.sub + (i32.load + (i32.add + (get_local $0) + (i32.const 8) + ) + ) + (get_local $5) + ) + (tee_local $5 + (i32.sub + (get_local $7) + (get_local $4) + ) + ) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $4) + (i32.load + (tee_local $7 + (i32.add + (get_local $0) + (i32.const 4) + ) + ) + ) + (get_local $5) + ) + ) + (i32.store + (get_local $7) + (i32.add + (i32.load + (get_local $7) + ) + (get_local $5) + ) + ) + (get_local $0) + ) + (func $_ZNSt3__16vectorIcNS_9allocatorIcEEE8__appendEj (param $0 i32) (param $1 i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (block $label$0 + (block $label$1 + (block $label$2 + (block $label$3 + (block $label$4 + (br_if $label$4 + (i32.ge_u + (i32.sub + (tee_local $2 + (i32.load offset=8 + (get_local $0) + ) + ) + (tee_local $6 + (i32.load offset=4 + (get_local $0) + ) + ) + ) + (get_local $1) + ) + ) + (br_if $label$2 + (i32.le_s + (tee_local $4 + (i32.add + (tee_local $3 + (i32.sub + (get_local $6) + (tee_local $5 + (i32.load + (get_local $0) + ) + ) + ) + ) + (get_local $1) + ) + ) + (i32.const -1) + ) + ) + (set_local $6 + (i32.const 2147483647) + ) + (block $label$5 + (br_if $label$5 + (i32.gt_u + (tee_local $2 + (i32.sub + (get_local $2) + (get_local $5) + ) + ) + (i32.const 1073741822) + ) + ) + (br_if $label$3 + (i32.eqz + (tee_local $6 + (select + (get_local $4) + (tee_local $6 + (i32.shl + (get_local $2) + (i32.const 1) + ) + ) + (i32.lt_u + (get_local $6) + (get_local $4) + ) + ) + ) + ) + ) + ) + (set_local $2 + (call $_Znwj + (get_local $6) + ) + ) + (br $label$1) + ) + (set_local $0 + (i32.add + (get_local $0) + (i32.const 4) + ) + ) + (loop $label$6 + (i32.store8 + (get_local $6) + (i32.const 0) + ) + (i32.store + (get_local $0) + (tee_local $6 + (i32.add + (i32.load + (get_local $0) + ) + (i32.const 1) + ) + ) + ) + (br_if $label$6 + (tee_local $1 + (i32.add + (get_local $1) + (i32.const -1) + ) + ) + ) + (br $label$0) + ) + ) + (set_local $6 + (i32.const 0) + ) + (set_local $2 + (i32.const 0) + ) + (br $label$1) + ) + (call $_ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv + (get_local $0) + ) + (unreachable) + ) + (set_local $4 + (i32.add + (get_local $2) + (get_local $6) + ) + ) + (set_local $6 + (tee_local $5 + (i32.add + (get_local $2) + (get_local $3) + ) + ) + ) + (loop $label$7 + (i32.store8 + (get_local $6) + (i32.const 0) + ) + (set_local $6 + (i32.add + (get_local $6) + (i32.const 1) + ) + ) + (br_if $label$7 + (tee_local $1 + (i32.add + (get_local $1) + (i32.const -1) + ) + ) + ) + ) + (set_local $5 + (i32.sub + (get_local $5) + (tee_local $2 + (i32.sub + (i32.load + (tee_local $3 + (i32.add + (get_local $0) + (i32.const 4) + ) + ) + ) + (tee_local $1 + (i32.load + (get_local $0) + ) + ) + ) + ) + ) + ) + (block $label$8 + (br_if $label$8 + (i32.lt_s + (get_local $2) + (i32.const 1) + ) + ) + (drop + (call $memcpy + (get_local $5) + (get_local $1) + (get_local $2) + ) + ) + (set_local $1 + (i32.load + (get_local $0) + ) + ) + ) + (i32.store + (get_local $0) + (get_local $5) + ) + (i32.store + (get_local $3) + (get_local $6) + ) + (i32.store + (i32.add + (get_local $0) + (i32.const 8) + ) + (get_local $4) + ) + (br_if $label$0 + (i32.eqz + (get_local $1) + ) + ) + (call $_ZdlPv + (get_local $1) + ) + (return) + ) + ) + (func $_ZZN5eosio11multi_indexILy14523850687915229184EN5types6tablekEJEE7emplaceIZN5token6verifyE10public_keyS6_NS_5assetENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEE9signatureEUlRT_E0_EENS3_14const_iteratorEyOSG_ENKUlSH_E_clINS3_4itemEEEDaSH_ (param $0 i32) (param $1 i32) + (local $2 i32) + (local $3 i32) + (local $4 i64) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $7 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 16) + ) + ) + ) + (i64.store + (get_local $1) + (i64.add + (i64.add + (i64.extend_s/i32 + (i32.shl + (select + (i32.add + (tee_local $3 + (i32.load8_s offset=5 + (tee_local $5 + (i32.load offset=4 + (tee_local $6 + (i32.load offset=4 + (get_local $0) + ) + ) + ) + ) + ) + ) + (i32.const 256) + ) + (get_local $3) + (i32.lt_s + (get_local $3) + (i32.const 0) + ) + ) + (i32.const 16) + ) + ) + (i64.extend_s/i32 + (i32.add + (i32.add + (i32.add + (i32.shl + (select + (i32.add + (tee_local $3 + (i32.load8_s offset=2 + (get_local $5) + ) + ) + (i32.const 256) + ) + (get_local $3) + (i32.lt_s + (get_local $3) + (i32.const 0) + ) + ) + (i32.const 4) + ) + (select + (i32.add + (tee_local $3 + (i32.load8_s offset=1 + (get_local $5) + ) + ) + (i32.const 256) + ) + (get_local $3) + (i32.lt_s + (get_local $3) + (i32.const 0) + ) + ) + ) + (i32.shl + (select + (i32.add + (tee_local $3 + (i32.load8_s offset=3 + (get_local $5) + ) + ) + (i32.const 256) + ) + (get_local $3) + (i32.lt_s + (get_local $3) + (i32.const 0) + ) + ) + (i32.const 8) + ) + ) + (i32.shl + (select + (i32.add + (tee_local $3 + (i32.load8_s offset=4 + (get_local $5) + ) + ) + (i32.const 256) + ) + (get_local $3) + (i32.lt_s + (get_local $3) + (i32.const 0) + ) + ) + (i32.const 12) + ) + ) + ) + ) + (i64.extend_s/i32 + (i32.shl + (select + (i32.add + (tee_local $5 + (i32.load8_s offset=6 + (get_local $5) + ) + ) + (i32.const 256) + ) + (get_local $5) + (i32.lt_s + (get_local $5) + (i32.const 0) + ) + ) + (i32.const 20) + ) + ) + ) + ) + (set_local $2 + (i32.load + (get_local $0) + ) + ) + (i64.store offset=16 + (get_local $1) + (i64.load + (tee_local $5 + (i32.load offset=8 + (get_local $6) + ) + ) + ) + ) + (i64.store + (i32.add + (get_local $1) + (i32.const 40) + ) + (i64.load + (i32.add + (get_local $5) + (i32.const 24) + ) + ) + ) + (i64.store + (i32.add + (get_local $1) + (i32.const 32) + ) + (i64.load + (i32.add + (get_local $5) + (i32.const 16) + ) + ) + ) + (i64.store + (i32.add + (get_local $1) + (i32.const 24) + ) + (i64.load + (i32.add + (get_local $5) + (i32.const 8) + ) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 48) + ) + (i32.load offset=4 + (get_local $6) + ) + (i32.const 34) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 82) + ) + (i32.load offset=12 + (get_local $6) + ) + (i32.const 66) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 152) + ) + (tee_local $5 + (i32.load offset=16 + (get_local $6) + ) + ) + (i32.const 88) + ) + ) + (drop + (call $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEaSERKS5_ + (i32.add + (get_local $1) + (i32.const 240) + ) + (i32.add + (get_local $5) + (i32.const 88) + ) + ) + ) + (i64.store + (i32.add + (get_local $1) + (i32.const 256) + ) + (i64.load offset=104 + (get_local $5) + ) + ) + (drop + (call $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEaSERKS5_ + (i32.add + (get_local $1) + (i32.const 264) + ) + (i32.load offset=20 + (get_local $6) + ) + ) + ) + (i32.store + (tee_local $6 + (get_local $7) + ) + (i32.const 0) + ) + (drop + (call $_ZN5typeslsIN5eosio10datastreamIjEEEERT_S5_RKNS_6tablekE + (get_local $6) + (get_local $1) + ) + ) + (block $label$0 + (block $label$1 + (br_if $label$1 + (i32.lt_u + (tee_local $3 + (i32.load + (get_local $6) + ) + ) + (i32.const 513) + ) + ) + (set_local $5 + (call $malloc + (get_local $3) + ) + ) + (br $label$0) + ) + (i32.store offset=4 + (i32.const 0) + (tee_local $5 + (i32.sub + (get_local $7) + (i32.and + (i32.add + (get_local $3) + (i32.const 15) + ) + (i32.const -16) + ) + ) + ) + ) + ) + (i32.store offset=4 + (get_local $6) + (get_local $5) + ) + (i32.store + (get_local $6) + (get_local $5) + ) + (i32.store offset=8 + (get_local $6) + (i32.add + (get_local $5) + (get_local $3) + ) + ) + (drop + (call $_ZN5typeslsIN5eosio10datastreamIPcEEEERT_S6_RKNS_6tablekE + (get_local $6) + (get_local $1) + ) + ) + (i32.store offset=280 + (get_local $1) + (call $db_store_i64 + (i64.load offset=8 + (get_local $2) + ) + (i64.const -3922893385794322432) + (i64.load + (i32.load offset=8 + (get_local $0) + ) + ) + (tee_local $4 + (i64.load + (get_local $1) + ) + ) + (get_local $5) + (get_local $3) + ) + ) + (block $label$2 + (br_if $label$2 + (i32.lt_u + (get_local $3) + (i32.const 513) + ) + ) + (call $free + (get_local $5) + ) + ) + (block $label$3 + (br_if $label$3 + (i64.lt_u + (get_local $4) + (i64.load offset=16 + (get_local $2) + ) + ) + ) + (i64.store + (i32.add + (get_local $2) + (i32.const 16) + ) + (select + (i64.const -2) + (i64.add + (get_local $4) + (i64.const 1) + ) + (i64.gt_u + (get_local $4) + (i64.const -3) + ) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $6) + (i32.const 16) + ) + ) + ) + (func $_ZN5types10usrbalanceC2Ev (param $0 i32) (result i32) + (local $1 i64) + (local $2 i32) + (local $3 i32) + (i64.store offset=56 + (get_local $0) + (i64.const 0) + ) + (i64.store + (tee_local $2 + (i32.add + (get_local $0) + (i32.const 64) + ) + ) + (i64.const 1398362884) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 256) + ) + (set_local $1 + (i64.shr_u + (i64.load + (get_local $2) + ) + (i64.const 8) + ) + ) + (set_local $2 + (i32.const 0) + ) + (block $label$0 + (block $label$1 + (loop $label$2 + (br_if $label$1 + (i32.gt_u + (i32.add + (i32.shl + (i32.wrap/i64 + (get_local $1) + ) + (i32.const 24) + ) + (i32.const -1073741825) + ) + (i32.const 452984830) + ) + ) + (block $label$3 + (br_if $label$3 + (i64.ne + (i64.and + (tee_local $1 + (i64.shr_u + (get_local $1) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (loop $label$4 + (br_if $label$1 + (i64.ne + (i64.and + (tee_local $1 + (i64.shr_u + (get_local $1) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (br_if $label$4 + (i32.lt_s + (tee_local $2 + (i32.add + (get_local $2) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + ) + ) + (set_local $3 + (i32.const 1) + ) + (br_if $label$2 + (i32.lt_s + (tee_local $2 + (i32.add + (get_local $2) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + (br $label$0) + ) + ) + (set_local $3 + (i32.const 0) + ) + ) + (call $eosio_assert + (get_local $3) + (i32.const 176) + ) + (i64.store + (tee_local $2 + (i32.add + (get_local $0) + (i32.const 80) + ) + ) + (i64.const 1398362884) + ) + (i64.store offset=72 + (get_local $0) + (i64.const 0) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 256) + ) + (set_local $1 + (i64.shr_u + (i64.load + (get_local $2) + ) + (i64.const 8) + ) + ) + (set_local $2 + (i32.const 0) + ) + (block $label$5 + (block $label$6 + (loop $label$7 + (br_if $label$6 + (i32.gt_u + (i32.add + (i32.shl + (i32.wrap/i64 + (get_local $1) + ) + (i32.const 24) + ) + (i32.const -1073741825) + ) + (i32.const 452984830) + ) + ) + (block $label$8 + (br_if $label$8 + (i64.ne + (i64.and + (tee_local $1 + (i64.shr_u + (get_local $1) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (loop $label$9 + (br_if $label$6 + (i64.ne + (i64.and + (tee_local $1 + (i64.shr_u + (get_local $1) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (br_if $label$9 + (i32.lt_s + (tee_local $2 + (i32.add + (get_local $2) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + ) + ) + (set_local $3 + (i32.const 1) + ) + (br_if $label$7 + (i32.lt_s + (tee_local $2 + (i32.add + (get_local $2) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + (br $label$5) + ) + ) + (set_local $3 + (i32.const 0) + ) + ) + (call $eosio_assert + (get_local $3) + (i32.const 176) + ) + (get_local $0) + ) + (func $_ZN5typesrsIN5eosio10datastreamIPKcEEEERT_S7_RNS_10usrbalanceE (param $0 i32) (param $1 i32) (result i32) + (local $2 i32) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (i32.load offset=4 + (get_local $0) + ) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $1) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 33) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 8) + ) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 34) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 34) + ) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 48) + ) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 56) + ) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 64) + ) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 72) + ) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 80) + ) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 88) + ) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (get_local $0) + ) + (func $_ZNSt3__16vectorIN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE8item_ptrENS_9allocatorIS6_EEE24__emplace_back_slow_pathIJNS_10unique_ptrINS5_4itemENS_14default_deleteISC_EEEERyRlEEEvDpOT_ (param $0 i32) (param $1 i32) (param $2 i32) (param $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (block $label$0 + (block $label$1 + (br_if $label$1 + (i32.ge_u + (tee_local $5 + (i32.add + (tee_local $4 + (i32.div_s + (i32.sub + (i32.load offset=4 + (get_local $0) + ) + (tee_local $6 + (i32.load + (get_local $0) + ) + ) + ) + (i32.const 24) + ) + ) + (i32.const 1) + ) + ) + (i32.const 178956971) + ) + ) + (set_local $7 + (i32.const 178956970) + ) + (block $label$2 + (block $label$3 + (br_if $label$3 + (i32.gt_u + (tee_local $6 + (i32.div_s + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $6) + ) + (i32.const 24) + ) + ) + (i32.const 89478484) + ) + ) + (br_if $label$2 + (i32.eqz + (tee_local $7 + (select + (get_local $5) + (tee_local $7 + (i32.shl + (get_local $6) + (i32.const 1) + ) + ) + (i32.lt_u + (get_local $7) + (get_local $5) + ) + ) + ) + ) + ) + ) + (set_local $6 + (call $_Znwj + (i32.mul + (get_local $7) + (i32.const 24) + ) + ) + ) + (br $label$0) + ) + (set_local $7 + (i32.const 0) + ) + (set_local $6 + (i32.const 0) + ) + (br $label$0) + ) + (call $_ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv + (get_local $0) + ) + (unreachable) + ) + (set_local $5 + (i32.load + (get_local $1) + ) + ) + (i32.store + (get_local $1) + (i32.const 0) + ) + (i32.store + (tee_local $1 + (i32.add + (get_local $6) + (i32.mul + (get_local $4) + (i32.const 24) + ) + ) + ) + (get_local $5) + ) + (i64.store offset=8 + (get_local $1) + (i64.load + (get_local $2) + ) + ) + (i32.store offset=16 + (get_local $1) + (i32.load + (get_local $3) + ) + ) + (set_local $4 + (i32.add + (get_local $6) + (i32.mul + (get_local $7) + (i32.const 24) + ) + ) + ) + (set_local $5 + (i32.add + (get_local $1) + (i32.const 24) + ) + ) + (block $label$4 + (block $label$5 + (br_if $label$5 + (i32.eq + (tee_local $6 + (i32.load + (i32.add + (get_local $0) + (i32.const 4) + ) + ) + ) + (tee_local $7 + (i32.load + (get_local $0) + ) + ) + ) + ) + (loop $label$6 + (set_local $3 + (i32.load + (tee_local $2 + (i32.add + (get_local $6) + (i32.const -24) + ) + ) + ) + ) + (i32.store + (get_local $2) + (i32.const 0) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const -24) + ) + (get_local $3) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const -8) + ) + (i32.load + (i32.add + (get_local $6) + (i32.const -8) + ) + ) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const -12) + ) + (i32.load + (i32.add + (get_local $6) + (i32.const -12) + ) + ) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const -16) + ) + (i32.load + (i32.add + (get_local $6) + (i32.const -16) + ) + ) + ) + (set_local $1 + (i32.add + (get_local $1) + (i32.const -24) + ) + ) + (set_local $6 + (get_local $2) + ) + (br_if $label$6 + (i32.ne + (get_local $7) + (get_local $2) + ) + ) + ) + (set_local $7 + (i32.load + (i32.add + (get_local $0) + (i32.const 4) + ) + ) + ) + (set_local $6 + (i32.load + (get_local $0) + ) + ) + (br $label$4) + ) + (set_local $6 + (get_local $7) + ) + ) + (i32.store + (get_local $0) + (get_local $1) + ) + (i32.store + (i32.add + (get_local $0) + (i32.const 4) + ) + (get_local $5) + ) + (i32.store + (i32.add + (get_local $0) + (i32.const 8) + ) + (get_local $4) + ) + (block $label$7 + (br_if $label$7 + (i32.eq + (get_local $7) + (get_local $6) + ) + ) + (loop $label$8 + (set_local $1 + (i32.load + (tee_local $7 + (i32.add + (get_local $7) + (i32.const -24) + ) + ) + ) + ) + (i32.store + (get_local $7) + (i32.const 0) + ) + (block $label$9 + (br_if $label$9 + (i32.eqz + (get_local $1) + ) + ) + (call $_ZdlPv + (get_local $1) + ) + ) + (br_if $label$8 + (i32.ne + (get_local $6) + (get_local $7) + ) + ) + ) + ) + (block $label$10 + (br_if $label$10 + (i32.eqz + (get_local $6) + ) + ) + (call $_ZdlPv + (get_local $6) + ) + ) + ) + (func $_ZN5boost6fusion6detail17for_each_unrolledILi5EE4callINS0_18std_tuple_iteratorINSt3__15tupleIJ10public_keyS8_N5eosio5assetENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEE9signatureEEELi0EEEZNS9_rsINS9_10datastreamIPKcEEJS8_S8_SA_SG_SH_EEERT_SQ_RNS7_IJDpT0_EEEEUlSQ_E_EEvRKSP_RKT0_ (param $0 i32) (param $1 i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $4 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 272) + ) + ) + ) + (set_local $2 + (i32.load + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (tee_local $3 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $3) + ) + ) + (i32.const 33) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $2) + (i32.load offset=4 + (get_local $3) + ) + (i32.const 34) + ) + ) + (i32.store offset=4 + (get_local $3) + (i32.add + (i32.load offset=4 + (get_local $3) + ) + (i32.const 34) + ) + ) + (set_local $3 + (i32.load + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (tee_local $0 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $0) + ) + ) + (i32.const 33) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $3) + (i32.const 34) + ) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 34) + ) + ) + (i32.store offset=4 + (get_local $0) + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 34) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (tee_local $0 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $0) + ) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $3) + (i32.const 72) + ) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $3) + (i32.const 80) + ) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (drop + (call $_ZN5eosiorsINS_10datastreamIPKcEEEERT_S6_RNSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEE + (i32.load + (get_local $1) + ) + (i32.add + (get_local $3) + (i32.const 88) + ) + ) + ) + (i32.store + (get_local $4) + (i32.load + (get_local $1) + ) + ) + (i32.store offset=12 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 101) + ) + ) + (i32.store offset=8 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 100) + ) + ) + (i32.store offset=16 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 102) + ) + ) + (i32.store offset=20 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 103) + ) + ) + (i32.store offset=24 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 104) + ) + ) + (i32.store offset=28 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 105) + ) + ) + (i32.store offset=32 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 106) + ) + ) + (i32.store offset=36 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 107) + ) + ) + (i32.store offset=40 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 108) + ) + ) + (i32.store offset=44 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 109) + ) + ) + (i32.store offset=48 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 110) + ) + ) + (i32.store offset=52 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 111) + ) + ) + (i32.store offset=56 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 112) + ) + ) + (i32.store offset=60 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 113) + ) + ) + (i32.store offset=64 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 114) + ) + ) + (i32.store offset=68 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 115) + ) + ) + (i32.store offset=72 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 116) + ) + ) + (i32.store offset=76 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 117) + ) + ) + (i32.store offset=80 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 118) + ) + ) + (i32.store offset=84 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 119) + ) + ) + (i32.store offset=88 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 120) + ) + ) + (i32.store offset=92 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 121) + ) + ) + (i32.store offset=96 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 122) + ) + ) + (i32.store offset=100 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 123) + ) + ) + (i32.store offset=104 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 124) + ) + ) + (i32.store offset=108 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 125) + ) + ) + (i32.store offset=112 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 126) + ) + ) + (i32.store offset=116 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 127) + ) + ) + (i32.store offset=120 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 128) + ) + ) + (i32.store offset=124 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 129) + ) + ) + (i32.store offset=128 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 130) + ) + ) + (i32.store offset=132 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 131) + ) + ) + (i32.store offset=136 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 132) + ) + ) + (i32.store offset=140 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 133) + ) + ) + (i32.store offset=144 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 134) + ) + ) + (i32.store offset=148 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 135) + ) + ) + (i32.store offset=152 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 136) + ) + ) + (i32.store offset=156 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 137) + ) + ) + (i32.store offset=160 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 138) + ) + ) + (i32.store offset=164 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 139) + ) + ) + (i32.store offset=168 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 140) + ) + ) + (i32.store offset=172 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 141) + ) + ) + (i32.store offset=176 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 142) + ) + ) + (i32.store offset=180 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 143) + ) + ) + (i32.store offset=184 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 144) + ) + ) + (i32.store offset=188 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 145) + ) + ) + (i32.store offset=192 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 146) + ) + ) + (i32.store offset=196 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 147) + ) + ) + (i32.store offset=200 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 148) + ) + ) + (i32.store offset=204 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 149) + ) + ) + (i32.store offset=208 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 150) + ) + ) + (i32.store offset=212 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 151) + ) + ) + (i32.store offset=216 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 152) + ) + ) + (i32.store offset=220 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 153) + ) + ) + (i32.store offset=224 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 154) + ) + ) + (i32.store offset=228 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 155) + ) + ) + (i32.store offset=232 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 156) + ) + ) + (i32.store offset=236 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 157) + ) + ) + (i32.store offset=240 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 158) + ) + ) + (i32.store offset=244 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 159) + ) + ) + (i32.store offset=248 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 160) + ) + ) + (i32.store offset=252 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 161) + ) + ) + (i32.store offset=256 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 162) + ) + ) + (i32.store offset=260 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 163) + ) + ) + (i32.store offset=264 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 164) + ) + ) + (i32.store offset=268 + (get_local $4) + (i32.add + (get_local $3) + (i32.const 165) + ) + ) + (call $_ZN5boost3pfr6detail19for_each_field_implINS1_14sequence_tuple5tupleIJRhS5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_EEEZN5eosiorsINS7_10datastreamIPKcEE9signatureLPv0EEERT_SG_RT0_EUlSG_E_JLj0ELj1ELj2ELj3ELj4ELj5ELj6ELj7ELj8ELj9ELj10ELj11ELj12ELj13ELj14ELj15ELj16ELj17ELj18ELj19ELj20ELj21ELj22ELj23ELj24ELj25ELj26ELj27ELj28ELj29ELj30ELj31ELj32ELj33ELj34ELj35ELj36ELj37ELj38ELj39ELj40ELj41ELj42ELj43ELj44ELj45ELj46ELj47ELj48ELj49ELj50ELj51ELj52ELj53ELj54ELj55ELj56ELj57ELj58ELj59ELj60ELj61ELj62ELj63ELj64ELj65EEEEvSG_OSH_NSt3__116integer_sequenceIjJXspT1_EEEENSL_17integral_constantIbLb0EEE + (i32.add + (get_local $4) + (i32.const 8) + ) + (get_local $4) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $4) + (i32.const 272) + ) + ) + ) + (func $_ZN5boost4mp116detail16tuple_apply_implIRZN5eosio14execute_actionI5tokenS5_J10public_keyS6_NS3_5assetENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEE9signatureEEEbPT_MT0_FvDpT1_EEUlDpT_E_RNS8_5tupleIJS6_S6_S7_SE_SF_EEEJLj0ELj1ELj2ELj3ELj4EEEEDTclclsr3stdE7forwardISG_Efp_Espclsr3stdE3getIXT1_EEclsr3stdE7forwardISI_Efp0_EEEEOSG_OSI_NS0_16integer_sequenceIjJXspT1_EEEE (param $0 i32) (param $1 i32) + (local $2 i32) + (local $3 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $3 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 688) + ) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $3) + (i32.const 302) + ) + (get_local $1) + (i32.const 34) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $3) + (i32.const 268) + ) + (i32.add + (get_local $1) + (i32.const 34) + ) + (i32.const 34) + ) + ) + (i64.store + (tee_local $2 + (i32.add + (i32.add + (get_local $3) + (i32.const 248) + ) + (i32.const 8) + ) + ) + (i64.load + (i32.add + (get_local $1) + (i32.const 80) + ) + ) + ) + (i64.store offset=248 + (get_local $3) + (i64.load offset=72 + (get_local $1) + ) + ) + (drop + (call $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_ + (i32.add + (get_local $3) + (i32.const 232) + ) + (i32.add + (get_local $1) + (i32.const 88) + ) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $3) + (i32.const 166) + ) + (i32.add + (get_local $1) + (i32.const 100) + ) + (i32.const 66) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $3) + (i32.const 432) + ) + (i32.add + (get_local $3) + (i32.const 166) + ) + (i32.const 66) + ) + ) + (i64.store + (i32.add + (i32.add + (get_local $3) + (i32.const 416) + ) + (i32.const 8) + ) + (i64.load + (get_local $2) + ) + ) + (i64.store offset=416 + (get_local $3) + (i64.load offset=248 + (get_local $3) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $3) + (i32.const 376) + ) + (i32.add + (get_local $3) + (i32.const 268) + ) + (i32.const 34) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $3) + (i32.const 336) + ) + (i32.add + (get_local $3) + (i32.const 302) + ) + (i32.const 34) + ) + ) + (set_local $0 + (i32.add + (i32.load + (i32.load + (get_local $0) + ) + ) + (i32.shr_s + (tee_local $2 + (i32.load offset=4 + (tee_local $1 + (i32.load offset=4 + (get_local $0) + ) + ) + ) + ) + (i32.const 1) + ) + ) + ) + (set_local $1 + (i32.load + (get_local $1) + ) + ) + (block $label$0 + (br_if $label$0 + (i32.eqz + (i32.and + (get_local $2) + (i32.const 1) + ) + ) + ) + (set_local $1 + (i32.load + (i32.add + (i32.load + (get_local $0) + ) + (get_local $1) + ) + ) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $3) + (i32.const 648) + ) + (i32.add + (get_local $3) + (i32.const 336) + ) + (i32.const 34) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $3) + (i32.const 608) + ) + (i32.add + (get_local $3) + (i32.const 376) + ) + (i32.const 34) + ) + ) + (i64.store + (tee_local $2 + (i32.add + (i32.add + (get_local $3) + (i32.const 592) + ) + (i32.const 8) + ) + ) + (i64.load + (i32.add + (i32.add + (get_local $3) + (i32.const 416) + ) + (i32.const 8) + ) + ) + ) + (i64.store offset=592 + (get_local $3) + (i64.load offset=416 + (get_local $3) + ) + ) + (drop + (call $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_ + (i32.add + (get_local $3) + (i32.const 576) + ) + (i32.add + (get_local $3) + (i32.const 232) + ) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $3) + (i32.const 504) + ) + (i32.add + (get_local $3) + (i32.const 432) + ) + (i32.const 66) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $3) + (i32.const 132) + ) + (i32.add + (get_local $3) + (i32.const 648) + ) + (i32.const 34) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $3) + (i32.const 98) + ) + (i32.add + (get_local $3) + (i32.const 608) + ) + (i32.const 34) + ) + ) + (i64.store + (i32.add + (i32.add + (get_local $3) + (i32.const 80) + ) + (i32.const 8) + ) + (i64.load + (get_local $2) + ) + ) + (i64.store offset=80 + (get_local $3) + (i64.load offset=592 + (get_local $3) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $3) + (i32.const 14) + ) + (i32.add + (get_local $3) + (i32.const 504) + ) + (i32.const 66) + ) + ) + (call_indirect (type $FUNCSIG$viiiiii) + (get_local $0) + (i32.add + (get_local $3) + (i32.const 132) + ) + (i32.add + (get_local $3) + (i32.const 98) + ) + (i32.add + (get_local $3) + (i32.const 80) + ) + (i32.add + (get_local $3) + (i32.const 576) + ) + (i32.add + (get_local $3) + (i32.const 14) + ) + (get_local $1) + ) + (block $label$1 + (br_if $label$1 + (i32.eqz + (i32.and + (i32.load8_u offset=576 + (get_local $3) + ) + (i32.const 1) + ) + ) + ) + (call $_ZdlPv + (i32.load offset=584 + (get_local $3) + ) + ) + ) + (block $label$2 + (br_if $label$2 + (i32.eqz + (i32.and + (i32.load8_u offset=232 + (get_local $3) + ) + (i32.const 1) + ) + ) + ) + (call $_ZdlPv + (i32.load offset=240 + (get_local $3) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $3) + (i32.const 688) + ) + ) + ) + (func $_ZN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE6modifyIZN5token8transferE10public_keyS6_NS_5assetENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEE9signatureEUlRT_E_EEvRKS2_yOSG_ (param $0 i32) (param $1 i32) (param $2 i64) (param $3 i32) + (local $4 i64) + (local $5 i32) + (local $6 i64) + (local $7 i64) + (local $8 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $8 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 112) + ) + ) + ) + (call $eosio_assert + (i32.eq + (i32.load offset=96 + (get_local $1) + ) + (get_local $0) + ) + (i32.const 320) + ) + (call $eosio_assert + (i64.eq + (i64.load + (get_local $0) + ) + (call $current_receiver) + ) + (i32.const 368) + ) + (set_local $4 + (i64.load + (get_local $1) + ) + ) + (i64.store + (i32.load + (get_local $3) + ) + (i64.sub + (i64.load + (i32.load offset=4 + (get_local $3) + ) + ) + (i64.load offset=88 + (get_local $1) + ) + ) + ) + (i64.store offset=72 + (get_local $1) + (i64.sub + (tee_local $6 + (i64.load offset=72 + (get_local $1) + ) + ) + (tee_local $6 + (select + (get_local $6) + (tee_local $7 + (i64.div_u + (i64.mul + (get_local $6) + (i64.sub + (i64.div_u + (i64.load + (i32.load offset=4 + (get_local $3) + ) + ) + (i64.const 100000) + ) + (i64.div_u + (i64.load offset=88 + (get_local $1) + ) + (i64.const 100000) + ) + ) + ) + (i64.div_u + (i64.load offset=16 + (tee_local $5 + (i32.load offset=8 + (get_local $3) + ) + ) + ) + (i64.const 100000) + ) + ) + ) + (i64.gt_s + (get_local $7) + (get_local $6) + ) + ) + ) + ) + ) + (i64.store offset=56 + (get_local $1) + (tee_local $6 + (i64.add + (get_local $6) + (i64.load offset=56 + (get_local $1) + ) + ) + ) + ) + (call $eosio_assert + (i64.ge_u + (get_local $6) + (i64.add + (i64.load offset=8 + (get_local $5) + ) + (i64.load + (i32.load offset=12 + (get_local $3) + ) + ) + ) + ) + (i32.const 1008) + ) + (i64.store offset=56 + (get_local $1) + (tee_local $7 + (i64.sub + (i64.load offset=56 + (get_local $1) + ) + (tee_local $6 + (i64.load offset=8 + (get_local $5) + ) + ) + ) + ) + ) + (i64.store offset=72 + (get_local $1) + (i64.add + (get_local $6) + (i64.load offset=72 + (get_local $1) + ) + ) + ) + (i64.store offset=56 + (get_local $1) + (i64.sub + (get_local $7) + (i64.load + (i32.load offset=12 + (get_local $3) + ) + ) + ) + ) + (i64.store offset=88 + (get_local $1) + (i64.load + (i32.load offset=4 + (get_local $3) + ) + ) + ) + (i64.store offset=48 + (get_local $1) + (i64.add + (i64.load offset=48 + (get_local $1) + ) + (i64.const 1) + ) + ) + (call $eosio_assert + (i64.eq + (get_local $4) + (i64.load + (get_local $1) + ) + ) + (i32.const 432) + ) + (i32.store offset=104 + (get_local $8) + (i32.add + (get_local $8) + (i32.const 90) + ) + ) + (i32.store offset=100 + (get_local $8) + (get_local $8) + ) + (i32.store offset=96 + (get_local $8) + (get_local $8) + ) + (drop + (call $_ZN5typeslsIN5eosio10datastreamIPcEEEERT_S6_RKNS_10usrbalanceE + (i32.add + (get_local $8) + (i32.const 96) + ) + (get_local $1) + ) + ) + (call $db_update_i64 + (i32.load offset=100 + (get_local $1) + ) + (get_local $2) + (get_local $8) + (i32.const 90) + ) + (block $label$0 + (br_if $label$0 + (i64.lt_u + (get_local $4) + (i64.load offset=16 + (get_local $0) + ) + ) + ) + (i64.store + (i32.add + (get_local $0) + (i32.const 16) + ) + (select + (i64.const -2) + (i64.add + (get_local $4) + (i64.const 1) + ) + (i64.gt_u + (get_local $4) + (i64.const -3) + ) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $8) + (i32.const 112) + ) + ) + ) + (func $_ZN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE6modifyIZN5token8transferE10public_keyS6_NS_5assetENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEE9signatureEUlRT_E0_EEvRKS2_yOSG_ (param $0 i32) (param $1 i32) (param $2 i64) (param $3 i32) + (local $4 i64) + (local $5 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $5 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 112) + ) + ) + ) + (call $eosio_assert + (i32.eq + (i32.load offset=96 + (get_local $1) + ) + (get_local $0) + ) + (i32.const 320) + ) + (call $eosio_assert + (i64.eq + (i64.load + (get_local $0) + ) + (call $current_receiver) + ) + (i32.const 368) + ) + (i64.store offset=56 + (get_local $1) + (i64.add + (i64.load offset=56 + (get_local $1) + ) + (i64.load + (i32.load + (get_local $3) + ) + ) + ) + ) + (set_local $4 + (i64.load + (get_local $1) + ) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 432) + ) + (i32.store offset=104 + (get_local $5) + (i32.add + (get_local $5) + (i32.const 90) + ) + ) + (i32.store offset=100 + (get_local $5) + (get_local $5) + ) + (i32.store offset=96 + (get_local $5) + (get_local $5) + ) + (drop + (call $_ZN5typeslsIN5eosio10datastreamIPcEEEERT_S6_RKNS_10usrbalanceE + (i32.add + (get_local $5) + (i32.const 96) + ) + (get_local $1) + ) + ) + (call $db_update_i64 + (i32.load offset=100 + (get_local $1) + ) + (get_local $2) + (get_local $5) + (i32.const 90) + ) + (block $label$0 + (br_if $label$0 + (i64.lt_u + (get_local $4) + (i64.load offset=16 + (get_local $0) + ) + ) + ) + (i64.store + (i32.add + (get_local $0) + (i32.const 16) + ) + (select + (i64.const -2) + (i64.add + (get_local $4) + (i64.const 1) + ) + (i64.gt_u + (get_local $4) + (i64.const -3) + ) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $5) + (i32.const 112) + ) + ) + ) + (func $_ZN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE7emplaceIZN5token8transferE10public_keyS6_NS_5assetENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEE9signatureEUlRT_E1_EENS3_14const_iteratorEyOSG_ (param $0 i32) (param $1 i32) (param $2 i64) (param $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $7 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 48) + ) + ) + ) + (i64.store offset=40 + (get_local $7) + (get_local $2) + ) + (call $eosio_assert + (i64.eq + (i64.load + (get_local $1) + ) + (call $current_receiver) + ) + (i32.const 576) + ) + (i32.store offset=20 + (get_local $7) + (get_local $3) + ) + (i32.store offset=16 + (get_local $7) + (get_local $1) + ) + (i32.store offset=24 + (get_local $7) + (i32.add + (get_local $7) + (i32.const 40) + ) + ) + (drop + (call $_ZN5types10usrbalanceC2Ev + (tee_local $3 + (call $_Znwj + (i32.const 112) + ) + ) + ) + ) + (i32.store offset=96 + (get_local $3) + (get_local $1) + ) + (call $_ZZN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE7emplaceIZN5token8transferE10public_keyS6_NS_5assetENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEE9signatureEUlRT_E1_EENS3_14const_iteratorEyOSG_ENKUlSH_E_clINS3_4itemEEEDaSH_ + (i32.add + (get_local $7) + (i32.const 16) + ) + (get_local $3) + ) + (i32.store offset=32 + (get_local $7) + (get_local $3) + ) + (i64.store offset=16 + (get_local $7) + (tee_local $2 + (i64.load + (get_local $3) + ) + ) + ) + (i32.store offset=12 + (get_local $7) + (tee_local $4 + (i32.load offset=100 + (get_local $3) + ) + ) + ) + (block $label$0 + (block $label$1 + (br_if $label$1 + (i32.ge_u + (tee_local $5 + (i32.load + (tee_local $6 + (i32.add + (get_local $1) + (i32.const 28) + ) + ) + ) + ) + (i32.load + (i32.add + (get_local $1) + (i32.const 32) + ) + ) + ) + ) + (i64.store offset=8 + (get_local $5) + (get_local $2) + ) + (i32.store offset=16 + (get_local $5) + (get_local $4) + ) + (i32.store offset=32 + (get_local $7) + (i32.const 0) + ) + (i32.store + (get_local $5) + (get_local $3) + ) + (i32.store + (get_local $6) + (i32.add + (get_local $5) + (i32.const 24) + ) + ) + (br $label$0) + ) + (call $_ZNSt3__16vectorIN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE8item_ptrENS_9allocatorIS6_EEE24__emplace_back_slow_pathIJNS_10unique_ptrINS5_4itemENS_14default_deleteISC_EEEERyRlEEEvDpOT_ + (i32.add + (get_local $1) + (i32.const 24) + ) + (i32.add + (get_local $7) + (i32.const 32) + ) + (i32.add + (get_local $7) + (i32.const 16) + ) + (i32.add + (get_local $7) + (i32.const 12) + ) + ) + ) + (i32.store offset=4 + (get_local $0) + (get_local $3) + ) + (i32.store + (get_local $0) + (get_local $1) + ) + (set_local $1 + (i32.load offset=32 + (get_local $7) + ) + ) + (i32.store offset=32 + (get_local $7) + (i32.const 0) + ) + (block $label$2 + (br_if $label$2 + (i32.eqz + (get_local $1) + ) + ) + (call $_ZdlPv + (get_local $1) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $7) + (i32.const 48) + ) + ) + ) + (func $_ZNK5eosio11multi_indexILy7235159550573564928EN5types11globalstateEJEE31load_object_by_primary_iteratorEl (param $0 i32) (param $1 i32) (result i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i64) + (local $6 i32) + (local $7 i32) + (local $8 i32) + (local $9 i32) + (set_local $8 + (tee_local $9 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 48) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (get_local $9) + ) + (block $label$0 + (br_if $label$0 + (i32.eq + (tee_local $7 + (i32.load + (i32.add + (get_local $0) + (i32.const 28) + ) + ) + ) + (tee_local $2 + (i32.load offset=24 + (get_local $0) + ) + ) + ) + ) + (set_local $3 + (i32.sub + (i32.const 0) + (get_local $2) + ) + ) + (set_local $6 + (i32.add + (get_local $7) + (i32.const -24) + ) + ) + (loop $label$1 + (br_if $label$0 + (i32.eq + (i32.load + (i32.add + (get_local $6) + (i32.const 16) + ) + ) + (get_local $1) + ) + ) + (set_local $7 + (get_local $6) + ) + (set_local $6 + (tee_local $4 + (i32.add + (get_local $6) + (i32.const -24) + ) + ) + ) + (br_if $label$1 + (i32.ne + (i32.add + (get_local $4) + (get_local $3) + ) + (i32.const -24) + ) + ) + ) + ) + (block $label$2 + (block $label$3 + (br_if $label$3 + (i32.eq + (get_local $7) + (get_local $2) + ) + ) + (set_local $6 + (i32.load + (i32.add + (get_local $7) + (i32.const -24) + ) + ) + ) + (br $label$2) + ) + (call $eosio_assert + (i32.xor + (i32.shr_u + (tee_local $6 + (call $db_get_i64 + (get_local $1) + (i32.const 0) + (i32.const 0) + ) + ) + (i32.const 31) + ) + (i32.const 1) + ) + (i32.const 512) + ) + (block $label$4 + (block $label$5 + (br_if $label$5 + (i32.lt_u + (get_local $6) + (i32.const 513) + ) + ) + (set_local $4 + (call $malloc + (get_local $6) + ) + ) + (br $label$4) + ) + (i32.store offset=4 + (i32.const 0) + (tee_local $4 + (i32.sub + (get_local $9) + (i32.and + (i32.add + (get_local $6) + (i32.const 15) + ) + (i32.const -16) + ) + ) + ) + ) + ) + (drop + (call $db_get_i64 + (get_local $1) + (get_local $4) + (get_local $6) + ) + ) + (i32.store offset=36 + (get_local $8) + (get_local $4) + ) + (i32.store offset=32 + (get_local $8) + (get_local $4) + ) + (i32.store offset=40 + (get_local $8) + (i32.add + (get_local $4) + (get_local $6) + ) + ) + (block $label$6 + (br_if $label$6 + (i32.lt_u + (get_local $6) + (i32.const 513) + ) + ) + (call $free + (get_local $4) + ) + ) + (set_local $4 + (call $_ZN5types11globalstateC2Ev + (tee_local $6 + (call $_Znwj + (i32.const 88) + ) + ) + ) + ) + (i32.store offset=72 + (get_local $6) + (get_local $0) + ) + (drop + (call $_ZN5typesrsIN5eosio10datastreamIPKcEEEERT_S7_RNS_11globalstateE + (i32.add + (get_local $8) + (i32.const 32) + ) + (get_local $4) + ) + ) + (i32.store offset=76 + (get_local $6) + (get_local $1) + ) + (i32.store offset=24 + (get_local $8) + (get_local $6) + ) + (i64.store offset=16 + (get_local $8) + (tee_local $5 + (i64.load + (get_local $6) + ) + ) + ) + (i32.store offset=12 + (get_local $8) + (tee_local $7 + (i32.load offset=76 + (get_local $6) + ) + ) + ) + (block $label$7 + (block $label$8 + (br_if $label$8 + (i32.ge_u + (tee_local $4 + (i32.load + (tee_local $1 + (i32.add + (get_local $0) + (i32.const 28) + ) + ) + ) + ) + (i32.load + (i32.add + (get_local $0) + (i32.const 32) + ) + ) + ) + ) + (i64.store offset=8 + (get_local $4) + (get_local $5) + ) + (i32.store offset=16 + (get_local $4) + (get_local $7) + ) + (i32.store offset=24 + (get_local $8) + (i32.const 0) + ) + (i32.store + (get_local $4) + (get_local $6) + ) + (i32.store + (get_local $1) + (i32.add + (get_local $4) + (i32.const 24) + ) + ) + (br $label$7) + ) + (call $_ZNSt3__16vectorIN5eosio11multi_indexILy7235159550573564928EN5types11globalstateEJEE8item_ptrENS_9allocatorIS6_EEE24__emplace_back_slow_pathIJNS_10unique_ptrINS5_4itemENS_14default_deleteISC_EEEERyRlEEEvDpOT_ + (i32.add + (get_local $0) + (i32.const 24) + ) + (i32.add + (get_local $8) + (i32.const 24) + ) + (i32.add + (get_local $8) + (i32.const 16) + ) + (i32.add + (get_local $8) + (i32.const 12) + ) + ) + ) + (set_local $4 + (i32.load offset=24 + (get_local $8) + ) + ) + (i32.store offset=24 + (get_local $8) + (i32.const 0) + ) + (br_if $label$2 + (i32.eqz + (get_local $4) + ) + ) + (call $_ZdlPv + (get_local $4) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $8) + (i32.const 48) + ) + ) + (get_local $6) + ) + (func $_ZN5eosio11multi_indexILy7235159550573564928EN5types11globalstateEJEE6modifyIZN5token8transferE10public_keyS6_NS_5assetENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEE9signatureEUlRT_E2_EEvRKS2_yOSG_ (param $0 i32) (param $1 i32) (param $2 i64) (param $3 i32) + (local $4 i64) + (local $5 i64) + (local $6 i64) + (local $7 i32) + (local $8 i32) + (set_local $7 + (tee_local $8 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 16) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (get_local $8) + ) + (call $eosio_assert + (i32.eq + (i32.load offset=72 + (get_local $1) + ) + (get_local $0) + ) + (i32.const 320) + ) + (call $eosio_assert + (i64.eq + (i64.load + (get_local $0) + ) + (call $current_receiver) + ) + (i32.const 368) + ) + (i64.store offset=40 + (get_local $1) + (i64.add + (i64.load offset=40 + (get_local $1) + ) + (i64.load + (i32.load + (get_local $3) + ) + ) + ) + ) + (set_local $4 + (i64.load + (get_local $1) + ) + ) + (block $label$0 + (block $label$1 + (br_if $label$1 + (i64.ne + (tee_local $5 + (i64.load + (i32.load offset=4 + (get_local $3) + ) + ) + ) + (i64.load + (i32.load offset=8 + (get_local $3) + ) + ) + ) + ) + (set_local $6 + (i64.load offset=56 + (get_local $1) + ) + ) + (br $label$0) + ) + (i64.store offset=64 + (get_local $1) + (i64.div_u + (i64.add + (i64.mul + (tee_local $6 + (i64.load offset=56 + (get_local $1) + ) + ) + (i64.load offset=64 + (get_local $1) + ) + ) + (get_local $5) + ) + (i64.add + (get_local $6) + (i64.const 1) + ) + ) + ) + ) + (i64.store + (i32.add + (get_local $1) + (i32.const 56) + ) + (i64.add + (get_local $6) + (i64.const 1) + ) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 432) + ) + (i32.store offset=4 + (i32.const 0) + (tee_local $3 + (i32.add + (tee_local $8 + (get_local $8) + ) + (i32.const -80) + ) + ) + ) + (i32.store offset=4 + (get_local $7) + (get_local $3) + ) + (i32.store + (get_local $7) + (get_local $3) + ) + (i32.store offset=8 + (get_local $7) + (i32.add + (get_local $8) + (i32.const -8) + ) + ) + (drop + (call $_ZN5typeslsIN5eosio10datastreamIPcEEEERT_S6_RKNS_11globalstateE + (get_local $7) + (get_local $1) + ) + ) + (call $db_update_i64 + (i32.load offset=76 + (get_local $1) + ) + (get_local $2) + (get_local $3) + (i32.const 72) + ) + (block $label$2 + (br_if $label$2 + (i64.lt_u + (get_local $4) + (i64.load offset=16 + (get_local $0) + ) + ) + ) + (i64.store + (i32.add + (get_local $0) + (i32.const 16) + ) + (select + (i64.const -2) + (i64.add + (get_local $4) + (i64.const 1) + ) + (i64.gt_u + (get_local $4) + (i64.const -3) + ) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $7) + (i32.const 16) + ) + ) + ) + (func $_ZN5typeslsIN5eosio10datastreamIPcEEEERT_S6_RKNS_11globalstateE (param $0 i32) (param $1 i32) (result i32) + (local $2 i32) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (i32.load offset=4 + (get_local $0) + ) + ) + (i32.const 7) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $0) + ) + (get_local $1) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $0) + ) + (i32.add + (get_local $1) + (i32.const 8) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $0) + ) + (i32.add + (get_local $1) + (i32.const 16) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $0) + ) + (i32.add + (get_local $1) + (i32.const 24) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $0) + ) + (i32.add + (get_local $1) + (i32.const 32) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $0) + ) + (i32.add + (get_local $1) + (i32.const 40) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $0) + ) + (i32.add + (get_local $1) + (i32.const 48) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $0) + ) + (i32.add + (get_local $1) + (i32.const 56) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $0) + ) + (i32.add + (get_local $1) + (i32.const 64) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (get_local $0) + ) + (func $_ZN5types11globalstateC2Ev (param $0 i32) (result i32) + (local $1 i64) + (local $2 i32) + (local $3 i32) + (i64.store offset=8 + (get_local $0) + (i64.const 0) + ) + (i64.store + (tee_local $2 + (i32.add + (get_local $0) + (i32.const 16) + ) + ) + (i64.const 1398362884) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 256) + ) + (set_local $1 + (i64.shr_u + (i64.load + (get_local $2) + ) + (i64.const 8) + ) + ) + (set_local $2 + (i32.const 0) + ) + (block $label$0 + (block $label$1 + (loop $label$2 + (br_if $label$1 + (i32.gt_u + (i32.add + (i32.shl + (i32.wrap/i64 + (get_local $1) + ) + (i32.const 24) + ) + (i32.const -1073741825) + ) + (i32.const 452984830) + ) + ) + (block $label$3 + (br_if $label$3 + (i64.ne + (i64.and + (tee_local $1 + (i64.shr_u + (get_local $1) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (loop $label$4 + (br_if $label$1 + (i64.ne + (i64.and + (tee_local $1 + (i64.shr_u + (get_local $1) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (br_if $label$4 + (i32.lt_s + (tee_local $2 + (i32.add + (get_local $2) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + ) + ) + (set_local $3 + (i32.const 1) + ) + (br_if $label$2 + (i32.lt_s + (tee_local $2 + (i32.add + (get_local $2) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + (br $label$0) + ) + ) + (set_local $3 + (i32.const 0) + ) + ) + (call $eosio_assert + (get_local $3) + (i32.const 176) + ) + (i64.store + (tee_local $2 + (i32.add + (get_local $0) + (i32.const 32) + ) + ) + (i64.const 1398362884) + ) + (i64.store offset=24 + (get_local $0) + (i64.const 0) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 256) + ) + (set_local $1 + (i64.shr_u + (i64.load + (get_local $2) + ) + (i64.const 8) + ) + ) + (set_local $2 + (i32.const 0) + ) + (block $label$5 + (block $label$6 + (loop $label$7 + (br_if $label$6 + (i32.gt_u + (i32.add + (i32.shl + (i32.wrap/i64 + (get_local $1) + ) + (i32.const 24) + ) + (i32.const -1073741825) + ) + (i32.const 452984830) + ) + ) + (block $label$8 + (br_if $label$8 + (i64.ne + (i64.and + (tee_local $1 + (i64.shr_u + (get_local $1) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (loop $label$9 + (br_if $label$6 + (i64.ne + (i64.and + (tee_local $1 + (i64.shr_u + (get_local $1) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (br_if $label$9 + (i32.lt_s + (tee_local $2 + (i32.add + (get_local $2) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + ) + ) + (set_local $3 + (i32.const 1) + ) + (br_if $label$7 + (i32.lt_s + (tee_local $2 + (i32.add + (get_local $2) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + (br $label$5) + ) + ) + (set_local $3 + (i32.const 0) + ) + ) + (call $eosio_assert + (get_local $3) + (i32.const 176) + ) + (i64.store + (tee_local $2 + (i32.add + (get_local $0) + (i32.const 48) + ) + ) + (i64.const 1398362884) + ) + (i64.store offset=40 + (get_local $0) + (i64.const 0) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 256) + ) + (set_local $1 + (i64.shr_u + (i64.load + (get_local $2) + ) + (i64.const 8) + ) + ) + (set_local $2 + (i32.const 0) + ) + (block $label$10 + (block $label$11 + (loop $label$12 + (br_if $label$11 + (i32.gt_u + (i32.add + (i32.shl + (i32.wrap/i64 + (get_local $1) + ) + (i32.const 24) + ) + (i32.const -1073741825) + ) + (i32.const 452984830) + ) + ) + (block $label$13 + (br_if $label$13 + (i64.ne + (i64.and + (tee_local $1 + (i64.shr_u + (get_local $1) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (loop $label$14 + (br_if $label$11 + (i64.ne + (i64.and + (tee_local $1 + (i64.shr_u + (get_local $1) + (i64.const 8) + ) + ) + (i64.const 255) + ) + (i64.const 0) + ) + ) + (br_if $label$14 + (i32.lt_s + (tee_local $2 + (i32.add + (get_local $2) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + ) + ) + (set_local $3 + (i32.const 1) + ) + (br_if $label$12 + (i32.lt_s + (tee_local $2 + (i32.add + (get_local $2) + (i32.const 1) + ) + ) + (i32.const 7) + ) + ) + (br $label$10) + ) + ) + (set_local $3 + (i32.const 0) + ) + ) + (call $eosio_assert + (get_local $3) + (i32.const 176) + ) + (get_local $0) + ) + (func $_ZN5typesrsIN5eosio10datastreamIPKcEEEERT_S7_RNS_11globalstateE (param $0 i32) (param $1 i32) (result i32) + (local $2 i32) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (i32.load offset=4 + (get_local $0) + ) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (get_local $1) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 8) + ) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 16) + ) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 24) + ) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 32) + ) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 40) + ) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 48) + ) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 56) + ) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 64) + ) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (get_local $0) + ) + (func $_ZNSt3__16vectorIN5eosio11multi_indexILy7235159550573564928EN5types11globalstateEJEE8item_ptrENS_9allocatorIS6_EEE24__emplace_back_slow_pathIJNS_10unique_ptrINS5_4itemENS_14default_deleteISC_EEEERyRlEEEvDpOT_ (param $0 i32) (param $1 i32) (param $2 i32) (param $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (block $label$0 + (block $label$1 + (br_if $label$1 + (i32.ge_u + (tee_local $5 + (i32.add + (tee_local $4 + (i32.div_s + (i32.sub + (i32.load offset=4 + (get_local $0) + ) + (tee_local $6 + (i32.load + (get_local $0) + ) + ) + ) + (i32.const 24) + ) + ) + (i32.const 1) + ) + ) + (i32.const 178956971) + ) + ) + (set_local $7 + (i32.const 178956970) + ) + (block $label$2 + (block $label$3 + (br_if $label$3 + (i32.gt_u + (tee_local $6 + (i32.div_s + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $6) + ) + (i32.const 24) + ) + ) + (i32.const 89478484) + ) + ) + (br_if $label$2 + (i32.eqz + (tee_local $7 + (select + (get_local $5) + (tee_local $7 + (i32.shl + (get_local $6) + (i32.const 1) + ) + ) + (i32.lt_u + (get_local $7) + (get_local $5) + ) + ) + ) + ) + ) + ) + (set_local $6 + (call $_Znwj + (i32.mul + (get_local $7) + (i32.const 24) + ) + ) + ) + (br $label$0) + ) + (set_local $7 + (i32.const 0) + ) + (set_local $6 + (i32.const 0) + ) + (br $label$0) + ) + (call $_ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv + (get_local $0) + ) + (unreachable) + ) + (set_local $5 + (i32.load + (get_local $1) + ) + ) + (i32.store + (get_local $1) + (i32.const 0) + ) + (i32.store + (tee_local $1 + (i32.add + (get_local $6) + (i32.mul + (get_local $4) + (i32.const 24) + ) + ) + ) + (get_local $5) + ) + (i64.store offset=8 + (get_local $1) + (i64.load + (get_local $2) + ) + ) + (i32.store offset=16 + (get_local $1) + (i32.load + (get_local $3) + ) + ) + (set_local $4 + (i32.add + (get_local $6) + (i32.mul + (get_local $7) + (i32.const 24) + ) + ) + ) + (set_local $5 + (i32.add + (get_local $1) + (i32.const 24) + ) + ) + (block $label$4 + (block $label$5 + (br_if $label$5 + (i32.eq + (tee_local $6 + (i32.load + (i32.add + (get_local $0) + (i32.const 4) + ) + ) + ) + (tee_local $7 + (i32.load + (get_local $0) + ) + ) + ) + ) + (loop $label$6 + (set_local $3 + (i32.load + (tee_local $2 + (i32.add + (get_local $6) + (i32.const -24) + ) + ) + ) + ) + (i32.store + (get_local $2) + (i32.const 0) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const -24) + ) + (get_local $3) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const -8) + ) + (i32.load + (i32.add + (get_local $6) + (i32.const -8) + ) + ) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const -12) + ) + (i32.load + (i32.add + (get_local $6) + (i32.const -12) + ) + ) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const -16) + ) + (i32.load + (i32.add + (get_local $6) + (i32.const -16) + ) + ) + ) + (set_local $1 + (i32.add + (get_local $1) + (i32.const -24) + ) + ) + (set_local $6 + (get_local $2) + ) + (br_if $label$6 + (i32.ne + (get_local $7) + (get_local $2) + ) + ) + ) + (set_local $7 + (i32.load + (i32.add + (get_local $0) + (i32.const 4) + ) + ) + ) + (set_local $6 + (i32.load + (get_local $0) + ) + ) + (br $label$4) + ) + (set_local $6 + (get_local $7) + ) + ) + (i32.store + (get_local $0) + (get_local $1) + ) + (i32.store + (i32.add + (get_local $0) + (i32.const 4) + ) + (get_local $5) + ) + (i32.store + (i32.add + (get_local $0) + (i32.const 8) + ) + (get_local $4) + ) + (block $label$7 + (br_if $label$7 + (i32.eq + (get_local $7) + (get_local $6) + ) + ) + (loop $label$8 + (set_local $1 + (i32.load + (tee_local $7 + (i32.add + (get_local $7) + (i32.const -24) + ) + ) + ) + ) + (i32.store + (get_local $7) + (i32.const 0) + ) + (block $label$9 + (br_if $label$9 + (i32.eqz + (get_local $1) + ) + ) + (call $_ZdlPv + (get_local $1) + ) + ) + (br_if $label$8 + (i32.ne + (get_local $6) + (get_local $7) + ) + ) + ) + ) + (block $label$10 + (br_if $label$10 + (i32.eqz + (get_local $6) + ) + ) + (call $_ZdlPv + (get_local $6) + ) + ) + ) + (func $_ZZN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE7emplaceIZN5token8transferE10public_keyS6_NS_5assetENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEE9signatureEUlRT_E1_EENS3_14const_iteratorEyOSG_ENKUlSH_E_clINS3_4itemEEEDaSH_ (param $0 i32) (param $1 i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i64) + (local $6 i64) + (local $7 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $7 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 112) + ) + ) + ) + (i64.store + (get_local $1) + (i64.add + (i64.add + (i64.extend_s/i32 + (i32.shl + (select + (i32.add + (tee_local $4 + (i32.load8_s offset=5 + (tee_local $3 + (i32.load offset=4 + (tee_local $2 + (i32.load offset=4 + (get_local $0) + ) + ) + ) + ) + ) + ) + (i32.const 256) + ) + (get_local $4) + (i32.lt_s + (get_local $4) + (i32.const 0) + ) + ) + (i32.const 16) + ) + ) + (i64.extend_s/i32 + (i32.add + (i32.add + (i32.add + (i32.shl + (select + (i32.add + (tee_local $4 + (i32.load8_s offset=2 + (get_local $3) + ) + ) + (i32.const 256) + ) + (get_local $4) + (i32.lt_s + (get_local $4) + (i32.const 0) + ) + ) + (i32.const 4) + ) + (select + (i32.add + (tee_local $4 + (i32.load8_s offset=1 + (get_local $3) + ) + ) + (i32.const 256) + ) + (get_local $4) + (i32.lt_s + (get_local $4) + (i32.const 0) + ) + ) + ) + (i32.shl + (select + (i32.add + (tee_local $4 + (i32.load8_s offset=3 + (get_local $3) + ) + ) + (i32.const 256) + ) + (get_local $4) + (i32.lt_s + (get_local $4) + (i32.const 0) + ) + ) + (i32.const 8) + ) + ) + (i32.shl + (select + (i32.add + (tee_local $4 + (i32.load8_s offset=4 + (get_local $3) + ) + ) + (i32.const 256) + ) + (get_local $4) + (i32.lt_s + (get_local $4) + (i32.const 0) + ) + ) + (i32.const 12) + ) + ) + ) + ) + (i64.extend_s/i32 + (i32.shl + (select + (i32.add + (tee_local $3 + (i32.load8_s offset=6 + (get_local $3) + ) + ) + (i32.const 256) + ) + (get_local $3) + (i32.lt_s + (get_local $3) + (i32.const 0) + ) + ) + (i32.const 20) + ) + ) + ) + ) + (set_local $3 + (i32.load + (get_local $0) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 8) + ) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 34) + ) + ) + (i64.store offset=48 + (get_local $1) + (i64.const 0) + ) + (i64.store offset=56 + (get_local $1) + (i64.load + (tee_local $4 + (i32.load offset=8 + (get_local $2) + ) + ) + ) + ) + (i64.store + (i32.add + (get_local $1) + (i32.const 64) + ) + (i64.load + (i32.add + (get_local $4) + (i32.const 8) + ) + ) + ) + (set_local $5 + (i64.load offset=8 + (tee_local $2 + (i32.load offset=8 + (get_local $2) + ) + ) + ) + ) + (set_local $6 + (i64.load + (get_local $2) + ) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 896) + ) + (call $eosio_assert + (i64.gt_s + (tee_local $6 + (i64.sub + (get_local $6) + (i64.load + (get_local $2) + ) + ) + ) + (i64.const -4611686018427387904) + ) + (i32.const 944) + ) + (call $eosio_assert + (i64.lt_s + (get_local $6) + (i64.const 4611686018427387904) + ) + (i32.const 976) + ) + (i64.store + (i32.add + (get_local $1) + (i32.const 80) + ) + (get_local $5) + ) + (i64.store offset=72 + (get_local $1) + (get_local $6) + ) + (i64.store offset=88 + (get_local $1) + (i64.const 0) + ) + (i32.store offset=104 + (get_local $7) + (i32.add + (get_local $7) + (i32.const 90) + ) + ) + (i32.store offset=100 + (get_local $7) + (get_local $7) + ) + (i32.store offset=96 + (get_local $7) + (get_local $7) + ) + (drop + (call $_ZN5typeslsIN5eosio10datastreamIPcEEEERT_S6_RKNS_10usrbalanceE + (i32.add + (get_local $7) + (i32.const 96) + ) + (get_local $1) + ) + ) + (i32.store offset=100 + (get_local $1) + (call $db_store_i64 + (i64.load offset=8 + (get_local $3) + ) + (i64.const -3013344361224962048) + (i64.load + (i32.load offset=8 + (get_local $0) + ) + ) + (tee_local $6 + (i64.load + (get_local $1) + ) + ) + (get_local $7) + (i32.const 90) + ) + ) + (block $label$0 + (br_if $label$0 + (i64.lt_u + (get_local $6) + (i64.load offset=16 + (get_local $3) + ) + ) + ) + (i64.store + (i32.add + (get_local $3) + (i32.const 16) + ) + (select + (i64.const -2) + (i64.add + (get_local $6) + (i64.const 1) + ) + (i64.gt_u + (get_local $6) + (i64.const -3) + ) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $7) + (i32.const 112) + ) + ) + ) + (func $_ZN5typeslsIN5eosio10datastreamIPcEEEERT_S6_RKNS_10usrbalanceE (param $0 i32) (param $1 i32) (result i32) + (local $2 i32) + (local $3 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $3 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 80) + ) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (i32.load offset=4 + (get_local $0) + ) + ) + (i32.const 7) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $0) + ) + (get_local $1) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $3) + (i32.const 6) + ) + (i32.add + (get_local $1) + (i32.const 8) + ) + (i32.const 34) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $3) + (i32.const 40) + ) + (i32.add + (get_local $3) + (i32.const 6) + ) + (i32.const 34) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 33) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $0) + ) + (i32.add + (get_local $3) + (i32.const 40) + ) + (i32.const 34) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 34) + ) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $0) + ) + (i32.add + (get_local $1) + (i32.const 48) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $0) + ) + (i32.add + (get_local $1) + (i32.const 56) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $0) + ) + (i32.add + (get_local $1) + (i32.const 64) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $0) + ) + (i32.add + (get_local $1) + (i32.const 72) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $0) + ) + (i32.add + (get_local $1) + (i32.const 80) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $2 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_s + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $2) + ) + (i32.const 7) + ) + (i32.const 496) + ) + (drop + (call $memcpy + (i32.load offset=4 + (get_local $0) + ) + (i32.add + (get_local $1) + (i32.const 88) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $3) + (i32.const 80) + ) + ) + (get_local $0) + ) + (func $_ZN5boost6fusion6detail17for_each_unrolledILi4EE4callINS0_18std_tuple_iteratorINSt3__15tupleIJNS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEE10public_keyN5eosio5assetESD_EEELi0EEEZNSF_rsINSF_10datastreamIPKcEEJSD_SE_SG_SD_EEERT_SP_RNS7_IJDpT0_EEEEUlSP_E_EEvRKSO_RKT0_ (param $0 i32) (param $1 i32) + (local $2 i32) + (local $3 i32) + (drop + (call $_ZN5eosiorsINS_10datastreamIPKcEEEERT_S6_RNSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEE + (i32.load + (get_local $1) + ) + (i32.load + (get_local $0) + ) + ) + ) + (set_local $2 + (i32.load + (get_local $0) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (tee_local $0 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $0) + ) + ) + (i32.const 33) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $2) + (i32.const 12) + ) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 34) + ) + ) + (i32.store offset=4 + (get_local $0) + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 34) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (tee_local $0 + (i32.load + (get_local $1) + ) + ) + ) + (i32.load offset=4 + (get_local $0) + ) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $2) + (i32.const 48) + ) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $3 + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + ) + (call $eosio_assert + (i32.gt_u + (i32.sub + (i32.load offset=8 + (get_local $0) + ) + (get_local $3) + ) + (i32.const 7) + ) + (i32.const 544) + ) + (drop + (call $memcpy + (i32.add + (get_local $2) + (i32.const 56) + ) + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (i32.store offset=4 + (get_local $0) + (i32.add + (i32.load offset=4 + (get_local $0) + ) + (i32.const 8) + ) + ) + (drop + (call $_ZN5eosiorsINS_10datastreamIPKcEEEERT_S6_RNSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEE + (i32.load + (get_local $1) + ) + (i32.add + (get_local $2) + (i32.const 64) + ) + ) + ) + ) + (func $_ZN5boost4mp116detail16tuple_apply_implIRZN5eosio14execute_actionI5tokenS5_JNSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEE10public_keyNS3_5assetESC_EEEbPT_MT0_FvDpT1_EEUlDpT_E_RNS6_5tupleIJSC_SD_SE_SC_EEEJLj0ELj1ELj2ELj3EEEEDTclclsr3stdE7forwardISF_Efp_Espclsr3stdE3getIXT1_EEclsr3stdE7forwardISH_Efp0_EEEEOSF_OSH_NS0_16integer_sequenceIjJXspT1_EEEE (param $0 i32) (param $1 i32) + (local $2 i32) + (local $3 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $3 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 288) + ) + ) + ) + (drop + (call $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_ + (i32.add + (get_local $3) + (i32.const 128) + ) + (get_local $1) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $3) + (i32.const 94) + ) + (i32.add + (get_local $1) + (i32.const 12) + ) + (i32.const 34) + ) + ) + (i64.store + (tee_local $2 + (i32.add + (i32.add + (get_local $3) + (i32.const 72) + ) + (i32.const 8) + ) + ) + (i64.load + (i32.add + (get_local $1) + (i32.const 56) + ) + ) + ) + (i64.store offset=72 + (get_local $3) + (i64.load offset=48 + (get_local $1) + ) + ) + (drop + (call $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_ + (i32.add + (get_local $3) + (i32.const 56) + ) + (i32.add + (get_local $1) + (i32.const 64) + ) + ) + ) + (i64.store + (i32.add + (i32.add + (get_local $3) + (i32.const 184) + ) + (i32.const 8) + ) + (i64.load + (get_local $2) + ) + ) + (i64.store offset=184 + (get_local $3) + (i64.load offset=72 + (get_local $3) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $3) + (i32.const 144) + ) + (i32.add + (get_local $3) + (i32.const 94) + ) + (i32.const 34) + ) + ) + (set_local $0 + (i32.add + (i32.load + (i32.load + (get_local $0) + ) + ) + (i32.shr_s + (tee_local $2 + (i32.load offset=4 + (tee_local $1 + (i32.load offset=4 + (get_local $0) + ) + ) + ) + ) + (i32.const 1) + ) + ) + ) + (set_local $1 + (i32.load + (get_local $1) + ) + ) + (block $label$0 + (br_if $label$0 + (i32.eqz + (i32.and + (get_local $2) + (i32.const 1) + ) + ) + ) + (set_local $1 + (i32.load + (i32.add + (i32.load + (get_local $0) + ) + (get_local $1) + ) + ) + ) + ) + (drop + (call $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_ + (i32.add + (get_local $3) + (i32.const 272) + ) + (i32.add + (get_local $3) + (i32.const 128) + ) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $3) + (i32.const 232) + ) + (i32.add + (get_local $3) + (i32.const 144) + ) + (i32.const 34) + ) + ) + (i64.store + (tee_local $2 + (i32.add + (i32.add + (get_local $3) + (i32.const 216) + ) + (i32.const 8) + ) + ) + (i64.load + (i32.add + (i32.add + (get_local $3) + (i32.const 184) + ) + (i32.const 8) + ) + ) + ) + (i64.store offset=216 + (get_local $3) + (i64.load offset=184 + (get_local $3) + ) + ) + (drop + (call $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_ + (i32.add + (get_local $3) + (i32.const 200) + ) + (i32.add + (get_local $3) + (i32.const 56) + ) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $3) + (i32.const 22) + ) + (i32.add + (get_local $3) + (i32.const 232) + ) + (i32.const 34) + ) + ) + (i64.store + (i32.add + (get_local $3) + (i32.const 8) + ) + (i64.load + (get_local $2) + ) + ) + (i64.store + (get_local $3) + (i64.load offset=216 + (get_local $3) + ) + ) + (call_indirect (type $FUNCSIG$viiiii) + (get_local $0) + (i32.add + (get_local $3) + (i32.const 272) + ) + (i32.add + (get_local $3) + (i32.const 22) + ) + (get_local $3) + (i32.add + (get_local $3) + (i32.const 200) + ) + (get_local $1) + ) + (block $label$1 + (br_if $label$1 + (i32.eqz + (i32.and + (i32.load8_u offset=200 + (get_local $3) + ) + (i32.const 1) + ) + ) + ) + (call $_ZdlPv + (i32.load offset=208 + (get_local $3) + ) + ) + ) + (block $label$2 + (br_if $label$2 + (i32.eqz + (i32.and + (i32.load8_u offset=272 + (get_local $3) + ) + (i32.const 1) + ) + ) + ) + (call $_ZdlPv + (i32.load offset=280 + (get_local $3) + ) + ) + ) + (block $label$3 + (br_if $label$3 + (i32.eqz + (i32.and + (i32.load8_u offset=56 + (get_local $3) + ) + (i32.const 1) + ) + ) + ) + (call $_ZdlPv + (i32.load offset=64 + (get_local $3) + ) + ) + ) + (block $label$4 + (br_if $label$4 + (i32.eqz + (i32.and + (i32.load8_u offset=128 + (get_local $3) + ) + (i32.const 1) + ) + ) + ) + (call $_ZdlPv + (i32.load offset=136 + (get_local $3) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $3) + (i32.const 288) + ) + ) + ) + (func $_ZN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE7emplaceIZN5token4mintENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEE10public_keyNS_5assetESC_EUlRT_E0_EENS3_14const_iteratorEyOSF_ (param $0 i32) (param $1 i32) (param $2 i64) (param $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $7 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 48) + ) + ) + ) + (i64.store offset=40 + (get_local $7) + (get_local $2) + ) + (call $eosio_assert + (i64.eq + (i64.load + (get_local $1) + ) + (call $current_receiver) + ) + (i32.const 576) + ) + (i32.store offset=20 + (get_local $7) + (get_local $3) + ) + (i32.store offset=16 + (get_local $7) + (get_local $1) + ) + (i32.store offset=24 + (get_local $7) + (i32.add + (get_local $7) + (i32.const 40) + ) + ) + (drop + (call $_ZN5types10usrbalanceC2Ev + (tee_local $3 + (call $_Znwj + (i32.const 112) + ) + ) + ) + ) + (i32.store offset=96 + (get_local $3) + (get_local $1) + ) + (call $_ZZN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE7emplaceIZN5token4mintENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEE10public_keyNS_5assetESC_EUlRT_E0_EENS3_14const_iteratorEyOSF_ENKUlSG_E_clINS3_4itemEEEDaSG_ + (i32.add + (get_local $7) + (i32.const 16) + ) + (get_local $3) + ) + (i32.store offset=32 + (get_local $7) + (get_local $3) + ) + (i64.store offset=16 + (get_local $7) + (tee_local $2 + (i64.load + (get_local $3) + ) + ) + ) + (i32.store offset=12 + (get_local $7) + (tee_local $4 + (i32.load offset=100 + (get_local $3) + ) + ) + ) + (block $label$0 + (block $label$1 + (br_if $label$1 + (i32.ge_u + (tee_local $5 + (i32.load + (tee_local $6 + (i32.add + (get_local $1) + (i32.const 28) + ) + ) + ) + ) + (i32.load + (i32.add + (get_local $1) + (i32.const 32) + ) + ) + ) + ) + (i64.store offset=8 + (get_local $5) + (get_local $2) + ) + (i32.store offset=16 + (get_local $5) + (get_local $4) + ) + (i32.store offset=32 + (get_local $7) + (i32.const 0) + ) + (i32.store + (get_local $5) + (get_local $3) + ) + (i32.store + (get_local $6) + (i32.add + (get_local $5) + (i32.const 24) + ) + ) + (br $label$0) + ) + (call $_ZNSt3__16vectorIN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE8item_ptrENS_9allocatorIS6_EEE24__emplace_back_slow_pathIJNS_10unique_ptrINS5_4itemENS_14default_deleteISC_EEEERyRlEEEvDpOT_ + (i32.add + (get_local $1) + (i32.const 24) + ) + (i32.add + (get_local $7) + (i32.const 32) + ) + (i32.add + (get_local $7) + (i32.const 16) + ) + (i32.add + (get_local $7) + (i32.const 12) + ) + ) + ) + (i32.store offset=4 + (get_local $0) + (get_local $3) + ) + (i32.store + (get_local $0) + (get_local $1) + ) + (set_local $1 + (i32.load offset=32 + (get_local $7) + ) + ) + (i32.store offset=32 + (get_local $7) + (i32.const 0) + ) + (block $label$2 + (br_if $label$2 + (i32.eqz + (get_local $1) + ) + ) + (call $_ZdlPv + (get_local $1) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $7) + (i32.const 48) + ) + ) + ) + (func $_ZN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE6modifyIZN5token4mintENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEE10public_keyNS_5assetESC_EUlRT_E_EEvRKS2_yOSF_ (param $0 i32) (param $1 i32) (param $2 i64) (param $3 i32) + (local $4 i64) + (local $5 i64) + (local $6 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $6 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 112) + ) + ) + ) + (call $eosio_assert + (i32.eq + (i32.load offset=96 + (get_local $1) + ) + (get_local $0) + ) + (i32.const 320) + ) + (call $eosio_assert + (i64.eq + (i64.load + (get_local $0) + ) + (call $current_receiver) + ) + (i32.const 368) + ) + (set_local $4 + (i64.load + (get_local $1) + ) + ) + (call $eosio_assert + (i64.eq + (i64.load offset=8 + (tee_local $3 + (i32.load + (get_local $3) + ) + ) + ) + (i64.load + (i32.add + (get_local $1) + (i32.const 64) + ) + ) + ) + (i32.const 1088) + ) + (i64.store offset=56 + (get_local $1) + (tee_local $5 + (i64.add + (i64.load offset=56 + (get_local $1) + ) + (i64.load + (get_local $3) + ) + ) + ) + ) + (call $eosio_assert + (i64.gt_s + (get_local $5) + (i64.const -4611686018427387904) + ) + (i32.const 1136) + ) + (call $eosio_assert + (i64.lt_s + (i64.load offset=56 + (get_local $1) + ) + (i64.const 4611686018427387904) + ) + (i32.const 1168) + ) + (call $eosio_assert + (i64.eq + (get_local $4) + (i64.load + (get_local $1) + ) + ) + (i32.const 432) + ) + (i32.store offset=104 + (get_local $6) + (i32.add + (get_local $6) + (i32.const 90) + ) + ) + (i32.store offset=100 + (get_local $6) + (get_local $6) + ) + (i32.store offset=96 + (get_local $6) + (get_local $6) + ) + (drop + (call $_ZN5typeslsIN5eosio10datastreamIPcEEEERT_S6_RKNS_10usrbalanceE + (i32.add + (get_local $6) + (i32.const 96) + ) + (get_local $1) + ) + ) + (call $db_update_i64 + (i32.load offset=100 + (get_local $1) + ) + (get_local $2) + (get_local $6) + (i32.const 90) + ) + (block $label$0 + (br_if $label$0 + (i64.lt_u + (get_local $4) + (i64.load offset=16 + (get_local $0) + ) + ) + ) + (i64.store + (i32.add + (get_local $0) + (i32.const 16) + ) + (select + (i64.const -2) + (i64.add + (get_local $4) + (i64.const 1) + ) + (i64.gt_u + (get_local $4) + (i64.const -3) + ) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $6) + (i32.const 112) + ) + ) + ) + (func $_ZN5eosio11multi_indexILy7235159550573564928EN5types11globalstateEJEE7emplaceIZN5token4mintENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEE10public_keyNS_5assetESC_EUlRT_E2_EENS3_14const_iteratorEyOSF_ (param $0 i32) (param $1 i32) (param $2 i64) (param $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $7 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 48) + ) + ) + ) + (i64.store offset=40 + (get_local $7) + (get_local $2) + ) + (call $eosio_assert + (i64.eq + (i64.load + (get_local $1) + ) + (call $current_receiver) + ) + (i32.const 576) + ) + (i32.store offset=20 + (get_local $7) + (get_local $3) + ) + (i32.store offset=16 + (get_local $7) + (get_local $1) + ) + (i32.store offset=24 + (get_local $7) + (i32.add + (get_local $7) + (i32.const 40) + ) + ) + (drop + (call $_ZN5types11globalstateC2Ev + (tee_local $3 + (call $_Znwj + (i32.const 88) + ) + ) + ) + ) + (i32.store offset=72 + (get_local $3) + (get_local $1) + ) + (call $_ZZN5eosio11multi_indexILy7235159550573564928EN5types11globalstateEJEE7emplaceIZN5token4mintENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEE10public_keyNS_5assetESC_EUlRT_E2_EENS3_14const_iteratorEyOSF_ENKUlSG_E_clINS3_4itemEEEDaSG_ + (i32.add + (get_local $7) + (i32.const 16) + ) + (get_local $3) + ) + (i32.store offset=32 + (get_local $7) + (get_local $3) + ) + (i64.store offset=16 + (get_local $7) + (tee_local $2 + (i64.load + (get_local $3) + ) + ) + ) + (i32.store offset=12 + (get_local $7) + (tee_local $4 + (i32.load offset=76 + (get_local $3) + ) + ) + ) + (block $label$0 + (block $label$1 + (br_if $label$1 + (i32.ge_u + (tee_local $5 + (i32.load + (tee_local $6 + (i32.add + (get_local $1) + (i32.const 28) + ) + ) + ) + ) + (i32.load + (i32.add + (get_local $1) + (i32.const 32) + ) + ) + ) + ) + (i64.store offset=8 + (get_local $5) + (get_local $2) + ) + (i32.store offset=16 + (get_local $5) + (get_local $4) + ) + (i32.store offset=32 + (get_local $7) + (i32.const 0) + ) + (i32.store + (get_local $5) + (get_local $3) + ) + (i32.store + (get_local $6) + (i32.add + (get_local $5) + (i32.const 24) + ) + ) + (br $label$0) + ) + (call $_ZNSt3__16vectorIN5eosio11multi_indexILy7235159550573564928EN5types11globalstateEJEE8item_ptrENS_9allocatorIS6_EEE24__emplace_back_slow_pathIJNS_10unique_ptrINS5_4itemENS_14default_deleteISC_EEEERyRlEEEvDpOT_ + (i32.add + (get_local $1) + (i32.const 24) + ) + (i32.add + (get_local $7) + (i32.const 32) + ) + (i32.add + (get_local $7) + (i32.const 16) + ) + (i32.add + (get_local $7) + (i32.const 12) + ) + ) + ) + (i32.store offset=4 + (get_local $0) + (get_local $3) + ) + (i32.store + (get_local $0) + (get_local $1) + ) + (set_local $1 + (i32.load offset=32 + (get_local $7) + ) + ) + (i32.store offset=32 + (get_local $7) + (i32.const 0) + ) + (block $label$2 + (br_if $label$2 + (i32.eqz + (get_local $1) + ) + ) + (call $_ZdlPv + (get_local $1) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $7) + (i32.const 48) + ) + ) + ) + (func $_ZN5eosio11multi_indexILy7235159550573564928EN5types11globalstateEJEE6modifyIZN5token4mintENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEE10public_keyNS_5assetESC_EUlRT_E1_EEvRKS2_yOSF_ (param $0 i32) (param $1 i32) (param $2 i64) (param $3 i32) + (local $4 i64) + (local $5 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $5 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 96) + ) + ) + ) + (call $eosio_assert + (i32.eq + (i32.load offset=72 + (get_local $1) + ) + (get_local $0) + ) + (i32.const 320) + ) + (call $eosio_assert + (i64.eq + (i64.load + (get_local $0) + ) + (call $current_receiver) + ) + (i32.const 368) + ) + (i64.store offset=8 + (get_local $1) + (i64.add + (i64.load offset=8 + (get_local $1) + ) + (i64.load + (i32.load + (get_local $3) + ) + ) + ) + ) + (i64.store offset=24 + (get_local $1) + (i64.add + (i64.load offset=24 + (get_local $1) + ) + (i64.load + (i32.load + (get_local $3) + ) + ) + ) + ) + (set_local $4 + (i64.load + (get_local $1) + ) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 432) + ) + (i32.store offset=88 + (get_local $5) + (i32.add + (get_local $5) + (i32.const 72) + ) + ) + (i32.store offset=84 + (get_local $5) + (get_local $5) + ) + (i32.store offset=80 + (get_local $5) + (get_local $5) + ) + (drop + (call $_ZN5typeslsIN5eosio10datastreamIPcEEEERT_S6_RKNS_11globalstateE + (i32.add + (get_local $5) + (i32.const 80) + ) + (get_local $1) + ) + ) + (call $db_update_i64 + (i32.load offset=76 + (get_local $1) + ) + (get_local $2) + (get_local $5) + (i32.const 72) + ) + (block $label$0 + (br_if $label$0 + (i64.lt_u + (get_local $4) + (i64.load offset=16 + (get_local $0) + ) + ) + ) + (i64.store + (i32.add + (get_local $0) + (i32.const 16) + ) + (select + (i64.const -2) + (i64.add + (get_local $4) + (i64.const 1) + ) + (i64.gt_u + (get_local $4) + (i64.const -3) + ) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $5) + (i32.const 96) + ) + ) + ) + (func $_ZZN5eosio11multi_indexILy7235159550573564928EN5types11globalstateEJEE7emplaceIZN5token4mintENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEE10public_keyNS_5assetESC_EUlRT_E2_EENS3_14const_iteratorEyOSF_ENKUlSG_E_clINS3_4itemEEEDaSG_ (param $0 i32) (param $1 i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i64) + (local $6 i64) + (local $7 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $7 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 96) + ) + ) + ) + (set_local $3 + (i32.load offset=4 + (get_local $0) + ) + ) + (i64.store + (get_local $1) + (i64.const 0) + ) + (set_local $2 + (i32.load + (get_local $0) + ) + ) + (i64.store offset=8 + (get_local $1) + (i64.load + (tee_local $4 + (i32.load + (get_local $3) + ) + ) + ) + ) + (i64.store + (i32.add + (get_local $1) + (i32.const 16) + ) + (i64.load + (i32.add + (get_local $4) + (i32.const 8) + ) + ) + ) + (i64.store offset=24 + (get_local $1) + (i64.load + (tee_local $4 + (i32.load + (get_local $3) + ) + ) + ) + ) + (i64.store + (i32.add + (get_local $1) + (i32.const 32) + ) + (i64.load + (i32.add + (get_local $4) + (i32.const 8) + ) + ) + ) + (set_local $5 + (i64.load offset=8 + (tee_local $3 + (i32.load + (get_local $3) + ) + ) + ) + ) + (set_local $6 + (i64.load + (get_local $3) + ) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 896) + ) + (call $eosio_assert + (i64.gt_s + (tee_local $6 + (i64.sub + (get_local $6) + (i64.load + (get_local $3) + ) + ) + ) + (i64.const -4611686018427387904) + ) + (i32.const 944) + ) + (call $eosio_assert + (i64.lt_s + (get_local $6) + (i64.const 4611686018427387904) + ) + (i32.const 976) + ) + (i64.store + (i32.add + (get_local $1) + (i32.const 48) + ) + (get_local $5) + ) + (i64.store offset=40 + (get_local $1) + (get_local $6) + ) + (i64.store offset=56 + (get_local $1) + (i64.const 0) + ) + (i64.store offset=64 + (get_local $1) + (i64.const 0) + ) + (i32.store offset=88 + (get_local $7) + (i32.add + (get_local $7) + (i32.const 72) + ) + ) + (i32.store offset=84 + (get_local $7) + (get_local $7) + ) + (i32.store offset=80 + (get_local $7) + (get_local $7) + ) + (drop + (call $_ZN5typeslsIN5eosio10datastreamIPcEEEERT_S6_RKNS_11globalstateE + (i32.add + (get_local $7) + (i32.const 80) + ) + (get_local $1) + ) + ) + (i32.store offset=76 + (get_local $1) + (call $db_store_i64 + (i64.load offset=8 + (get_local $2) + ) + (i64.const 7235159550573564928) + (i64.load + (i32.load offset=8 + (get_local $0) + ) + ) + (tee_local $6 + (i64.load + (get_local $1) + ) + ) + (get_local $7) + (i32.const 72) + ) + ) + (block $label$0 + (br_if $label$0 + (i64.lt_u + (get_local $6) + (i64.load offset=16 + (get_local $2) + ) + ) + ) + (i64.store + (i32.add + (get_local $2) + (i32.const 16) + ) + (select + (i64.const -2) + (i64.add + (get_local $6) + (i64.const 1) + ) + (i64.gt_u + (get_local $6) + (i64.const -3) + ) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $7) + (i32.const 96) + ) + ) + ) + (func $_ZZN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE7emplaceIZN5token4mintENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEE10public_keyNS_5assetESC_EUlRT_E0_EENS3_14const_iteratorEyOSF_ENKUlSG_E_clINS3_4itemEEEDaSG_ (param $0 i32) (param $1 i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i64) + (local $6 i64) + (local $7 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $7 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 112) + ) + ) + ) + (i64.store + (get_local $1) + (i64.add + (i64.add + (i64.extend_s/i32 + (i32.shl + (select + (i32.add + (tee_local $4 + (i32.load8_s offset=5 + (tee_local $3 + (i32.load offset=4 + (tee_local $2 + (i32.load offset=4 + (get_local $0) + ) + ) + ) + ) + ) + ) + (i32.const 256) + ) + (get_local $4) + (i32.lt_s + (get_local $4) + (i32.const 0) + ) + ) + (i32.const 16) + ) + ) + (i64.extend_s/i32 + (i32.add + (i32.add + (i32.add + (i32.shl + (select + (i32.add + (tee_local $4 + (i32.load8_s offset=2 + (get_local $3) + ) + ) + (i32.const 256) + ) + (get_local $4) + (i32.lt_s + (get_local $4) + (i32.const 0) + ) + ) + (i32.const 4) + ) + (select + (i32.add + (tee_local $4 + (i32.load8_s offset=1 + (get_local $3) + ) + ) + (i32.const 256) + ) + (get_local $4) + (i32.lt_s + (get_local $4) + (i32.const 0) + ) + ) + ) + (i32.shl + (select + (i32.add + (tee_local $4 + (i32.load8_s offset=3 + (get_local $3) + ) + ) + (i32.const 256) + ) + (get_local $4) + (i32.lt_s + (get_local $4) + (i32.const 0) + ) + ) + (i32.const 8) + ) + ) + (i32.shl + (select + (i32.add + (tee_local $4 + (i32.load8_s offset=4 + (get_local $3) + ) + ) + (i32.const 256) + ) + (get_local $4) + (i32.lt_s + (get_local $4) + (i32.const 0) + ) + ) + (i32.const 12) + ) + ) + ) + ) + (i64.extend_s/i32 + (i32.shl + (select + (i32.add + (tee_local $3 + (i32.load8_s offset=6 + (get_local $3) + ) + ) + (i32.const 256) + ) + (get_local $3) + (i32.lt_s + (get_local $3) + (i32.const 0) + ) + ) + (i32.const 20) + ) + ) + ) + ) + (set_local $3 + (i32.load + (get_local $0) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 8) + ) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 34) + ) + ) + (i64.store offset=48 + (get_local $1) + (i64.const 0) + ) + (i64.store offset=56 + (get_local $1) + (i64.load + (tee_local $4 + (i32.load offset=8 + (get_local $2) + ) + ) + ) + ) + (i64.store + (i32.add + (get_local $1) + (i32.const 64) + ) + (i64.load + (i32.add + (get_local $4) + (i32.const 8) + ) + ) + ) + (set_local $5 + (i64.load offset=8 + (tee_local $2 + (i32.load offset=8 + (get_local $2) + ) + ) + ) + ) + (set_local $6 + (i64.load + (get_local $2) + ) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 896) + ) + (call $eosio_assert + (i64.gt_s + (tee_local $6 + (i64.sub + (get_local $6) + (i64.load + (get_local $2) + ) + ) + ) + (i64.const -4611686018427387904) + ) + (i32.const 944) + ) + (call $eosio_assert + (i64.lt_s + (get_local $6) + (i64.const 4611686018427387904) + ) + (i32.const 976) + ) + (i64.store + (i32.add + (get_local $1) + (i32.const 80) + ) + (get_local $5) + ) + (i64.store offset=72 + (get_local $1) + (get_local $6) + ) + (i64.store offset=88 + (get_local $1) + (i64.const 0) + ) + (i32.store offset=104 + (get_local $7) + (i32.add + (get_local $7) + (i32.const 90) + ) + ) + (i32.store offset=100 + (get_local $7) + (get_local $7) + ) + (i32.store offset=96 + (get_local $7) + (get_local $7) + ) + (drop + (call $_ZN5typeslsIN5eosio10datastreamIPcEEEERT_S6_RKNS_10usrbalanceE + (i32.add + (get_local $7) + (i32.const 96) + ) + (get_local $1) + ) + ) + (i32.store offset=100 + (get_local $1) + (call $db_store_i64 + (i64.load offset=8 + (get_local $3) + ) + (i64.const -3013344361224962048) + (i64.load + (i32.load offset=8 + (get_local $0) + ) + ) + (tee_local $6 + (i64.load + (get_local $1) + ) + ) + (get_local $7) + (i32.const 90) + ) + ) + (block $label$0 + (br_if $label$0 + (i64.lt_u + (get_local $6) + (i64.load offset=16 + (get_local $3) + ) + ) + ) + (i64.store + (i32.add + (get_local $3) + (i32.const 16) + ) + (select + (i64.const -2) + (i64.add + (get_local $6) + (i64.const 1) + ) + (i64.gt_u + (get_local $6) + (i64.const -3) + ) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $7) + (i32.const 112) + ) + ) + ) + (func $_ZN5eosio11multi_indexILy7235159550573564928EN5types11globalstateEJEE5eraseERKS2_ (param $0 i32) (param $1 i32) + (local $2 i64) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (local $8 i32) + (call $eosio_assert + (i32.eq + (i32.load offset=72 + (get_local $1) + ) + (get_local $0) + ) + (i32.const 1280) + ) + (call $eosio_assert + (i64.eq + (i64.load + (get_local $0) + ) + (call $current_receiver) + ) + (i32.const 1328) + ) + (block $label$0 + (br_if $label$0 + (i32.eq + (tee_local $7 + (i32.load + (tee_local $5 + (i32.add + (get_local $0) + (i32.const 28) + ) + ) + ) + ) + (tee_local $3 + (i32.load offset=24 + (get_local $0) + ) + ) + ) + ) + (set_local $2 + (i64.load + (get_local $1) + ) + ) + (set_local $6 + (i32.sub + (i32.const 0) + (get_local $3) + ) + ) + (set_local $8 + (i32.add + (get_local $7) + (i32.const -24) + ) + ) + (loop $label$1 + (br_if $label$0 + (i64.eq + (i64.load + (i32.load + (get_local $8) + ) + ) + (get_local $2) + ) + ) + (set_local $7 + (get_local $8) + ) + (set_local $8 + (tee_local $4 + (i32.add + (get_local $8) + (i32.const -24) + ) + ) + ) + (br_if $label$1 + (i32.ne + (i32.add + (get_local $4) + (get_local $6) + ) + (i32.const -24) + ) + ) + ) + ) + (call $eosio_assert + (i32.ne + (get_local $7) + (get_local $3) + ) + (i32.const 1392) + ) + (set_local $8 + (i32.add + (get_local $7) + (i32.const -24) + ) + ) + (block $label$2 + (block $label$3 + (br_if $label$3 + (i32.eq + (get_local $7) + (tee_local $4 + (i32.load + (get_local $5) + ) + ) + ) + ) + (set_local $3 + (i32.sub + (i32.const 0) + (get_local $4) + ) + ) + (set_local $7 + (get_local $8) + ) + (loop $label$4 + (set_local $6 + (i32.load + (tee_local $8 + (i32.add + (get_local $7) + (i32.const 24) + ) + ) + ) + ) + (i32.store + (get_local $8) + (i32.const 0) + ) + (set_local $4 + (i32.load + (get_local $7) + ) + ) + (i32.store + (get_local $7) + (get_local $6) + ) + (block $label$5 + (br_if $label$5 + (i32.eqz + (get_local $4) + ) + ) + (call $_ZdlPv + (get_local $4) + ) + ) + (i32.store + (i32.add + (get_local $7) + (i32.const 16) + ) + (i32.load + (i32.add + (get_local $7) + (i32.const 40) + ) + ) + ) + (i64.store + (i32.add + (get_local $7) + (i32.const 8) + ) + (i64.load + (i32.add + (get_local $7) + (i32.const 32) + ) + ) + ) + (set_local $7 + (get_local $8) + ) + (br_if $label$4 + (i32.ne + (i32.add + (get_local $8) + (get_local $3) + ) + (i32.const -24) + ) + ) + ) + (br_if $label$2 + (i32.eq + (tee_local $7 + (i32.load + (i32.add + (get_local $0) + (i32.const 28) + ) + ) + ) + (get_local $8) + ) + ) + ) + (loop $label$6 + (set_local $4 + (i32.load + (tee_local $7 + (i32.add + (get_local $7) + (i32.const -24) + ) + ) + ) + ) + (i32.store + (get_local $7) + (i32.const 0) + ) + (block $label$7 + (br_if $label$7 + (i32.eqz + (get_local $4) + ) + ) + (call $_ZdlPv + (get_local $4) + ) + ) + (br_if $label$6 + (i32.ne + (get_local $8) + (get_local $7) + ) + ) + ) + ) + (i32.store + (i32.add + (get_local $0) + (i32.const 28) + ) + (get_local $8) + ) + (call $db_remove_i64 + (i32.load offset=76 + (get_local $1) + ) + ) + ) + (func $_ZN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE5eraseERKS2_ (param $0 i32) (param $1 i32) + (local $2 i64) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (local $8 i32) + (call $eosio_assert + (i32.eq + (i32.load offset=96 + (get_local $1) + ) + (get_local $0) + ) + (i32.const 1280) + ) + (call $eosio_assert + (i64.eq + (i64.load + (get_local $0) + ) + (call $current_receiver) + ) + (i32.const 1328) + ) + (block $label$0 + (br_if $label$0 + (i32.eq + (tee_local $7 + (i32.load + (tee_local $5 + (i32.add + (get_local $0) + (i32.const 28) + ) + ) + ) + ) + (tee_local $3 + (i32.load offset=24 + (get_local $0) + ) + ) + ) + ) + (set_local $2 + (i64.load + (get_local $1) + ) + ) + (set_local $6 + (i32.sub + (i32.const 0) + (get_local $3) + ) + ) + (set_local $8 + (i32.add + (get_local $7) + (i32.const -24) + ) + ) + (loop $label$1 + (br_if $label$0 + (i64.eq + (i64.load + (i32.load + (get_local $8) + ) + ) + (get_local $2) + ) + ) + (set_local $7 + (get_local $8) + ) + (set_local $8 + (tee_local $4 + (i32.add + (get_local $8) + (i32.const -24) + ) + ) + ) + (br_if $label$1 + (i32.ne + (i32.add + (get_local $4) + (get_local $6) + ) + (i32.const -24) + ) + ) + ) + ) + (call $eosio_assert + (i32.ne + (get_local $7) + (get_local $3) + ) + (i32.const 1392) + ) + (set_local $8 + (i32.add + (get_local $7) + (i32.const -24) + ) + ) + (block $label$2 + (block $label$3 + (br_if $label$3 + (i32.eq + (get_local $7) + (tee_local $4 + (i32.load + (get_local $5) + ) + ) + ) + ) + (set_local $3 + (i32.sub + (i32.const 0) + (get_local $4) + ) + ) + (set_local $7 + (get_local $8) + ) + (loop $label$4 + (set_local $6 + (i32.load + (tee_local $8 + (i32.add + (get_local $7) + (i32.const 24) + ) + ) + ) + ) + (i32.store + (get_local $8) + (i32.const 0) + ) + (set_local $4 + (i32.load + (get_local $7) + ) + ) + (i32.store + (get_local $7) + (get_local $6) + ) + (block $label$5 + (br_if $label$5 + (i32.eqz + (get_local $4) + ) + ) + (call $_ZdlPv + (get_local $4) + ) + ) + (i32.store + (i32.add + (get_local $7) + (i32.const 16) + ) + (i32.load + (i32.add + (get_local $7) + (i32.const 40) + ) + ) + ) + (i64.store + (i32.add + (get_local $7) + (i32.const 8) + ) + (i64.load + (i32.add + (get_local $7) + (i32.const 32) + ) + ) + ) + (set_local $7 + (get_local $8) + ) + (br_if $label$4 + (i32.ne + (i32.add + (get_local $8) + (get_local $3) + ) + (i32.const -24) + ) + ) + ) + (br_if $label$2 + (i32.eq + (tee_local $7 + (i32.load + (i32.add + (get_local $0) + (i32.const 28) + ) + ) + ) + (get_local $8) + ) + ) + ) + (loop $label$6 + (set_local $4 + (i32.load + (tee_local $7 + (i32.add + (get_local $7) + (i32.const -24) + ) + ) + ) + ) + (i32.store + (get_local $7) + (i32.const 0) + ) + (block $label$7 + (br_if $label$7 + (i32.eqz + (get_local $4) + ) + ) + (call $_ZdlPv + (get_local $4) + ) + ) + (br_if $label$6 + (i32.ne + (get_local $8) + (get_local $7) + ) + ) + ) + ) + (i32.store + (i32.add + (get_local $0) + (i32.const 28) + ) + (get_local $8) + ) + (call $db_remove_i64 + (i32.load offset=100 + (get_local $1) + ) + ) + ) + (func $_ZN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE6modifyIZN5token6changeE10public_keyNS_5assetEEUlRT_E_EEvRKS2_yOS8_ (param $0 i32) (param $1 i32) (param $2 i64) (param $3 i32) + (local $4 i64) + (local $5 i32) + (local $6 i64) + (local $7 i64) + (local $8 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $8 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 112) + ) + ) + ) + (call $eosio_assert + (i32.eq + (i32.load offset=96 + (get_local $1) + ) + (get_local $0) + ) + (i32.const 320) + ) + (call $eosio_assert + (i64.eq + (i64.load + (get_local $0) + ) + (call $current_receiver) + ) + (i32.const 368) + ) + (i32.store offset=56 + (get_local $1) + (i32.load + (tee_local $5 + (i32.load + (get_local $3) + ) + ) + ) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const 68) + ) + (i32.load + (i32.add + (get_local $5) + (i32.const 12) + ) + ) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const 64) + ) + (i32.load + (i32.add + (get_local $5) + (i32.const 8) + ) + ) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const 60) + ) + (i32.load + (i32.add + (get_local $5) + (i32.const 4) + ) + ) + ) + (set_local $4 + (i64.load + (get_local $1) + ) + ) + (set_local $6 + (i64.load offset=8 + (tee_local $5 + (i32.load + (get_local $3) + ) + ) + ) + ) + (set_local $7 + (i64.load + (get_local $5) + ) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 896) + ) + (call $eosio_assert + (i64.gt_s + (tee_local $7 + (i64.sub + (get_local $7) + (i64.load + (get_local $5) + ) + ) + ) + (i64.const -4611686018427387904) + ) + (i32.const 944) + ) + (call $eosio_assert + (i64.lt_s + (get_local $7) + (i64.const 4611686018427387904) + ) + (i32.const 976) + ) + (call $eosio_assert + (i64.eq + (get_local $6) + (i64.load + (i32.add + (get_local $1) + (i32.const 80) + ) + ) + ) + (i32.const 1088) + ) + (i64.store offset=72 + (get_local $1) + (tee_local $7 + (i64.add + (i64.load offset=72 + (get_local $1) + ) + (get_local $7) + ) + ) + ) + (call $eosio_assert + (i64.gt_s + (get_local $7) + (i64.const -4611686018427387904) + ) + (i32.const 1136) + ) + (call $eosio_assert + (i64.lt_s + (i64.load offset=72 + (get_local $1) + ) + (i64.const 4611686018427387904) + ) + (i32.const 1168) + ) + (i64.store offset=88 + (get_local $1) + (i64.const 0) + ) + (call $eosio_assert + (i64.eq + (get_local $4) + (i64.load + (get_local $1) + ) + ) + (i32.const 432) + ) + (i32.store offset=104 + (get_local $8) + (i32.add + (get_local $8) + (i32.const 90) + ) + ) + (i32.store offset=100 + (get_local $8) + (get_local $8) + ) + (i32.store offset=96 + (get_local $8) + (get_local $8) + ) + (drop + (call $_ZN5typeslsIN5eosio10datastreamIPcEEEERT_S6_RKNS_10usrbalanceE + (i32.add + (get_local $8) + (i32.const 96) + ) + (get_local $1) + ) + ) + (call $db_update_i64 + (i32.load offset=100 + (get_local $1) + ) + (get_local $2) + (get_local $8) + (i32.const 90) + ) + (block $label$0 + (br_if $label$0 + (i64.lt_u + (get_local $4) + (i64.load offset=16 + (get_local $0) + ) + ) + ) + (i64.store + (i32.add + (get_local $0) + (i32.const 16) + ) + (select + (i64.const -2) + (i64.add + (get_local $4) + (i64.const 1) + ) + (i64.gt_u + (get_local $4) + (i64.const -3) + ) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $8) + (i32.const 112) + ) + ) + ) + (func $_ZN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE7emplaceIZN5token6createE10public_keyNS_5assetEEUlRT_E0_EENS3_14const_iteratorEyOS8_ (param $0 i32) (param $1 i32) (param $2 i64) (param $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $7 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 48) + ) + ) + ) + (i64.store offset=40 + (get_local $7) + (get_local $2) + ) + (call $eosio_assert + (i64.eq + (i64.load + (get_local $1) + ) + (call $current_receiver) + ) + (i32.const 576) + ) + (i32.store offset=20 + (get_local $7) + (get_local $3) + ) + (i32.store offset=16 + (get_local $7) + (get_local $1) + ) + (i32.store offset=24 + (get_local $7) + (i32.add + (get_local $7) + (i32.const 40) + ) + ) + (drop + (call $_ZN5types10usrbalanceC2Ev + (tee_local $3 + (call $_Znwj + (i32.const 112) + ) + ) + ) + ) + (i32.store offset=96 + (get_local $3) + (get_local $1) + ) + (call $_ZZN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE7emplaceIZN5token6createE10public_keyNS_5assetEEUlRT_E0_EENS3_14const_iteratorEyOS8_ENKUlS9_E_clINS3_4itemEEEDaS9_ + (i32.add + (get_local $7) + (i32.const 16) + ) + (get_local $3) + ) + (i32.store offset=32 + (get_local $7) + (get_local $3) + ) + (i64.store offset=16 + (get_local $7) + (tee_local $2 + (i64.load + (get_local $3) + ) + ) + ) + (i32.store offset=12 + (get_local $7) + (tee_local $4 + (i32.load offset=100 + (get_local $3) + ) + ) + ) + (block $label$0 + (block $label$1 + (br_if $label$1 + (i32.ge_u + (tee_local $5 + (i32.load + (tee_local $6 + (i32.add + (get_local $1) + (i32.const 28) + ) + ) + ) + ) + (i32.load + (i32.add + (get_local $1) + (i32.const 32) + ) + ) + ) + ) + (i64.store offset=8 + (get_local $5) + (get_local $2) + ) + (i32.store offset=16 + (get_local $5) + (get_local $4) + ) + (i32.store offset=32 + (get_local $7) + (i32.const 0) + ) + (i32.store + (get_local $5) + (get_local $3) + ) + (i32.store + (get_local $6) + (i32.add + (get_local $5) + (i32.const 24) + ) + ) + (br $label$0) + ) + (call $_ZNSt3__16vectorIN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE8item_ptrENS_9allocatorIS6_EEE24__emplace_back_slow_pathIJNS_10unique_ptrINS5_4itemENS_14default_deleteISC_EEEERyRlEEEvDpOT_ + (i32.add + (get_local $1) + (i32.const 24) + ) + (i32.add + (get_local $7) + (i32.const 32) + ) + (i32.add + (get_local $7) + (i32.const 16) + ) + (i32.add + (get_local $7) + (i32.const 12) + ) + ) + ) + (i32.store offset=4 + (get_local $0) + (get_local $3) + ) + (i32.store + (get_local $0) + (get_local $1) + ) + (set_local $1 + (i32.load offset=32 + (get_local $7) + ) + ) + (i32.store offset=32 + (get_local $7) + (i32.const 0) + ) + (block $label$2 + (br_if $label$2 + (i32.eqz + (get_local $1) + ) + ) + (call $_ZdlPv + (get_local $1) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $7) + (i32.const 48) + ) + ) + ) + (func $_ZN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE6modifyIZN5token6createE10public_keyNS_5assetEEUlRT_E_EEvRKS2_yOS8_ (param $0 i32) (param $1 i32) (param $2 i64) (param $3 i32) + (local $4 i64) + (local $5 i32) + (local $6 i64) + (local $7 i64) + (local $8 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $8 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 112) + ) + ) + ) + (call $eosio_assert + (i32.eq + (i32.load offset=96 + (get_local $1) + ) + (get_local $0) + ) + (i32.const 320) + ) + (call $eosio_assert + (i64.eq + (i64.load + (get_local $0) + ) + (call $current_receiver) + ) + (i32.const 368) + ) + (i32.store offset=56 + (get_local $1) + (i32.load + (tee_local $5 + (i32.load + (get_local $3) + ) + ) + ) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const 68) + ) + (i32.load + (i32.add + (get_local $5) + (i32.const 12) + ) + ) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const 64) + ) + (i32.load + (i32.add + (get_local $5) + (i32.const 8) + ) + ) + ) + (i32.store + (i32.add + (get_local $1) + (i32.const 60) + ) + (i32.load + (i32.add + (get_local $5) + (i32.const 4) + ) + ) + ) + (set_local $4 + (i64.load + (get_local $1) + ) + ) + (set_local $6 + (i64.load offset=8 + (tee_local $5 + (i32.load + (get_local $3) + ) + ) + ) + ) + (set_local $7 + (i64.load + (get_local $5) + ) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 896) + ) + (call $eosio_assert + (i64.gt_s + (tee_local $7 + (i64.sub + (get_local $7) + (i64.load + (get_local $5) + ) + ) + ) + (i64.const -4611686018427387904) + ) + (i32.const 944) + ) + (call $eosio_assert + (i64.lt_s + (get_local $7) + (i64.const 4611686018427387904) + ) + (i32.const 976) + ) + (call $eosio_assert + (i64.eq + (get_local $6) + (i64.load + (i32.add + (get_local $1) + (i32.const 80) + ) + ) + ) + (i32.const 1088) + ) + (i64.store offset=72 + (get_local $1) + (tee_local $7 + (i64.add + (i64.load offset=72 + (get_local $1) + ) + (get_local $7) + ) + ) + ) + (call $eosio_assert + (i64.gt_s + (get_local $7) + (i64.const -4611686018427387904) + ) + (i32.const 1136) + ) + (call $eosio_assert + (i64.lt_s + (i64.load offset=72 + (get_local $1) + ) + (i64.const 4611686018427387904) + ) + (i32.const 1168) + ) + (i64.store offset=88 + (get_local $1) + (i64.const 0) + ) + (call $eosio_assert + (i64.eq + (get_local $4) + (i64.load + (get_local $1) + ) + ) + (i32.const 432) + ) + (i32.store offset=104 + (get_local $8) + (i32.add + (get_local $8) + (i32.const 90) + ) + ) + (i32.store offset=100 + (get_local $8) + (get_local $8) + ) + (i32.store offset=96 + (get_local $8) + (get_local $8) + ) + (drop + (call $_ZN5typeslsIN5eosio10datastreamIPcEEEERT_S6_RKNS_10usrbalanceE + (i32.add + (get_local $8) + (i32.const 96) + ) + (get_local $1) + ) + ) + (call $db_update_i64 + (i32.load offset=100 + (get_local $1) + ) + (get_local $2) + (get_local $8) + (i32.const 90) + ) + (block $label$0 + (br_if $label$0 + (i64.lt_u + (get_local $4) + (i64.load offset=16 + (get_local $0) + ) + ) + ) + (i64.store + (i32.add + (get_local $0) + (i32.const 16) + ) + (select + (i64.const -2) + (i64.add + (get_local $4) + (i64.const 1) + ) + (i64.gt_u + (get_local $4) + (i64.const -3) + ) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $8) + (i32.const 112) + ) + ) + ) + (func $_ZZN5eosio11multi_indexILy15433399712484589568EN5types10usrbalanceEJEE7emplaceIZN5token6createE10public_keyNS_5assetEEUlRT_E0_EENS3_14const_iteratorEyOS8_ENKUlS9_E_clINS3_4itemEEEDaS9_ (param $0 i32) (param $1 i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i64) + (local $6 i64) + (local $7 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $7 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 112) + ) + ) + ) + (i64.store + (get_local $1) + (i64.add + (i64.add + (i64.extend_s/i32 + (i32.shl + (select + (i32.add + (tee_local $4 + (i32.load8_s offset=5 + (tee_local $3 + (i32.load offset=4 + (tee_local $2 + (i32.load offset=4 + (get_local $0) + ) + ) + ) + ) + ) + ) + (i32.const 256) + ) + (get_local $4) + (i32.lt_s + (get_local $4) + (i32.const 0) + ) + ) + (i32.const 16) + ) + ) + (i64.extend_s/i32 + (i32.add + (i32.add + (i32.add + (i32.shl + (select + (i32.add + (tee_local $4 + (i32.load8_s offset=2 + (get_local $3) + ) + ) + (i32.const 256) + ) + (get_local $4) + (i32.lt_s + (get_local $4) + (i32.const 0) + ) + ) + (i32.const 4) + ) + (select + (i32.add + (tee_local $4 + (i32.load8_s offset=1 + (get_local $3) + ) + ) + (i32.const 256) + ) + (get_local $4) + (i32.lt_s + (get_local $4) + (i32.const 0) + ) + ) + ) + (i32.shl + (select + (i32.add + (tee_local $4 + (i32.load8_s offset=3 + (get_local $3) + ) + ) + (i32.const 256) + ) + (get_local $4) + (i32.lt_s + (get_local $4) + (i32.const 0) + ) + ) + (i32.const 8) + ) + ) + (i32.shl + (select + (i32.add + (tee_local $4 + (i32.load8_s offset=4 + (get_local $3) + ) + ) + (i32.const 256) + ) + (get_local $4) + (i32.lt_s + (get_local $4) + (i32.const 0) + ) + ) + (i32.const 12) + ) + ) + ) + ) + (i64.extend_s/i32 + (i32.shl + (select + (i32.add + (tee_local $3 + (i32.load8_s offset=6 + (get_local $3) + ) + ) + (i32.const 256) + ) + (get_local $3) + (i32.lt_s + (get_local $3) + (i32.const 0) + ) + ) + (i32.const 20) + ) + ) + ) + ) + (set_local $3 + (i32.load + (get_local $0) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $1) + (i32.const 8) + ) + (i32.load offset=4 + (get_local $2) + ) + (i32.const 34) + ) + ) + (i64.store offset=48 + (get_local $1) + (i64.const 0) + ) + (i64.store offset=56 + (get_local $1) + (i64.load + (tee_local $4 + (i32.load offset=8 + (get_local $2) + ) + ) + ) + ) + (i64.store + (i32.add + (get_local $1) + (i32.const 64) + ) + (i64.load + (i32.add + (get_local $4) + (i32.const 8) + ) + ) + ) + (set_local $5 + (i64.load offset=8 + (tee_local $2 + (i32.load offset=8 + (get_local $2) + ) + ) + ) + ) + (set_local $6 + (i64.load + (get_local $2) + ) + ) + (call $eosio_assert + (i32.const 1) + (i32.const 896) + ) + (call $eosio_assert + (i64.gt_s + (tee_local $6 + (i64.sub + (get_local $6) + (i64.load + (get_local $2) + ) + ) + ) + (i64.const -4611686018427387904) + ) + (i32.const 944) + ) + (call $eosio_assert + (i64.lt_s + (get_local $6) + (i64.const 4611686018427387904) + ) + (i32.const 976) + ) + (i64.store + (i32.add + (get_local $1) + (i32.const 80) + ) + (get_local $5) + ) + (i64.store offset=72 + (get_local $1) + (get_local $6) + ) + (i64.store offset=88 + (get_local $1) + (i64.const 0) + ) + (i32.store offset=104 + (get_local $7) + (i32.add + (get_local $7) + (i32.const 90) + ) + ) + (i32.store offset=100 + (get_local $7) + (get_local $7) + ) + (i32.store offset=96 + (get_local $7) + (get_local $7) + ) + (drop + (call $_ZN5typeslsIN5eosio10datastreamIPcEEEERT_S6_RKNS_10usrbalanceE + (i32.add + (get_local $7) + (i32.const 96) + ) + (get_local $1) + ) + ) + (i32.store offset=100 + (get_local $1) + (call $db_store_i64 + (i64.load offset=8 + (get_local $3) + ) + (i64.const -3013344361224962048) + (i64.load + (i32.load offset=8 + (get_local $0) + ) + ) + (tee_local $6 + (i64.load + (get_local $1) + ) + ) + (get_local $7) + (i32.const 90) + ) + ) + (block $label$0 + (br_if $label$0 + (i64.lt_u + (get_local $6) + (i64.load offset=16 + (get_local $3) + ) + ) + ) + (i64.store + (i32.add + (get_local $3) + (i32.const 16) + ) + (select + (i64.const -2) + (i64.add + (get_local $6) + (i64.const 1) + ) + (i64.gt_u + (get_local $6) + (i64.const -3) + ) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $7) + (i32.const 112) + ) + ) + ) + (func $malloc (param $0 i32) (result i32) + (call $_ZN5eosio14memory_manager6mallocEm + (i32.const 1480) + (get_local $0) + ) + ) + (func $_ZN5eosio14memory_manager6mallocEm (param $0 i32) (param $1 i32) (result i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (local $8 i32) + (local $9 i32) + (local $10 i32) + (local $11 i32) + (local $12 i32) + (local $13 i32) + (block $label$0 + (br_if $label$0 + (i32.eqz + (get_local $1) + ) + ) + (block $label$1 + (br_if $label$1 + (tee_local $13 + (i32.load offset=8384 + (get_local $0) + ) + ) + ) + (set_local $13 + (i32.const 16) + ) + (i32.store + (i32.add + (get_local $0) + (i32.const 8384) + ) + (i32.const 16) + ) + ) + (set_local $2 + (select + (i32.sub + (i32.add + (get_local $1) + (i32.const 8) + ) + (tee_local $2 + (i32.and + (i32.add + (get_local $1) + (i32.const 4) + ) + (i32.const 7) + ) + ) + ) + (get_local $1) + (get_local $2) + ) + ) + (block $label$2 + (block $label$3 + (block $label$4 + (br_if $label$4 + (i32.ge_u + (tee_local $10 + (i32.load offset=8388 + (get_local $0) + ) + ) + (get_local $13) + ) + ) + (set_local $1 + (i32.add + (i32.add + (get_local $0) + (i32.mul + (get_local $10) + (i32.const 12) + ) + ) + (i32.const 8192) + ) + ) + (block $label$5 + (br_if $label$5 + (get_local $10) + ) + (br_if $label$5 + (i32.load + (tee_local $13 + (i32.add + (get_local $0) + (i32.const 8196) + ) + ) + ) + ) + (i32.store + (get_local $1) + (i32.const 8192) + ) + (i32.store + (get_local $13) + (get_local $0) + ) + ) + (set_local $10 + (i32.add + (get_local $2) + (i32.const 4) + ) + ) + (loop $label$6 + (block $label$7 + (br_if $label$7 + (i32.gt_u + (i32.add + (tee_local $13 + (i32.load offset=8 + (get_local $1) + ) + ) + (get_local $10) + ) + (i32.load + (get_local $1) + ) + ) + ) + (i32.store + (tee_local $13 + (i32.add + (i32.load offset=4 + (get_local $1) + ) + (get_local $13) + ) + ) + (i32.or + (i32.and + (i32.load + (get_local $13) + ) + (i32.const -2147483648) + ) + (get_local $2) + ) + ) + (i32.store + (tee_local $1 + (i32.add + (get_local $1) + (i32.const 8) + ) + ) + (i32.add + (i32.load + (get_local $1) + ) + (get_local $10) + ) + ) + (i32.store + (get_local $13) + (i32.or + (i32.load + (get_local $13) + ) + (i32.const -2147483648) + ) + ) + (br_if $label$3 + (tee_local $1 + (i32.add + (get_local $13) + (i32.const 4) + ) + ) + ) + ) + (br_if $label$6 + (tee_local $1 + (call $_ZN5eosio14memory_manager16next_active_heapEv + (get_local $0) + ) + ) + ) + ) + ) + (set_local $4 + (i32.sub + (i32.const 2147483644) + (get_local $2) + ) + ) + (set_local $11 + (i32.add + (get_local $0) + (i32.const 8392) + ) + ) + (set_local $12 + (i32.add + (get_local $0) + (i32.const 8384) + ) + ) + (set_local $13 + (tee_local $3 + (i32.load offset=8392 + (get_local $0) + ) + ) + ) + (loop $label$8 + (call $eosio_assert + (i32.eq + (i32.load + (i32.add + (tee_local $1 + (i32.add + (get_local $0) + (i32.mul + (get_local $13) + (i32.const 12) + ) + ) + ) + (i32.const 8200) + ) + ) + (i32.load + (tee_local $5 + (i32.add + (get_local $1) + (i32.const 8192) + ) + ) + ) + ) + (i32.const 9888) + ) + (set_local $13 + (i32.add + (tee_local $6 + (i32.load + (i32.add + (get_local $1) + (i32.const 8196) + ) + ) + ) + (i32.const 4) + ) + ) + (loop $label$9 + (set_local $7 + (i32.add + (get_local $6) + (i32.load + (get_local $5) + ) + ) + ) + (set_local $1 + (i32.and + (tee_local $9 + (i32.load + (tee_local $8 + (i32.add + (get_local $13) + (i32.const -4) + ) + ) + ) + ) + (i32.const 2147483647) + ) + ) + (block $label$10 + (br_if $label$10 + (i32.lt_s + (get_local $9) + (i32.const 0) + ) + ) + (block $label$11 + (br_if $label$11 + (i32.ge_u + (get_local $1) + (get_local $2) + ) + ) + (loop $label$12 + (br_if $label$11 + (i32.ge_u + (tee_local $10 + (i32.add + (get_local $13) + (get_local $1) + ) + ) + (get_local $7) + ) + ) + (br_if $label$11 + (i32.lt_s + (tee_local $10 + (i32.load + (get_local $10) + ) + ) + (i32.const 0) + ) + ) + (br_if $label$12 + (i32.lt_u + (tee_local $1 + (i32.add + (i32.add + (get_local $1) + (i32.and + (get_local $10) + (i32.const 2147483647) + ) + ) + (i32.const 4) + ) + ) + (get_local $2) + ) + ) + ) + ) + (i32.store + (get_local $8) + (i32.or + (select + (get_local $1) + (get_local $2) + (i32.lt_u + (get_local $1) + (get_local $2) + ) + ) + (i32.and + (get_local $9) + (i32.const -2147483648) + ) + ) + ) + (block $label$13 + (br_if $label$13 + (i32.le_u + (get_local $1) + (get_local $2) + ) + ) + (i32.store + (i32.add + (get_local $13) + (get_local $2) + ) + (i32.and + (i32.add + (get_local $4) + (get_local $1) + ) + (i32.const 2147483647) + ) + ) + ) + (br_if $label$2 + (i32.ge_u + (get_local $1) + (get_local $2) + ) + ) + ) + (br_if $label$9 + (i32.lt_u + (tee_local $13 + (i32.add + (i32.add + (get_local $13) + (get_local $1) + ) + (i32.const 4) + ) + ) + (get_local $7) + ) + ) + ) + (set_local $1 + (i32.const 0) + ) + (i32.store + (get_local $11) + (tee_local $13 + (select + (i32.const 0) + (tee_local $13 + (i32.add + (i32.load + (get_local $11) + ) + (i32.const 1) + ) + ) + (i32.eq + (get_local $13) + (i32.load + (get_local $12) + ) + ) + ) + ) + ) + (br_if $label$8 + (i32.ne + (get_local $13) + (get_local $3) + ) + ) + ) + ) + (return + (get_local $1) + ) + ) + (i32.store + (get_local $8) + (i32.or + (i32.load + (get_local $8) + ) + (i32.const -2147483648) + ) + ) + (return + (get_local $13) + ) + ) + (i32.const 0) + ) + (func $_ZN5eosio14memory_manager16next_active_heapEv (param $0 i32) (result i32) + (local $1 i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (local $8 i32) + (set_local $1 + (i32.load offset=8388 + (get_local $0) + ) + ) + (block $label$0 + (block $label$1 + (br_if $label$1 + (i32.eqz + (i32.load8_u offset=9974 + (i32.const 0) + ) + ) + ) + (set_local $7 + (i32.load offset=9976 + (i32.const 0) + ) + ) + (br $label$0) + ) + (set_local $7 + (current_memory) + ) + (i32.store8 offset=9974 + (i32.const 0) + (i32.const 1) + ) + (i32.store offset=9976 + (i32.const 0) + (tee_local $7 + (i32.shl + (get_local $7) + (i32.const 16) + ) + ) + ) + ) + (set_local $3 + (get_local $7) + ) + (block $label$2 + (block $label$3 + (block $label$4 + (block $label$5 + (br_if $label$5 + (i32.le_u + (tee_local $2 + (i32.shr_u + (i32.add + (get_local $7) + (i32.const 65535) + ) + (i32.const 16) + ) + ) + (tee_local $8 + (current_memory) + ) + ) + ) + (drop + (grow_memory + (i32.sub + (get_local $2) + (get_local $8) + ) + ) + ) + (set_local $8 + (i32.const 0) + ) + (br_if $label$4 + (i32.ne + (get_local $2) + (current_memory) + ) + ) + (set_local $3 + (i32.load offset=9976 + (i32.const 0) + ) + ) + ) + (set_local $8 + (i32.const 0) + ) + (i32.store offset=9976 + (i32.const 0) + (get_local $3) + ) + (br_if $label$4 + (i32.lt_s + (get_local $7) + (i32.const 0) + ) + ) + (set_local $2 + (i32.add + (get_local $0) + (i32.mul + (get_local $1) + (i32.const 12) + ) + ) + ) + (set_local $7 + (i32.sub + (i32.sub + (i32.add + (get_local $7) + (select + (i32.const 65536) + (i32.const 131072) + (tee_local $6 + (i32.lt_u + (tee_local $8 + (i32.and + (get_local $7) + (i32.const 65535) + ) + ) + (i32.const 64513) + ) + ) + ) + ) + (select + (get_local $8) + (i32.and + (get_local $7) + (i32.const 131071) + ) + (get_local $6) + ) + ) + (get_local $7) + ) + ) + (block $label$6 + (br_if $label$6 + (i32.load8_u offset=9974 + (i32.const 0) + ) + ) + (set_local $3 + (current_memory) + ) + (i32.store8 offset=9974 + (i32.const 0) + (i32.const 1) + ) + (i32.store offset=9976 + (i32.const 0) + (tee_local $3 + (i32.shl + (get_local $3) + (i32.const 16) + ) + ) + ) + ) + (set_local $2 + (i32.add + (get_local $2) + (i32.const 8192) + ) + ) + (br_if $label$3 + (i32.lt_s + (get_local $7) + (i32.const 0) + ) + ) + (set_local $6 + (get_local $3) + ) + (block $label$7 + (br_if $label$7 + (i32.le_u + (tee_local $8 + (i32.shr_u + (i32.add + (i32.add + (tee_local $5 + (i32.and + (i32.add + (get_local $7) + (i32.const 7) + ) + (i32.const -8) + ) + ) + (get_local $3) + ) + (i32.const 65535) + ) + (i32.const 16) + ) + ) + (tee_local $4 + (current_memory) + ) + ) + ) + (drop + (grow_memory + (i32.sub + (get_local $8) + (get_local $4) + ) + ) + ) + (br_if $label$3 + (i32.ne + (get_local $8) + (current_memory) + ) + ) + (set_local $6 + (i32.load offset=9976 + (i32.const 0) + ) + ) + ) + (i32.store offset=9976 + (i32.const 0) + (i32.add + (get_local $6) + (get_local $5) + ) + ) + (br_if $label$3 + (i32.eq + (get_local $3) + (i32.const -1) + ) + ) + (br_if $label$2 + (i32.eq + (i32.add + (tee_local $6 + (i32.load + (i32.add + (tee_local $1 + (i32.add + (get_local $0) + (i32.mul + (get_local $1) + (i32.const 12) + ) + ) + ) + (i32.const 8196) + ) + ) + ) + (tee_local $8 + (i32.load + (get_local $2) + ) + ) + ) + (get_local $3) + ) + ) + (block $label$8 + (br_if $label$8 + (i32.eq + (get_local $8) + (tee_local $1 + (i32.load + (tee_local $5 + (i32.add + (get_local $1) + (i32.const 8200) + ) + ) + ) + ) + ) + ) + (i32.store + (tee_local $6 + (i32.add + (get_local $6) + (get_local $1) + ) + ) + (i32.or + (i32.and + (i32.load + (get_local $6) + ) + (i32.const -2147483648) + ) + (i32.add + (i32.sub + (i32.const -4) + (get_local $1) + ) + (get_local $8) + ) + ) + ) + (i32.store + (get_local $5) + (i32.load + (get_local $2) + ) + ) + (i32.store + (get_local $6) + (i32.and + (i32.load + (get_local $6) + ) + (i32.const 2147483647) + ) + ) + ) + (i32.store + (tee_local $2 + (i32.add + (get_local $0) + (i32.const 8388) + ) + ) + (tee_local $2 + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 1) + ) + ) + ) + (i32.store + (i32.add + (tee_local $0 + (i32.add + (get_local $0) + (i32.mul + (get_local $2) + (i32.const 12) + ) + ) + ) + (i32.const 8196) + ) + (get_local $3) + ) + (i32.store + (tee_local $8 + (i32.add + (get_local $0) + (i32.const 8192) + ) + ) + (get_local $7) + ) + ) + (return + (get_local $8) + ) + ) + (block $label$9 + (br_if $label$9 + (i32.eq + (tee_local $8 + (i32.load + (get_local $2) + ) + ) + (tee_local $7 + (i32.load + (tee_local $1 + (i32.add + (tee_local $3 + (i32.add + (get_local $0) + (i32.mul + (get_local $1) + (i32.const 12) + ) + ) + ) + (i32.const 8200) + ) + ) + ) + ) + ) + ) + (i32.store + (tee_local $3 + (i32.add + (i32.load + (i32.add + (get_local $3) + (i32.const 8196) + ) + ) + (get_local $7) + ) + ) + (i32.or + (i32.and + (i32.load + (get_local $3) + ) + (i32.const -2147483648) + ) + (i32.add + (i32.sub + (i32.const -4) + (get_local $7) + ) + (get_local $8) + ) + ) + ) + (i32.store + (get_local $1) + (i32.load + (get_local $2) + ) + ) + (i32.store + (get_local $3) + (i32.and + (i32.load + (get_local $3) + ) + (i32.const 2147483647) + ) + ) + ) + (i32.store offset=8384 + (get_local $0) + (tee_local $3 + (i32.add + (i32.load + (tee_local $7 + (i32.add + (get_local $0) + (i32.const 8388) + ) + ) + ) + (i32.const 1) + ) + ) + ) + (i32.store + (get_local $7) + (get_local $3) + ) + (return + (i32.const 0) + ) + ) + (i32.store + (get_local $2) + (i32.add + (get_local $8) + (get_local $7) + ) + ) + (get_local $2) + ) + (func $free (param $0 i32) + (local $1 i32) + (local $2 i32) + (local $3 i32) + (block $label$0 + (block $label$1 + (br_if $label$1 + (i32.eqz + (get_local $0) + ) + ) + (br_if $label$1 + (i32.lt_s + (tee_local $2 + (i32.load offset=9864 + (i32.const 0) + ) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.const 9672) + ) + (set_local $1 + (i32.add + (i32.mul + (get_local $2) + (i32.const 12) + ) + (i32.const 9672) + ) + ) + (loop $label$2 + (br_if $label$1 + (i32.eqz + (tee_local $2 + (i32.load + (i32.add + (get_local $3) + (i32.const 4) + ) + ) + ) + ) + ) + (block $label$3 + (br_if $label$3 + (i32.gt_u + (i32.add + (get_local $2) + (i32.const 4) + ) + (get_local $0) + ) + ) + (br_if $label$0 + (i32.gt_u + (i32.add + (get_local $2) + (i32.load + (get_local $3) + ) + ) + (get_local $0) + ) + ) + ) + (br_if $label$2 + (i32.lt_u + (tee_local $3 + (i32.add + (get_local $3) + (i32.const 12) + ) + ) + (get_local $1) + ) + ) + ) + ) + (return) + ) + (i32.store + (tee_local $3 + (i32.add + (get_local $0) + (i32.const -4) + ) + ) + (i32.and + (i32.load + (get_local $3) + ) + (i32.const 2147483647) + ) + ) + ) + (func $_Znwj (param $0 i32) (result i32) + (local $1 i32) + (local $2 i32) + (block $label$0 + (br_if $label$0 + (tee_local $0 + (call $malloc + (tee_local $1 + (select + (get_local $0) + (i32.const 1) + (get_local $0) + ) + ) + ) + ) + ) + (loop $label$1 + (set_local $0 + (i32.const 0) + ) + (br_if $label$0 + (i32.eqz + (tee_local $2 + (i32.load offset=9980 + (i32.const 0) + ) + ) + ) + ) + (call_indirect (type $FUNCSIG$v) + (get_local $2) + ) + (br_if $label$1 + (i32.eqz + (tee_local $0 + (call $malloc + (get_local $1) + ) + ) + ) + ) + ) + ) + (get_local $0) + ) + (func $_ZdlPv (param $0 i32) + (block $label$0 + (br_if $label$0 + (i32.eqz + (get_local $0) + ) + ) + (call $free + (get_local $0) + ) + ) + ) + (func $_ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv (param $0 i32) + (call $abort) + (unreachable) + ) + (func $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEaSERKS5_ (param $0 i32) (param $1 i32) (result i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (block $label$0 + (block $label$1 + (block $label$2 + (block $label$3 + (br_if $label$3 + (i32.eq + (get_local $0) + (get_local $1) + ) + ) + (set_local $2 + (select + (i32.load offset=4 + (get_local $1) + ) + (i32.shr_u + (tee_local $2 + (i32.load8_u + (get_local $1) + ) + ) + (i32.const 1) + ) + (tee_local $4 + (i32.and + (get_local $2) + (i32.const 1) + ) + ) + ) + ) + (set_local $5 + (i32.add + (get_local $1) + (i32.const 1) + ) + ) + (set_local $6 + (i32.load offset=8 + (get_local $1) + ) + ) + (set_local $1 + (i32.const 10) + ) + (block $label$4 + (br_if $label$4 + (i32.eqz + (i32.and + (tee_local $3 + (i32.load8_u + (get_local $0) + ) + ) + (i32.const 1) + ) + ) + ) + (set_local $1 + (i32.add + (i32.and + (tee_local $3 + (i32.load + (get_local $0) + ) + ) + (i32.const -2) + ) + (i32.const -1) + ) + ) + ) + (set_local $5 + (select + (get_local $6) + (get_local $5) + (get_local $4) + ) + ) + (set_local $4 + (i32.and + (get_local $3) + (i32.const 1) + ) + ) + (block $label$5 + (block $label$6 + (block $label$7 + (br_if $label$7 + (i32.le_u + (get_local $2) + (get_local $1) + ) + ) + (br_if $label$6 + (get_local $4) + ) + (set_local $3 + (i32.shr_u + (i32.and + (get_local $3) + (i32.const 254) + ) + (i32.const 1) + ) + ) + (br $label$5) + ) + (br_if $label$2 + (get_local $4) + ) + (set_local $1 + (i32.add + (get_local $0) + (i32.const 1) + ) + ) + (br_if $label$1 + (get_local $2) + ) + (br $label$0) + ) + (set_local $3 + (i32.load offset=4 + (get_local $0) + ) + ) + ) + (call $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE21__grow_by_and_replaceEjjjjjjPKc + (get_local $0) + (get_local $1) + (i32.sub + (get_local $2) + (get_local $1) + ) + (get_local $3) + (i32.const 0) + (get_local $3) + (get_local $2) + (get_local $5) + ) + ) + (return + (get_local $0) + ) + ) + (set_local $1 + (i32.load offset=8 + (get_local $0) + ) + ) + (br_if $label$0 + (i32.eqz + (get_local $2) + ) + ) + ) + (drop + (call $memmove + (get_local $1) + (get_local $5) + (get_local $2) + ) + ) + ) + (i32.store8 + (i32.add + (get_local $1) + (get_local $2) + ) + (i32.const 0) + ) + (block $label$8 + (br_if $label$8 + (i32.and + (i32.load8_u + (get_local $0) + ) + (i32.const 1) + ) + ) + (i32.store8 + (get_local $0) + (i32.shl + (get_local $2) + (i32.const 1) + ) + ) + (return + (get_local $0) + ) + ) + (i32.store offset=4 + (get_local $0) + (get_local $2) + ) + (get_local $0) + ) + (func $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE21__grow_by_and_replaceEjjjjjjPKc (param $0 i32) (param $1 i32) (param $2 i32) (param $3 i32) (param $4 i32) (param $5 i32) (param $6 i32) (param $7 i32) + (local $8 i32) + (local $9 i32) + (local $10 i32) + (block $label$0 + (br_if $label$0 + (i32.lt_u + (i32.sub + (i32.const -18) + (get_local $1) + ) + (get_local $2) + ) + ) + (block $label$1 + (block $label$2 + (br_if $label$2 + (i32.and + (i32.load8_u + (get_local $0) + ) + (i32.const 1) + ) + ) + (set_local $9 + (i32.add + (get_local $0) + (i32.const 1) + ) + ) + (br $label$1) + ) + (set_local $9 + (i32.load offset=8 + (get_local $0) + ) + ) + ) + (set_local $10 + (i32.const -17) + ) + (block $label$3 + (br_if $label$3 + (i32.gt_u + (get_local $1) + (i32.const 2147483622) + ) + ) + (set_local $10 + (i32.const 11) + ) + (br_if $label$3 + (i32.lt_u + (tee_local $2 + (select + (tee_local $8 + (i32.shl + (get_local $1) + (i32.const 1) + ) + ) + (tee_local $2 + (i32.add + (get_local $2) + (get_local $1) + ) + ) + (i32.lt_u + (get_local $2) + (get_local $8) + ) + ) + ) + (i32.const 11) + ) + ) + (set_local $10 + (i32.and + (i32.add + (get_local $2) + (i32.const 16) + ) + (i32.const -16) + ) + ) + ) + (set_local $2 + (call $_Znwj + (get_local $10) + ) + ) + (block $label$4 + (br_if $label$4 + (i32.eqz + (get_local $4) + ) + ) + (drop + (call $memcpy + (get_local $2) + (get_local $9) + (get_local $4) + ) + ) + ) + (block $label$5 + (br_if $label$5 + (i32.eqz + (get_local $6) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $2) + (get_local $4) + ) + (get_local $7) + (get_local $6) + ) + ) + ) + (block $label$6 + (br_if $label$6 + (i32.eqz + (tee_local $7 + (i32.sub + (tee_local $3 + (i32.sub + (get_local $3) + (get_local $5) + ) + ) + (get_local $4) + ) + ) + ) + ) + (drop + (call $memcpy + (i32.add + (i32.add + (get_local $2) + (get_local $4) + ) + (get_local $6) + ) + (i32.add + (i32.add + (get_local $9) + (get_local $4) + ) + (get_local $5) + ) + (get_local $7) + ) + ) + ) + (block $label$7 + (br_if $label$7 + (i32.eq + (get_local $1) + (i32.const 10) + ) + ) + (call $_ZdlPv + (get_local $9) + ) + ) + (i32.store offset=8 + (get_local $0) + (get_local $2) + ) + (i32.store + (get_local $0) + (i32.or + (get_local $10) + (i32.const 1) + ) + ) + (i32.store offset=4 + (get_local $0) + (tee_local $4 + (i32.add + (get_local $3) + (get_local $6) + ) + ) + ) + (i32.store8 + (i32.add + (get_local $2) + (get_local $4) + ) + (i32.const 0) + ) + (return) + ) + (call $abort) + (unreachable) + ) + (func $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEj (param $0 i32) (param $1 i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (block $label$0 + (br_if $label$0 + (i32.ge_u + (get_local $1) + (i32.const -16) + ) + ) + (set_local $2 + (i32.const 10) + ) + (block $label$1 + (br_if $label$1 + (i32.eqz + (i32.and + (tee_local $5 + (i32.load8_u + (get_local $0) + ) + ) + (i32.const 1) + ) + ) + ) + (set_local $2 + (i32.add + (i32.and + (tee_local $5 + (i32.load + (get_local $0) + ) + ) + (i32.const -2) + ) + (i32.const -1) + ) + ) + ) + (block $label$2 + (block $label$3 + (br_if $label$3 + (i32.and + (get_local $5) + (i32.const 1) + ) + ) + (set_local $3 + (i32.shr_u + (i32.and + (get_local $5) + (i32.const 254) + ) + (i32.const 1) + ) + ) + (br $label$2) + ) + (set_local $3 + (i32.load offset=4 + (get_local $0) + ) + ) + ) + (set_local $4 + (i32.const 10) + ) + (block $label$4 + (br_if $label$4 + (i32.lt_u + (tee_local $1 + (select + (get_local $3) + (get_local $1) + (i32.gt_u + (get_local $3) + (get_local $1) + ) + ) + ) + (i32.const 11) + ) + ) + (set_local $4 + (i32.add + (i32.and + (i32.add + (get_local $1) + (i32.const 16) + ) + (i32.const -16) + ) + (i32.const -1) + ) + ) + ) + (block $label$5 + (br_if $label$5 + (i32.eq + (get_local $4) + (get_local $2) + ) + ) + (block $label$6 + (block $label$7 + (br_if $label$7 + (i32.ne + (get_local $4) + (i32.const 10) + ) + ) + (set_local $6 + (i32.const 1) + ) + (set_local $1 + (i32.add + (get_local $0) + (i32.const 1) + ) + ) + (set_local $2 + (i32.load offset=8 + (get_local $0) + ) + ) + (set_local $7 + (i32.const 0) + ) + (br $label$6) + ) + (set_local $1 + (call $_Znwj + (i32.add + (get_local $4) + (i32.const 1) + ) + ) + ) + (block $label$8 + (br_if $label$8 + (i32.gt_u + (get_local $4) + (get_local $2) + ) + ) + (br_if $label$5 + (i32.eqz + (get_local $1) + ) + ) + ) + (block $label$9 + (br_if $label$9 + (i32.and + (tee_local $5 + (i32.load8_u + (get_local $0) + ) + ) + (i32.const 1) + ) + ) + (set_local $7 + (i32.const 1) + ) + (set_local $2 + (i32.add + (get_local $0) + (i32.const 1) + ) + ) + (set_local $6 + (i32.const 0) + ) + (br $label$6) + ) + (set_local $2 + (i32.load offset=8 + (get_local $0) + ) + ) + (set_local $6 + (i32.const 1) + ) + (set_local $7 + (i32.const 1) + ) + ) + (block $label$10 + (block $label$11 + (br_if $label$11 + (i32.and + (get_local $5) + (i32.const 1) + ) + ) + (set_local $5 + (i32.shr_u + (i32.and + (get_local $5) + (i32.const 254) + ) + (i32.const 1) + ) + ) + (br $label$10) + ) + (set_local $5 + (i32.load offset=4 + (get_local $0) + ) + ) + ) + (block $label$12 + (br_if $label$12 + (i32.eqz + (tee_local $5 + (i32.add + (get_local $5) + (i32.const 1) + ) + ) + ) + ) + (drop + (call $memcpy + (get_local $1) + (get_local $2) + (get_local $5) + ) + ) + ) + (block $label$13 + (br_if $label$13 + (i32.eqz + (get_local $6) + ) + ) + (call $_ZdlPv + (get_local $2) + ) + ) + (block $label$14 + (br_if $label$14 + (i32.eqz + (get_local $7) + ) + ) + (i32.store offset=4 + (get_local $0) + (get_local $3) + ) + (i32.store offset=8 + (get_local $0) + (get_local $1) + ) + (i32.store + (get_local $0) + (i32.or + (i32.add + (get_local $4) + (i32.const 1) + ) + (i32.const 1) + ) + ) + (return) + ) + (i32.store8 + (get_local $0) + (i32.shl + (get_local $3) + (i32.const 1) + ) + ) + ) + (return) + ) + (call $abort) + (unreachable) + ) + (func $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcj (param $0 i32) (param $1 i32) (param $2 i32) (result i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (set_local $4 + (i32.const 10) + ) + (block $label$0 + (br_if $label$0 + (i32.eqz + (i32.and + (tee_local $3 + (i32.load8_u + (get_local $0) + ) + ) + (i32.const 1) + ) + ) + ) + (set_local $4 + (i32.add + (i32.and + (tee_local $3 + (i32.load + (get_local $0) + ) + ) + (i32.const -2) + ) + (i32.const -1) + ) + ) + ) + (block $label$1 + (block $label$2 + (br_if $label$2 + (i32.and + (get_local $3) + (i32.const 1) + ) + ) + (set_local $5 + (i32.shr_u + (i32.and + (get_local $3) + (i32.const 254) + ) + (i32.const 1) + ) + ) + (br $label$1) + ) + (set_local $5 + (i32.load offset=4 + (get_local $0) + ) + ) + ) + (block $label$3 + (br_if $label$3 + (i32.ge_u + (i32.sub + (get_local $4) + (get_local $5) + ) + (get_local $2) + ) + ) + (call $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE21__grow_by_and_replaceEjjjjjjPKc + (get_local $0) + (get_local $4) + (i32.add + (i32.sub + (get_local $2) + (get_local $4) + ) + (get_local $5) + ) + (get_local $5) + (get_local $5) + (i32.const 0) + (get_local $2) + (get_local $1) + ) + (return + (get_local $0) + ) + ) + (block $label$4 + (block $label$5 + (block $label$6 + (br_if $label$6 + (i32.eqz + (get_local $2) + ) + ) + (br_if $label$5 + (i32.and + (get_local $3) + (i32.const 1) + ) + ) + (set_local $4 + (i32.add + (get_local $0) + (i32.const 1) + ) + ) + (br $label$4) + ) + (return + (get_local $0) + ) + ) + (set_local $4 + (i32.load offset=8 + (get_local $0) + ) + ) + ) + (drop + (call $memcpy + (i32.add + (get_local $4) + (get_local $5) + ) + (get_local $1) + (get_local $2) + ) + ) + (set_local $2 + (i32.add + (get_local $5) + (get_local $2) + ) + ) + (block $label$7 + (block $label$8 + (br_if $label$8 + (i32.and + (i32.load8_u + (get_local $0) + ) + (i32.const 1) + ) + ) + (i32.store8 + (get_local $0) + (i32.shl + (get_local $2) + (i32.const 1) + ) + ) + (br $label$7) + ) + (i32.store offset=4 + (get_local $0) + (get_local $2) + ) + ) + (i32.store8 + (i32.add + (get_local $4) + (get_local $2) + ) + (i32.const 0) + ) + (get_local $0) + ) + (func $_ZNSt3__19to_stringEi (param $0 i32) (param $1 i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $7 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 32) + ) + ) + ) + (i32.store offset=24 + (get_local $7) + (i32.const 0) + ) + (i64.store offset=16 + (get_local $7) + (i64.const 0) + ) + (set_local $6 + (i32.const 10) + ) + (drop + (call $memset + (tee_local $2 + (i32.or + (i32.add + (get_local $7) + (i32.const 16) + ) + (i32.const 1) + ) + ) + (i32.const 0) + (i32.const 10) + ) + ) + (block $label$0 + (block $label$1 + (br_if $label$1 + (i32.and + (tee_local $3 + (i32.load8_u offset=16 + (get_local $7) + ) + ) + (i32.const 1) + ) + ) + (set_local $3 + (i32.const 20) + ) + (i32.store8 offset=16 + (get_local $7) + (i32.const 20) + ) + (set_local $6 + (i32.load offset=20 + (get_local $7) + ) + ) + (br $label$0) + ) + (i32.store offset=20 + (get_local $7) + (i32.const 10) + ) + ) + (i32.store8 + (i32.add + (get_local $7) + (i32.const 27) + ) + (i32.const 0) + ) + (set_local $6 + (select + (get_local $6) + (i32.shr_u + (get_local $3) + (i32.const 1) + ) + (i32.and + (get_local $3) + (i32.const 1) + ) + ) + ) + (set_local $5 + (i32.add + (get_local $7) + (i32.const 24) + ) + ) + (block $label$2 + (loop $label$3 + (i32.store + (get_local $7) + (get_local $1) + ) + (block $label$4 + (block $label$5 + (br_if $label$5 + (i32.lt_s + (tee_local $3 + (call $snprintf + (select + (i32.load + (get_local $5) + ) + (get_local $2) + (i32.and + (get_local $3) + (i32.const 1) + ) + ) + (i32.add + (get_local $6) + (i32.const 1) + ) + (i32.const 9984) + (get_local $7) + ) + ) + (i32.const 0) + ) + ) + (br_if $label$2 + (i32.le_u + (get_local $3) + (get_local $6) + ) + ) + (set_local $6 + (get_local $3) + ) + (br $label$4) + ) + (set_local $6 + (i32.or + (i32.shl + (get_local $6) + (i32.const 1) + ) + (i32.const 1) + ) + ) + ) + (block $label$6 + (br_if $label$6 + (i32.le_u + (get_local $6) + (tee_local $3 + (select + (i32.load offset=20 + (get_local $7) + ) + (i32.shr_u + (tee_local $3 + (i32.load8_u offset=16 + (get_local $7) + ) + ) + (i32.const 1) + ) + (tee_local $4 + (i32.and + (get_local $3) + (i32.const 1) + ) + ) + ) + ) + ) + ) + (drop + (call $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEjc + (i32.add + (get_local $7) + (i32.const 16) + ) + (i32.sub + (get_local $6) + (get_local $3) + ) + (i32.const 0) + ) + ) + (set_local $3 + (i32.load8_u offset=16 + (get_local $7) + ) + ) + (br $label$3) + ) + (block $label$7 + (br_if $label$7 + (get_local $4) + ) + (i32.store8 + (i32.add + (i32.add + (i32.add + (get_local $7) + (i32.const 16) + ) + (get_local $6) + ) + (i32.const 1) + ) + (i32.const 0) + ) + (i32.store8 offset=16 + (get_local $7) + (i32.shl + (get_local $6) + (i32.const 1) + ) + ) + (set_local $3 + (i32.load8_u offset=16 + (get_local $7) + ) + ) + (br $label$3) + ) + (i32.store8 + (i32.add + (i32.load + (get_local $5) + ) + (get_local $6) + ) + (i32.const 0) + ) + (i32.store offset=20 + (get_local $7) + (get_local $6) + ) + (set_local $3 + (i32.load8_u offset=16 + (get_local $7) + ) + ) + (br $label$3) + ) + ) + (block $label$8 + (block $label$9 + (br_if $label$9 + (i32.le_u + (get_local $3) + (tee_local $4 + (select + (i32.load offset=20 + (get_local $7) + ) + (i32.shr_u + (tee_local $6 + (i32.load8_u offset=16 + (get_local $7) + ) + ) + (i32.const 1) + ) + (tee_local $6 + (i32.and + (get_local $6) + (i32.const 1) + ) + ) + ) + ) + ) + ) + (drop + (call $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEjc + (i32.add + (get_local $7) + (i32.const 16) + ) + (i32.sub + (get_local $3) + (get_local $4) + ) + (i32.const 0) + ) + ) + (br $label$8) + ) + (block $label$10 + (br_if $label$10 + (get_local $6) + ) + (i32.store8 + (i32.add + (i32.add + (i32.add + (get_local $7) + (i32.const 16) + ) + (get_local $3) + ) + (i32.const 1) + ) + (i32.const 0) + ) + (i32.store8 offset=16 + (get_local $7) + (i32.shl + (get_local $3) + (i32.const 1) + ) + ) + (br $label$8) + ) + (i32.store8 + (i32.add + (i32.load + (i32.add + (get_local $7) + (i32.const 24) + ) + ) + (get_local $3) + ) + (i32.const 0) + ) + (i32.store offset=20 + (get_local $7) + (get_local $3) + ) + ) + (i64.store align=4 + (get_local $0) + (i64.load offset=16 + (get_local $7) + ) + ) + (i32.store + (i32.add + (get_local $0) + (i32.const 8) + ) + (i32.load + (i32.add + (i32.add + (get_local $7) + (i32.const 16) + ) + (i32.const 8) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $7) + (i32.const 32) + ) + ) + ) + (func $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEjc (param $0 i32) (param $1 i32) (param $2 i32) (result i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (block $label$0 + (br_if $label$0 + (i32.eqz + (get_local $1) + ) + ) + (set_local $3 + (i32.const 10) + ) + (block $label$1 + (br_if $label$1 + (i32.eqz + (i32.and + (tee_local $5 + (i32.load8_u + (get_local $0) + ) + ) + (i32.const 1) + ) + ) + ) + (set_local $3 + (i32.add + (i32.and + (tee_local $5 + (i32.load + (get_local $0) + ) + ) + (i32.const -2) + ) + (i32.const -1) + ) + ) + ) + (block $label$2 + (block $label$3 + (br_if $label$3 + (i32.and + (get_local $5) + (i32.const 1) + ) + ) + (set_local $4 + (i32.shr_u + (i32.and + (get_local $5) + (i32.const 254) + ) + (i32.const 1) + ) + ) + (br $label$2) + ) + (set_local $4 + (i32.load offset=4 + (get_local $0) + ) + ) + ) + (block $label$4 + (br_if $label$4 + (i32.ge_u + (i32.sub + (get_local $3) + (get_local $4) + ) + (get_local $1) + ) + ) + (call $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9__grow_byEjjjjjj + (get_local $0) + (get_local $3) + (i32.add + (i32.sub + (get_local $1) + (get_local $3) + ) + (get_local $4) + ) + (get_local $4) + (get_local $4) + (i32.const 0) + (i32.const 0) + ) + (set_local $5 + (i32.load8_u + (get_local $0) + ) + ) + ) + (block $label$5 + (block $label$6 + (br_if $label$6 + (i32.and + (get_local $5) + (i32.const 1) + ) + ) + (set_local $5 + (i32.add + (get_local $0) + (i32.const 1) + ) + ) + (br $label$5) + ) + (set_local $5 + (i32.load offset=8 + (get_local $0) + ) + ) + ) + (drop + (call $memset + (i32.add + (get_local $5) + (get_local $4) + ) + (i32.and + (get_local $2) + (i32.const 255) + ) + (get_local $1) + ) + ) + (set_local $1 + (i32.add + (get_local $4) + (get_local $1) + ) + ) + (block $label$7 + (block $label$8 + (br_if $label$8 + (i32.and + (i32.load8_u + (get_local $0) + ) + (i32.const 1) + ) + ) + (i32.store8 + (get_local $0) + (i32.shl + (get_local $1) + (i32.const 1) + ) + ) + (br $label$7) + ) + (i32.store offset=4 + (get_local $0) + (get_local $1) + ) + ) + (i32.store8 + (i32.add + (get_local $5) + (get_local $1) + ) + (i32.const 0) + ) + ) + (get_local $0) + ) + (func $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9__grow_byEjjjjjj (param $0 i32) (param $1 i32) (param $2 i32) (param $3 i32) (param $4 i32) (param $5 i32) (param $6 i32) + (local $7 i32) + (local $8 i32) + (local $9 i32) + (block $label$0 + (br_if $label$0 + (i32.lt_u + (i32.sub + (i32.const -17) + (get_local $1) + ) + (get_local $2) + ) + ) + (block $label$1 + (block $label$2 + (br_if $label$2 + (i32.and + (i32.load8_u + (get_local $0) + ) + (i32.const 1) + ) + ) + (set_local $8 + (i32.add + (get_local $0) + (i32.const 1) + ) + ) + (br $label$1) + ) + (set_local $8 + (i32.load offset=8 + (get_local $0) + ) + ) + ) + (set_local $9 + (i32.const -17) + ) + (block $label$3 + (br_if $label$3 + (i32.gt_u + (get_local $1) + (i32.const 2147483622) + ) + ) + (set_local $9 + (i32.const 11) + ) + (br_if $label$3 + (i32.lt_u + (tee_local $2 + (select + (tee_local $7 + (i32.shl + (get_local $1) + (i32.const 1) + ) + ) + (tee_local $2 + (i32.add + (get_local $2) + (get_local $1) + ) + ) + (i32.lt_u + (get_local $2) + (get_local $7) + ) + ) + ) + (i32.const 11) + ) + ) + (set_local $9 + (i32.and + (i32.add + (get_local $2) + (i32.const 16) + ) + (i32.const -16) + ) + ) + ) + (set_local $2 + (call $_Znwj + (get_local $9) + ) + ) + (block $label$4 + (br_if $label$4 + (i32.eqz + (get_local $4) + ) + ) + (drop + (call $memcpy + (get_local $2) + (get_local $8) + (get_local $4) + ) + ) + ) + (block $label$5 + (br_if $label$5 + (i32.eqz + (tee_local $3 + (i32.sub + (i32.sub + (get_local $3) + (get_local $5) + ) + (get_local $4) + ) + ) + ) + ) + (drop + (call $memcpy + (i32.add + (i32.add + (get_local $2) + (get_local $4) + ) + (get_local $6) + ) + (i32.add + (i32.add + (get_local $8) + (get_local $4) + ) + (get_local $5) + ) + (get_local $3) + ) + ) + ) + (block $label$6 + (br_if $label$6 + (i32.eq + (get_local $1) + (i32.const 10) + ) + ) + (call $_ZdlPv + (get_local $8) + ) + ) + (i32.store offset=8 + (get_local $0) + (get_local $2) + ) + (i32.store + (get_local $0) + (i32.or + (get_local $9) + (i32.const 1) + ) + ) + (return) + ) + (call $abort) + (unreachable) + ) + (func $_ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv (param $0 i32) + (call $abort) + (unreachable) + ) + (func $_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_ (param $0 i32) (param $1 i32) (result i32) + (local $2 i32) + (local $3 i32) + (local $4 i32) + (i64.store align=4 + (get_local $0) + (i64.const 0) + ) + (i32.store + (tee_local $3 + (i32.add + (get_local $0) + (i32.const 8) + ) + ) + (i32.const 0) + ) + (block $label$0 + (br_if $label$0 + (i32.and + (i32.load8_u + (get_local $1) + ) + (i32.const 1) + ) + ) + (i64.store align=4 + (get_local $0) + (i64.load align=4 + (get_local $1) + ) + ) + (i32.store + (get_local $3) + (i32.load + (i32.add + (get_local $1) + (i32.const 8) + ) + ) + ) + (return + (get_local $0) + ) + ) + (block $label$1 + (br_if $label$1 + (i32.ge_u + (tee_local $3 + (i32.load offset=4 + (get_local $1) + ) + ) + (i32.const -16) + ) + ) + (set_local $2 + (i32.load offset=8 + (get_local $1) + ) + ) + (block $label$2 + (block $label$3 + (block $label$4 + (br_if $label$4 + (i32.ge_u + (get_local $3) + (i32.const 11) + ) + ) + (i32.store8 + (get_local $0) + (i32.shl + (get_local $3) + (i32.const 1) + ) + ) + (set_local $1 + (i32.add + (get_local $0) + (i32.const 1) + ) + ) + (br_if $label$3 + (get_local $3) + ) + (br $label$2) + ) + (set_local $1 + (call $_Znwj + (tee_local $4 + (i32.and + (i32.add + (get_local $3) + (i32.const 16) + ) + (i32.const -16) + ) + ) + ) + ) + (i32.store + (get_local $0) + (i32.or + (get_local $4) + (i32.const 1) + ) + ) + (i32.store offset=8 + (get_local $0) + (get_local $1) + ) + (i32.store offset=4 + (get_local $0) + (get_local $3) + ) + ) + (drop + (call $memcpy + (get_local $1) + (get_local $2) + (get_local $3) + ) + ) + ) + (i32.store8 + (i32.add + (get_local $1) + (get_local $3) + ) + (i32.const 0) + ) + (return + (get_local $0) + ) + ) + (call $abort) + (unreachable) + ) + (func $snprintf (param $0 i32) (param $1 i32) (param $2 i32) (param $3 i32) (result i32) + (local $4 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $4 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 16) + ) + ) + ) + (i32.store offset=12 + (get_local $4) + (get_local $3) + ) + (set_local $3 + (call $vsnprintf + (get_local $0) + (get_local $1) + (get_local $2) + (get_local $3) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $4) + (i32.const 16) + ) + ) + (get_local $3) + ) + (func $vsnprintf (param $0 i32) (param $1 i32) (param $2 i32) (param $3 i32) (result i32) + (local $4 i32) + (local $5 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $4 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 160) + ) + ) + ) + (set_local $5 + (i32.const -1) + ) + (i32.store offset=148 + (get_local $4) + (select + (i32.add + (get_local $1) + (i32.const -1) + ) + (i32.const 0) + (get_local $1) + ) + ) + (i32.store offset=144 + (get_local $4) + (tee_local $0 + (select + (get_local $0) + (i32.add + (get_local $4) + (i32.const 158) + ) + (get_local $1) + ) + ) + ) + (i32.store offset=36 + (tee_local $4 + (call $memset + (get_local $4) + (i32.const 0) + (i32.const 144) + ) + ) + (i32.const 8) + ) + (i32.store8 offset=75 + (get_local $4) + (i32.const 255) + ) + (i32.store offset=76 + (get_local $4) + (i32.const -1) + ) + (i32.store offset=44 + (get_local $4) + (i32.add + (get_local $4) + (i32.const 159) + ) + ) + (i32.store offset=84 + (get_local $4) + (i32.add + (get_local $4) + (i32.const 144) + ) + ) + (block $label$0 + (block $label$1 + (br_if $label$1 + (i32.le_s + (get_local $1) + (i32.const -1) + ) + ) + (i32.store8 + (get_local $0) + (i32.const 0) + ) + (set_local $5 + (call $vfprintf + (get_local $4) + (get_local $2) + (get_local $3) + ) + ) + (br $label$0) + ) + (i32.store + (call $__errno_location) + (i32.const 75) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $4) + (i32.const 160) + ) + ) + (get_local $5) + ) + (func $sn_write (type $FUNCSIG$iiii) (param $0 i32) (param $1 i32) (param $2 i32) (result i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (block $label$0 + (br_if $label$0 + (i32.eqz + (tee_local $6 + (select + (tee_local $5 + (i32.load offset=4 + (tee_local $3 + (i32.load offset=84 + (get_local $0) + ) + ) + ) + ) + (tee_local $6 + (i32.sub + (i32.load offset=20 + (get_local $0) + ) + (tee_local $4 + (i32.load offset=28 + (get_local $0) + ) + ) + ) + ) + (i32.lt_u + (get_local $5) + (get_local $6) + ) + ) + ) + ) + ) + (drop + (call $memcpy + (i32.load + (get_local $3) + ) + (get_local $4) + (get_local $6) + ) + ) + (i32.store + (get_local $3) + (i32.add + (i32.load + (get_local $3) + ) + (get_local $6) + ) + ) + (i32.store + (tee_local $5 + (i32.add + (get_local $3) + (i32.const 4) + ) + ) + (tee_local $5 + (i32.sub + (i32.load + (get_local $5) + ) + (get_local $6) + ) + ) + ) + ) + (set_local $6 + (i32.load + (get_local $3) + ) + ) + (block $label$1 + (br_if $label$1 + (i32.eqz + (tee_local $5 + (select + (get_local $5) + (get_local $2) + (i32.lt_u + (get_local $5) + (get_local $2) + ) + ) + ) + ) + ) + (drop + (call $memcpy + (get_local $6) + (get_local $1) + (get_local $5) + ) + ) + (i32.store + (get_local $3) + (tee_local $6 + (i32.add + (i32.load + (get_local $3) + ) + (get_local $5) + ) + ) + ) + (i32.store + (tee_local $3 + (i32.add + (get_local $3) + (i32.const 4) + ) + ) + (i32.sub + (i32.load + (get_local $3) + ) + (get_local $5) + ) + ) + ) + (i32.store8 + (get_local $6) + (i32.const 0) + ) + (i32.store + (i32.add + (get_local $0) + (i32.const 28) + ) + (tee_local $3 + (i32.load offset=44 + (get_local $0) + ) + ) + ) + (i32.store + (i32.add + (get_local $0) + (i32.const 20) + ) + (get_local $3) + ) + (get_local $2) + ) + (func $__errno_location (result i32) + (i32.const 12524) + ) + (func $vfprintf (param $0 i32) (param $1 i32) (param $2 i32) (result i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $7 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 288) + ) + ) + ) + (i32.store offset=284 + (get_local $7) + (get_local $2) + ) + (set_local $6 + (i32.const 0) + ) + (drop + (call $memset + (i32.add + (get_local $7) + (i32.const 240) + ) + (i32.const 0) + (i32.const 40) + ) + ) + (i32.store offset=280 + (get_local $7) + (i32.load offset=284 + (get_local $7) + ) + ) + (set_local $2 + (i32.const -1) + ) + (block $label$0 + (br_if $label$0 + (i32.le_s + (call $printf_core + (i32.const 0) + (get_local $1) + (i32.add + (get_local $7) + (i32.const 280) + ) + (i32.add + (get_local $7) + (i32.const 80) + ) + (i32.add + (get_local $7) + (i32.const 240) + ) + ) + (i32.const -1) + ) + ) + (block $label$1 + (br_if $label$1 + (i32.lt_s + (i32.load offset=76 + (get_local $0) + ) + (i32.const 0) + ) + ) + (set_local $6 + (call $__lockfile + (get_local $0) + ) + ) + ) + (set_local $2 + (i32.load + (get_local $0) + ) + ) + (block $label$2 + (br_if $label$2 + (i32.gt_s + (i32.load8_s offset=74 + (get_local $0) + ) + (i32.const 0) + ) + ) + (i32.store + (get_local $0) + (i32.and + (get_local $2) + (i32.const -33) + ) + ) + ) + (set_local $3 + (i32.and + (get_local $2) + (i32.const 32) + ) + ) + (block $label$3 + (block $label$4 + (br_if $label$4 + (i32.eqz + (i32.load offset=48 + (get_local $0) + ) + ) + ) + (set_local $2 + (call $printf_core + (get_local $0) + (get_local $1) + (i32.add + (get_local $7) + (i32.const 280) + ) + (i32.add + (get_local $7) + (i32.const 80) + ) + (i32.add + (get_local $7) + (i32.const 240) + ) + ) + ) + (br $label$3) + ) + (i32.store + (tee_local $5 + (i32.add + (get_local $0) + (i32.const 48) + ) + ) + (i32.const 80) + ) + (i32.store offset=16 + (get_local $0) + (i32.add + (get_local $7) + (i32.const 80) + ) + ) + (i32.store offset=28 + (get_local $0) + (get_local $7) + ) + (i32.store offset=20 + (get_local $0) + (get_local $7) + ) + (set_local $4 + (i32.load offset=44 + (get_local $0) + ) + ) + (i32.store offset=44 + (get_local $0) + (get_local $7) + ) + (set_local $2 + (call $printf_core + (get_local $0) + (get_local $1) + (i32.add + (get_local $7) + (i32.const 280) + ) + (i32.add + (get_local $7) + (i32.const 80) + ) + (i32.add + (get_local $7) + (i32.const 240) + ) + ) + ) + (br_if $label$3 + (i32.eqz + (get_local $4) + ) + ) + (drop + (call_indirect (type $FUNCSIG$iiii) + (get_local $0) + (i32.const 0) + (i32.const 0) + (i32.load offset=36 + (get_local $0) + ) + ) + ) + (i32.store + (i32.add + (get_local $0) + (i32.const 44) + ) + (get_local $4) + ) + (i32.store + (get_local $5) + (i32.const 0) + ) + (i32.store + (i32.add + (get_local $0) + (i32.const 16) + ) + (i32.const 0) + ) + (i32.store + (i32.add + (get_local $0) + (i32.const 28) + ) + (i32.const 0) + ) + (set_local $4 + (i32.load + (tee_local $1 + (i32.add + (get_local $0) + (i32.const 20) + ) + ) + ) + ) + (i32.store + (get_local $1) + (i32.const 0) + ) + (set_local $2 + (select + (get_local $2) + (i32.const -1) + (get_local $4) + ) + ) + ) + (i32.store + (get_local $0) + (i32.or + (tee_local $1 + (i32.load + (get_local $0) + ) + ) + (get_local $3) + ) + ) + (set_local $1 + (i32.and + (get_local $1) + (i32.const 32) + ) + ) + (block $label$5 + (br_if $label$5 + (i32.eqz + (get_local $6) + ) + ) + (call $__unlockfile + (get_local $0) + ) + ) + (set_local $2 + (select + (i32.const -1) + (get_local $2) + (get_local $1) + ) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $7) + (i32.const 288) + ) + ) + (get_local $2) + ) + (func $printf_core (param $0 i32) (param $1 i32) (param $2 i32) (param $3 i32) (param $4 i32) (result i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (local $8 i32) + (local $9 i32) + (local $10 i32) + (local $11 i32) + (local $12 i32) + (local $13 i32) + (local $14 i32) + (local $15 i32) + (local $16 i32) + (local $17 i32) + (local $18 i32) + (local $19 i32) + (local $20 i32) + (local $21 i32) + (local $22 i32) + (local $23 i64) + (local $24 i32) + (local $25 i32) + (local $26 i32) + (local $27 i32) + (local $28 i32) + (local $29 i32) + (local $30 i32) + (local $31 i32) + (local $32 i32) + (local $33 i64) + (local $34 i64) + (local $35 i64) + (local $36 i32) + (local $37 i32) + (local $38 i32) + (local $39 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $39 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 8128) + ) + ) + ) + (set_local $12 + (i32.add + (i32.add + (get_local $39) + (i32.const 692) + ) + (i32.const 11) + ) + ) + (set_local $11 + (i32.or + (i32.add + (get_local $39) + (i32.const 704) + ) + (i32.const 8) + ) + ) + (set_local $10 + (i32.or + (i32.add + (get_local $39) + (i32.const 704) + ) + (i32.const 9) + ) + ) + (set_local $9 + (i32.add + (get_local $39) + (i32.const 7664) + ) + ) + (set_local $8 + (i32.sub + (i32.const -2) + (i32.add + (get_local $39) + (i32.const 704) + ) + ) + ) + (set_local $7 + (i32.add + (i32.add + (get_local $39) + (i32.const 692) + ) + (i32.const 12) + ) + ) + (set_local $6 + (i32.add + (i32.add + (get_local $39) + (i32.const 352) + ) + (i32.const 54) + ) + ) + (set_local $5 + (i32.add + (i32.add + (get_local $39) + (i32.const 352) + ) + (i32.const 55) + ) + ) + (set_local $30 + (i32.const 0) + ) + (set_local $38 + (i32.const 0) + ) + (set_local $32 + (i32.const 0) + ) + (block $label$0 + (block $label$1 + (block $label$2 + (block $label$3 + (block $label$4 + (block $label$5 + (block $label$6 + (block $label$7 + (block $label$8 + (block $label$9 + (block $label$10 + (block $label$11 + (block $label$12 + (block $label$13 + (block $label$14 + (block $label$15 + (loop $label$16 + (set_local $38 + (i32.add + (get_local $30) + (get_local $38) + ) + ) + (br_if $label$15 + (i32.eqz + (tee_local $30 + (i32.load8_u + (tee_local $37 + (get_local $1) + ) + ) + ) + ) + ) + (set_local $1 + (get_local $37) + ) + (block $label$17 + (block $label$18 + (block $label$19 + (br_if $label$19 + (i32.eqz + (tee_local $30 + (i32.and + (get_local $30) + (i32.const 255) + ) + ) + ) + ) + (loop $label$20 + (br_if $label$18 + (i32.eq + (get_local $30) + (i32.const 37) + ) + ) + (br_if $label$20 + (tee_local $30 + (i32.and + (i32.load8_u + (tee_local $1 + (i32.add + (get_local $1) + (i32.const 1) + ) + ) + ) + (i32.const 255) + ) + ) + ) + ) + ) + (set_local $30 + (get_local $1) + ) + (br $label$17) + ) + (set_local $30 + (get_local $1) + ) + (loop $label$21 + (br_if $label$17 + (i32.ne + (i32.load8_u + (i32.add + (get_local $1) + (i32.const 1) + ) + ) + (i32.const 37) + ) + ) + (set_local $30 + (i32.add + (get_local $30) + (i32.const 1) + ) + ) + (br_if $label$21 + (i32.eq + (i32.load8_u + (tee_local $1 + (i32.add + (get_local $1) + (i32.const 2) + ) + ) + ) + (i32.const 37) + ) + ) + ) + ) + (br_if $label$14 + (i32.gt_s + (tee_local $30 + (i32.sub + (get_local $30) + (get_local $37) + ) + ) + (tee_local $13 + (i32.sub + (i32.const 2147483647) + (get_local $38) + ) + ) + ) + ) + (block $label$22 + (br_if $label$22 + (i32.eqz + (get_local $0) + ) + ) + (br_if $label$22 + (i32.and + (i32.load8_u + (get_local $0) + ) + (i32.const 32) + ) + ) + (drop + (call $__fwritex + (get_local $37) + (get_local $30) + (get_local $0) + ) + ) + ) + (block $label$23 + (br_if $label$23 + (get_local $30) + ) + (set_local $36 + (i32.add + (get_local $1) + (i32.const 1) + ) + ) + (set_local $27 + (i32.const -1) + ) + (block $label$24 + (br_if $label$24 + (i32.gt_u + (tee_local $17 + (i32.add + (tee_local $30 + (i32.load8_s offset=1 + (get_local $1) + ) + ) + (i32.const -48) + ) + ) + (i32.const 9) + ) + ) + (set_local $30 + (i32.load8_u + (tee_local $36 + (select + (i32.add + (get_local $1) + (i32.const 3) + ) + (get_local $36) + (tee_local $1 + (i32.eq + (i32.load8_u offset=2 + (get_local $1) + ) + (i32.const 36) + ) + ) + ) + ) + ) + ) + (set_local $27 + (select + (get_local $17) + (i32.const -1) + (get_local $1) + ) + ) + (set_local $32 + (select + (i32.const 1) + (get_local $32) + (get_local $1) + ) + ) + ) + (set_local $14 + (i32.const 0) + ) + (block $label$25 + (br_if $label$25 + (i32.gt_u + (tee_local $1 + (i32.add + (i32.shr_s + (i32.shl + (get_local $30) + (i32.const 24) + ) + (i32.const 24) + ) + (i32.const -32) + ) + ) + (i32.const 31) + ) + ) + (set_local $14 + (i32.const 0) + ) + (loop $label$26 + (br_if $label$25 + (i32.eqz + (i32.and + (i32.shl + (i32.const 1) + (get_local $1) + ) + (i32.const 75913) + ) + ) + ) + (set_local $14 + (i32.or + (i32.shl + (i32.const 1) + (i32.add + (i32.shr_s + (i32.shl + (get_local $30) + (i32.const 24) + ) + (i32.const 24) + ) + (i32.const -32) + ) + ) + (get_local $14) + ) + ) + (br_if $label$26 + (i32.lt_u + (tee_local $1 + (i32.add + (tee_local $30 + (i32.load8_s + (tee_local $36 + (i32.add + (get_local $36) + (i32.const 1) + ) + ) + ) + ) + (i32.const -32) + ) + ) + (i32.const 32) + ) + ) + ) + ) + (block $label$27 + (block $label$28 + (block $label$29 + (block $label$30 + (block $label$31 + (block $label$32 + (br_if $label$32 + (i32.ne + (i32.and + (get_local $30) + (i32.const 255) + ) + (i32.const 42) + ) + ) + (br_if $label$31 + (i32.gt_u + (tee_local $1 + (i32.add + (i32.load8_s offset=1 + (get_local $36) + ) + (i32.const -48) + ) + ) + (i32.const 9) + ) + ) + (br_if $label$31 + (i32.ne + (i32.load8_u offset=2 + (get_local $36) + ) + (i32.const 36) + ) + ) + (i32.store + (i32.add + (get_local $4) + (i32.shl + (get_local $1) + (i32.const 2) + ) + ) + (i32.const 10) + ) + (set_local $17 + (i32.add + (get_local $36) + (i32.const 3) + ) + ) + (set_local $32 + (i32.const 1) + ) + (br_if $label$27 + (i32.gt_s + (tee_local $15 + (i32.load + (i32.add + (i32.add + (get_local $3) + (i32.shl + (i32.load8_s + (i32.add + (get_local $36) + (i32.const 1) + ) + ) + (i32.const 4) + ) + ) + (i32.const -768) + ) + ) + ) + (i32.const -1) + ) + ) + (br $label$30) + ) + (set_local $15 + (i32.const 0) + ) + (br_if $label$29 + (i32.gt_u + (tee_local $30 + (i32.add + (i32.shr_s + (i32.shl + (get_local $30) + (i32.const 24) + ) + (i32.const 24) + ) + (i32.const -48) + ) + ) + (i32.const 9) + ) + ) + (set_local $1 + (i32.const 0) + ) + (set_local $17 + (get_local $36) + ) + (loop $label$33 + (set_local $15 + (i32.const -1) + ) + (block $label$34 + (br_if $label$34 + (i32.gt_u + (get_local $1) + (i32.const 214748364) + ) + ) + (set_local $15 + (select + (i32.const -1) + (i32.add + (tee_local $1 + (i32.mul + (get_local $1) + (i32.const 10) + ) + ) + (get_local $30) + ) + (i32.gt_s + (get_local $30) + (i32.sub + (i32.const 2147483647) + (get_local $1) + ) + ) + ) + ) + ) + (set_local $1 + (get_local $15) + ) + (br_if $label$33 + (i32.lt_u + (tee_local $30 + (i32.add + (i32.load8_s + (tee_local $17 + (i32.add + (get_local $17) + (i32.const 1) + ) + ) + ) + (i32.const -48) + ) + ) + (i32.const 10) + ) + ) + ) + (br_if $label$27 + (i32.ge_s + (get_local $15) + (i32.const 0) + ) + ) + (br $label$14) + ) + (br_if $label$2 + (get_local $32) + ) + (set_local $17 + (i32.add + (get_local $36) + (i32.const 1) + ) + ) + (br_if $label$28 + (i32.eqz + (get_local $0) + ) + ) + (i32.store + (get_local $2) + (i32.add + (tee_local $1 + (i32.load + (get_local $2) + ) + ) + (i32.const 4) + ) + ) + (set_local $32 + (i32.const 0) + ) + (br_if $label$27 + (i32.gt_s + (tee_local $15 + (i32.load + (get_local $1) + ) + ) + (i32.const -1) + ) + ) + ) + (set_local $15 + (i32.sub + (i32.const 0) + (get_local $15) + ) + ) + (set_local $14 + (i32.or + (get_local $14) + (i32.const 8192) + ) + ) + (br $label$27) + ) + (set_local $17 + (get_local $36) + ) + (br $label$27) + ) + (set_local $32 + (i32.const 0) + ) + (set_local $15 + (i32.const 0) + ) + ) + (set_local $30 + (i32.const 0) + ) + (set_local $36 + (i32.const -1) + ) + (block $label$35 + (block $label$36 + (block $label$37 + (block $label$38 + (block $label$39 + (block $label$40 + (block $label$41 + (br_if $label$41 + (i32.ne + (i32.load8_u + (get_local $17) + ) + (i32.const 46) + ) + ) + (br_if $label$40 + (i32.ne + (tee_local $36 + (i32.load8_s offset=1 + (get_local $17) + ) + ) + (i32.const 42) + ) + ) + (br_if $label$39 + (i32.gt_u + (tee_local $1 + (i32.add + (i32.load8_s offset=2 + (get_local $17) + ) + (i32.const -48) + ) + ) + (i32.const 9) + ) + ) + (br_if $label$39 + (i32.ne + (i32.load8_u offset=3 + (get_local $17) + ) + (i32.const 36) + ) + ) + (i32.store + (i32.add + (get_local $4) + (i32.shl + (get_local $1) + (i32.const 2) + ) + ) + (i32.const 10) + ) + (set_local $1 + (i32.add + (get_local $17) + (i32.const 4) + ) + ) + (set_local $36 + (i32.load + (i32.add + (i32.add + (get_local $3) + (i32.shl + (i32.load8_s + (i32.add + (get_local $17) + (i32.const 2) + ) + ) + (i32.const 4) + ) + ) + (i32.const -768) + ) + ) + ) + (br $label$36) + ) + (set_local $1 + (get_local $17) + ) + (set_local $16 + (i32.const 0) + ) + (br $label$35) + ) + (set_local $1 + (i32.add + (get_local $17) + (i32.const 1) + ) + ) + (br_if $label$38 + (i32.gt_u + (tee_local $31 + (i32.add + (get_local $36) + (i32.const -48) + ) + ) + (i32.const 9) + ) + ) + (set_local $17 + (i32.const 0) + ) + (loop $label$42 + (set_local $36 + (i32.const -1) + ) + (block $label$43 + (br_if $label$43 + (i32.gt_u + (get_local $17) + (i32.const 214748364) + ) + ) + (set_local $36 + (select + (i32.const -1) + (i32.add + (tee_local $17 + (i32.mul + (get_local $17) + (i32.const 10) + ) + ) + (get_local $31) + ) + (i32.gt_s + (get_local $31) + (i32.sub + (i32.const 2147483647) + (get_local $17) + ) + ) + ) + ) + ) + (set_local $16 + (i32.const 1) + ) + (set_local $17 + (get_local $36) + ) + (br_if $label$42 + (i32.lt_u + (tee_local $31 + (i32.add + (i32.load8_s + (tee_local $1 + (i32.add + (get_local $1) + (i32.const 1) + ) + ) + ) + (i32.const -48) + ) + ) + (i32.const 10) + ) + ) + (br $label$35) + ) + ) + (br_if $label$2 + (get_local $32) + ) + (set_local $1 + (i32.add + (get_local $17) + (i32.const 2) + ) + ) + (br_if $label$37 + (i32.eqz + (get_local $0) + ) + ) + (i32.store + (get_local $2) + (i32.add + (tee_local $17 + (i32.load + (get_local $2) + ) + ) + (i32.const 4) + ) + ) + (set_local $36 + (i32.load + (get_local $17) + ) + ) + (br $label$36) + ) + (set_local $16 + (i32.const 1) + ) + (set_local $36 + (i32.const 0) + ) + (br $label$35) + ) + (set_local $36 + (i32.const 0) + ) + ) + (set_local $16 + (i32.xor + (i32.shr_u + (get_local $36) + (i32.const 31) + ) + (i32.const 1) + ) + ) + ) + (loop $label$44 + (set_local $17 + (get_local $30) + ) + (br_if $label$2 + (i32.gt_u + (tee_local $30 + (i32.add + (i32.load8_s + (get_local $1) + ) + (i32.const -65) + ) + ) + (i32.const 57) + ) + ) + (set_local $1 + (i32.add + (get_local $1) + (i32.const 1) + ) + ) + (br_if $label$44 + (i32.lt_u + (i32.add + (tee_local $30 + (i32.load8_u + (i32.add + (i32.add + (i32.mul + (get_local $17) + (i32.const 58) + ) + (get_local $30) + ) + (i32.const 10000) + ) + ) + ) + (i32.const -1) + ) + (i32.const 8) + ) + ) + ) + (br_if $label$2 + (i32.eqz + (get_local $30) + ) + ) + (block $label$45 + (block $label$46 + (block $label$47 + (block $label$48 + (br_if $label$48 + (i32.ne + (get_local $30) + (i32.const 27) + ) + ) + (br_if $label$47 + (i32.le_s + (get_local $27) + (i32.const -1) + ) + ) + (br $label$2) + ) + (br_if $label$46 + (i32.lt_s + (get_local $27) + (i32.const 0) + ) + ) + (i32.store + (i32.add + (get_local $4) + (i32.shl + (get_local $27) + (i32.const 2) + ) + ) + (get_local $30) + ) + (i32.store offset=428 + (get_local $39) + (i32.load + (i32.add + (tee_local $30 + (i32.add + (get_local $3) + (i32.shl + (get_local $27) + (i32.const 4) + ) + ) + ) + (i32.const 12) + ) + ) + ) + (i32.store offset=424 + (get_local $39) + (i32.load + (i32.add + (get_local $30) + (i32.const 8) + ) + ) + ) + (i32.store offset=420 + (get_local $39) + (i32.load + (i32.add + (get_local $30) + (i32.const 4) + ) + ) + ) + (i32.store offset=416 + (get_local $39) + (i32.load + (get_local $30) + ) + ) + ) + (br_if $label$45 + (get_local $0) + ) + (set_local $30 + (i32.const 0) + ) + (br $label$23) + ) + (br_if $label$10 + (i32.eqz + (get_local $0) + ) + ) + (call $pop_arg + (i32.add + (get_local $39) + (i32.const 416) + ) + (get_local $30) + (get_local $2) + ) + ) + (set_local $18 + (select + (tee_local $31 + (i32.and + (get_local $14) + (i32.const -65537) + ) + ) + (get_local $14) + (i32.and + (get_local $14) + (i32.const 8192) + ) + ) + ) + (set_local $26 + (i32.const 0) + ) + (set_local $24 + (i32.const 10480) + ) + (block $label$49 + (block $label$50 + (block $label$51 + (block $label$52 + (block $label$53 + (block $label$54 + (block $label$55 + (block $label$56 + (block $label$57 + (block $label$58 + (block $label$59 + (block $label$60 + (block $label$61 + (block $label$62 + (block $label$63 + (block $label$64 + (block $label$65 + (block $label$66 + (block $label$67 + (block $label$68 + (block $label$69 + (block $label$70 + (block $label$71 + (block $label$72 + (block $label$73 + (block $label$74 + (block $label$75 + (block $label$76 + (block $label$77 + (block $label$78 + (block $label$79 + (br_if $label$79 + (i32.gt_u + (tee_local $30 + (i32.add + (tee_local $29 + (select + (select + (i32.and + (tee_local $30 + (i32.load8_s + (i32.add + (get_local $1) + (i32.const -1) + ) + ) + ) + (i32.const -33) + ) + (get_local $30) + (i32.eq + (i32.and + (get_local $30) + (i32.const 15) + ) + (i32.const 3) + ) + ) + (get_local $30) + (get_local $17) + ) + ) + (i32.const -65) + ) + ) + (i32.const 55) + ) + ) + (set_local $14 + (get_local $5) + ) + (block $label$80 + (block $label$81 + (block $label$82 + (block $label$83 + (block $label$84 + (block $label$85 + (block $label$86 + (block $label$87 + (block $label$88 + (block $label$89 + (block $label$90 + (block $label$91 + (block $label$92 + (block $label$93 + (block $label$94 + (block $label$95 + (block $label$96 + (block $label$97 + (block $label$98 + (block $label$99 + (block $label$100 + (block $label$101 + (block $label$102 + (block $label$103 + (block $label$104 + (block $label$105 + (block $label$106 + (block $label$107 + (block $label$108 + (block $label$109 + (block $label$110 + (br_table $label$110 $label$78 $label$106 $label$78 $label$110 $label$110 $label$110 $label$78 $label$78 $label$78 $label$78 $label$78 $label$78 $label$78 $label$78 $label$78 $label$78 $label$78 $label$105 $label$78 $label$78 $label$78 $label$78 $label$98 $label$78 $label$78 $label$78 $label$78 $label$78 $label$78 $label$78 $label$78 $label$110 $label$78 $label$103 $label$109 $label$110 $label$110 $label$110 $label$78 $label$109 $label$78 $label$78 $label$78 $label$102 $label$101 $label$100 $label$99 $label$78 $label$78 $label$97 $label$78 $label$95 $label$78 $label$78 $label$98 $label$110 + (get_local $30) + ) + ) + (block $label$111 + (br_if $label$111 + (i32.gt_s + (get_local $36) + (i32.const -1) + ) + ) + (br_if $label$14 + (get_local $16) + ) + ) + (set_local $35 + (i64.load offset=424 + (get_local $39) + ) + ) + (set_local $23 + (i64.load offset=416 + (get_local $39) + ) + ) + (i32.store offset=748 + (get_local $39) + (i32.const 0) + ) + (block $label$112 + (br_if $label$112 + (i32.eqz + (call $__signbitl + (get_local $23) + (get_local $35) + ) + ) + ) + (set_local $35 + (i64.xor + (get_local $35) + (i64.const -9223372036854775808) + ) + ) + (set_local $20 + (i32.const 1) + ) + (set_local $19 + (i32.const 10512) + ) + (br $label$107) + ) + (br_if $label$108 + (i32.and + (get_local $18) + (i32.const 2048) + ) + ) + (set_local $19 + (select + (i32.const 10518) + (i32.const 10513) + (tee_local $20 + (i32.and + (get_local $18) + (i32.const 1) + ) + ) + ) + ) + (br $label$107) + ) + (br_if $label$91 + (i64.le_s + (tee_local $35 + (i64.load offset=416 + (get_local $39) + ) + ) + (i64.const -1) + ) + ) + (br_if $label$87 + (i32.and + (get_local $18) + (i32.const 2048) + ) + ) + (set_local $24 + (select + (i32.const 10482) + (i32.const 10480) + (tee_local $26 + (i32.and + (get_local $18) + (i32.const 1) + ) + ) + ) + ) + (br_if $label$86 + (i64.ge_u + (get_local $35) + (i64.const 4294967296) + ) + ) + (br $label$85) + ) + (set_local $20 + (i32.const 1) + ) + (set_local $19 + (i32.const 10515) + ) + ) + (block $label$113 + (block $label$114 + (br_if $label$114 + (i32.le_s + (call $__fpclassifyl + (get_local $23) + (get_local $35) + ) + (i32.const 1) + ) + ) + (call $frexpl + (i32.add + (get_local $39) + (i32.const 320) + ) + (get_local $23) + (get_local $35) + (i32.add + (get_local $39) + (i32.const 748) + ) + ) + (call $__addtf3 + (i32.add + (get_local $39) + (i32.const 304) + ) + (tee_local $35 + (i64.load offset=320 + (get_local $39) + ) + ) + (tee_local $23 + (i64.load offset=328 + (get_local $39) + ) + ) + (get_local $35) + (get_local $23) + ) + (block $label$115 + (br_if $label$115 + (i32.eqz + (call $__eqtf2 + (tee_local $35 + (i64.load offset=304 + (get_local $39) + ) + ) + (tee_local $23 + (i64.load + (i32.add + (i32.add + (get_local $39) + (i32.const 304) + ) + (i32.const 8) + ) + ) + ) + (i64.const 0) + (i64.const 0) + ) + ) + ) + (i32.store offset=748 + (get_local $39) + (i32.add + (i32.load offset=748 + (get_local $39) + ) + (i32.const -1) + ) + ) + ) + (br_if $label$113 + (i32.ne + (tee_local $21 + (i32.or + (get_local $29) + (i32.const 32) + ) + ) + (i32.const 97) + ) + ) + (set_local $24 + (select + (i32.add + (get_local $19) + (i32.const 9) + ) + (get_local $19) + (tee_local $37 + (i32.and + (get_local $29) + (i32.const 32) + ) + ) + ) + ) + (br_if $label$76 + (i32.gt_u + (get_local $36) + (i32.const 26) + ) + ) + (br_if $label$76 + (i32.eqz + (i32.sub + (i32.const 27) + (get_local $36) + ) + ) + ) + (set_local $30 + (i32.add + (get_local $36) + (i32.const -27) + ) + ) + (set_local $34 + (i64.const 4612248968380809216) + ) + (set_local $33 + (i64.const 0) + ) + (loop $label$116 + (call $__multf3 + (i32.add + (get_local $39) + (i32.const 208) + ) + (get_local $33) + (get_local $34) + (i64.const 0) + (i64.const 4612530443357519872) + ) + (set_local $34 + (i64.load + (i32.add + (i32.add + (get_local $39) + (i32.const 208) + ) + (i32.const 8) + ) + ) + ) + (set_local $33 + (i64.load offset=208 + (get_local $39) + ) + ) + (br_if $label$116 + (tee_local $30 + (i32.add + (get_local $30) + (i32.const 1) + ) + ) + ) + ) + (br_if $label$77 + (i32.ne + (i32.load8_u + (get_local $24) + ) + (i32.const 45) + ) + ) + (call $__subtf3 + (i32.add + (get_local $39) + (i32.const 160) + ) + (get_local $35) + (i64.xor + (get_local $23) + (i64.const -9223372036854775808) + ) + (get_local $33) + (get_local $34) + ) + (call $__addtf3 + (i32.add + (get_local $39) + (i32.const 144) + ) + (get_local $33) + (get_local $34) + (i64.load offset=160 + (get_local $39) + ) + (i64.load + (i32.add + (i32.add + (get_local $39) + (i32.const 160) + ) + (i32.const 8) + ) + ) + ) + (set_local $23 + (i64.xor + (i64.load + (i32.add + (i32.add + (get_local $39) + (i32.const 144) + ) + (i32.const 8) + ) + ) + (i64.const -9223372036854775808) + ) + ) + (set_local $35 + (i64.load offset=144 + (get_local $39) + ) + ) + (br $label$76) + ) + (set_local $16 + (call $__unordtf2 + (get_local $23) + (get_local $35) + (get_local $23) + (get_local $35) + ) + ) + (set_local $37 + (i32.add + (get_local $20) + (i32.const 3) + ) + ) + (br_if $label$92 + (i32.and + (get_local $18) + (i32.const 8192) + ) + ) + (br_if $label$92 + (i32.le_s + (get_local $15) + (get_local $37) + ) + ) + (drop + (call $memset + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 32) + (select + (tee_local $31 + (i32.sub + (get_local $15) + (get_local $37) + ) + ) + (i32.const 256) + (tee_local $30 + (i32.lt_u + (get_local $31) + (i32.const 256) + ) + ) + ) + ) + ) + (set_local $17 + (i32.and + (tee_local $36 + (i32.load + (get_local $0) + ) + ) + (i32.const 32) + ) + ) + (br_if $label$94 + (get_local $30) + ) + (set_local $30 + (i32.eqz + (get_local $17) + ) + ) + (set_local $17 + (get_local $31) + ) + (loop $label$117 + (block $label$118 + (br_if $label$118 + (i32.eqz + (i32.and + (get_local $30) + (i32.const 1) + ) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 256) + (get_local $0) + ) + ) + (set_local $36 + (i32.load + (get_local $0) + ) + ) + ) + (set_local $30 + (i32.eqz + (tee_local $14 + (i32.and + (get_local $36) + (i32.const 32) + ) + ) + ) + ) + (br_if $label$117 + (i32.gt_u + (tee_local $17 + (i32.add + (get_local $17) + (i32.const -256) + ) + ) + (i32.const 255) + ) + ) + ) + (br_if $label$92 + (get_local $14) + ) + (set_local $31 + (i32.and + (get_local $31) + (i32.const 255) + ) + ) + (br $label$93) + ) + (set_local $30 + (i32.lt_s + (get_local $36) + (i32.const 0) + ) + ) + (br_if $label$89 + (i32.eqz + (call $__netf2 + (get_local $35) + (get_local $23) + (i64.const 0) + (i64.const 0) + ) + ) + ) + (call $__multf3 + (i32.add + (get_local $39) + (i32.const 288) + ) + (get_local $35) + (get_local $23) + (i64.const 0) + (i64.const 4619285842798575616) + ) + (i32.store offset=748 + (get_local $39) + (tee_local $31 + (i32.add + (i32.load offset=748 + (get_local $39) + ) + (i32.const -28) + ) + ) + ) + (set_local $23 + (i64.load + (i32.add + (i32.add + (get_local $39) + (i32.const 288) + ) + (i32.const 8) + ) + ) + ) + (set_local $35 + (i64.load offset=288 + (get_local $39) + ) + ) + (br $label$88) + ) + (set_local $35 + (i64.load offset=416 + (get_local $39) + ) + ) + (i32.store + (i32.add + (i32.add + (get_local $39) + (i32.const 344) + ) + (i32.const 4) + ) + (i32.const 0) + ) + (i64.store32 offset=344 + (get_local $39) + (get_local $35) + ) + (i32.store offset=416 + (get_local $39) + (i32.add + (get_local $39) + (i32.const 344) + ) + ) + (set_local $36 + (i32.const -1) + ) + (set_local $37 + (i32.add + (get_local $39) + (i32.const 344) + ) + ) + (br $label$104) + ) + (set_local $37 + (i32.load offset=416 + (get_local $39) + ) + ) + (br_if $label$73 + (i32.eqz + (get_local $36) + ) + ) + ) + (set_local $30 + (i32.const 0) + ) + (set_local $14 + (get_local $37) + ) + (set_local $17 + (i32.const 0) + ) + (block $label$119 + (loop $label$120 + (br_if $label$119 + (i32.eqz + (tee_local $31 + (i32.load + (get_local $14) + ) + ) + ) + ) + (br_if $label$119 + (i32.lt_s + (tee_local $17 + (call $wctomb + (i32.add + (get_local $39) + (i32.const 340) + ) + (get_local $31) + ) + ) + (i32.const 0) + ) + ) + (br_if $label$119 + (i32.gt_u + (get_local $17) + (i32.sub + (get_local $36) + (get_local $30) + ) + ) + ) + (set_local $14 + (i32.add + (get_local $14) + (i32.const 4) + ) + ) + (br_if $label$120 + (i32.gt_u + (get_local $36) + (tee_local $30 + (i32.add + (get_local $17) + (get_local $30) + ) + ) + ) + ) + ) + ) + (br_if $label$1 + (i32.lt_s + (get_local $17) + (i32.const 0) + ) + ) + (br_if $label$14 + (i32.lt_s + (get_local $30) + (i32.const 0) + ) + ) + (br_if $label$71 + (tee_local $16 + (i32.and + (get_local $18) + (i32.const 73728) + ) + ) + ) + (br $label$72) + ) + (i64.store8 + (i32.add + (i32.add + (get_local $39) + (i32.const 352) + ) + (i32.const 54) + ) + (i64.load offset=416 + (get_local $39) + ) + ) + (set_local $36 + (i32.const 1) + ) + (set_local $37 + (get_local $6) + ) + (set_local $14 + (get_local $5) + ) + (set_local $18 + (get_local $31) + ) + (br $label$78) + ) + (set_local $37 + (call $strerror + (i32.load + (call $__errno_location) + ) + ) + ) + (br $label$96) + ) + (br_if $label$55 + (i32.gt_u + (tee_local $30 + (i32.and + (get_local $17) + (i32.const 255) + ) + ) + (i32.const 7) + ) + ) + (block $label$121 + (br_table $label$121 $label$59 $label$58 $label$57 $label$56 $label$55 $label$54 $label$53 $label$121 + (get_local $30) + ) + ) + (i32.store + (i32.load offset=416 + (get_local $39) + ) + (get_local $38) + ) + (set_local $30 + (i32.const 0) + ) + (br $label$23) + ) + (set_local $37 + (get_local $5) + ) + (block $label$122 + (br_if $label$122 + (i64.eqz + (tee_local $35 + (i64.load offset=416 + (get_local $39) + ) + ) + ) + ) + (set_local $37 + (get_local $5) + ) + (loop $label$123 + (i64.store8 + (tee_local $37 + (i32.add + (get_local $37) + (i32.const -1) + ) + ) + (i64.or + (i64.and + (get_local $35) + (i64.const 7) + ) + (i64.const 48) + ) + ) + (br_if $label$123 + (i64.ne + (tee_local $35 + (i64.shr_u + (get_local $35) + (i64.const 3) + ) + ) + (i64.const 0) + ) + ) + ) + ) + (br_if $label$83 + (i32.and + (get_local $18) + (i32.const 8) + ) + ) + (set_local $26 + (i32.const 0) + ) + (set_local $24 + (i32.const 10480) + ) + (br_if $label$81 + (get_local $16) + ) + (br $label$80) + ) + (set_local $36 + (select + (get_local $36) + (i32.const 8) + (i32.gt_u + (get_local $36) + (i32.const 8) + ) + ) + ) + (set_local $18 + (i32.or + (get_local $18) + (i32.const 8) + ) + ) + (set_local $29 + (i32.const 120) + ) + ) + (set_local $26 + (i32.const 0) + ) + (set_local $24 + (i32.const 10480) + ) + (block $label$124 + (br_if $label$124 + (i64.eqz + (tee_local $35 + (i64.load offset=416 + (get_local $39) + ) + ) + ) + ) + (set_local $30 + (i32.and + (get_local $29) + (i32.const 32) + ) + ) + (set_local $37 + (get_local $5) + ) + (loop $label$125 + (i32.store8 + (tee_local $37 + (i32.add + (get_local $37) + (i32.const -1) + ) + ) + (i32.or + (i32.load8_u + (i32.add + (i32.and + (i32.wrap/i64 + (get_local $35) + ) + (i32.const 15) + ) + (i32.const 10464) + ) + ) + (get_local $30) + ) + ) + (br_if $label$125 + (i64.ne + (tee_local $35 + (i64.shr_u + (get_local $35) + (i64.const 4) + ) + ) + (i64.const 0) + ) + ) + ) + (br_if $label$82 + (i32.eqz + (i32.and + (get_local $18) + (i32.const 8) + ) + ) + ) + (br_if $label$82 + (i64.eqz + (i64.load offset=416 + (get_local $39) + ) + ) + ) + (set_local $24 + (i32.add + (i32.shr_s + (get_local $29) + (i32.const 4) + ) + (i32.const 10480) + ) + ) + (set_local $26 + (i32.const 2) + ) + (br_if $label$81 + (get_local $16) + ) + (br $label$80) + ) + (set_local $37 + (get_local $5) + ) + (br_if $label$81 + (get_local $16) + ) + (br $label$80) + ) + (set_local $37 + (select + (tee_local $30 + (i32.load offset=416 + (get_local $39) + ) + ) + (i32.const 10496) + (get_local $30) + ) + ) + ) + (set_local $26 + (i32.const 0) + ) + (set_local $14 + (i32.add + (get_local $37) + (tee_local $30 + (call $strnlen + (get_local $37) + (select + (i32.const 2147483647) + (get_local $36) + (i32.lt_s + (get_local $36) + (i32.const 0) + ) + ) + ) + ) + ) + ) + (br_if $label$90 + (i32.le_s + (get_local $36) + (i32.const -1) + ) + ) + (set_local $18 + (get_local $31) + ) + (set_local $36 + (get_local $30) + ) + (br $label$78) + ) + (set_local $26 + (i32.const 0) + ) + (set_local $24 + (i32.const 10480) + ) + (br_if $label$86 + (i64.ge_u + (tee_local $35 + (i64.load offset=416 + (get_local $39) + ) + ) + (i64.const 4294967296) + ) + ) + (br $label$85) + ) + (br_if $label$92 + (get_local $17) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (get_local $31) + (get_local $0) + ) + ) + ) + (block $label$126 + (br_if $label$126 + (i32.and + (tee_local $30 + (i32.load + (get_local $0) + ) + ) + (i32.const 32) + ) + ) + (drop + (call $__fwritex + (get_local $19) + (get_local $20) + (get_local $0) + ) + ) + (set_local $30 + (i32.load + (get_local $0) + ) + ) + ) + (block $label$127 + (br_if $label$127 + (i32.and + (get_local $30) + (i32.const 32) + ) + ) + (drop + (call $__fwritex + (select + (select + (i32.const 10576) + (i32.const 10592) + (tee_local $30 + (i32.shr_u + (i32.and + (get_local $29) + (i32.const 32) + ) + (i32.const 5) + ) + ) + ) + (select + (i32.const 10544) + (i32.const 10560) + (get_local $30) + ) + (get_local $16) + ) + (i32.const 3) + (get_local $0) + ) + ) + ) + (block $label$128 + (br_if $label$128 + (i32.ne + (i32.and + (get_local $18) + (i32.const 73728) + ) + (i32.const 8192) + ) + ) + (br_if $label$128 + (i32.le_s + (get_local $15) + (get_local $37) + ) + ) + (drop + (call $memset + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 32) + (select + (tee_local $31 + (i32.sub + (get_local $15) + (get_local $37) + ) + ) + (i32.const 256) + (tee_local $30 + (i32.lt_u + (get_local $31) + (i32.const 256) + ) + ) + ) + ) + ) + (set_local $17 + (i32.and + (tee_local $36 + (i32.load + (get_local $0) + ) + ) + (i32.const 32) + ) + ) + (block $label$129 + (block $label$130 + (br_if $label$130 + (get_local $30) + ) + (set_local $30 + (i32.eqz + (get_local $17) + ) + ) + (set_local $17 + (get_local $31) + ) + (loop $label$131 + (block $label$132 + (br_if $label$132 + (i32.eqz + (i32.and + (get_local $30) + (i32.const 1) + ) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 256) + (get_local $0) + ) + ) + (set_local $36 + (i32.load + (get_local $0) + ) + ) + ) + (set_local $30 + (i32.eqz + (tee_local $14 + (i32.and + (get_local $36) + (i32.const 32) + ) + ) + ) + ) + (br_if $label$131 + (i32.gt_u + (tee_local $17 + (i32.add + (get_local $17) + (i32.const -256) + ) + ) + (i32.const 255) + ) + ) + ) + (br_if $label$128 + (get_local $14) + ) + (set_local $31 + (i32.and + (get_local $31) + (i32.const 255) + ) + ) + (br $label$129) + ) + (br_if $label$128 + (get_local $17) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (get_local $31) + (get_local $0) + ) + ) + ) + (set_local $30 + (select + (get_local $15) + (get_local $37) + (i32.gt_s + (get_local $15) + (get_local $37) + ) + ) + ) + (br $label$49) + ) + (i64.store offset=416 + (get_local $39) + (tee_local $35 + (i64.sub + (i64.const 0) + (get_local $35) + ) + ) + ) + (set_local $26 + (i32.const 1) + ) + (set_local $24 + (i32.const 10480) + ) + (br_if $label$86 + (i64.ge_u + (get_local $35) + (i64.const 4294967296) + ) + ) + (br $label$85) + ) + (set_local $18 + (get_local $31) + ) + (set_local $36 + (get_local $30) + ) + (br_if $label$78 + (i32.eqz + (i32.load8_u + (get_local $14) + ) + ) + ) + (br $label$14) + ) + (set_local $31 + (i32.load offset=748 + (get_local $39) + ) + ) + ) + (set_local $28 + (select + (i32.const 6) + (get_local $36) + (get_local $30) + ) + ) + (set_local $36 + (tee_local $22 + (select + (i32.add + (get_local $39) + (i32.const 752) + ) + (get_local $9) + (i32.lt_s + (get_local $31) + (i32.const 0) + ) + ) + ) + ) + (loop $label$133 + (call $__floatunsitf + (i32.add + (get_local $39) + (i32.const 272) + ) + (tee_local $30 + (call $__fixunstfsi + (get_local $35) + (get_local $23) + ) + ) + ) + (call $__subtf3 + (i32.add + (get_local $39) + (i32.const 256) + ) + (get_local $35) + (get_local $23) + (i64.load offset=272 + (get_local $39) + ) + (i64.load + (i32.add + (i32.add + (get_local $39) + (i32.const 272) + ) + (i32.const 8) + ) + ) + ) + (call $__multf3 + (i32.add + (get_local $39) + (i32.const 240) + ) + (i64.load offset=256 + (get_local $39) + ) + (i64.load + (i32.add + (i32.add + (get_local $39) + (i32.const 256) + ) + (i32.const 8) + ) + ) + (i64.const 0) + (i64.const 4619810130798575616) + ) + (i32.store + (get_local $36) + (get_local $30) + ) + (set_local $36 + (i32.add + (get_local $36) + (i32.const 4) + ) + ) + (br_if $label$133 + (call $__netf2 + (tee_local $35 + (i64.load offset=240 + (get_local $39) + ) + ) + (tee_local $23 + (i64.load + (i32.add + (i32.add + (get_local $39) + (i32.const 240) + ) + (i32.const 8) + ) + ) + ) + (i64.const 0) + (i64.const 0) + ) + ) + ) + (block $label$134 + (block $label$135 + (block $label$136 + (br_if $label$136 + (i32.lt_s + (get_local $31) + (i32.const 1) + ) + ) + (set_local $17 + (get_local $22) + ) + (loop $label$137 + (set_local $14 + (select + (get_local $31) + (i32.const 29) + (i32.lt_s + (get_local $31) + (i32.const 29) + ) + ) + ) + (block $label$138 + (br_if $label$138 + (i32.lt_u + (tee_local $30 + (i32.add + (get_local $36) + (i32.const -4) + ) + ) + (get_local $17) + ) + ) + (set_local $23 + (i64.extend_u/i32 + (get_local $14) + ) + ) + (set_local $35 + (i64.const 0) + ) + (loop $label$139 + (i64.store32 + (get_local $30) + (i64.rem_u + (tee_local $35 + (i64.add + (i64.shl + (i64.load32_u + (get_local $30) + ) + (get_local $23) + ) + (i64.and + (get_local $35) + (i64.const 4294967295) + ) + ) + ) + (i64.const 1000000000) + ) + ) + (set_local $35 + (i64.div_u + (get_local $35) + (i64.const 1000000000) + ) + ) + (br_if $label$139 + (i32.ge_u + (tee_local $30 + (i32.add + (get_local $30) + (i32.const -4) + ) + ) + (get_local $17) + ) + ) + ) + (br_if $label$138 + (i32.eqz + (tee_local $30 + (i32.wrap/i64 + (get_local $35) + ) + ) + ) + ) + (i32.store + (tee_local $17 + (i32.add + (get_local $17) + (i32.const -4) + ) + ) + (get_local $30) + ) + ) + (block $label$140 + (loop $label$141 + (br_if $label$140 + (i32.le_u + (tee_local $30 + (get_local $36) + ) + (get_local $17) + ) + ) + (br_if $label$141 + (i32.eqz + (i32.load + (tee_local $36 + (i32.add + (get_local $30) + (i32.const -4) + ) + ) + ) + ) + ) + ) + ) + (set_local $36 + (get_local $30) + ) + (br_if $label$137 + (i32.gt_s + (tee_local $31 + (i32.sub + (get_local $31) + (get_local $14) + ) + ) + (i32.const 0) + ) + ) + ) + (i32.store offset=748 + (get_local $39) + (get_local $31) + ) + (br_if $label$134 + (i32.gt_s + (get_local $31) + (i32.const -1) + ) + ) + (br $label$135) + ) + (set_local $30 + (get_local $36) + ) + (set_local $17 + (get_local $22) + ) + (br_if $label$134 + (i32.gt_s + (get_local $31) + (i32.const -1) + ) + ) + ) + (set_local $24 + (i32.add + (i32.div_u + (i32.add + (get_local $28) + (i32.const 45) + ) + (i32.const 9) + ) + (i32.const 1) + ) + ) + (block $label$142 + (block $label$143 + (br_if $label$143 + (i32.ne + (get_local $21) + (i32.const 102) + ) + ) + (set_local $25 + (i32.add + (get_local $22) + (i32.shl + (get_local $24) + (i32.const 2) + ) + ) + ) + (loop $label$144 + (set_local $16 + (select + (tee_local $36 + (i32.sub + (i32.const 0) + (get_local $31) + ) + ) + (i32.const 9) + (i32.lt_s + (get_local $36) + (i32.const 9) + ) + ) + ) + (block $label$145 + (block $label$146 + (br_if $label$146 + (i32.ge_u + (get_local $17) + (get_local $30) + ) + ) + (set_local $27 + (i32.shr_u + (i32.const 1000000000) + (get_local $16) + ) + ) + (set_local $26 + (i32.add + (i32.shl + (i32.const 1) + (get_local $16) + ) + (i32.const -1) + ) + ) + (set_local $14 + (i32.const 0) + ) + (set_local $36 + (get_local $17) + ) + (loop $label$147 + (i32.store + (get_local $36) + (i32.add + (i32.shr_u + (tee_local $37 + (i32.load + (get_local $36) + ) + ) + (get_local $16) + ) + (get_local $14) + ) + ) + (set_local $14 + (i32.mul + (i32.and + (get_local $37) + (get_local $26) + ) + (get_local $27) + ) + ) + (br_if $label$147 + (i32.lt_u + (tee_local $36 + (i32.add + (get_local $36) + (i32.const 4) + ) + ) + (get_local $30) + ) + ) + ) + (set_local $17 + (select + (get_local $17) + (i32.add + (get_local $17) + (i32.const 4) + ) + (i32.load + (get_local $17) + ) + ) + ) + (br_if $label$145 + (i32.eqz + (get_local $14) + ) + ) + (i32.store + (get_local $30) + (get_local $14) + ) + (set_local $30 + (i32.add + (get_local $30) + (i32.const 4) + ) + ) + (br $label$145) + ) + (set_local $17 + (select + (get_local $17) + (i32.add + (get_local $17) + (i32.const 4) + ) + (i32.load + (get_local $17) + ) + ) + ) + ) + (set_local $30 + (select + (get_local $25) + (get_local $30) + (i32.gt_s + (i32.shr_s + (i32.sub + (get_local $30) + (get_local $22) + ) + (i32.const 2) + ) + (get_local $24) + ) + ) + ) + (br_if $label$144 + (i32.lt_s + (tee_local $31 + (i32.add + (get_local $16) + (get_local $31) + ) + ) + (i32.const 0) + ) + ) + (br $label$142) + ) + ) + (loop $label$148 + (set_local $16 + (select + (tee_local $36 + (i32.sub + (i32.const 0) + (get_local $31) + ) + ) + (i32.const 9) + (i32.lt_s + (get_local $36) + (i32.const 9) + ) + ) + ) + (block $label$149 + (block $label$150 + (br_if $label$150 + (i32.ge_u + (get_local $17) + (get_local $30) + ) + ) + (set_local $27 + (i32.shr_u + (i32.const 1000000000) + (get_local $16) + ) + ) + (set_local $26 + (i32.add + (i32.shl + (i32.const 1) + (get_local $16) + ) + (i32.const -1) + ) + ) + (set_local $14 + (i32.const 0) + ) + (set_local $36 + (get_local $17) + ) + (loop $label$151 + (i32.store + (get_local $36) + (i32.add + (i32.shr_u + (tee_local $37 + (i32.load + (get_local $36) + ) + ) + (get_local $16) + ) + (get_local $14) + ) + ) + (set_local $14 + (i32.mul + (i32.and + (get_local $37) + (get_local $26) + ) + (get_local $27) + ) + ) + (br_if $label$151 + (i32.lt_u + (tee_local $36 + (i32.add + (get_local $36) + (i32.const 4) + ) + ) + (get_local $30) + ) + ) + ) + (set_local $17 + (select + (get_local $17) + (i32.add + (get_local $17) + (i32.const 4) + ) + (i32.load + (get_local $17) + ) + ) + ) + (br_if $label$149 + (i32.eqz + (get_local $14) + ) + ) + (i32.store + (get_local $30) + (get_local $14) + ) + (set_local $30 + (i32.add + (get_local $30) + (i32.const 4) + ) + ) + (br $label$149) + ) + (set_local $17 + (select + (get_local $17) + (i32.add + (get_local $17) + (i32.const 4) + ) + (i32.load + (get_local $17) + ) + ) + ) + ) + (set_local $30 + (select + (i32.add + (get_local $17) + (i32.shl + (get_local $24) + (i32.const 2) + ) + ) + (get_local $30) + (i32.gt_s + (i32.shr_s + (i32.sub + (get_local $30) + (get_local $17) + ) + (i32.const 2) + ) + (get_local $24) + ) + ) + ) + (br_if $label$148 + (i32.lt_s + (tee_local $31 + (i32.add + (get_local $16) + (get_local $31) + ) + ) + (i32.const 0) + ) + ) + ) + ) + (i32.store offset=748 + (get_local $39) + (get_local $31) + ) + ) + (set_local $36 + (i32.const 0) + ) + (block $label$152 + (br_if $label$152 + (i32.ge_u + (get_local $17) + (get_local $30) + ) + ) + (set_local $36 + (i32.mul + (i32.shr_s + (i32.sub + (get_local $22) + (get_local $17) + ) + (i32.const 2) + ) + (i32.const 9) + ) + ) + (br_if $label$152 + (i32.lt_u + (tee_local $37 + (i32.load + (get_local $17) + ) + ) + (i32.const 10) + ) + ) + (set_local $14 + (i32.const 10) + ) + (loop $label$153 + (set_local $36 + (i32.add + (get_local $36) + (i32.const 1) + ) + ) + (br_if $label$153 + (i32.ge_u + (get_local $37) + (tee_local $14 + (i32.mul + (get_local $14) + (i32.const 10) + ) + ) + ) + ) + ) + ) + (block $label$154 + (br_if $label$154 + (i32.ge_s + (tee_local $14 + (i32.sub + (i32.sub + (get_local $28) + (select + (get_local $36) + (i32.const 0) + (i32.ne + (get_local $21) + (i32.const 102) + ) + ) + ) + (i32.and + (i32.ne + (get_local $28) + (i32.const 0) + ) + (tee_local $16 + (i32.eq + (get_local $21) + (i32.const 103) + ) + ) + ) + ) + ) + (i32.add + (i32.mul + (i32.shr_s + (i32.sub + (get_local $30) + (get_local $22) + ) + (i32.const 2) + ) + (i32.const 9) + ) + (i32.const -9) + ) + ) + ) + (set_local $31 + (i32.add + (tee_local $24 + (i32.add + (get_local $22) + (i32.shl + (i32.div_s + (tee_local $37 + (i32.add + (get_local $14) + (i32.const 147456) + ) + ) + (i32.const 9) + ) + (i32.const 2) + ) + ) + ) + (i32.const -65532) + ) + ) + (set_local $14 + (i32.const 10) + ) + (block $label$155 + (br_if $label$155 + (i32.gt_s + (i32.add + (tee_local $37 + (i32.rem_s + (get_local $37) + (i32.const 9) + ) + ) + (i32.const 1) + ) + (i32.const 8) + ) + ) + (set_local $37 + (i32.sub + (i32.const 8) + (get_local $37) + ) + ) + (set_local $14 + (i32.const 10) + ) + (loop $label$156 + (set_local $14 + (i32.mul + (get_local $14) + (i32.const 10) + ) + ) + (br_if $label$156 + (tee_local $37 + (i32.add + (get_local $37) + (i32.const -1) + ) + ) + ) + ) + ) + (set_local $37 + (i32.rem_u + (tee_local $27 + (i32.load + (get_local $31) + ) + ) + (get_local $14) + ) + ) + (block $label$157 + (block $label$158 + (br_if $label$158 + (i32.ne + (tee_local $26 + (i32.add + (get_local $31) + (i32.const 4) + ) + ) + (get_local $30) + ) + ) + (br_if $label$157 + (i32.eqz + (get_local $37) + ) + ) + ) + (block $label$159 + (block $label$160 + (br_if $label$160 + (i32.and + (i32.div_u + (get_local $27) + (get_local $14) + ) + (i32.const 1) + ) + ) + (set_local $35 + (i64.const 4643211215818981376) + ) + (set_local $23 + (i64.const 0) + ) + (br_if $label$159 + (i32.le_u + (get_local $31) + (get_local $17) + ) + ) + (br_if $label$159 + (i32.ne + (get_local $14) + (i32.const 1000000000) + ) + ) + (br_if $label$159 + (i32.eqz + (i32.and + (i32.load8_u + (i32.add + (get_local $31) + (i32.const -4) + ) + ) + (i32.const 1) + ) + ) + ) + ) + (set_local $35 + (i64.const 4643211215818981376) + ) + (set_local $23 + (i64.const 1) + ) + ) + (set_local $34 + (i64.const 4611123068473966592) + ) + (block $label$161 + (br_if $label$161 + (i32.lt_u + (get_local $37) + (tee_local $25 + (i32.div_s + (get_local $14) + (i32.const 2) + ) + ) + ) + ) + (set_local $34 + (select + (select + (i64.const 4611404543450677248) + (i64.const 4611545280939032576) + (i32.eq + (get_local $37) + (get_local $25) + ) + ) + (i64.const 4611545280939032576) + (i32.eq + (get_local $26) + (get_local $30) + ) + ) + ) + ) + (block $label$162 + (br_if $label$162 + (i32.eqz + (get_local $20) + ) + ) + (br_if $label$162 + (i32.ne + (i32.load8_u + (get_local $19) + ) + (i32.const 45) + ) + ) + (set_local $34 + (i64.xor + (get_local $34) + (i64.const -9223372036854775808) + ) + ) + (set_local $35 + (i64.xor + (get_local $35) + (i64.const -9223372036854775808) + ) + ) + ) + (call $__addtf3 + (i32.add + (get_local $39) + (i32.const 224) + ) + (get_local $23) + (get_local $35) + (i64.const 0) + (get_local $34) + ) + (i32.store + (get_local $31) + (tee_local $37 + (i32.sub + (get_local $27) + (get_local $37) + ) + ) + ) + (br_if $label$157 + (i32.eqz + (call $__eqtf2 + (i64.load offset=224 + (get_local $39) + ) + (i64.load + (i32.add + (i32.add + (get_local $39) + (i32.const 224) + ) + (i32.const 8) + ) + ) + (get_local $23) + (get_local $35) + ) + ) + ) + (i32.store + (get_local $31) + (tee_local $36 + (i32.add + (get_local $37) + (get_local $14) + ) + ) + ) + (block $label$163 + (br_if $label$163 + (i32.lt_u + (get_local $36) + (i32.const 1000000000) + ) + ) + (set_local $36 + (i32.add + (get_local $24) + (i32.const -65536) + ) + ) + (loop $label$164 + (i32.store + (i32.add + (get_local $36) + (i32.const 4) + ) + (i32.const 0) + ) + (block $label$165 + (br_if $label$165 + (i32.ge_u + (get_local $36) + (get_local $17) + ) + ) + (i32.store + (tee_local $17 + (i32.add + (get_local $17) + (i32.const -4) + ) + ) + (i32.const 0) + ) + ) + (i32.store + (get_local $36) + (tee_local $14 + (i32.add + (i32.load + (get_local $36) + ) + (i32.const 1) + ) + ) + ) + (set_local $36 + (i32.add + (get_local $36) + (i32.const -4) + ) + ) + (br_if $label$164 + (i32.gt_u + (get_local $14) + (i32.const 999999999) + ) + ) + ) + (set_local $31 + (i32.add + (get_local $36) + (i32.const 4) + ) + ) + ) + (set_local $36 + (i32.mul + (i32.shr_s + (i32.sub + (get_local $22) + (get_local $17) + ) + (i32.const 2) + ) + (i32.const 9) + ) + ) + (br_if $label$157 + (i32.lt_u + (tee_local $37 + (i32.load + (get_local $17) + ) + ) + (i32.const 10) + ) + ) + (set_local $14 + (i32.const 10) + ) + (loop $label$166 + (set_local $36 + (i32.add + (get_local $36) + (i32.const 1) + ) + ) + (br_if $label$166 + (i32.ge_u + (get_local $37) + (tee_local $14 + (i32.mul + (get_local $14) + (i32.const 10) + ) + ) + ) + ) + ) + ) + (set_local $30 + (select + (tee_local $14 + (i32.add + (get_local $31) + (i32.const 4) + ) + ) + (get_local $30) + (i32.gt_u + (get_local $30) + (get_local $14) + ) + ) + ) + ) + (set_local $31 + (i32.sub + (i32.const 0) + (get_local $36) + ) + ) + (block $label$167 + (block $label$168 + (block $label$169 + (loop $label$170 + (br_if $label$169 + (i32.le_u + (tee_local $14 + (get_local $30) + ) + (get_local $17) + ) + ) + (br_if $label$170 + (i32.eqz + (i32.load + (tee_local $30 + (i32.add + (get_local $14) + (i32.const -4) + ) + ) + ) + ) + ) + ) + (set_local $27 + (i32.const 1) + ) + (br_if $label$168 + (get_local $16) + ) + (br $label$167) + ) + (set_local $27 + (i32.const 0) + ) + (br_if $label$167 + (i32.eqz + (get_local $16) + ) + ) + ) + (br_if $label$75 + (i32.le_s + (tee_local $30 + (i32.add + (i32.eqz + (get_local $28) + ) + (get_local $28) + ) + ) + (get_local $36) + ) + ) + (br_if $label$75 + (i32.lt_s + (get_local $36) + (i32.const -4) + ) + ) + (set_local $29 + (i32.add + (get_local $29) + (i32.const -1) + ) + ) + (set_local $28 + (i32.sub + (i32.add + (get_local $30) + (i32.const -1) + ) + (get_local $36) + ) + ) + (br_if $label$74 + (i32.eqz + (tee_local $16 + (i32.and + (get_local $18) + (i32.const 8) + ) + ) + ) + ) + (br $label$67) + ) + (set_local $16 + (i32.and + (get_local $18) + (i32.const 8) + ) + ) + (br $label$67) + ) + (set_local $26 + (i32.const 1) + ) + (set_local $24 + (i32.const 10481) + ) + (br_if $label$85 + (i64.lt_u + (get_local $35) + (i64.const 4294967296) + ) + ) + ) + (set_local $37 + (get_local $5) + ) + (loop $label$171 + (i64.store8 + (tee_local $37 + (i32.add + (get_local $37) + (i32.const -1) + ) + ) + (i64.or + (i64.rem_u + (get_local $35) + (i64.const 10) + ) + (i64.const 48) + ) + ) + (set_local $30 + (i64.gt_u + (get_local $35) + (i64.const 42949672959) + ) + ) + (set_local $35 + (tee_local $23 + (i64.div_u + (get_local $35) + (i64.const 10) + ) + ) + ) + (br_if $label$171 + (get_local $30) + ) + (br $label$84) + ) + ) + (set_local $23 + (get_local $35) + ) + (set_local $37 + (get_local $5) + ) + ) + (br_if $label$82 + (i32.eqz + (tee_local $30 + (i32.wrap/i64 + (get_local $23) + ) + ) + ) + ) + (loop $label$172 + (i32.store8 + (tee_local $37 + (i32.add + (get_local $37) + (i32.const -1) + ) + ) + (i32.or + (i32.rem_u + (get_local $30) + (i32.const 10) + ) + (i32.const 48) + ) + ) + (set_local $17 + (i32.gt_u + (get_local $30) + (i32.const 9) + ) + ) + (set_local $30 + (i32.div_u + (get_local $30) + (i32.const 10) + ) + ) + (br_if $label$172 + (get_local $17) + ) + (br $label$82) + ) + ) + (set_local $24 + (select + (i32.const 10480) + (i32.const 10485) + (i32.gt_s + (get_local $36) + (tee_local $30 + (i32.sub + (get_local $5) + (get_local $37) + ) + ) + ) + ) + ) + (set_local $26 + (i32.le_s + (get_local $36) + (get_local $30) + ) + ) + ) + (br_if $label$80 + (i32.eqz + (get_local $16) + ) + ) + ) + (br_if $label$14 + (i32.lt_s + (get_local $36) + (i32.const 0) + ) + ) + ) + (set_local $18 + (select + (i32.and + (get_local $18) + (i32.const -65537) + ) + (get_local $18) + (i32.gt_s + (get_local $36) + (i32.const -1) + ) + ) + ) + (set_local $35 + (i64.load offset=416 + (get_local $39) + ) + ) + (block $label$173 + (br_if $label$173 + (get_local $36) + ) + (br_if $label$173 + (i32.eqz + (i64.eqz + (get_local $35) + ) + ) + ) + (set_local $37 + (get_local $5) + ) + (set_local $14 + (get_local $5) + ) + (set_local $36 + (i32.const 0) + ) + (br $label$78) + ) + (set_local $36 + (select + (get_local $36) + (tee_local $30 + (i32.add + (i64.eqz + (get_local $35) + ) + (i32.sub + (get_local $5) + (get_local $37) + ) + ) + ) + (i32.gt_s + (get_local $36) + (get_local $30) + ) + ) + ) + ) + (set_local $14 + (get_local $5) + ) + ) + (br_if $label$14 + (i32.gt_s + (tee_local $28 + (select + (tee_local $29 + (i32.sub + (get_local $14) + (get_local $37) + ) + ) + (get_local $36) + (i32.lt_s + (get_local $36) + (get_local $29) + ) + ) + ) + (i32.sub + (i32.const 2147483647) + (get_local $26) + ) + ) + ) + (br_if $label$14 + (i32.gt_s + (tee_local $30 + (select + (tee_local $27 + (i32.add + (get_local $26) + (get_local $28) + ) + ) + (get_local $15) + (i32.lt_s + (get_local $15) + (get_local $27) + ) + ) + ) + (get_local $13) + ) + ) + (block $label$174 + (br_if $label$174 + (tee_local $18 + (i32.and + (get_local $18) + (i32.const 73728) + ) + ) + ) + (br_if $label$174 + (i32.ge_s + (get_local $27) + (get_local $15) + ) + ) + (drop + (call $memset + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 32) + (select + (tee_local $22 + (i32.sub + (get_local $30) + (get_local $27) + ) + ) + (i32.const 256) + (tee_local $17 + (i32.lt_u + (get_local $22) + (i32.const 256) + ) + ) + ) + ) + ) + (set_local $14 + (i32.and + (tee_local $31 + (i32.load + (get_local $0) + ) + ) + (i32.const 32) + ) + ) + (block $label$175 + (block $label$176 + (br_if $label$176 + (get_local $17) + ) + (set_local $17 + (i32.eqz + (get_local $14) + ) + ) + (set_local $14 + (get_local $22) + ) + (loop $label$177 + (block $label$178 + (br_if $label$178 + (i32.eqz + (i32.and + (get_local $17) + (i32.const 1) + ) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 256) + (get_local $0) + ) + ) + (set_local $31 + (i32.load + (get_local $0) + ) + ) + ) + (set_local $17 + (i32.eqz + (tee_local $16 + (i32.and + (get_local $31) + (i32.const 32) + ) + ) + ) + ) + (br_if $label$177 + (i32.gt_u + (tee_local $14 + (i32.add + (get_local $14) + (i32.const -256) + ) + ) + (i32.const 255) + ) + ) + ) + (br_if $label$174 + (get_local $16) + ) + (set_local $22 + (i32.and + (get_local $22) + (i32.const 255) + ) + ) + (br $label$175) + ) + (br_if $label$174 + (get_local $14) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (get_local $22) + (get_local $0) + ) + ) + ) + (block $label$179 + (br_if $label$179 + (i32.and + (i32.load8_u + (get_local $0) + ) + (i32.const 32) + ) + ) + (drop + (call $__fwritex + (get_local $24) + (get_local $26) + (get_local $0) + ) + ) + ) + (block $label$180 + (br_if $label$180 + (i32.ne + (get_local $18) + (i32.const 65536) + ) + ) + (br_if $label$180 + (i32.ge_s + (get_local $27) + (get_local $15) + ) + ) + (drop + (call $memset + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 48) + (select + (tee_local $26 + (i32.sub + (get_local $30) + (get_local $27) + ) + ) + (i32.const 256) + (tee_local $17 + (i32.lt_u + (get_local $26) + (i32.const 256) + ) + ) + ) + ) + ) + (set_local $14 + (i32.and + (tee_local $31 + (i32.load + (get_local $0) + ) + ) + (i32.const 32) + ) + ) + (block $label$181 + (block $label$182 + (br_if $label$182 + (get_local $17) + ) + (set_local $17 + (i32.eqz + (get_local $14) + ) + ) + (set_local $14 + (get_local $26) + ) + (loop $label$183 + (block $label$184 + (br_if $label$184 + (i32.eqz + (i32.and + (get_local $17) + (i32.const 1) + ) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 256) + (get_local $0) + ) + ) + (set_local $31 + (i32.load + (get_local $0) + ) + ) + ) + (set_local $17 + (i32.eqz + (tee_local $16 + (i32.and + (get_local $31) + (i32.const 32) + ) + ) + ) + ) + (br_if $label$183 + (i32.gt_u + (tee_local $14 + (i32.add + (get_local $14) + (i32.const -256) + ) + ) + (i32.const 255) + ) + ) + ) + (br_if $label$180 + (get_local $16) + ) + (set_local $26 + (i32.and + (get_local $26) + (i32.const 255) + ) + ) + (br $label$181) + ) + (br_if $label$180 + (get_local $14) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (get_local $26) + (get_local $0) + ) + ) + ) + (block $label$185 + (br_if $label$185 + (i32.ge_s + (get_local $29) + (get_local $36) + ) + ) + (drop + (call $memset + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 48) + (select + (tee_local $16 + (i32.sub + (get_local $28) + (get_local $29) + ) + ) + (i32.const 256) + (tee_local $17 + (i32.lt_u + (get_local $16) + (i32.const 256) + ) + ) + ) + ) + ) + (set_local $36 + (i32.and + (tee_local $14 + (i32.load + (get_local $0) + ) + ) + (i32.const 32) + ) + ) + (block $label$186 + (block $label$187 + (br_if $label$187 + (get_local $17) + ) + (set_local $17 + (i32.eqz + (get_local $36) + ) + ) + (set_local $36 + (get_local $16) + ) + (loop $label$188 + (block $label$189 + (br_if $label$189 + (i32.eqz + (i32.and + (get_local $17) + (i32.const 1) + ) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 256) + (get_local $0) + ) + ) + (set_local $14 + (i32.load + (get_local $0) + ) + ) + ) + (set_local $17 + (i32.eqz + (tee_local $31 + (i32.and + (get_local $14) + (i32.const 32) + ) + ) + ) + ) + (br_if $label$188 + (i32.gt_u + (tee_local $36 + (i32.add + (get_local $36) + (i32.const -256) + ) + ) + (i32.const 255) + ) + ) + ) + (br_if $label$185 + (get_local $31) + ) + (set_local $16 + (i32.and + (get_local $16) + (i32.const 255) + ) + ) + (br $label$186) + ) + (br_if $label$185 + (get_local $36) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (get_local $16) + (get_local $0) + ) + ) + ) + (block $label$190 + (br_if $label$190 + (i32.and + (i32.load8_u + (get_local $0) + ) + (i32.const 32) + ) + ) + (drop + (call $__fwritex + (get_local $37) + (get_local $29) + (get_local $0) + ) + ) + ) + (br_if $label$23 + (i32.ne + (get_local $18) + (i32.const 8192) + ) + ) + (br_if $label$23 + (i32.ge_s + (get_local $27) + (get_local $15) + ) + ) + (drop + (call $memset + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 32) + (select + (tee_local $37 + (i32.sub + (get_local $30) + (get_local $27) + ) + ) + (i32.const 256) + (tee_local $17 + (i32.lt_u + (get_local $37) + (i32.const 256) + ) + ) + ) + ) + ) + (set_local $15 + (i32.and + (tee_local $36 + (i32.load + (get_local $0) + ) + ) + (i32.const 32) + ) + ) + (block $label$191 + (block $label$192 + (br_if $label$192 + (get_local $17) + ) + (set_local $17 + (i32.eqz + (get_local $15) + ) + ) + (set_local $15 + (get_local $37) + ) + (loop $label$193 + (block $label$194 + (br_if $label$194 + (i32.eqz + (i32.and + (get_local $17) + (i32.const 1) + ) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 256) + (get_local $0) + ) + ) + (set_local $36 + (i32.load + (get_local $0) + ) + ) + ) + (set_local $17 + (i32.eqz + (tee_local $14 + (i32.and + (get_local $36) + (i32.const 32) + ) + ) + ) + ) + (br_if $label$193 + (i32.gt_u + (tee_local $15 + (i32.add + (get_local $15) + (i32.const -256) + ) + ) + (i32.const 255) + ) + ) + ) + (br_if $label$23 + (get_local $14) + ) + (set_local $37 + (i32.and + (get_local $37) + (i32.const 255) + ) + ) + (br $label$191) + ) + (br_if $label$23 + (get_local $15) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (get_local $37) + (get_local $0) + ) + ) + (br $label$23) + ) + (call $__addtf3 + (i32.add + (get_local $39) + (i32.const 192) + ) + (get_local $35) + (get_local $23) + (get_local $33) + (get_local $34) + ) + (call $__subtf3 + (i32.add + (get_local $39) + (i32.const 176) + ) + (i64.load offset=192 + (get_local $39) + ) + (i64.load + (i32.add + (i32.add + (get_local $39) + (i32.const 192) + ) + (i32.const 8) + ) + ) + (get_local $33) + (get_local $34) + ) + (set_local $23 + (i64.load + (i32.add + (i32.add + (get_local $39) + (i32.const 176) + ) + (i32.const 8) + ) + ) + ) + (set_local $35 + (i64.load offset=176 + (get_local $39) + ) + ) + ) + (set_local $34 + (i64.extend_s/i32 + (tee_local $17 + (i32.xor + (i32.add + (tee_local $31 + (i32.load offset=748 + (get_local $39) + ) + ) + (tee_local $30 + (i32.shr_s + (get_local $31) + (i32.const 31) + ) + ) + ) + (get_local $30) + ) + ) + ) + ) + (set_local $30 + (i32.const 0) + ) + (block $label$195 + (block $label$196 + (block $label$197 + (br_if $label$197 + (i32.le_s + (get_local $17) + (i32.const -1) + ) + ) + (br_if $label$196 + (tee_local $17 + (i32.wrap/i64 + (get_local $34) + ) + ) + ) + (br $label$195) + ) + (set_local $30 + (i32.const 0) + ) + (loop $label$198 + (i64.store8 + (i32.add + (get_local $12) + (get_local $30) + ) + (i64.or + (i64.rem_u + (get_local $34) + (i64.const 10) + ) + (i64.const 48) + ) + ) + (set_local $30 + (i32.add + (get_local $30) + (i32.const -1) + ) + ) + (set_local $17 + (i64.gt_u + (get_local $34) + (i64.const 42949672959) + ) + ) + (set_local $34 + (tee_local $33 + (i64.div_u + (get_local $34) + (i64.const 10) + ) + ) + ) + (br_if $label$198 + (get_local $17) + ) + ) + (br_if $label$195 + (i32.eqz + (tee_local $17 + (i32.wrap/i64 + (get_local $33) + ) + ) + ) + ) + ) + (loop $label$199 + (i32.store8 + (i32.add + (i32.add + (i32.add + (get_local $39) + (i32.const 692) + ) + (get_local $30) + ) + (i32.const 11) + ) + (i32.or + (i32.rem_u + (get_local $17) + (i32.const 10) + ) + (i32.const 48) + ) + ) + (set_local $30 + (i32.add + (get_local $30) + (i32.const -1) + ) + ) + (set_local $14 + (i32.gt_u + (get_local $17) + (i32.const 9) + ) + ) + (set_local $17 + (i32.div_u + (get_local $17) + (i32.const 10) + ) + ) + (br_if $label$199 + (get_local $14) + ) + ) + ) + (set_local $17 + (i32.add + (get_local $7) + (get_local $30) + ) + ) + (block $label$200 + (br_if $label$200 + (get_local $30) + ) + (i32.store8 + (tee_local $17 + (i32.add + (get_local $17) + (i32.const -1) + ) + ) + (i32.const 48) + ) + ) + (set_local $16 + (i32.or + (get_local $20) + (i32.const 2) + ) + ) + (i32.store8 + (tee_local $27 + (i32.add + (get_local $17) + (i32.const -2) + ) + ) + (i32.add + (get_local $29) + (i32.const 15) + ) + ) + (i32.store8 + (i32.add + (get_local $17) + (i32.const -1) + ) + (i32.add + (i32.and + (i32.shr_u + (get_local $31) + (i32.const 30) + ) + (i32.const 2) + ) + (i32.const 43) + ) + ) + (block $label$201 + (br_if $label$201 + (i32.and + (get_local $18) + (i32.const 8) + ) + ) + (br_if $label$70 + (i32.lt_s + (get_local $36) + (i32.const 1) + ) + ) + (set_local $30 + (i32.add + (get_local $39) + (i32.const 704) + ) + ) + (loop $label$202 + (call $__floatsitf + (i32.add + (get_local $39) + (i32.const 80) + ) + (tee_local $17 + (call $__fixtfsi + (get_local $35) + (get_local $23) + ) + ) + ) + (call $__subtf3 + (i32.add + (get_local $39) + (i32.const 64) + ) + (get_local $35) + (get_local $23) + (i64.load offset=80 + (get_local $39) + ) + (i64.load + (i32.add + (i32.add + (get_local $39) + (i32.const 80) + ) + (i32.const 8) + ) + ) + ) + (call $__multf3 + (i32.add + (get_local $39) + (i32.const 48) + ) + (i64.load offset=64 + (get_local $39) + ) + (i64.load + (i32.add + (i32.add + (get_local $39) + (i32.const 64) + ) + (i32.const 8) + ) + ) + (i64.const 0) + (i64.const 4612530443357519872) + ) + (i32.store8 + (get_local $30) + (i32.or + (i32.load8_u + (i32.add + (get_local $17) + (i32.const 10464) + ) + ) + (get_local $37) + ) + ) + (set_local $23 + (i64.load + (i32.add + (i32.add + (get_local $39) + (i32.const 48) + ) + (i32.const 8) + ) + ) + ) + (set_local $35 + (i64.load offset=48 + (get_local $39) + ) + ) + (block $label$203 + (br_if $label$203 + (i32.ne + (i32.sub + (tee_local $17 + (i32.add + (get_local $30) + (i32.const 1) + ) + ) + (i32.add + (get_local $39) + (i32.const 704) + ) + ) + (i32.const 1) + ) + ) + (i32.store8 + (i32.add + (get_local $30) + (i32.const 1) + ) + (i32.const 46) + ) + (set_local $17 + (i32.add + (get_local $30) + (i32.const 2) + ) + ) + ) + (set_local $30 + (get_local $17) + ) + (br_if $label$202 + (call $__netf2 + (get_local $35) + (get_local $23) + (i64.const 0) + (i64.const 0) + ) + ) + (br $label$69) + ) + ) + (set_local $30 + (i32.add + (get_local $39) + (i32.const 704) + ) + ) + (loop $label$204 + (call $__floatsitf + (i32.add + (get_local $39) + (i32.const 128) + ) + (tee_local $17 + (call $__fixtfsi + (get_local $35) + (get_local $23) + ) + ) + ) + (call $__subtf3 + (i32.add + (get_local $39) + (i32.const 112) + ) + (get_local $35) + (get_local $23) + (i64.load offset=128 + (get_local $39) + ) + (i64.load + (i32.add + (i32.add + (get_local $39) + (i32.const 128) + ) + (i32.const 8) + ) + ) + ) + (call $__multf3 + (i32.add + (get_local $39) + (i32.const 96) + ) + (i64.load offset=112 + (get_local $39) + ) + (i64.load + (i32.add + (i32.add + (get_local $39) + (i32.const 112) + ) + (i32.const 8) + ) + ) + (i64.const 0) + (i64.const 4612530443357519872) + ) + (i32.store8 + (get_local $30) + (i32.or + (i32.load8_u + (i32.add + (get_local $17) + (i32.const 10464) + ) + ) + (get_local $37) + ) + ) + (set_local $23 + (i64.load + (i32.add + (i32.add + (get_local $39) + (i32.const 96) + ) + (i32.const 8) + ) + ) + ) + (set_local $35 + (i64.load offset=96 + (get_local $39) + ) + ) + (block $label$205 + (br_if $label$205 + (i32.ne + (i32.sub + (tee_local $17 + (i32.add + (get_local $30) + (i32.const 1) + ) + ) + (i32.add + (get_local $39) + (i32.const 704) + ) + ) + (i32.const 1) + ) + ) + (i32.store8 + (i32.add + (get_local $30) + (i32.const 1) + ) + (i32.const 46) + ) + (set_local $17 + (i32.add + (get_local $30) + (i32.const 2) + ) + ) + ) + (set_local $30 + (get_local $17) + ) + (br_if $label$204 + (call $__netf2 + (get_local $35) + (get_local $23) + (i64.const 0) + (i64.const 0) + ) + ) + (br $label$69) + ) + ) + (set_local $28 + (i32.add + (get_local $30) + (i32.const -1) + ) + ) + (set_local $29 + (i32.add + (get_local $29) + (i32.const -2) + ) + ) + (br_if $label$67 + (tee_local $16 + (i32.and + (get_local $18) + (i32.const 8) + ) + ) + ) + ) + (set_local $30 + (i32.const 9) + ) + (block $label$206 + (br_if $label$206 + (i32.eqz + (get_local $27) + ) + ) + (br_if $label$206 + (i32.eqz + (tee_local $16 + (i32.load + (i32.add + (get_local $14) + (i32.const -4) + ) + ) + ) + ) + ) + (set_local $30 + (i32.const 0) + ) + (br_if $label$206 + (i32.rem_u + (get_local $16) + (i32.const 10) + ) + ) + (set_local $37 + (i32.const 10) + ) + (set_local $30 + (i32.const 0) + ) + (loop $label$207 + (set_local $30 + (i32.add + (get_local $30) + (i32.const 1) + ) + ) + (br_if $label$207 + (i32.eqz + (i32.rem_u + (get_local $16) + (tee_local $37 + (i32.mul + (get_local $37) + (i32.const 10) + ) + ) + ) + ) + ) + ) + ) + (set_local $37 + (i32.add + (i32.mul + (i32.shr_s + (i32.sub + (get_local $14) + (get_local $22) + ) + (i32.const 2) + ) + (i32.const 9) + ) + (i32.const -9) + ) + ) + (br_if $label$68 + (i32.ne + (i32.or + (get_local $29) + (i32.const 32) + ) + (i32.const 102) + ) + ) + (set_local $16 + (i32.const 0) + ) + (set_local $28 + (select + (get_local $28) + (tee_local $30 + (select + (tee_local $30 + (i32.sub + (get_local $37) + (get_local $30) + ) + ) + (i32.const 0) + (i32.gt_s + (get_local $30) + (i32.const 0) + ) + ) + ) + (i32.lt_s + (get_local $28) + (get_local $30) + ) + ) + ) + (br $label$67) + ) + (set_local $30 + (i32.const 0) + ) + (br_if $label$71 + (tee_local $16 + (i32.and + (get_local $18) + (i32.const 73728) + ) + ) + ) + ) + (br_if $label$71 + (i32.le_s + (get_local $15) + (get_local $30) + ) + ) + (drop + (call $memset + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 32) + (select + (tee_local $27 + (i32.sub + (get_local $15) + (get_local $30) + ) + ) + (i32.const 256) + (tee_local $17 + (i32.lt_u + (get_local $27) + (i32.const 256) + ) + ) + ) + ) + ) + (set_local $36 + (i32.and + (tee_local $14 + (i32.load + (get_local $0) + ) + ) + (i32.const 32) + ) + ) + (block $label$208 + (block $label$209 + (br_if $label$209 + (get_local $17) + ) + (set_local $17 + (i32.eqz + (get_local $36) + ) + ) + (set_local $36 + (get_local $27) + ) + (loop $label$210 + (block $label$211 + (br_if $label$211 + (i32.eqz + (i32.and + (get_local $17) + (i32.const 1) + ) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 256) + (get_local $0) + ) + ) + (set_local $14 + (i32.load + (get_local $0) + ) + ) + ) + (set_local $17 + (i32.eqz + (tee_local $31 + (i32.and + (get_local $14) + (i32.const 32) + ) + ) + ) + ) + (br_if $label$210 + (i32.gt_u + (tee_local $36 + (i32.add + (get_local $36) + (i32.const -256) + ) + ) + (i32.const 255) + ) + ) + ) + (br_if $label$71 + (get_local $31) + ) + (set_local $27 + (i32.and + (get_local $27) + (i32.const 255) + ) + ) + (br $label$208) + ) + (br_if $label$71 + (get_local $36) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (get_local $27) + (get_local $0) + ) + ) + ) + (block $label$212 + (br_if $label$212 + (i32.eqz + (get_local $30) + ) + ) + (set_local $17 + (i32.const 0) + ) + (loop $label$213 + (br_if $label$212 + (i32.eqz + (tee_local $36 + (i32.load + (get_local $37) + ) + ) + ) + ) + (br_if $label$212 + (i32.gt_u + (tee_local $17 + (i32.add + (tee_local $36 + (call $wctomb + (i32.add + (get_local $39) + (i32.const 340) + ) + (get_local $36) + ) + ) + (get_local $17) + ) + ) + (get_local $30) + ) + ) + (block $label$214 + (br_if $label$214 + (i32.and + (i32.load8_u + (get_local $0) + ) + (i32.const 32) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 340) + ) + (get_local $36) + (get_local $0) + ) + ) + ) + (set_local $37 + (i32.add + (get_local $37) + (i32.const 4) + ) + ) + (br_if $label$213 + (i32.lt_u + (get_local $17) + (get_local $30) + ) + ) + ) + ) + (block $label$215 + (br_if $label$215 + (i32.ne + (get_local $16) + (i32.const 8192) + ) + ) + (br_if $label$215 + (i32.le_s + (get_local $15) + (get_local $30) + ) + ) + (drop + (call $memset + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 32) + (select + (tee_local $31 + (i32.sub + (get_local $15) + (get_local $30) + ) + ) + (i32.const 256) + (tee_local $17 + (i32.lt_u + (get_local $31) + (i32.const 256) + ) + ) + ) + ) + ) + (set_local $36 + (i32.and + (tee_local $14 + (i32.load + (get_local $0) + ) + ) + (i32.const 32) + ) + ) + (block $label$216 + (block $label$217 + (br_if $label$217 + (get_local $17) + ) + (set_local $17 + (i32.eqz + (get_local $36) + ) + ) + (set_local $36 + (get_local $31) + ) + (loop $label$218 + (block $label$219 + (br_if $label$219 + (i32.eqz + (i32.and + (get_local $17) + (i32.const 1) + ) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 256) + (get_local $0) + ) + ) + (set_local $14 + (i32.load + (get_local $0) + ) + ) + ) + (set_local $17 + (i32.eqz + (tee_local $37 + (i32.and + (get_local $14) + (i32.const 32) + ) + ) + ) + ) + (br_if $label$218 + (i32.gt_u + (tee_local $36 + (i32.add + (get_local $36) + (i32.const -256) + ) + ) + (i32.const 255) + ) + ) + ) + (br_if $label$215 + (get_local $37) + ) + (set_local $31 + (i32.and + (get_local $31) + (i32.const 255) + ) + ) + (br $label$216) + ) + (br_if $label$215 + (get_local $36) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (get_local $31) + (get_local $0) + ) + ) + ) + (set_local $30 + (select + (get_local $15) + (get_local $30) + (i32.gt_s + (get_local $15) + (get_local $30) + ) + ) + ) + (br $label$23) + ) + (set_local $17 + (i32.add + (get_local $39) + (i32.const 704) + ) + ) + (loop $label$220 + (call $__floatsitf + (i32.add + (get_local $39) + (i32.const 32) + ) + (tee_local $14 + (call $__fixtfsi + (get_local $35) + (get_local $23) + ) + ) + ) + (call $__subtf3 + (i32.add + (get_local $39) + (i32.const 16) + ) + (get_local $35) + (get_local $23) + (i64.load offset=32 + (get_local $39) + ) + (i64.load + (i32.add + (i32.add + (get_local $39) + (i32.const 32) + ) + (i32.const 8) + ) + ) + ) + (call $__multf3 + (get_local $39) + (i64.load offset=16 + (get_local $39) + ) + (i64.load + (i32.add + (i32.add + (get_local $39) + (i32.const 16) + ) + (i32.const 8) + ) + ) + (i64.const 0) + (i64.const 4612530443357519872) + ) + (i32.store8 + (tee_local $30 + (get_local $17) + ) + (i32.or + (i32.load8_u + (i32.add + (get_local $14) + (i32.const 10464) + ) + ) + (get_local $37) + ) + ) + (set_local $23 + (i64.load + (i32.add + (get_local $39) + (i32.const 8) + ) + ) + ) + (set_local $35 + (i64.load + (get_local $39) + ) + ) + (block $label$221 + (br_if $label$221 + (i32.ne + (i32.sub + (tee_local $17 + (i32.add + (get_local $30) + (i32.const 1) + ) + ) + (i32.add + (get_local $39) + (i32.const 704) + ) + ) + (i32.const 1) + ) + ) + (br_if $label$221 + (i32.eqz + (call $__eqtf2 + (get_local $35) + (get_local $23) + (i64.const 0) + (i64.const 0) + ) + ) + ) + (i32.store8 + (i32.add + (get_local $30) + (i32.const 1) + ) + (i32.const 46) + ) + (set_local $17 + (i32.add + (get_local $30) + (i32.const 2) + ) + ) + ) + (br_if $label$220 + (call $__netf2 + (get_local $35) + (get_local $23) + (i64.const 0) + (i64.const 0) + ) + ) + ) + ) + (set_local $30 + (i32.const -1) + ) + (br_if $label$49 + (i32.lt_s + (i32.sub + (i32.sub + (i32.const 2147483645) + (get_local $16) + ) + (tee_local $31 + (i32.sub + (get_local $7) + (get_local $27) + ) + ) + ) + (get_local $36) + ) + ) + (set_local $37 + (i32.add + (i32.add + (get_local $31) + (get_local $16) + ) + (tee_local $29 + (select + (select + (i32.add + (get_local $36) + (i32.const 2) + ) + (tee_local $26 + (i32.sub + (get_local $17) + (i32.add + (get_local $39) + (i32.const 704) + ) + ) + ) + (i32.lt_s + (i32.add + (get_local $8) + (get_local $17) + ) + (get_local $36) + ) + ) + (get_local $26) + (get_local $36) + ) + ) + ) + ) + (br_if $label$64 + (tee_local $18 + (i32.and + (get_local $18) + (i32.const 73728) + ) + ) + ) + (br_if $label$64 + (i32.le_s + (get_local $15) + (get_local $37) + ) + ) + (drop + (call $memset + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 32) + (select + (tee_local $28 + (i32.sub + (get_local $15) + (get_local $37) + ) + ) + (i32.const 256) + (tee_local $30 + (i32.lt_u + (get_local $28) + (i32.const 256) + ) + ) + ) + ) + ) + (set_local $17 + (i32.and + (tee_local $36 + (i32.load + (get_local $0) + ) + ) + (i32.const 32) + ) + ) + (br_if $label$66 + (get_local $30) + ) + (set_local $30 + (i32.eqz + (get_local $17) + ) + ) + (set_local $17 + (get_local $28) + ) + (loop $label$222 + (block $label$223 + (br_if $label$223 + (i32.eqz + (i32.and + (get_local $30) + (i32.const 1) + ) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 256) + (get_local $0) + ) + ) + (set_local $36 + (i32.load + (get_local $0) + ) + ) + ) + (set_local $30 + (i32.eqz + (tee_local $14 + (i32.and + (get_local $36) + (i32.const 32) + ) + ) + ) + ) + (br_if $label$222 + (i32.gt_u + (tee_local $17 + (i32.add + (get_local $17) + (i32.const -256) + ) + ) + (i32.const 255) + ) + ) + ) + (br_if $label$64 + (get_local $14) + ) + (set_local $28 + (i32.and + (get_local $28) + (i32.const 255) + ) + ) + (br $label$65) + ) + (set_local $16 + (i32.const 0) + ) + (set_local $28 + (select + (get_local $28) + (tee_local $30 + (select + (tee_local $30 + (i32.sub + (i32.add + (get_local $37) + (get_local $36) + ) + (get_local $30) + ) + ) + (i32.const 0) + (i32.gt_s + (get_local $30) + (i32.const 0) + ) + ) + ) + (i32.lt_s + (get_local $28) + (get_local $30) + ) + ) + ) + ) + (set_local $30 + (i32.const -1) + ) + (br_if $label$49 + (i32.gt_s + (get_local $28) + (i32.sub + (i32.const 2147483646) + (tee_local $37 + (i32.ne + (tee_local $24 + (i32.or + (get_local $28) + (get_local $16) + ) + ) + (i32.const 0) + ) + ) + ) + ) + ) + (set_local $26 + (i32.add + (i32.add + (get_local $28) + (get_local $37) + ) + (i32.const 1) + ) + ) + (block $label$224 + (br_if $label$224 + (tee_local $21 + (i32.ne + (i32.or + (get_local $29) + (i32.const 32) + ) + (i32.const 102) + ) + ) + ) + (br_if $label$49 + (i32.gt_s + (get_local $36) + (i32.sub + (i32.const 2147483647) + (get_local $26) + ) + ) + ) + (set_local $36 + (select + (get_local $36) + (i32.const 0) + (i32.gt_s + (get_local $36) + (i32.const 0) + ) + ) + ) + (br $label$60) + ) + (set_local $35 + (i64.extend_s/i32 + (tee_local $30 + (select + (get_local $31) + (get_local $36) + (i32.lt_s + (get_local $36) + (i32.const 0) + ) + ) + ) + ) + ) + (br_if $label$63 + (i32.le_s + (get_local $30) + (i32.const -1) + ) + ) + (set_local $37 + (get_local $7) + ) + (br_if $label$62 + (tee_local $30 + (i32.wrap/i64 + (get_local $35) + ) + ) + ) + (br $label$61) + ) + (br_if $label$64 + (get_local $17) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (get_local $28) + (get_local $0) + ) + ) + ) + (block $label$225 + (br_if $label$225 + (i32.and + (i32.load8_u + (get_local $0) + ) + (i32.const 32) + ) + ) + (drop + (call $__fwritex + (get_local $24) + (get_local $16) + (get_local $0) + ) + ) + ) + (block $label$226 + (br_if $label$226 + (i32.ne + (get_local $18) + (i32.const 65536) + ) + ) + (br_if $label$226 + (i32.le_s + (get_local $15) + (get_local $37) + ) + ) + (drop + (call $memset + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 48) + (select + (tee_local $16 + (i32.sub + (get_local $15) + (get_local $37) + ) + ) + (i32.const 256) + (tee_local $30 + (i32.lt_u + (get_local $16) + (i32.const 256) + ) + ) + ) + ) + ) + (set_local $17 + (i32.and + (tee_local $36 + (i32.load + (get_local $0) + ) + ) + (i32.const 32) + ) + ) + (block $label$227 + (block $label$228 + (br_if $label$228 + (get_local $30) + ) + (set_local $30 + (i32.eqz + (get_local $17) + ) + ) + (set_local $17 + (get_local $16) + ) + (loop $label$229 + (block $label$230 + (br_if $label$230 + (i32.eqz + (i32.and + (get_local $30) + (i32.const 1) + ) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 256) + (get_local $0) + ) + ) + (set_local $36 + (i32.load + (get_local $0) + ) + ) + ) + (set_local $30 + (i32.eqz + (tee_local $14 + (i32.and + (get_local $36) + (i32.const 32) + ) + ) + ) + ) + (br_if $label$229 + (i32.gt_u + (tee_local $17 + (i32.add + (get_local $17) + (i32.const -256) + ) + ) + (i32.const 255) + ) + ) + ) + (br_if $label$226 + (get_local $14) + ) + (set_local $16 + (i32.and + (get_local $16) + (i32.const 255) + ) + ) + (br $label$227) + ) + (br_if $label$226 + (get_local $17) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (get_local $16) + (get_local $0) + ) + ) + ) + (block $label$231 + (br_if $label$231 + (i32.and + (i32.load8_u + (get_local $0) + ) + (i32.const 32) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 704) + ) + (get_local $26) + (get_local $0) + ) + ) + ) + (block $label$232 + (br_if $label$232 + (i32.lt_s + (tee_local $16 + (i32.sub + (get_local $29) + (get_local $26) + ) + ) + (i32.const 1) + ) + ) + (drop + (call $memset + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 48) + (select + (get_local $16) + (i32.const 256) + (tee_local $30 + (i32.lt_u + (get_local $16) + (i32.const 256) + ) + ) + ) + ) + ) + (set_local $17 + (i32.and + (tee_local $36 + (i32.load + (get_local $0) + ) + ) + (i32.const 32) + ) + ) + (block $label$233 + (block $label$234 + (br_if $label$234 + (get_local $30) + ) + (set_local $30 + (i32.eqz + (get_local $17) + ) + ) + (set_local $17 + (get_local $16) + ) + (loop $label$235 + (block $label$236 + (br_if $label$236 + (i32.eqz + (i32.and + (get_local $30) + (i32.const 1) + ) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 256) + (get_local $0) + ) + ) + (set_local $36 + (i32.load + (get_local $0) + ) + ) + ) + (set_local $30 + (i32.eqz + (tee_local $14 + (i32.and + (get_local $36) + (i32.const 32) + ) + ) + ) + ) + (br_if $label$235 + (i32.gt_u + (tee_local $17 + (i32.add + (get_local $17) + (i32.const -256) + ) + ) + (i32.const 255) + ) + ) + ) + (br_if $label$232 + (get_local $14) + ) + (set_local $16 + (i32.and + (get_local $16) + (i32.const 255) + ) + ) + (br $label$233) + ) + (br_if $label$232 + (get_local $17) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (get_local $16) + (get_local $0) + ) + ) + ) + (block $label$237 + (br_if $label$237 + (i32.and + (i32.load8_u + (get_local $0) + ) + (i32.const 32) + ) + ) + (drop + (call $__fwritex + (get_local $27) + (get_local $31) + (get_local $0) + ) + ) + ) + (block $label$238 + (br_if $label$238 + (i32.ne + (get_local $18) + (i32.const 8192) + ) + ) + (br_if $label$238 + (i32.le_s + (get_local $15) + (get_local $37) + ) + ) + (drop + (call $memset + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 32) + (select + (tee_local $31 + (i32.sub + (get_local $15) + (get_local $37) + ) + ) + (i32.const 256) + (tee_local $30 + (i32.lt_u + (get_local $31) + (i32.const 256) + ) + ) + ) + ) + ) + (set_local $17 + (i32.and + (tee_local $36 + (i32.load + (get_local $0) + ) + ) + (i32.const 32) + ) + ) + (block $label$239 + (block $label$240 + (br_if $label$240 + (get_local $30) + ) + (set_local $30 + (i32.eqz + (get_local $17) + ) + ) + (set_local $17 + (get_local $31) + ) + (loop $label$241 + (block $label$242 + (br_if $label$242 + (i32.eqz + (i32.and + (get_local $30) + (i32.const 1) + ) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 256) + (get_local $0) + ) + ) + (set_local $36 + (i32.load + (get_local $0) + ) + ) + ) + (set_local $30 + (i32.eqz + (tee_local $14 + (i32.and + (get_local $36) + (i32.const 32) + ) + ) + ) + ) + (br_if $label$241 + (i32.gt_u + (tee_local $17 + (i32.add + (get_local $17) + (i32.const -256) + ) + ) + (i32.const 255) + ) + ) + ) + (br_if $label$238 + (get_local $14) + ) + (set_local $31 + (i32.and + (get_local $31) + (i32.const 255) + ) + ) + (br $label$239) + ) + (br_if $label$238 + (get_local $17) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (get_local $31) + (get_local $0) + ) + ) + ) + (set_local $30 + (select + (get_local $15) + (get_local $37) + (i32.gt_s + (get_local $15) + (get_local $37) + ) + ) + ) + (br $label$49) + ) + (set_local $37 + (get_local $7) + ) + (loop $label$243 + (i64.store8 + (tee_local $37 + (i32.add + (get_local $37) + (i32.const -1) + ) + ) + (i64.or + (i64.rem_u + (get_local $35) + (i64.const 10) + ) + (i64.const 48) + ) + ) + (set_local $30 + (i64.gt_u + (get_local $35) + (i64.const 42949672959) + ) + ) + (set_local $35 + (tee_local $23 + (i64.div_u + (get_local $35) + (i64.const 10) + ) + ) + ) + (br_if $label$243 + (get_local $30) + ) + ) + (br_if $label$61 + (i32.eqz + (tee_local $30 + (i32.wrap/i64 + (get_local $23) + ) + ) + ) + ) + ) + (loop $label$244 + (i32.store8 + (tee_local $37 + (i32.add + (get_local $37) + (i32.const -1) + ) + ) + (i32.or + (i32.rem_u + (get_local $30) + (i32.const 10) + ) + (i32.const 48) + ) + ) + (set_local $31 + (i32.gt_u + (get_local $30) + (i32.const 9) + ) + ) + (set_local $30 + (i32.div_u + (get_local $30) + (i32.const 10) + ) + ) + (br_if $label$244 + (get_local $31) + ) + ) + ) + (block $label$245 + (br_if $label$245 + (i32.gt_s + (i32.sub + (get_local $7) + (get_local $37) + ) + (i32.const 1) + ) + ) + (set_local $30 + (i32.add + (get_local $37) + (i32.const -1) + ) + ) + (loop $label$246 + (i32.store8 + (get_local $30) + (i32.const 48) + ) + (set_local $37 + (i32.sub + (get_local $7) + (get_local $30) + ) + ) + (set_local $30 + (tee_local $31 + (i32.add + (get_local $30) + (i32.const -1) + ) + ) + ) + (br_if $label$246 + (i32.lt_s + (get_local $37) + (i32.const 2) + ) + ) + ) + (set_local $37 + (i32.add + (get_local $31) + (i32.const 1) + ) + ) + ) + (i32.store8 + (tee_local $25 + (i32.add + (get_local $37) + (i32.const -2) + ) + ) + (get_local $29) + ) + (set_local $30 + (i32.const -1) + ) + (i32.store8 + (i32.add + (get_local $37) + (i32.const -1) + ) + (i32.add + (i32.and + (i32.shr_u + (get_local $36) + (i32.const 30) + ) + (i32.const 2) + ) + (i32.const 43) + ) + ) + (br_if $label$49 + (i32.gt_s + (tee_local $36 + (i32.sub + (get_local $7) + (get_local $25) + ) + ) + (i32.sub + (i32.const 2147483647) + (get_local $26) + ) + ) + ) + ) + (set_local $30 + (i32.const -1) + ) + (br_if $label$49 + (i32.gt_s + (tee_local $36 + (i32.add + (get_local $36) + (get_local $26) + ) + ) + (i32.xor + (get_local $20) + (i32.const 2147483647) + ) + ) + ) + (set_local $26 + (i32.add + (get_local $36) + (get_local $20) + ) + ) + (br_if $label$50 + (tee_local $18 + (i32.and + (get_local $18) + (i32.const 73728) + ) + ) + ) + (br_if $label$50 + (i32.le_s + (get_local $15) + (get_local $26) + ) + ) + (drop + (call $memset + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 32) + (select + (tee_local $29 + (i32.sub + (get_local $15) + (get_local $26) + ) + ) + (i32.const 256) + (tee_local $30 + (i32.lt_u + (get_local $29) + (i32.const 256) + ) + ) + ) + ) + ) + (set_local $36 + (i32.and + (tee_local $37 + (i32.load + (get_local $0) + ) + ) + (i32.const 32) + ) + ) + (br_if $label$52 + (get_local $30) + ) + (set_local $30 + (i32.eqz + (get_local $36) + ) + ) + (set_local $36 + (get_local $29) + ) + (loop $label$247 + (block $label$248 + (br_if $label$248 + (i32.eqz + (i32.and + (get_local $30) + (i32.const 1) + ) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 256) + (get_local $0) + ) + ) + (set_local $37 + (i32.load + (get_local $0) + ) + ) + ) + (set_local $30 + (i32.eqz + (tee_local $31 + (i32.and + (get_local $37) + (i32.const 32) + ) + ) + ) + ) + (br_if $label$247 + (i32.gt_u + (tee_local $36 + (i32.add + (get_local $36) + (i32.const -256) + ) + ) + (i32.const 255) + ) + ) + ) + (br_if $label$50 + (get_local $31) + ) + (set_local $29 + (i32.and + (get_local $29) + (i32.const 255) + ) + ) + (br $label$51) + ) + (i32.store + (i32.load offset=416 + (get_local $39) + ) + (get_local $38) + ) + (set_local $30 + (i32.const 0) + ) + (br $label$23) + ) + (i64.store + (i32.load offset=416 + (get_local $39) + ) + (i64.extend_s/i32 + (get_local $38) + ) + ) + (set_local $30 + (i32.const 0) + ) + (br $label$23) + ) + (i32.store16 + (i32.load offset=416 + (get_local $39) + ) + (get_local $38) + ) + (set_local $30 + (i32.const 0) + ) + (br $label$23) + ) + (i32.store8 + (i32.load offset=416 + (get_local $39) + ) + (get_local $38) + ) + ) + (set_local $30 + (i32.const 0) + ) + (br $label$23) + ) + (i32.store + (i32.load offset=416 + (get_local $39) + ) + (get_local $38) + ) + (set_local $30 + (i32.const 0) + ) + (br $label$23) + ) + (i64.store + (i32.load offset=416 + (get_local $39) + ) + (i64.extend_s/i32 + (get_local $38) + ) + ) + (set_local $30 + (i32.const 0) + ) + (br $label$23) + ) + (br_if $label$50 + (get_local $36) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (get_local $29) + (get_local $0) + ) + ) + ) + (block $label$249 + (br_if $label$249 + (i32.and + (i32.load8_u + (get_local $0) + ) + (i32.const 32) + ) + ) + (drop + (call $__fwritex + (get_local $19) + (get_local $20) + (get_local $0) + ) + ) + ) + (block $label$250 + (br_if $label$250 + (i32.ne + (get_local $18) + (i32.const 65536) + ) + ) + (br_if $label$250 + (i32.le_s + (get_local $15) + (get_local $26) + ) + ) + (drop + (call $memset + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 48) + (select + (tee_local $29 + (i32.sub + (get_local $15) + (get_local $26) + ) + ) + (i32.const 256) + (tee_local $30 + (i32.lt_u + (get_local $29) + (i32.const 256) + ) + ) + ) + ) + ) + (set_local $36 + (i32.and + (tee_local $37 + (i32.load + (get_local $0) + ) + ) + (i32.const 32) + ) + ) + (block $label$251 + (block $label$252 + (br_if $label$252 + (get_local $30) + ) + (set_local $30 + (i32.eqz + (get_local $36) + ) + ) + (set_local $36 + (get_local $29) + ) + (loop $label$253 + (block $label$254 + (br_if $label$254 + (i32.eqz + (i32.and + (get_local $30) + (i32.const 1) + ) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 256) + (get_local $0) + ) + ) + (set_local $37 + (i32.load + (get_local $0) + ) + ) + ) + (set_local $30 + (i32.eqz + (tee_local $31 + (i32.and + (get_local $37) + (i32.const 32) + ) + ) + ) + ) + (br_if $label$253 + (i32.gt_u + (tee_local $36 + (i32.add + (get_local $36) + (i32.const -256) + ) + ) + (i32.const 255) + ) + ) + ) + (br_if $label$250 + (get_local $31) + ) + (set_local $29 + (i32.and + (get_local $29) + (i32.const 255) + ) + ) + (br $label$251) + ) + (br_if $label$250 + (get_local $36) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (get_local $29) + (get_local $0) + ) + ) + ) + (block $label$255 + (block $label$256 + (block $label$257 + (block $label$258 + (block $label$259 + (block $label$260 + (block $label$261 + (block $label$262 + (block $label$263 + (block $label$264 + (block $label$265 + (br_if $label$265 + (get_local $21) + ) + (set_local $37 + (tee_local $31 + (select + (get_local $22) + (get_local $17) + (i32.gt_u + (get_local $17) + (get_local $22) + ) + ) + ) + ) + (loop $label$266 + (block $label$267 + (block $label$268 + (br_if $label$268 + (i32.eqz + (tee_local $30 + (i32.load + (get_local $37) + ) + ) + ) + ) + (set_local $17 + (i32.const 0) + ) + (loop $label$269 + (i32.store8 + (i32.add + (get_local $11) + (get_local $17) + ) + (i32.or + (i32.rem_u + (get_local $30) + (i32.const 10) + ) + (i32.const 48) + ) + ) + (set_local $17 + (i32.add + (get_local $17) + (i32.const -1) + ) + ) + (set_local $36 + (i32.gt_u + (get_local $30) + (i32.const 9) + ) + ) + (set_local $30 + (i32.div_u + (get_local $30) + (i32.const 10) + ) + ) + (br_if $label$269 + (get_local $36) + ) + (br $label$267) + ) + ) + (set_local $17 + (i32.const 0) + ) + ) + (set_local $30 + (i32.add + (get_local $10) + (get_local $17) + ) + ) + (block $label$270 + (block $label$271 + (br_if $label$271 + (i32.eq + (get_local $37) + (get_local $31) + ) + ) + (br_if $label$270 + (i32.le_u + (get_local $30) + (i32.add + (get_local $39) + (i32.const 704) + ) + ) + ) + (loop $label$272 + (i32.store8 + (tee_local $30 + (i32.add + (get_local $30) + (i32.const -1) + ) + ) + (i32.const 48) + ) + (br_if $label$272 + (i32.gt_u + (get_local $30) + (i32.add + (get_local $39) + (i32.const 704) + ) + ) + ) + ) + (set_local $30 + (i32.add + (get_local $39) + (i32.const 704) + ) + ) + (br $label$270) + ) + (br_if $label$270 + (get_local $17) + ) + (i32.store8 + (tee_local $30 + (i32.add + (get_local $30) + (i32.const -1) + ) + ) + (i32.const 48) + ) + ) + (block $label$273 + (br_if $label$273 + (i32.and + (i32.load8_u + (get_local $0) + ) + (i32.const 32) + ) + ) + (drop + (call $__fwritex + (get_local $30) + (i32.sub + (get_local $10) + (get_local $30) + ) + (get_local $0) + ) + ) + ) + (br_if $label$266 + (i32.le_u + (tee_local $37 + (i32.add + (get_local $37) + (i32.const 4) + ) + ) + (get_local $22) + ) + ) + ) + (block $label$274 + (br_if $label$274 + (i32.eqz + (get_local $24) + ) + ) + (br_if $label$274 + (i32.and + (i32.load8_u + (get_local $0) + ) + (i32.const 32) + ) + ) + (drop + (call $__fwritex + (i32.const 10608) + (i32.const 1) + (get_local $0) + ) + ) + ) + (br_if $label$264 + (i32.lt_s + (get_local $28) + (i32.const 1) + ) + ) + (br_if $label$263 + (i32.ge_u + (get_local $37) + (get_local $14) + ) + ) + (loop $label$275 + (set_local $30 + (get_local $10) + ) + (block $label$276 + (block $label$277 + (br_if $label$277 + (i32.eqz + (tee_local $17 + (i32.load + (get_local $37) + ) + ) + ) + ) + (set_local $30 + (get_local $10) + ) + (loop $label$278 + (i32.store8 + (tee_local $30 + (i32.add + (get_local $30) + (i32.const -1) + ) + ) + (i32.or + (i32.rem_u + (get_local $17) + (i32.const 10) + ) + (i32.const 48) + ) + ) + (set_local $36 + (i32.gt_u + (get_local $17) + (i32.const 9) + ) + ) + (set_local $17 + (i32.div_u + (get_local $17) + (i32.const 10) + ) + ) + (br_if $label$278 + (get_local $36) + ) + ) + (br_if $label$276 + (i32.le_u + (get_local $30) + (i32.add + (get_local $39) + (i32.const 704) + ) + ) + ) + ) + (loop $label$279 + (i32.store8 + (tee_local $30 + (i32.add + (get_local $30) + (i32.const -1) + ) + ) + (i32.const 48) + ) + (br_if $label$279 + (i32.gt_u + (get_local $30) + (i32.add + (get_local $39) + (i32.const 704) + ) + ) + ) + ) + ) + (block $label$280 + (br_if $label$280 + (i32.and + (i32.load8_u + (get_local $0) + ) + (i32.const 32) + ) + ) + (drop + (call $__fwritex + (get_local $30) + (select + (get_local $28) + (i32.const 9) + (i32.lt_s + (get_local $28) + (i32.const 9) + ) + ) + (get_local $0) + ) + ) + ) + (set_local $30 + (i32.add + (get_local $28) + (i32.const -9) + ) + ) + (br_if $label$262 + (i32.lt_s + (get_local $28) + (i32.const 10) + ) + ) + (set_local $28 + (get_local $30) + ) + (br_if $label$275 + (i32.lt_u + (tee_local $37 + (i32.add + (get_local $37) + (i32.const 4) + ) + ) + (get_local $14) + ) + ) + (br $label$262) + ) + ) + (br_if $label$258 + (i32.le_s + (get_local $28) + (i32.const -1) + ) + ) + (set_local $31 + (select + (get_local $14) + (i32.add + (get_local $17) + (i32.const 4) + ) + (get_local $27) + ) + ) + (br_if $label$260 + (i32.eqz + (get_local $16) + ) + ) + (set_local $37 + (get_local $17) + ) + (loop $label$281 + (set_local $14 + (get_local $10) + ) + (block $label$282 + (block $label$283 + (br_if $label$283 + (i32.eqz + (tee_local $30 + (i32.load + (get_local $37) + ) + ) + ) + ) + (set_local $36 + (i32.const 0) + ) + (loop $label$284 + (i32.store8 + (i32.add + (i32.add + (i32.add + (get_local $39) + (i32.const 704) + ) + (get_local $36) + ) + (i32.const 8) + ) + (i32.or + (i32.rem_u + (get_local $30) + (i32.const 10) + ) + (i32.const 48) + ) + ) + (set_local $36 + (i32.add + (get_local $36) + (i32.const -1) + ) + ) + (set_local $14 + (i32.gt_u + (get_local $30) + (i32.const 9) + ) + ) + (set_local $30 + (i32.div_u + (get_local $30) + (i32.const 10) + ) + ) + (br_if $label$284 + (get_local $14) + ) + ) + (set_local $14 + (i32.add + (i32.add + (i32.add + (get_local $39) + (i32.const 704) + ) + (get_local $36) + ) + (i32.const 9) + ) + ) + (br_if $label$282 + (get_local $36) + ) + ) + (i32.store8 + (tee_local $14 + (i32.add + (get_local $14) + (i32.const -1) + ) + ) + (i32.const 48) + ) + ) + (block $label$285 + (block $label$286 + (br_if $label$286 + (i32.eq + (get_local $37) + (get_local $17) + ) + ) + (br_if $label$285 + (i32.le_u + (get_local $14) + (i32.add + (get_local $39) + (i32.const 704) + ) + ) + ) + (loop $label$287 + (i32.store8 + (tee_local $14 + (i32.add + (get_local $14) + (i32.const -1) + ) + ) + (i32.const 48) + ) + (br_if $label$287 + (i32.gt_u + (get_local $14) + (i32.add + (get_local $39) + (i32.const 704) + ) + ) + ) + (br $label$285) + ) + ) + (block $label$288 + (br_if $label$288 + (i32.and + (tee_local $30 + (i32.load + (get_local $0) + ) + ) + (i32.const 32) + ) + ) + (drop + (call $__fwritex + (get_local $14) + (i32.const 1) + (get_local $0) + ) + ) + (set_local $30 + (i32.load + (get_local $0) + ) + ) + ) + (set_local $14 + (i32.add + (get_local $14) + (i32.const 1) + ) + ) + (br_if $label$285 + (i32.and + (get_local $30) + (i32.const 32) + ) + ) + (drop + (call $__fwritex + (i32.const 10608) + (i32.const 1) + (get_local $0) + ) + ) + ) + (set_local $30 + (i32.sub + (get_local $10) + (get_local $14) + ) + ) + (block $label$289 + (br_if $label$289 + (i32.and + (i32.load8_u + (get_local $0) + ) + (i32.const 32) + ) + ) + (drop + (call $__fwritex + (get_local $14) + (select + (get_local $30) + (get_local $28) + (i32.gt_s + (get_local $28) + (get_local $30) + ) + ) + (get_local $0) + ) + ) + ) + (set_local $28 + (i32.sub + (get_local $28) + (get_local $30) + ) + ) + (br_if $label$259 + (i32.ge_u + (tee_local $37 + (i32.add + (get_local $37) + (i32.const 4) + ) + ) + (get_local $31) + ) + ) + (br_if $label$281 + (i32.gt_s + (get_local $28) + (i32.const -1) + ) + ) + (br $label$259) + ) + ) + (br_if $label$261 + (i32.ge_s + (tee_local $30 + (get_local $28) + ) + (i32.const 1) + ) + ) + (br $label$257) + ) + (set_local $30 + (get_local $28) + ) + ) + (br_if $label$257 + (i32.lt_s + (get_local $30) + (i32.const 1) + ) + ) + ) + (drop + (call $memset + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 48) + (select + (get_local $30) + (i32.const 256) + (tee_local $17 + (i32.lt_u + (get_local $30) + (i32.const 256) + ) + ) + ) + ) + ) + (set_local $36 + (i32.and + (tee_local $14 + (i32.load + (get_local $0) + ) + ) + (i32.const 32) + ) + ) + (block $label$290 + (block $label$291 + (br_if $label$291 + (get_local $17) + ) + (set_local $17 + (i32.eqz + (get_local $36) + ) + ) + (set_local $36 + (get_local $30) + ) + (loop $label$292 + (block $label$293 + (br_if $label$293 + (i32.eqz + (i32.and + (get_local $17) + (i32.const 1) + ) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 256) + (get_local $0) + ) + ) + (set_local $14 + (i32.load + (get_local $0) + ) + ) + ) + (set_local $17 + (i32.eqz + (tee_local $37 + (i32.and + (get_local $14) + (i32.const 32) + ) + ) + ) + ) + (br_if $label$292 + (i32.gt_u + (tee_local $36 + (i32.add + (get_local $36) + (i32.const -256) + ) + ) + (i32.const 255) + ) + ) + ) + (br_if $label$257 + (get_local $37) + ) + (set_local $30 + (i32.and + (get_local $30) + (i32.const 255) + ) + ) + (br $label$290) + ) + (br_if $label$257 + (get_local $36) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (get_local $30) + (get_local $0) + ) + ) + (br_if $label$256 + (i32.eq + (get_local $18) + (i32.const 8192) + ) + ) + (br $label$255) + ) + (set_local $37 + (get_local $17) + ) + (loop $label$294 + (set_local $14 + (get_local $10) + ) + (block $label$295 + (block $label$296 + (br_if $label$296 + (i32.eqz + (tee_local $30 + (i32.load + (get_local $37) + ) + ) + ) + ) + (set_local $36 + (i32.const 0) + ) + (loop $label$297 + (i32.store8 + (i32.add + (i32.add + (i32.add + (get_local $39) + (i32.const 704) + ) + (get_local $36) + ) + (i32.const 8) + ) + (i32.or + (i32.rem_u + (get_local $30) + (i32.const 10) + ) + (i32.const 48) + ) + ) + (set_local $36 + (i32.add + (get_local $36) + (i32.const -1) + ) + ) + (set_local $14 + (i32.gt_u + (get_local $30) + (i32.const 9) + ) + ) + (set_local $30 + (i32.div_u + (get_local $30) + (i32.const 10) + ) + ) + (br_if $label$297 + (get_local $14) + ) + ) + (set_local $14 + (i32.add + (i32.add + (i32.add + (get_local $39) + (i32.const 704) + ) + (get_local $36) + ) + (i32.const 9) + ) + ) + (br_if $label$295 + (get_local $36) + ) + ) + (i32.store8 + (tee_local $14 + (i32.add + (get_local $14) + (i32.const -1) + ) + ) + (i32.const 48) + ) + ) + (block $label$298 + (block $label$299 + (br_if $label$299 + (i32.eq + (get_local $37) + (get_local $17) + ) + ) + (br_if $label$298 + (i32.le_u + (get_local $14) + (i32.add + (get_local $39) + (i32.const 704) + ) + ) + ) + (loop $label$300 + (i32.store8 + (tee_local $14 + (i32.add + (get_local $14) + (i32.const -1) + ) + ) + (i32.const 48) + ) + (br_if $label$300 + (i32.gt_u + (get_local $14) + (i32.add + (get_local $39) + (i32.const 704) + ) + ) + ) + (br $label$298) + ) + ) + (block $label$301 + (br_if $label$301 + (i32.and + (i32.load8_u + (get_local $0) + ) + (i32.const 32) + ) + ) + (drop + (call $__fwritex + (get_local $14) + (i32.const 1) + (get_local $0) + ) + ) + ) + (set_local $14 + (i32.add + (get_local $14) + (i32.const 1) + ) + ) + (br_if $label$298 + (i32.lt_s + (get_local $28) + (i32.const 1) + ) + ) + (br_if $label$298 + (i32.and + (i32.load8_u + (get_local $0) + ) + (i32.const 32) + ) + ) + (drop + (call $__fwritex + (i32.const 10608) + (i32.const 1) + (get_local $0) + ) + ) + ) + (set_local $30 + (i32.sub + (get_local $10) + (get_local $14) + ) + ) + (block $label$302 + (br_if $label$302 + (i32.and + (i32.load8_u + (get_local $0) + ) + (i32.const 32) + ) + ) + (drop + (call $__fwritex + (get_local $14) + (select + (get_local $30) + (get_local $28) + (i32.gt_s + (get_local $28) + (get_local $30) + ) + ) + (get_local $0) + ) + ) + ) + (set_local $28 + (i32.sub + (get_local $28) + (get_local $30) + ) + ) + (br_if $label$259 + (i32.ge_u + (tee_local $37 + (i32.add + (get_local $37) + (i32.const 4) + ) + ) + (get_local $31) + ) + ) + (br_if $label$294 + (i32.gt_s + (get_local $28) + (i32.const -1) + ) + ) + ) + ) + (br_if $label$258 + (i32.lt_s + (get_local $28) + (i32.const 1) + ) + ) + (drop + (call $memset + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 48) + (select + (get_local $28) + (i32.const 256) + (tee_local $30 + (i32.lt_u + (get_local $28) + (i32.const 256) + ) + ) + ) + ) + ) + (set_local $17 + (i32.and + (tee_local $36 + (i32.load + (get_local $0) + ) + ) + (i32.const 32) + ) + ) + (block $label$303 + (block $label$304 + (br_if $label$304 + (get_local $30) + ) + (set_local $30 + (i32.eqz + (get_local $17) + ) + ) + (set_local $17 + (get_local $28) + ) + (loop $label$305 + (block $label$306 + (br_if $label$306 + (i32.eqz + (i32.and + (get_local $30) + (i32.const 1) + ) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 256) + (get_local $0) + ) + ) + (set_local $36 + (i32.load + (get_local $0) + ) + ) + ) + (set_local $30 + (i32.eqz + (tee_local $14 + (i32.and + (get_local $36) + (i32.const 32) + ) + ) + ) + ) + (br_if $label$305 + (i32.gt_u + (tee_local $17 + (i32.add + (get_local $17) + (i32.const -256) + ) + ) + (i32.const 255) + ) + ) + ) + (br_if $label$258 + (get_local $14) + ) + (set_local $28 + (i32.and + (get_local $28) + (i32.const 255) + ) + ) + (br $label$303) + ) + (br_if $label$258 + (get_local $17) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (get_local $28) + (get_local $0) + ) + ) + ) + (br_if $label$257 + (i32.and + (i32.load8_u + (get_local $0) + ) + (i32.const 32) + ) + ) + (drop + (call $__fwritex + (get_local $25) + (i32.sub + (get_local $7) + (get_local $25) + ) + (get_local $0) + ) + ) + ) + (br_if $label$255 + (i32.ne + (get_local $18) + (i32.const 8192) + ) + ) + ) + (br_if $label$255 + (i32.le_s + (get_local $15) + (get_local $26) + ) + ) + (drop + (call $memset + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 32) + (select + (tee_local $37 + (i32.sub + (get_local $15) + (get_local $26) + ) + ) + (i32.const 256) + (tee_local $30 + (i32.lt_u + (get_local $37) + (i32.const 256) + ) + ) + ) + ) + ) + (set_local $17 + (i32.and + (tee_local $36 + (i32.load + (get_local $0) + ) + ) + (i32.const 32) + ) + ) + (block $label$307 + (block $label$308 + (br_if $label$308 + (get_local $30) + ) + (set_local $30 + (i32.eqz + (get_local $17) + ) + ) + (set_local $17 + (get_local $37) + ) + (loop $label$309 + (block $label$310 + (br_if $label$310 + (i32.eqz + (i32.and + (get_local $30) + (i32.const 1) + ) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (i32.const 256) + (get_local $0) + ) + ) + (set_local $36 + (i32.load + (get_local $0) + ) + ) + ) + (set_local $30 + (i32.eqz + (tee_local $14 + (i32.and + (get_local $36) + (i32.const 32) + ) + ) + ) + ) + (br_if $label$309 + (i32.gt_u + (tee_local $17 + (i32.add + (get_local $17) + (i32.const -256) + ) + ) + (i32.const 255) + ) + ) + ) + (br_if $label$255 + (get_local $14) + ) + (set_local $37 + (i32.and + (get_local $37) + (i32.const 255) + ) + ) + (br $label$307) + ) + (br_if $label$255 + (get_local $17) + ) + ) + (drop + (call $__fwritex + (i32.add + (get_local $39) + (i32.const 432) + ) + (get_local $37) + (get_local $0) + ) + ) + ) + (set_local $30 + (select + (get_local $15) + (get_local $26) + (i32.gt_s + (get_local $15) + (get_local $26) + ) + ) + ) + ) + (br_if $label$14 + (i32.lt_s + (get_local $30) + (i32.const 0) + ) + ) + ) + (br_if $label$16 + (i32.le_s + (get_local $30) + (get_local $13) + ) + ) + (br $label$14) + ) + ) + (br_if $label$0 + (get_local $0) + ) + (br_if $label$13 + (i32.eqz + (get_local $32) + ) + ) + (set_local $30 + (i32.const 1) + ) + (br_if $label$3 + (i32.eqz + (tee_local $1 + (i32.load offset=4 + (get_local $4) + ) + ) + ) + ) + (call $pop_arg + (i32.add + (get_local $3) + (i32.const 16) + ) + (get_local $1) + (get_local $2) + ) + (br_if $label$12 + (i32.eqz + (tee_local $1 + (i32.load offset=8 + (get_local $4) + ) + ) + ) + ) + (call $pop_arg + (i32.add + (get_local $3) + (i32.const 32) + ) + (get_local $1) + (get_local $2) + ) + (br_if $label$11 + (i32.eqz + (tee_local $1 + (i32.load offset=12 + (get_local $4) + ) + ) + ) + ) + (call $pop_arg + (i32.add + (get_local $3) + (i32.const 48) + ) + (get_local $1) + (get_local $2) + ) + (br_if $label$9 + (i32.eqz + (tee_local $1 + (i32.load offset=16 + (get_local $4) + ) + ) + ) + ) + (call $pop_arg + (i32.add + (get_local $3) + (i32.const 64) + ) + (get_local $1) + (get_local $2) + ) + (br_if $label$8 + (i32.eqz + (tee_local $1 + (i32.load offset=20 + (get_local $4) + ) + ) + ) + ) + (call $pop_arg + (i32.add + (get_local $3) + (i32.const 80) + ) + (get_local $1) + (get_local $2) + ) + (br_if $label$7 + (i32.eqz + (tee_local $1 + (i32.load offset=24 + (get_local $4) + ) + ) + ) + ) + (call $pop_arg + (i32.add + (get_local $3) + (i32.const 96) + ) + (get_local $1) + (get_local $2) + ) + (br_if $label$6 + (i32.eqz + (tee_local $1 + (i32.load offset=28 + (get_local $4) + ) + ) + ) + ) + (call $pop_arg + (i32.add + (get_local $3) + (i32.const 112) + ) + (get_local $1) + (get_local $2) + ) + (br_if $label$5 + (i32.eqz + (tee_local $1 + (i32.load offset=32 + (get_local $4) + ) + ) + ) + ) + (call $pop_arg + (i32.add + (get_local $3) + (i32.const 128) + ) + (get_local $1) + (get_local $2) + ) + (br_if $label$4 + (i32.eqz + (tee_local $1 + (i32.load offset=36 + (get_local $4) + ) + ) + ) + ) + (call $pop_arg + (i32.add + (get_local $3) + (i32.const 144) + ) + (get_local $1) + (get_local $2) + ) + (set_local $38 + (i32.const 1) + ) + (br $label$0) + ) + (i32.store + (call $__errno_location) + (i32.const 75) + ) + (br $label$1) + ) + (set_local $38 + (i32.const 0) + ) + (br $label$0) + ) + (set_local $30 + (i32.const 2) + ) + (br $label$3) + ) + (set_local $30 + (i32.const 3) + ) + (br $label$3) + ) + (set_local $38 + (i32.const 0) + ) + (br $label$0) + ) + (set_local $30 + (i32.const 4) + ) + (br $label$3) + ) + (set_local $30 + (i32.const 5) + ) + (br $label$3) + ) + (set_local $30 + (i32.const 6) + ) + (br $label$3) + ) + (set_local $30 + (i32.const 7) + ) + (br $label$3) + ) + (set_local $30 + (i32.const 8) + ) + (br $label$3) + ) + (set_local $30 + (i32.const 9) + ) + ) + (set_local $1 + (i32.add + (get_local $4) + (i32.shl + (get_local $30) + (i32.const 2) + ) + ) + ) + (loop $label$311 + (br_if $label$2 + (i32.load + (get_local $1) + ) + ) + (set_local $1 + (i32.add + (get_local $1) + (i32.const 4) + ) + ) + (set_local $38 + (i32.const 1) + ) + (br_if $label$311 + (i32.le_u + (tee_local $30 + (i32.add + (get_local $30) + (i32.const 1) + ) + ) + (i32.const 9) + ) + ) + (br $label$0) + ) + ) + (i32.store + (call $__errno_location) + (i32.const 22) + ) + ) + (set_local $38 + (i32.const -1) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $39) + (i32.const 8128) + ) + ) + (get_local $38) + ) + (func $__lockfile (param $0 i32) (result i32) + (local $1 i32) + (get_local $1) + ) + (func $__unlockfile (param $0 i32) + ) + (func $__fwritex (param $0 i32) (param $1 i32) (param $2 i32) (result i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (local $8 i32) + (block $label$0 + (block $label$1 + (br_if $label$1 + (tee_local $6 + (i32.load offset=16 + (get_local $2) + ) + ) + ) + (set_local $6 + (i32.const 0) + ) + (br_if $label$0 + (call $__towrite + (get_local $2) + ) + ) + (set_local $6 + (i32.load + (i32.add + (get_local $2) + (i32.const 16) + ) + ) + ) + ) + (block $label$2 + (br_if $label$2 + (i32.ge_u + (i32.sub + (get_local $6) + (tee_local $7 + (i32.load offset=20 + (get_local $2) + ) + ) + ) + (get_local $1) + ) + ) + (return + (call_indirect (type $FUNCSIG$iiii) + (get_local $2) + (get_local $0) + (get_local $1) + (i32.load offset=36 + (get_local $2) + ) + ) + ) + ) + (set_local $8 + (i32.const 0) + ) + (block $label$3 + (br_if $label$3 + (i32.lt_s + (i32.load8_s offset=75 + (get_local $2) + ) + (i32.const 0) + ) + ) + (set_local $3 + (i32.add + (get_local $0) + (get_local $1) + ) + ) + (set_local $8 + (i32.const 0) + ) + (set_local $6 + (i32.const 0) + ) + (loop $label$4 + (br_if $label$3 + (i32.eqz + (i32.add + (get_local $1) + (get_local $6) + ) + ) + ) + (set_local $5 + (i32.add + (get_local $3) + (get_local $6) + ) + ) + (set_local $6 + (tee_local $4 + (i32.add + (get_local $6) + (i32.const -1) + ) + ) + ) + (br_if $label$4 + (i32.ne + (i32.load8_u + (i32.add + (get_local $5) + (i32.const -1) + ) + ) + (i32.const 10) + ) + ) + ) + (br_if $label$0 + (i32.lt_u + (tee_local $6 + (call_indirect (type $FUNCSIG$iiii) + (get_local $2) + (get_local $0) + (tee_local $8 + (i32.add + (i32.add + (get_local $1) + (get_local $4) + ) + (i32.const 1) + ) + ) + (i32.load offset=36 + (get_local $2) + ) + ) + ) + (get_local $8) + ) + ) + (set_local $1 + (i32.xor + (get_local $4) + (i32.const -1) + ) + ) + (set_local $0 + (i32.add + (i32.add + (get_local $3) + (get_local $4) + ) + (i32.const 1) + ) + ) + (set_local $7 + (i32.load + (i32.add + (get_local $2) + (i32.const 20) + ) + ) + ) + ) + (drop + (call $memcpy + (get_local $7) + (get_local $0) + (get_local $1) + ) + ) + (i32.store + (tee_local $6 + (i32.add + (get_local $2) + (i32.const 20) + ) + ) + (i32.add + (i32.load + (get_local $6) + ) + (get_local $1) + ) + ) + (return + (i32.add + (get_local $8) + (get_local $1) + ) + ) + ) + (get_local $6) + ) + (func $pop_arg (param $0 i32) (param $1 i32) (param $2 i32) + (local $3 i64) + (local $4 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $4 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 16) + ) + ) + ) + (block $label$0 + (br_if $label$0 + (i32.gt_u + (tee_local $1 + (i32.add + (get_local $1) + (i32.const -9) + ) + ) + (i32.const 17) + ) + ) + (block $label$1 + (block $label$2 + (block $label$3 + (block $label$4 + (block $label$5 + (block $label$6 + (block $label$7 + (block $label$8 + (block $label$9 + (block $label$10 + (block $label$11 + (block $label$12 + (block $label$13 + (block $label$14 + (block $label$15 + (block $label$16 + (block $label$17 + (block $label$18 + (br_table $label$18 $label$17 $label$16 $label$15 $label$14 $label$13 $label$12 $label$11 $label$10 $label$9 $label$8 $label$7 $label$6 $label$5 $label$4 $label$3 $label$2 $label$1 $label$18 + (get_local $1) + ) + ) + (i32.store + (get_local $2) + (i32.add + (tee_local $1 + (i32.load + (get_local $2) + ) + ) + (i32.const 4) + ) + ) + (i32.store + (get_local $0) + (i32.load + (get_local $1) + ) + ) + (br $label$0) + ) + (i32.store + (get_local $2) + (i32.add + (tee_local $1 + (i32.load + (get_local $2) + ) + ) + (i32.const 4) + ) + ) + (i64.store + (get_local $0) + (i64.load32_s + (get_local $1) + ) + ) + (br $label$0) + ) + (i32.store + (get_local $2) + (i32.add + (tee_local $1 + (i32.load + (get_local $2) + ) + ) + (i32.const 4) + ) + ) + (i64.store + (get_local $0) + (i64.load32_u + (get_local $1) + ) + ) + (br $label$0) + ) + (i32.store + (get_local $2) + (i32.add + (tee_local $1 + (i32.and + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 7) + ) + (i32.const -8) + ) + ) + (i32.const 8) + ) + ) + (i64.store + (get_local $0) + (i64.load + (get_local $1) + ) + ) + (br $label$0) + ) + (i32.store + (get_local $2) + (i32.add + (tee_local $1 + (i32.load + (get_local $2) + ) + ) + (i32.const 4) + ) + ) + (i64.store + (get_local $0) + (i64.load32_s + (get_local $1) + ) + ) + (br $label$0) + ) + (i32.store + (get_local $2) + (i32.add + (tee_local $1 + (i32.load + (get_local $2) + ) + ) + (i32.const 4) + ) + ) + (i64.store + (get_local $0) + (i64.load32_u + (get_local $1) + ) + ) + (br $label$0) + ) + (i32.store + (get_local $2) + (i32.add + (tee_local $1 + (i32.load + (get_local $2) + ) + ) + (i32.const 4) + ) + ) + (i64.store + (get_local $0) + (i64.load16_s + (get_local $1) + ) + ) + (br $label$0) + ) + (i32.store + (get_local $2) + (i32.add + (tee_local $1 + (i32.load + (get_local $2) + ) + ) + (i32.const 4) + ) + ) + (i64.store + (get_local $0) + (i64.load16_u + (get_local $1) + ) + ) + (br $label$0) + ) + (i32.store + (get_local $2) + (i32.add + (tee_local $1 + (i32.load + (get_local $2) + ) + ) + (i32.const 4) + ) + ) + (i64.store + (get_local $0) + (i64.load8_s + (get_local $1) + ) + ) + (br $label$0) + ) + (i32.store + (get_local $2) + (i32.add + (tee_local $1 + (i32.load + (get_local $2) + ) + ) + (i32.const 4) + ) + ) + (i64.store + (get_local $0) + (i64.load8_u + (get_local $1) + ) + ) + (br $label$0) + ) + (i32.store + (get_local $2) + (i32.add + (tee_local $1 + (i32.and + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 7) + ) + (i32.const -8) + ) + ) + (i32.const 8) + ) + ) + (i64.store + (get_local $0) + (i64.load + (get_local $1) + ) + ) + (br $label$0) + ) + (i32.store + (get_local $2) + (i32.add + (tee_local $1 + (i32.load + (get_local $2) + ) + ) + (i32.const 4) + ) + ) + (i64.store + (get_local $0) + (i64.load32_u + (get_local $1) + ) + ) + (br $label$0) + ) + (i32.store + (get_local $2) + (i32.add + (tee_local $1 + (i32.and + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 7) + ) + (i32.const -8) + ) + ) + (i32.const 8) + ) + ) + (i64.store + (get_local $0) + (i64.load + (get_local $1) + ) + ) + (br $label$0) + ) + (i32.store + (get_local $2) + (i32.add + (tee_local $1 + (i32.and + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 7) + ) + (i32.const -8) + ) + ) + (i32.const 8) + ) + ) + (i64.store + (get_local $0) + (i64.load + (get_local $1) + ) + ) + (br $label$0) + ) + (i32.store + (get_local $2) + (i32.add + (tee_local $1 + (i32.load + (get_local $2) + ) + ) + (i32.const 4) + ) + ) + (i64.store + (get_local $0) + (i64.load32_s + (get_local $1) + ) + ) + (br $label$0) + ) + (i32.store + (get_local $2) + (i32.add + (tee_local $1 + (i32.load + (get_local $2) + ) + ) + (i32.const 4) + ) + ) + (i64.store + (get_local $0) + (i64.load32_u + (get_local $1) + ) + ) + (br $label$0) + ) + (i32.store + (get_local $2) + (i32.add + (tee_local $1 + (i32.and + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 7) + ) + (i32.const -8) + ) + ) + (i32.const 8) + ) + ) + (call $__extenddftf2 + (get_local $4) + (f64.load + (get_local $1) + ) + ) + (i64.store + (i32.add + (get_local $0) + (i32.const 8) + ) + (i64.load + (i32.add + (get_local $4) + (i32.const 8) + ) + ) + ) + (i64.store + (get_local $0) + (i64.load + (get_local $4) + ) + ) + (br $label$0) + ) + (i32.store + (get_local $2) + (i32.add + (tee_local $1 + (i32.and + (i32.add + (i32.load + (get_local $2) + ) + (i32.const 15) + ) + (i32.const -16) + ) + ) + (i32.const 16) + ) + ) + (set_local $3 + (i64.load + (get_local $1) + ) + ) + (i64.store + (i32.add + (get_local $0) + (i32.const 8) + ) + (i64.load offset=8 + (get_local $1) + ) + ) + (i64.store + (get_local $0) + (get_local $3) + ) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $4) + (i32.const 16) + ) + ) + ) + (func $strerror (param $0 i32) (result i32) + (local $1 i32) + (local $2 i32) + (local $3 i32) + (set_local $2 + (i32.const 0) + ) + (block $label$0 + (block $label$1 + (block $label$2 + (block $label$3 + (loop $label$4 + (br_if $label$3 + (i32.eq + (i32.load8_u + (i32.add + (get_local $2) + (i32.const 10624) + ) + ) + (get_local $0) + ) + ) + (set_local $1 + (i32.const 87) + ) + (br_if $label$4 + (i32.ne + (tee_local $2 + (i32.add + (get_local $2) + (i32.const 1) + ) + ) + (i32.const 87) + ) + ) + (br $label$2) + ) + ) + (set_local $1 + (get_local $2) + ) + (br_if $label$1 + (i32.eqz + (get_local $2) + ) + ) + ) + (set_local $2 + (i32.const 10720) + ) + (loop $label$5 + (set_local $0 + (i32.load8_u + (get_local $2) + ) + ) + (set_local $2 + (tee_local $3 + (i32.add + (get_local $2) + (i32.const 1) + ) + ) + ) + (br_if $label$5 + (get_local $0) + ) + (set_local $2 + (get_local $3) + ) + (br_if $label$5 + (tee_local $1 + (i32.add + (get_local $1) + (i32.const -1) + ) + ) + ) + (br $label$0) + ) + ) + (set_local $3 + (i32.const 10720) + ) + ) + (call $__lctrans + (get_local $3) + (i32.load offset=20 + (i32.const 0) + ) + ) + ) + (func $strnlen (param $0 i32) (param $1 i32) (result i32) + (local $2 i32) + (select + (i32.sub + (tee_local $2 + (call $memchr + (get_local $0) + (i32.const 0) + (get_local $1) + ) + ) + (get_local $0) + ) + (get_local $1) + (get_local $2) + ) + ) + (func $wctomb (param $0 i32) (param $1 i32) (result i32) + (block $label$0 + (br_if $label$0 + (i32.eqz + (get_local $0) + ) + ) + (return + (call $wcrtomb + (get_local $0) + (get_local $1) + (i32.const 0) + ) + ) + ) + (i32.const 0) + ) + (func $__signbitl (param $0 i64) (param $1 i64) (result i32) + (i32.wrap/i64 + (i64.shr_u + (get_local $1) + (i64.const 63) + ) + ) + ) + (func $__fpclassifyl (param $0 i64) (param $1 i64) (result i32) + (local $2 i64) + (local $3 i32) + (local $4 i32) + (set_local $2 + (i64.and + (get_local $1) + (i64.const 281474976710655) + ) + ) + (block $label$0 + (block $label$1 + (br_if $label$1 + (i32.eq + (tee_local $3 + (i32.and + (i32.wrap/i64 + (i64.shr_u + (get_local $1) + (i64.const 48) + ) + ) + (i32.const 32767) + ) + ) + (i32.const 32767) + ) + ) + (set_local $4 + (i32.const 4) + ) + (br_if $label$0 + (get_local $3) + ) + (return + (select + (i32.const 3) + (i32.const 2) + (i64.ne + (i64.or + (get_local $2) + (get_local $0) + ) + (i64.const 0) + ) + ) + ) + ) + (set_local $4 + (i64.eqz + (i64.or + (get_local $2) + (get_local $0) + ) + ) + ) + ) + (get_local $4) + ) + (func $frexpl (param $0 i32) (param $1 i64) (param $2 i64) (param $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (i32.store offset=4 + (i32.const 0) + (tee_local $6 + (i32.sub + (i32.load offset=4 + (i32.const 0) + ) + (i32.const 32) + ) + ) + ) + (block $label$0 + (br_if $label$0 + (i32.eq + (tee_local $5 + (i32.and + (tee_local $4 + (i32.wrap/i64 + (i64.shr_u + (get_local $2) + (i64.const 48) + ) + ) + ) + (i32.const 32767) + ) + ) + (i32.const 32767) + ) + ) + (block $label$1 + (block $label$2 + (block $label$3 + (br_if $label$3 + (get_local $5) + ) + (br_if $label$2 + (i32.eqz + (call $__eqtf2 + (get_local $1) + (get_local $2) + (i64.const 0) + (i64.const 0) + ) + ) + ) + (call $__multf3 + (get_local $6) + (get_local $1) + (get_local $2) + (i64.const 0) + (i64.const 4645181540655955968) + ) + (call $frexpl + (i32.add + (get_local $6) + (i32.const 16) + ) + (i64.load + (get_local $6) + ) + (i64.load + (i32.add + (get_local $6) + (i32.const 8) + ) + ) + (get_local $3) + ) + (set_local $4 + (i32.add + (i32.load + (get_local $3) + ) + (i32.const -120) + ) + ) + (set_local $2 + (i64.load offset=24 + (get_local $6) + ) + ) + (set_local $1 + (i64.load offset=16 + (get_local $6) + ) + ) + (br $label$1) + ) + (i32.store + (get_local $3) + (i32.add + (i32.and + (get_local $4) + (i32.const 32767) + ) + (i32.const -16382) + ) + ) + (set_local $2 + (i64.or + (i64.shl + (i64.extend_u/i32 + (i32.or + (i32.and + (get_local $4) + (i32.const 32768) + ) + (i32.const 16382) + ) + ) + (i64.const 48) + ) + (i64.and + (get_local $2) + (i64.const 281474976710655) + ) + ) + ) + (br $label$0) + ) + (set_local $4 + (i32.const 0) + ) + ) + (i32.store + (get_local $3) + (get_local $4) + ) + ) + (i64.store + (get_local $0) + (get_local $1) + ) + (i64.store + (i32.add + (get_local $0) + (i32.const 8) + ) + (get_local $2) + ) + (i32.store offset=4 + (i32.const 0) + (i32.add + (get_local $6) + (i32.const 32) + ) + ) + ) + (func $wcrtomb (param $0 i32) (param $1 i32) (param $2 i32) (result i32) + (local $3 i32) + (set_local $3 + (i32.const 1) + ) + (block $label$0 + (br_if $label$0 + (i32.eqz + (get_local $0) + ) + ) + (block $label$1 + (br_if $label$1 + (i32.gt_u + (get_local $1) + (i32.const 127) + ) + ) + (i32.store8 + (get_local $0) + (get_local $1) + ) + (return + (i32.const 1) + ) + ) + (block $label$2 + (block $label$3 + (block $label$4 + (block $label$5 + (block $label$6 + (block $label$7 + (br_if $label$7 + (i32.eqz + (i32.load + (i32.const 0) + ) + ) + ) + (br_if $label$6 + (i32.gt_u + (get_local $1) + (i32.const 2047) + ) + ) + (i32.store8 offset=1 + (get_local $0) + (i32.or + (i32.and + (get_local $1) + (i32.const 63) + ) + (i32.const 128) + ) + ) + (i32.store8 + (get_local $0) + (i32.or + (i32.shr_u + (get_local $1) + (i32.const 6) + ) + (i32.const 192) + ) + ) + (return + (i32.const 2) + ) + ) + (br_if $label$5 + (i32.ne + (i32.and + (get_local $1) + (i32.const -128) + ) + (i32.const 57216) + ) + ) + (i32.store8 + (get_local $0) + (get_local $1) + ) + (return + (i32.const 1) + ) + ) + (br_if $label$4 + (i32.lt_u + (get_local $1) + (i32.const 55296) + ) + ) + (br_if $label$4 + (i32.eq + (i32.and + (get_local $1) + (i32.const -8192) + ) + (i32.const 57344) + ) + ) + (br_if $label$3 + (i32.gt_u + (i32.add + (get_local $1) + (i32.const -65536) + ) + (i32.const 1048575) + ) + ) + (i32.store8 + (get_local $0) + (i32.or + (i32.shr_u + (get_local $1) + (i32.const 18) + ) + (i32.const 240) + ) + ) + (i32.store8 offset=3 + (get_local $0) + (i32.or + (i32.and + (get_local $1) + (i32.const 63) + ) + (i32.const 128) + ) + ) + (i32.store8 offset=1 + (get_local $0) + (i32.or + (i32.and + (i32.shr_u + (get_local $1) + (i32.const 12) + ) + (i32.const 63) + ) + (i32.const 128) + ) + ) + (i32.store8 offset=2 + (get_local $0) + (i32.or + (i32.and + (i32.shr_u + (get_local $1) + (i32.const 6) + ) + (i32.const 63) + ) + (i32.const 128) + ) + ) + (return + (i32.const 4) + ) + ) + (i32.store + (call $__errno_location) + (i32.const 84) + ) + (br $label$2) + ) + (i32.store8 + (get_local $0) + (i32.or + (i32.shr_u + (get_local $1) + (i32.const 12) + ) + (i32.const 224) + ) + ) + (i32.store8 offset=2 + (get_local $0) + (i32.or + (i32.and + (get_local $1) + (i32.const 63) + ) + (i32.const 128) + ) + ) + (i32.store8 offset=1 + (get_local $0) + (i32.or + (i32.and + (i32.shr_u + (get_local $1) + (i32.const 6) + ) + (i32.const 63) + ) + (i32.const 128) + ) + ) + (return + (i32.const 3) + ) + ) + (i32.store + (call $__errno_location) + (i32.const 84) + ) + ) + (set_local $3 + (i32.const -1) + ) + ) + (get_local $3) + ) + (func $memchr (param $0 i32) (param $1 i32) (param $2 i32) (result i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (set_local $6 + (i32.const 0) + ) + (set_local $4 + (i32.ne + (get_local $2) + (i32.const 0) + ) + ) + (block $label$0 + (block $label$1 + (block $label$2 + (block $label$3 + (block $label$4 + (block $label$5 + (br_if $label$5 + (i32.eqz + (get_local $2) + ) + ) + (br_if $label$4 + (i32.eqz + (i32.and + (get_local $0) + (i32.const 3) + ) + ) + ) + (set_local $3 + (i32.and + (get_local $1) + (i32.const 255) + ) + ) + (loop $label$6 + (br_if $label$2 + (i32.eq + (i32.load8_u + (get_local $0) + ) + (get_local $3) + ) + ) + (set_local $4 + (i32.ne + (get_local $2) + (i32.const 1) + ) + ) + (set_local $5 + (i32.add + (get_local $2) + (i32.const -1) + ) + ) + (set_local $0 + (i32.add + (get_local $0) + (i32.const 1) + ) + ) + (br_if $label$3 + (i32.eq + (get_local $2) + (i32.const 1) + ) + ) + (set_local $2 + (get_local $5) + ) + (br_if $label$6 + (i32.and + (get_local $0) + (i32.const 3) + ) + ) + (br $label$3) + ) + ) + (set_local $5 + (get_local $2) + ) + (br_if $label$1 + (get_local $4) + ) + (br $label$0) + ) + (set_local $5 + (get_local $2) + ) + ) + (br_if $label$1 + (get_local $4) + ) + (br $label$0) + ) + (set_local $5 + (get_local $2) + ) + ) + (block $label$7 + (br_if $label$7 + (i32.eq + (i32.load8_u + (get_local $0) + ) + (i32.and + (get_local $1) + (i32.const 255) + ) + ) + ) + (block $label$8 + (block $label$9 + (br_if $label$9 + (i32.lt_u + (get_local $5) + (i32.const 4) + ) + ) + (set_local $4 + (i32.mul + (i32.and + (get_local $1) + (i32.const 255) + ) + (i32.const 16843009) + ) + ) + (loop $label$10 + (br_if $label$8 + (i32.and + (i32.and + (i32.xor + (tee_local $2 + (i32.xor + (i32.load + (get_local $0) + ) + (get_local $4) + ) + ) + (i32.const -1) + ) + (i32.add + (get_local $2) + (i32.const -16843009) + ) + ) + (i32.const -2139062144) + ) + ) + (set_local $0 + (i32.add + (get_local $0) + (i32.const 4) + ) + ) + (br_if $label$10 + (i32.gt_u + (tee_local $5 + (i32.add + (get_local $5) + (i32.const -4) + ) + ) + (i32.const 3) + ) + ) + ) + ) + (br_if $label$0 + (i32.eqz + (get_local $5) + ) + ) + ) + (set_local $2 + (i32.and + (get_local $1) + (i32.const 255) + ) + ) + (loop $label$11 + (br_if $label$7 + (i32.eq + (i32.load8_u + (get_local $0) + ) + (get_local $2) + ) + ) + (set_local $0 + (i32.add + (get_local $0) + (i32.const 1) + ) + ) + (br_if $label$11 + (tee_local $5 + (i32.add + (get_local $5) + (i32.const -1) + ) + ) + ) + (br $label$0) + ) + ) + (set_local $6 + (get_local $5) + ) + ) + (select + (get_local $0) + (i32.const 0) + (get_local $6) + ) + ) + (func $__lctrans (param $0 i32) (param $1 i32) (result i32) + (call $__lctrans_impl + (get_local $0) + (get_local $1) + ) + ) + (func $__lctrans_impl (param $0 i32) (param $1 i32) (result i32) + (block $label$0 + (br_if $label$0 + (i32.eqz + (get_local $1) + ) + ) + (return + (select + (tee_local $1 + (call $__mo_lookup + (i32.load + (get_local $1) + ) + (i32.load offset=4 + (get_local $1) + ) + (get_local $0) + ) + ) + (get_local $0) + (get_local $1) + ) + ) + ) + (select + (i32.const 0) + (get_local $0) + (i32.const 0) + ) + ) + (func $__mo_lookup (param $0 i32) (param $1 i32) (param $2 i32) (result i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (local $6 i32) + (local $7 i32) + (local $8 i32) + (local $9 i32) + (local $10 i32) + (local $11 i32) + (local $12 i32) + (local $13 i32) + (block $label$0 + (block $label$1 + (block $label$2 + (block $label$3 + (br_if $label$3 + (i32.ge_u + (tee_local $5 + (select + (tee_local $4 + (i32.load offset=8 + (get_local $0) + ) + ) + (tee_local $9 + (i32.or + (i32.or + (i32.shl + (get_local $4) + (i32.const 24) + ) + (i32.and + (i32.shl + (get_local $4) + (i32.const 8) + ) + (i32.const 16711680) + ) + ) + (i32.or + (i32.and + (i32.shr_u + (get_local $4) + (i32.const 8) + ) + (i32.const 65280) + ) + (i32.shr_u + (get_local $4) + (i32.const 24) + ) + ) + ) + ) + (tee_local $10 + (i32.eq + (tee_local $3 + (i32.load + (get_local $0) + ) + ) + (i32.const -1794895138) + ) + ) + ) + ) + (i32.shr_u + (get_local $1) + (i32.const 2) + ) + ) + ) + (br_if $label$2 + (i32.ge_u + (tee_local $6 + (select + (tee_local $11 + (i32.load offset=12 + (get_local $0) + ) + ) + (i32.or + (i32.or + (i32.shl + (get_local $11) + (i32.const 24) + ) + (i32.and + (i32.shl + (get_local $11) + (i32.const 8) + ) + (i32.const 16711680) + ) + ) + (i32.or + (i32.and + (i32.shr_u + (get_local $11) + (i32.const 8) + ) + (i32.const 65280) + ) + (i32.shr_u + (get_local $11) + (i32.const 24) + ) + ) + ) + (get_local $10) + ) + ) + (tee_local $12 + (i32.sub + (get_local $1) + (i32.shl + (get_local $5) + (i32.const 2) + ) + ) + ) + ) + ) + (br_if $label$1 + (i32.ge_u + (tee_local $10 + (select + (tee_local $11 + (i32.load offset=16 + (get_local $0) + ) + ) + (i32.or + (i32.or + (i32.shl + (get_local $11) + (i32.const 24) + ) + (i32.and + (i32.shl + (get_local $11) + (i32.const 8) + ) + (i32.const 16711680) + ) + ) + (i32.or + (i32.and + (i32.shr_u + (get_local $11) + (i32.const 8) + ) + (i32.const 65280) + ) + (i32.shr_u + (get_local $11) + (i32.const 24) + ) + ) + ) + (get_local $10) + ) + ) + (get_local $12) + ) + ) + (br_if $label$0 + (i32.eqz + (i32.and + (i32.or + (get_local $10) + (get_local $6) + ) + (i32.const 3) + ) + ) + ) + (return + (i32.const 0) + ) + ) + (return + (i32.const 0) + ) + ) + (return + (i32.const 0) + ) + ) + (return + (i32.const 0) + ) + ) + (set_local $12 + (i32.shr_u + (get_local $6) + (i32.const 2) + ) + ) + (block $label$4 + (block $label$5 + (block $label$6 + (block $label$7 + (block $label$8 + (block $label$9 + (block $label$10 + (block $label$11 + (block $label$12 + (block $label$13 + (block $label$14 + (block $label$15 + (br_if $label$15 + (i32.ne + (get_local $3) + (i32.const -1794895138) + ) + ) + (br_if $label$14 + (i32.ge_u + (tee_local $11 + (i32.load + (i32.add + (tee_local $9 + (i32.add + (get_local $0) + (i32.shl + (i32.add + (tee_local $6 + (i32.shl + (tee_local $5 + (i32.shr_u + (get_local $5) + (i32.const 1) + ) + ) + (i32.const 1) + ) + ) + (get_local $12) + ) + (i32.const 2) + ) + ) + ) + (i32.const 4) + ) + ) + ) + (get_local $1) + ) + ) + (br_if $label$13 + (i32.ge_u + (tee_local $8 + (i32.load + (get_local $9) + ) + ) + (i32.sub + (get_local $1) + (get_local $11) + ) + ) + ) + (set_local $9 + (get_local $5) + ) + (set_local $7 + (i32.const 0) + ) + (loop $label$16 + (br_if $label$8 + (i32.load8_u + (i32.add + (get_local $0) + (i32.add + (get_local $11) + (get_local $8) + ) + ) + ) + ) + (br_if $label$10 + (i32.eqz + (tee_local $11 + (call $strcmp + (get_local $2) + (i32.add + (get_local $0) + (get_local $11) + ) + ) + ) + ) + ) + (br_if $label$6 + (i32.eq + (get_local $4) + (i32.const 1) + ) + ) + (set_local $13 + (i32.const 0) + ) + (br_if $label$9 + (i32.ge_u + (tee_local $11 + (i32.load + (i32.add + (tee_local $8 + (i32.add + (get_local $0) + (i32.shl + (i32.add + (tee_local $6 + (i32.shl + (tee_local $5 + (i32.add + (tee_local $7 + (select + (get_local $7) + (get_local $5) + (tee_local $11 + (i32.lt_s + (get_local $11) + (i32.const 0) + ) + ) + ) + ) + (tee_local $9 + (i32.shr_u + (tee_local $4 + (select + (get_local $9) + (i32.sub + (get_local $4) + (get_local $9) + ) + (get_local $11) + ) + ) + (i32.const 1) + ) + ) + ) + ) + (i32.const 1) + ) + ) + (get_local $12) + ) + (i32.const 2) + ) + ) + ) + (i32.const 4) + ) + ) + ) + (get_local $1) + ) + ) + (br_if $label$16 + (i32.lt_u + (tee_local $8 + (i32.load + (get_local $8) + ) + ) + (i32.sub + (get_local $1) + (get_local $11) + ) + ) + ) + (br $label$9) + ) + ) + (br_if $label$12 + (i32.ge_u + (tee_local $4 + (i32.or + (i32.or + (i32.shl + (tee_local $4 + (i32.load + (i32.add + (tee_local $11 + (i32.add + (get_local $0) + (i32.shl + (i32.add + (tee_local $6 + (i32.shl + (tee_local $8 + (i32.shr_u + (get_local $9) + (i32.const 1) + ) + ) + (i32.const 1) + ) + ) + (get_local $12) + ) + (i32.const 2) + ) + ) + ) + (i32.const 4) + ) + ) + ) + (i32.const 24) + ) + (i32.and + (i32.shl + (get_local $4) + (i32.const 8) + ) + (i32.const 16711680) + ) + ) + (i32.or + (i32.and + (i32.shr_u + (get_local $4) + (i32.const 8) + ) + (i32.const 65280) + ) + (i32.shr_u + (get_local $4) + (i32.const 24) + ) + ) + ) + ) + (get_local $1) + ) + ) + (br_if $label$11 + (i32.ge_u + (tee_local $11 + (i32.or + (i32.or + (i32.shl + (tee_local $11 + (i32.load + (get_local $11) + ) + ) + (i32.const 24) + ) + (i32.and + (i32.shl + (get_local $11) + (i32.const 8) + ) + (i32.const 16711680) + ) + ) + (i32.or + (i32.and + (i32.shr_u + (get_local $11) + (i32.const 8) + ) + (i32.const 65280) + ) + (i32.shr_u + (get_local $11) + (i32.const 24) + ) + ) + ) + ) + (i32.sub + (get_local $1) + (get_local $4) + ) + ) + ) + (set_local $5 + (get_local $8) + ) + (set_local $7 + (i32.const 0) + ) + (loop $label$17 + (br_if $label$7 + (i32.load8_u + (i32.add + (get_local $0) + (i32.add + (get_local $4) + (get_local $11) + ) + ) + ) + ) + (br_if $label$10 + (i32.eqz + (tee_local $4 + (call $strcmp + (get_local $2) + (i32.add + (get_local $0) + (get_local $4) + ) + ) + ) + ) + ) + (br_if $label$5 + (i32.eq + (get_local $9) + (i32.const 1) + ) + ) + (set_local $13 + (i32.const 0) + ) + (br_if $label$9 + (i32.ge_u + (tee_local $4 + (i32.or + (i32.or + (i32.shl + (tee_local $4 + (i32.load + (i32.add + (tee_local $11 + (i32.add + (get_local $0) + (i32.shl + (i32.add + (tee_local $6 + (i32.shl + (tee_local $8 + (i32.add + (tee_local $7 + (select + (get_local $7) + (get_local $8) + (tee_local $4 + (i32.lt_s + (get_local $4) + (i32.const 0) + ) + ) + ) + ) + (tee_local $5 + (i32.shr_u + (tee_local $9 + (select + (get_local $5) + (i32.sub + (get_local $9) + (get_local $5) + ) + (get_local $4) + ) + ) + (i32.const 1) + ) + ) + ) + ) + (i32.const 1) + ) + ) + (get_local $12) + ) + (i32.const 2) + ) + ) + ) + (i32.const 4) + ) + ) + ) + (i32.const 24) + ) + (i32.and + (i32.shl + (get_local $4) + (i32.const 8) + ) + (i32.const 16711680) + ) + ) + (i32.or + (i32.and + (i32.shr_u + (get_local $4) + (i32.const 8) + ) + (i32.const 65280) + ) + (i32.shr_u + (get_local $4) + (i32.const 24) + ) + ) + ) + ) + (get_local $1) + ) + ) + (br_if $label$17 + (i32.lt_u + (tee_local $11 + (i32.or + (i32.or + (i32.shl + (tee_local $11 + (i32.load + (get_local $11) + ) + ) + (i32.const 24) + ) + (i32.and + (i32.shl + (get_local $11) + (i32.const 8) + ) + (i32.const 16711680) + ) + ) + (i32.or + (i32.and + (i32.shr_u + (get_local $11) + (i32.const 8) + ) + (i32.const 65280) + ) + (i32.shr_u + (get_local $11) + (i32.const 24) + ) + ) + ) + ) + (i32.sub + (get_local $1) + (get_local $4) + ) + ) + ) + (br $label$9) + ) + ) + (return + (i32.const 0) + ) + ) + (return + (i32.const 0) + ) + ) + (return + (i32.const 0) + ) + ) + (return + (i32.const 0) + ) + ) + (br_if $label$4 + (i32.ge_u + (tee_local $11 + (select + (tee_local $4 + (i32.load + (i32.add + (tee_local $10 + (i32.add + (get_local $0) + (i32.shl + (i32.add + (get_local $6) + (i32.shr_u + (get_local $10) + (i32.const 2) + ) + ) + (i32.const 2) + ) + ) + ) + (i32.const 4) + ) + ) + ) + (i32.or + (i32.or + (i32.shl + (get_local $4) + (i32.const 24) + ) + (i32.and + (i32.shl + (get_local $4) + (i32.const 8) + ) + (i32.const 16711680) + ) + ) + (i32.or + (i32.and + (i32.shr_u + (get_local $4) + (i32.const 8) + ) + (i32.const 65280) + ) + (i32.shr_u + (get_local $4) + (i32.const 24) + ) + ) + ) + (tee_local $9 + (i32.eq + (get_local $3) + (i32.const -1794895138) + ) + ) + ) + ) + (get_local $1) + ) + ) + (set_local $13 + (i32.const 0) + ) + (br_if $label$9 + (i32.ge_u + (tee_local $4 + (select + (tee_local $4 + (i32.load + (get_local $10) + ) + ) + (i32.or + (i32.or + (i32.shl + (get_local $4) + (i32.const 24) + ) + (i32.and + (i32.shl + (get_local $4) + (i32.const 8) + ) + (i32.const 16711680) + ) + ) + (i32.or + (i32.and + (i32.shr_u + (get_local $4) + (i32.const 8) + ) + (i32.const 65280) + ) + (i32.shr_u + (get_local $4) + (i32.const 24) + ) + ) + ) + (get_local $9) + ) + ) + (i32.sub + (get_local $1) + (get_local $11) + ) + ) + ) + (return + (select + (i32.const 0) + (i32.add + (get_local $0) + (get_local $11) + ) + (i32.load8_u + (i32.add + (get_local $0) + (i32.add + (get_local $11) + (get_local $4) + ) + ) + ) + ) + ) + ) + (return + (get_local $13) + ) + ) + (return + (i32.const 0) + ) + ) + (return + (i32.const 0) + ) + ) + (return + (i32.const 0) + ) + ) + (return + (i32.const 0) + ) + ) + (i32.const 0) + ) + (func $strcmp (param $0 i32) (param $1 i32) (result i32) + (local $2 i32) + (local $3 i32) + (set_local $3 + (i32.load8_u + (get_local $1) + ) + ) + (block $label$0 + (br_if $label$0 + (i32.eqz + (tee_local $2 + (i32.load8_u + (get_local $0) + ) + ) + ) + ) + (br_if $label$0 + (i32.ne + (get_local $2) + (i32.and + (get_local $3) + (i32.const 255) + ) + ) + ) + (set_local $0 + (i32.add + (get_local $0) + (i32.const 1) + ) + ) + (set_local $1 + (i32.add + (get_local $1) + (i32.const 1) + ) + ) + (loop $label$1 + (set_local $3 + (i32.load8_u + (get_local $1) + ) + ) + (br_if $label$0 + (i32.eqz + (tee_local $2 + (i32.load8_u + (get_local $0) + ) + ) + ) + ) + (set_local $0 + (i32.add + (get_local $0) + (i32.const 1) + ) + ) + (set_local $1 + (i32.add + (get_local $1) + (i32.const 1) + ) + ) + (br_if $label$1 + (i32.eq + (get_local $2) + (i32.and + (get_local $3) + (i32.const 255) + ) + ) + ) + ) + ) + (i32.sub + (get_local $2) + (i32.and + (get_local $3) + (i32.const 255) + ) + ) + ) + (func $__towrite (param $0 i32) (result i32) + (local $1 i32) + (i32.store8 offset=74 + (get_local $0) + (i32.or + (i32.add + (tee_local $1 + (i32.load8_s offset=74 + (get_local $0) + ) + ) + (i32.const 255) + ) + (get_local $1) + ) + ) + (block $label$0 + (br_if $label$0 + (i32.and + (tee_local $1 + (i32.load + (get_local $0) + ) + ) + (i32.const 8) + ) + ) + (i64.store offset=4 align=4 + (get_local $0) + (i64.const 0) + ) + (i32.store offset=28 + (get_local $0) + (tee_local $1 + (i32.load offset=44 + (get_local $0) + ) + ) + ) + (i32.store offset=20 + (get_local $0) + (get_local $1) + ) + (i32.store offset=16 + (get_local $0) + (i32.add + (get_local $1) + (i32.load offset=48 + (get_local $0) + ) + ) + ) + (return + (i32.const 0) + ) + ) + (i32.store + (get_local $0) + (i32.or + (get_local $1) + (i32.const 32) + ) + ) + (i32.const -1) + ) + (func $memcmp (param $0 i32) (param $1 i32) (param $2 i32) (result i32) + (local $3 i32) + (local $4 i32) + (local $5 i32) + (set_local $5 + (i32.const 0) + ) + (block $label$0 + (br_if $label$0 + (i32.eqz + (get_local $2) + ) + ) + (block $label$1 + (loop $label$2 + (br_if $label$1 + (i32.ne + (tee_local $3 + (i32.load8_u + (get_local $0) + ) + ) + (tee_local $4 + (i32.load8_u + (get_local $1) + ) + ) + ) + ) + (set_local $1 + (i32.add + (get_local $1) + (i32.const 1) + ) + ) + (set_local $0 + (i32.add + (get_local $0) + (i32.const 1) + ) + ) + (br_if $label$2 + (tee_local $2 + (i32.add + (get_local $2) + (i32.const -1) + ) + ) + ) + (br $label$0) + ) + ) + (set_local $5 + (i32.sub + (get_local $3) + (get_local $4) + ) + ) + ) + (get_local $5) + ) + (func $__wasm_nullptr (type $FUNCSIG$v) + (unreachable) + ) +) diff --git a/index.html b/index.html new file mode 100644 index 0000000..ba2fab7 --- /dev/null +++ b/index.html @@ -0,0 +1,80 @@ + + + + + 1thefull EOS Test + + +

My Imformation

+ + + + + +
+
+

Send Coin

+ + +
+ + +
+ + +
+ + + +
+
+
+

View Money

+ + + +
+ + + + +
+

Account List

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Public Keymoneyfeebalance
Test1Test1Test1Test1
Test2Test2Test2Test2
Test3Test3Test3Test3
Test4Test4Test4Test4
+ + \ No newline at end of file diff --git a/server/SA.js b/server/SA.js index 21e0da0..e8d33b6 100644 --- a/server/SA.js +++ b/server/SA.js @@ -3,8 +3,8 @@ var request = require('request'); const app = express(); const CA = "humblefirm42" const SA = "humblefirm42"; -const SAwif = "5KQwrPbwdL6PhXujxW37FSSQZ1JiwsST4cqQzDeyXtP79zkvFD3" // 프라이빗키 -const SAperm = "pub" //입력한 프라이빗키와 매칭되는 펄미션 +const SAwif = "5K9PSYxo3utJu1D6TcccvMCAfNWLWRcN1NRjjr7DQCLrG6S4TBA" // 프라이빗키 +const SAperm = "active" //입력한 프라이빗키와 매칭되는 펄미션 var actions = [ [], []