Contract
0xF63c348d68F2a5521140057c66abE47A445043FC
1
Contract Overview
Balance:
0 ETH
ETH Value:
$0.00
My Name Tag:
Not Available, login to update
Txn Hash | Method |
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0xa52d874384545da331870a1f755469f6103ec4fdcb051f610260f0b632a09c33 | 0x60806040 | 379917 | 128 days 11 hrs ago | 0x1e3881227010c8dcdfa2f11833d3d70a00893f94 | IN | Create: Multicall2 | 0 ETH | 0.00291920544 |
[ Download CSV Export ]
Contract Name:
Multicall2
Compiler Version
v0.8.2+commit.661d1103
Contract Source Code (Solidity)
/** *Submitted for verification at zkevm.polygonscan.com on 2023-05-24 */ /** *Submitted for verification at polygonscan.com on 2023-05-01 */ pragma solidity >=0.5.0; pragma experimental ABIEncoderV2; /// @title Multicall2 - Aggregate results from multiple read-only function calls /// @author Michael Elliot <[email protected]> /// @author Joshua Levine <[email protected]> /// @author Nick Johnson <[email protected]> contract Multicall2 { struct Call { address target; bytes callData; } struct Result { bool success; bytes returnData; } function aggregate(Call[] memory calls) public returns (uint256 blockNumber, bytes[] memory returnData) { blockNumber = block.number; returnData = new bytes[](calls.length); for(uint256 i = 0; i < calls.length; i++) { (bool success, bytes memory ret) = calls[i].target.call(calls[i].callData); require(success, "Multicall aggregate: call failed"); returnData[i] = ret; } } function blockAndAggregate(Call[] memory calls) public returns (uint256 blockNumber, bytes32 blockHash, Result[] memory returnData) { (blockNumber, blockHash, returnData) = tryBlockAndAggregate(true, calls); } function getBlockHash(uint256 blockNumber) public view returns (bytes32 blockHash) { blockHash = blockhash(blockNumber); } function getBlockNumber() public view returns (uint256 blockNumber) { blockNumber = block.number; } function getCurrentBlockCoinbase() public view returns (address coinbase) { coinbase = block.coinbase; } function getCurrentBlockDifficulty() public view returns (uint256 difficulty) { difficulty = block.difficulty; } function getCurrentBlockGasLimit() public view returns (uint256 gaslimit) { gaslimit = block.gaslimit; } function getCurrentBlockTimestamp() public view returns (uint256 timestamp) { timestamp = block.timestamp; } function getEthBalance(address addr) public view returns (uint256 balance) { balance = addr.balance; } function getLastBlockHash() public view returns (bytes32 blockHash) { blockHash = blockhash(block.number - 1); } function tryAggregate(bool requireSuccess, Call[] memory calls) public returns (Result[] memory returnData) { returnData = new Result[](calls.length); for(uint256 i = 0; i < calls.length; i++) { (bool success, bytes memory ret) = calls[i].target.call(calls[i].callData); if (requireSuccess) { require(success, "Multicall2 aggregate: call failed"); } returnData[i] = Result(success, ret); } } function tryBlockAndAggregate(bool requireSuccess, Call[] memory calls) public returns (uint256 blockNumber, bytes32 blockHash, Result[] memory returnData) { blockNumber = block.number; blockHash = blockhash(block.number); returnData = tryAggregate(requireSuccess, calls); } }
[{"inputs":[{"components":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"callData","type":"bytes"}],"internalType":"struct Multicall2.Call[]","name":"calls","type":"tuple[]"}],"name":"aggregate","outputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"},{"internalType":"bytes[]","name":"returnData","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"callData","type":"bytes"}],"internalType":"struct Multicall2.Call[]","name":"calls","type":"tuple[]"}],"name":"blockAndAggregate","outputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"},{"internalType":"bytes32","name":"blockHash","type":"bytes32"},{"components":[{"internalType":"bool","name":"success","type":"bool"},{"internalType":"bytes","name":"returnData","type":"bytes"}],"internalType":"struct Multicall2.Result[]","name":"returnData","type":"tuple[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getBlockHash","outputs":[{"internalType":"bytes32","name":"blockHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBlockNumber","outputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentBlockCoinbase","outputs":[{"internalType":"address","name":"coinbase","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentBlockDifficulty","outputs":[{"internalType":"uint256","name":"difficulty","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentBlockGasLimit","outputs":[{"internalType":"uint256","name":"gaslimit","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentBlockTimestamp","outputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getEthBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastBlockHash","outputs":[{"internalType":"bytes32","name":"blockHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"requireSuccess","type":"bool"},{"components":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"callData","type":"bytes"}],"internalType":"struct Multicall2.Call[]","name":"calls","type":"tuple[]"}],"name":"tryAggregate","outputs":[{"components":[{"internalType":"bool","name":"success","type":"bool"},{"internalType":"bytes","name":"returnData","type":"bytes"}],"internalType":"struct Multicall2.Result[]","name":"returnData","type":"tuple[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"requireSuccess","type":"bool"},{"components":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"callData","type":"bytes"}],"internalType":"struct Multicall2.Call[]","name":"calls","type":"tuple[]"}],"name":"tryBlockAndAggregate","outputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"},{"internalType":"bytes32","name":"blockHash","type":"bytes32"},{"components":[{"internalType":"bool","name":"success","type":"bool"},{"internalType":"bytes","name":"returnData","type":"bytes"}],"internalType":"struct Multicall2.Result[]","name":"returnData","type":"tuple[]"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50611176806100206000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c806372425d9d1161007157806372425d9d146101a657806386d516e8146101c4578063a8b0574e146101e2578063bce38bd714610200578063c3077fa914610230578063ee82ac5e14610262576100b4565b80630f28c97d146100b9578063252dba42146100d757806327e86d6e14610108578063399542e91461012657806342cbb15c146101585780634d2301cc14610176575b600080fd5b6100c1610292565b6040516100ce9190610d1d565b60405180910390f35b6100f160048036038101906100ec9190610975565b61029a565b6040516100ff929190610d38565b60405180910390f35b6101106104bb565b60405161011d9190610cc2565b60405180910390f35b610140600480360381019061013b91906109b6565b6104d0565b60405161014f93929190610d68565b60405180910390f35b6101606104ef565b60405161016d9190610d1d565b60405180910390f35b610190600480360381019061018b919061094c565b6104f7565b60405161019d9190610d1d565b60405180910390f35b6101ae610518565b6040516101bb9190610d1d565b60405180910390f35b6101cc610520565b6040516101d99190610d1d565b60405180910390f35b6101ea610528565b6040516101f79190610c85565b60405180910390f35b61021a600480360381019061021591906109b6565b610530565b6040516102279190610ca0565b60405180910390f35b61024a60048036038101906102459190610975565b610770565b60405161025993929190610d68565b60405180910390f35b61027c60048036038101906102779190610a0a565b610793565b6040516102899190610cc2565b60405180910390f35b600042905090565b60006060439150825167ffffffffffffffff8111156102e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561031557816020015b60608152602001906001900390816103005790505b50905060005b83518110156104b557600080858381518110610360577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000015173ffffffffffffffffffffffffffffffffffffffff168684815181106103bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151602001516040516103d49190610c6e565b6000604051808303816000865af19150503d8060008114610411576040519150601f19603f3d011682016040523d82523d6000602084013e610416565b606091505b50915091508161045b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045290610cfd565b60405180910390fd5b80848481518110610495577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181905250505080806104ad90610fcb565b91505061031b565b50915091565b60006001436104ca9190610ed2565b40905090565b6000806060439250434091506104e68585610530565b90509250925092565b600043905090565b60008173ffffffffffffffffffffffffffffffffffffffff16319050919050565b600044905090565b600045905090565b600041905090565b6060815167ffffffffffffffff811115610573577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156105ac57816020015b61059961079e565b8152602001906001900390816105915790505b50905060005b8251811015610769576000808483815181106105f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000015173ffffffffffffffffffffffffffffffffffffffff16858481518110610652577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516020015160405161066b9190610c6e565b6000604051808303816000865af19150503d80600081146106a8576040519150601f19603f3d011682016040523d82523d6000602084013e6106ad565b606091505b509150915085156106f957816106f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ef90610cdd565b60405180910390fd5b5b6040518060400160405280831515815260200182815250848481518110610749577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101819052505050808061076190610fcb565b9150506105b2565b5092915050565b60008060606107806001856104d0565b8093508194508295505050509193909250565b600081409050919050565b6040518060400160405280600015158152602001606081525090565b60006107cd6107c884610dcb565b610da6565b9050808382526020820190508260005b8581101561080d57813585016107f388826108d3565b8452602084019350602083019250506001810190506107dd565b5050509392505050565b600061082a61082584610df7565b610da6565b90508281526020810184848401111561084257600080fd5b61084d848285610f58565b509392505050565b600081359050610864816110fb565b92915050565b600082601f83011261087b57600080fd5b813561088b8482602086016107ba565b91505092915050565b6000813590506108a381611112565b92915050565b600082601f8301126108ba57600080fd5b81356108ca848260208601610817565b91505092915050565b6000604082840312156108e557600080fd5b6108ef6040610da6565b905060006108ff84828501610855565b600083015250602082013567ffffffffffffffff81111561091f57600080fd5b61092b848285016108a9565b60208301525092915050565b60008135905061094681611129565b92915050565b60006020828403121561095e57600080fd5b600061096c84828501610855565b91505092915050565b60006020828403121561098757600080fd5b600082013567ffffffffffffffff8111156109a157600080fd5b6109ad8482850161086a565b91505092915050565b600080604083850312156109c957600080fd5b60006109d785828601610894565b925050602083013567ffffffffffffffff8111156109f457600080fd5b610a008582860161086a565b9150509250929050565b600060208284031215610a1c57600080fd5b6000610a2a84828501610937565b91505092915050565b6000610a3f8383610b72565b905092915050565b6000610a538383610c22565b905092915050565b610a6481610f06565b82525050565b6000610a7582610e48565b610a7f8185610e83565b935083602082028501610a9185610e28565b8060005b85811015610acd5784840389528151610aae8582610a33565b9450610ab983610e69565b925060208a01995050600181019050610a95565b50829750879550505050505092915050565b6000610aea82610e53565b610af48185610e94565b935083602082028501610b0685610e38565b8060005b85811015610b425784840389528151610b238582610a47565b9450610b2e83610e76565b925060208a01995050600181019050610b0a565b50829750879550505050505092915050565b610b5d81610f18565b82525050565b610b6c81610f24565b82525050565b6000610b7d82610e5e565b610b878185610ea5565b9350610b97818560208601610f67565b610ba081611072565b840191505092915050565b6000610bb682610e5e565b610bc08185610eb6565b9350610bd0818560208601610f67565b80840191505092915050565b6000610be9602183610ec1565b9150610bf482611083565b604082019050919050565b6000610c0c602083610ec1565b9150610c17826110d2565b602082019050919050565b6000604083016000830151610c3a6000860182610b54565b5060208301518482036020860152610c528282610b72565b9150508091505092915050565b610c6881610f4e565b82525050565b6000610c7a8284610bab565b915081905092915050565b6000602082019050610c9a6000830184610a5b565b92915050565b60006020820190508181036000830152610cba8184610adf565b905092915050565b6000602082019050610cd76000830184610b63565b92915050565b60006020820190508181036000830152610cf681610bdc565b9050919050565b60006020820190508181036000830152610d1681610bff565b9050919050565b6000602082019050610d326000830184610c5f565b92915050565b6000604082019050610d4d6000830185610c5f565b8181036020830152610d5f8184610a6a565b90509392505050565b6000606082019050610d7d6000830186610c5f565b610d8a6020830185610b63565b8181036040830152610d9c8184610adf565b9050949350505050565b6000610db0610dc1565b9050610dbc8282610f9a565b919050565b6000604051905090565b600067ffffffffffffffff821115610de657610de5611043565b5b602082029050602081019050919050565b600067ffffffffffffffff821115610e1257610e11611043565b5b610e1b82611072565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b6000610edd82610f4e565b9150610ee883610f4e565b925082821015610efb57610efa611014565b5b828203905092915050565b6000610f1182610f2e565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015610f85578082015181840152602081019050610f6a565b83811115610f94576000848401525b50505050565b610fa382611072565b810181811067ffffffffffffffff82111715610fc257610fc1611043565b5b80604052505050565b6000610fd682610f4e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561100957611008611014565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4d756c746963616c6c32206167677265676174653a2063616c6c206661696c6560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d756c746963616c6c206167677265676174653a2063616c6c206661696c6564600082015250565b61110481610f06565b811461110f57600080fd5b50565b61111b81610f18565b811461112657600080fd5b50565b61113281610f4e565b811461113d57600080fd5b5056fea2646970667358221220d1cf247e6d88abc5131cb5741dd4850c7750f049c9786615da3c1e78bad6a5fd64736f6c63430008020033
Deployed ByteCode Sourcemap
366:2704:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1877:122;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;549:452;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;2127:126;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2761:306;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;1378:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2005:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1621:126;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1753:118;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1497;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2259:496;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1007:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;1236:136;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1877:122;1934:17;1976:15;1964:27;;1877:122;:::o;549:452::-;605:19;626:25;678:12;664:26;;726:5;:12;714:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;701:38;;754:9;750:244;773:5;:12;769:1;:16;750:244;;;808:12;822:16;842:5;848:1;842:8;;;;;;;;;;;;;;;;;;;;;;:15;;;:20;;863:5;869:1;863:8;;;;;;;;;;;;;;;;;;;;;;:17;;;842:39;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;807:74;;;;904:7;896:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;979:3;963:10;974:1;963:13;;;;;;;;;;;;;;;;;;;;;:19;;;;750:244;;787:3;;;;;:::i;:::-;;;;750:244;;;;549:452;;;:::o;2127:126::-;2176:17;2243:1;2228:12;:16;;;;:::i;:::-;2218:27;2206:39;;2127:126;:::o;2761:306::-;2849:19;2870:17;2889:26;2942:12;2928:26;;2987:12;2977:23;2965:35;;3024;3037:14;3053:5;3024:12;:35::i;:::-;3011:48;;2761:306;;;;;:::o;1378:113::-;1425:19;1471:12;1457:26;;1378:113;:::o;2005:116::-;2063:15;2101:4;:12;;;2091:22;;2005:116;;;:::o;1621:126::-;1679:18;1723:16;1710:29;;1621:126;:::o;1753:118::-;1809:16;1849:14;1838:25;;1753:118;:::o;1497:::-;1553:16;1593:14;1582:25;;1497:118;:::o;2259:496::-;2339:26;2404:5;:12;2391:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2378:39;;2432:9;2428:320;2451:5;:12;2447:1;:16;2428:320;;;2486:12;2500:16;2520:5;2526:1;2520:8;;;;;;;;;;;;;;;;;;;;;;:15;;;:20;;2541:5;2547:1;2541:8;;;;;;;;;;;;;;;;;;;;;;:17;;;2520:39;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2485:74;;;;2580:14;2576:108;;;2623:7;2615:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;2576:108;2716:20;;;;;;;;2723:7;2716:20;;;;;;2732:3;2716:20;;;2700:10;2711:1;2700:13;;;;;;;;;;;;;;;;;;;;;:36;;;;2428:320;;2465:3;;;;;:::i;:::-;;;;2428:320;;;;2259:496;;;;:::o;1007:223::-;1071:19;1092:17;1111:26;1189:33;1210:4;1216:5;1189:20;:33::i;:::-;1150:72;;;;;;;;;;;;1007:223;;;;;:::o;1236:136::-;1300:17;1352:11;1342:22;1330:34;;1236:136;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::o;39:643:1:-;;179:100;195:83;271:6;195:83;:::i;:::-;179:100;:::i;:::-;170:109;;299:5;327:6;320:5;313:21;353:4;346:5;342:16;335:23;;378:6;409:1;394:282;419:6;416:1;413:13;394:282;;;511:3;498:17;490:6;486:30;541:56;593:3;581:10;541:56;:::i;:::-;536:3;529:69;627:4;622:3;618:14;611:21;;661:4;656:3;652:14;645:21;;454:222;441:1;438;434:9;429:14;;394:282;;;398:14;160:522;;;;;;;:::o;688:343::-;;790:65;806:48;847:6;806:48;:::i;:::-;790:65;:::i;:::-;781:74;;878:6;871:5;864:21;916:4;909:5;905:16;954:3;945:6;940:3;936:16;933:25;930:2;;;971:1;968;961:12;930:2;984:41;1018:6;1013:3;1008;984:41;:::i;:::-;771:260;;;;;;:::o;1037:139::-;;1121:6;1108:20;1099:29;;1137:33;1164:5;1137:33;:::i;:::-;1089:87;;;;:::o;1214:341::-;;1353:3;1346:4;1338:6;1334:17;1330:27;1320:2;;1371:1;1368;1361:12;1320:2;1411:6;1398:20;1436:113;1545:3;1537:6;1530:4;1522:6;1518:17;1436:113;:::i;:::-;1427:122;;1310:245;;;;;:::o;1561:133::-;;1642:6;1629:20;1620:29;;1658:30;1682:5;1658:30;:::i;:::-;1610:84;;;;:::o;1713:271::-;;1817:3;1810:4;1802:6;1798:17;1794:27;1784:2;;1835:1;1832;1825:12;1784:2;1875:6;1862:20;1900:78;1974:3;1966:6;1959:4;1951:6;1947:17;1900:78;:::i;:::-;1891:87;;1774:210;;;;;:::o;2020:609::-;;2132:4;2120:9;2115:3;2111:19;2107:30;2104:2;;;2150:1;2147;2140:12;2104:2;2172:21;2188:4;2172:21;:::i;:::-;2163:30;;2254:1;2294:49;2339:3;2330:6;2319:9;2315:22;2294:49;:::i;:::-;2287:4;2280:5;2276:16;2269:75;2203:152;2446:2;2435:9;2431:18;2418:32;2477:18;2469:6;2466:30;2463:2;;;2509:1;2506;2499:12;2463:2;2552:58;2606:3;2597:6;2586:9;2582:22;2552:58;:::i;:::-;2545:4;2538:5;2534:16;2527:84;2365:257;2094:535;;;;:::o;2635:139::-;;2719:6;2706:20;2697:29;;2735:33;2762:5;2735:33;:::i;:::-;2687:87;;;;:::o;2780:262::-;;2888:2;2876:9;2867:7;2863:23;2859:32;2856:2;;;2904:1;2901;2894:12;2856:2;2947:1;2972:53;3017:7;3008:6;2997:9;2993:22;2972:53;:::i;:::-;2962:63;;2918:117;2846:196;;;;:::o;3048:443::-;;3200:2;3188:9;3179:7;3175:23;3171:32;3168:2;;;3216:1;3213;3206:12;3168:2;3287:1;3276:9;3272:17;3259:31;3317:18;3309:6;3306:30;3303:2;;;3349:1;3346;3339:12;3303:2;3377:97;3466:7;3457:6;3446:9;3442:22;3377:97;:::i;:::-;3367:107;;3230:254;3158:333;;;;:::o;3497:582::-;;;3663:2;3651:9;3642:7;3638:23;3634:32;3631:2;;;3679:1;3676;3669:12;3631:2;3722:1;3747:50;3789:7;3780:6;3769:9;3765:22;3747:50;:::i;:::-;3737:60;;3693:114;3874:2;3863:9;3859:18;3846:32;3905:18;3897:6;3894:30;3891:2;;;3937:1;3934;3927:12;3891:2;3965:97;4054:7;4045:6;4034:9;4030:22;3965:97;:::i;:::-;3955:107;;3817:255;3621:458;;;;;:::o;4085:262::-;;4193:2;4181:9;4172:7;4168:23;4164:32;4161:2;;;4209:1;4206;4199:12;4161:2;4252:1;4277:53;4322:7;4313:6;4302:9;4298:22;4277:53;:::i;:::-;4267:63;;4223:117;4151:196;;;;:::o;4353:192::-;;4475:64;4535:3;4527:6;4475:64;:::i;:::-;4461:78;;4451:94;;;;:::o;4551:244::-;;4699:90;4785:3;4777:6;4699:90;:::i;:::-;4685:104;;4675:120;;;;:::o;4801:118::-;4888:24;4906:5;4888:24;:::i;:::-;4883:3;4876:37;4866:53;;:::o;4951:983::-;;5117:63;5174:5;5117:63;:::i;:::-;5196:95;5284:6;5279:3;5196:95;:::i;:::-;5189:102;;5317:3;5362:4;5354:6;5350:17;5345:3;5341:27;5392:65;5451:5;5392:65;:::i;:::-;5480:7;5511:1;5496:393;5521:6;5518:1;5515:13;5496:393;;;5592:9;5586:4;5582:20;5577:3;5570:33;5643:6;5637:13;5671:82;5748:4;5733:13;5671:82;:::i;:::-;5663:90;;5776:69;5838:6;5776:69;:::i;:::-;5766:79;;5874:4;5869:3;5865:14;5858:21;;5556:333;5543:1;5540;5536:9;5531:14;;5496:393;;;5500:14;5905:4;5898:11;;5925:3;5918:10;;5093:841;;;;;;;;;:::o;6004:1087::-;;6196:76;6266:5;6196:76;:::i;:::-;6288:108;6389:6;6384:3;6288:108;:::i;:::-;6281:115;;6422:3;6467:4;6459:6;6455:17;6450:3;6446:27;6497:78;6569:5;6497:78;:::i;:::-;6598:7;6629:1;6614:432;6639:6;6636:1;6633:13;6614:432;;;6710:9;6704:4;6700:20;6695:3;6688:33;6761:6;6755:13;6789:108;6892:4;6877:13;6789:108;:::i;:::-;6781:116;;6920:82;6995:6;6920:82;:::i;:::-;6910:92;;7031:4;7026:3;7022:14;7015:21;;6674:372;6661:1;6658;6654:9;6649:14;;6614:432;;;6618:14;7062:4;7055:11;;7082:3;7075:10;;6172:919;;;;;;;;;:::o;7097:99::-;7168:21;7183:5;7168:21;:::i;:::-;7163:3;7156:34;7146:50;;:::o;7202:118::-;7289:24;7307:5;7289:24;:::i;:::-;7284:3;7277:37;7267:53;;:::o;7326:340::-;;7430:38;7462:5;7430:38;:::i;:::-;7484:60;7537:6;7532:3;7484:60;:::i;:::-;7477:67;;7553:52;7598:6;7593:3;7586:4;7579:5;7575:16;7553:52;:::i;:::-;7630:29;7652:6;7630:29;:::i;:::-;7625:3;7621:39;7614:46;;7406:260;;;;;:::o;7672:373::-;;7804:38;7836:5;7804:38;:::i;:::-;7858:88;7939:6;7934:3;7858:88;:::i;:::-;7851:95;;7955:52;8000:6;7995:3;7988:4;7981:5;7977:16;7955:52;:::i;:::-;8032:6;8027:3;8023:16;8016:23;;7780:265;;;;;:::o;8051:366::-;;8214:67;8278:2;8273:3;8214:67;:::i;:::-;8207:74;;8290:93;8379:3;8290:93;:::i;:::-;8408:2;8403:3;8399:12;8392:19;;8197:220;;;:::o;8423:366::-;;8586:67;8650:2;8645:3;8586:67;:::i;:::-;8579:74;;8662:93;8751:3;8662:93;:::i;:::-;8780:2;8775:3;8771:12;8764:19;;8569:220;;;:::o;8855:591::-;;8994:4;8989:3;8985:14;9084:4;9077:5;9073:16;9067:23;9103:57;9154:4;9149:3;9145:14;9131:12;9103:57;:::i;:::-;9009:161;9258:4;9251:5;9247:16;9241:23;9311:3;9305:4;9301:14;9294:4;9289:3;9285:14;9278:38;9337:71;9403:4;9389:12;9337:71;:::i;:::-;9329:79;;9180:239;9436:4;9429:11;;8963:483;;;;;:::o;9452:118::-;9539:24;9557:5;9539:24;:::i;:::-;9534:3;9527:37;9517:53;;:::o;9576:271::-;;9728:93;9817:3;9808:6;9728:93;:::i;:::-;9721:100;;9838:3;9831:10;;9710:137;;;;:::o;9853:222::-;;9984:2;9973:9;9969:18;9961:26;;9997:71;10065:1;10054:9;10050:17;10041:6;9997:71;:::i;:::-;9951:124;;;;:::o;10081:461::-;;10306:2;10295:9;10291:18;10283:26;;10355:9;10349:4;10345:20;10341:1;10330:9;10326:17;10319:47;10383:152;10530:4;10521:6;10383:152;:::i;:::-;10375:160;;10273:269;;;;:::o;10548:222::-;;10679:2;10668:9;10664:18;10656:26;;10692:71;10760:1;10749:9;10745:17;10736:6;10692:71;:::i;:::-;10646:124;;;;:::o;10776:419::-;;10980:2;10969:9;10965:18;10957:26;;11029:9;11023:4;11019:20;11015:1;11004:9;11000:17;10993:47;11057:131;11183:4;11057:131;:::i;:::-;11049:139;;10947:248;;;:::o;11201:419::-;;11405:2;11394:9;11390:18;11382:26;;11454:9;11448:4;11444:20;11440:1;11429:9;11425:17;11418:47;11482:131;11608:4;11482:131;:::i;:::-;11474:139;;11372:248;;;:::o;11626:222::-;;11757:2;11746:9;11742:18;11734:26;;11770:71;11838:1;11827:9;11823:17;11814:6;11770:71;:::i;:::-;11724:124;;;;:::o;11854:519::-;;12081:2;12070:9;12066:18;12058:26;;12094:71;12162:1;12151:9;12147:17;12138:6;12094:71;:::i;:::-;12212:9;12206:4;12202:20;12197:2;12186:9;12182:18;12175:48;12240:126;12361:4;12352:6;12240:126;:::i;:::-;12232:134;;12048:325;;;;;:::o;12379:681::-;;12660:2;12649:9;12645:18;12637:26;;12673:71;12741:1;12730:9;12726:17;12717:6;12673:71;:::i;:::-;12754:72;12822:2;12811:9;12807:18;12798:6;12754:72;:::i;:::-;12873:9;12867:4;12863:20;12858:2;12847:9;12843:18;12836:48;12901:152;13048:4;13039:6;12901:152;:::i;:::-;12893:160;;12627:433;;;;;;:::o;13066:129::-;;13127:20;;:::i;:::-;13117:30;;13156:33;13184:4;13176:6;13156:33;:::i;:::-;13107:88;;;:::o;13201:75::-;;13267:2;13261:9;13251:19;;13241:35;:::o;13282:330::-;;13468:18;13460:6;13457:30;13454:2;;;13490:18;;:::i;:::-;13454:2;13540:4;13532:6;13528:17;13520:25;;13600:4;13594;13590:15;13582:23;;13383:229;;;:::o;13618:307::-;;13769:18;13761:6;13758:30;13755:2;;;13791:18;;:::i;:::-;13755:2;13829:29;13851:6;13829:29;:::i;:::-;13821:37;;13913:4;13907;13903:15;13895:23;;13684:241;;;:::o;13931:141::-;;14030:3;14022:11;;14060:4;14055:3;14051:14;14043:22;;14012:60;;;:::o;14078:154::-;;14190:3;14182:11;;14220:4;14215:3;14211:14;14203:22;;14172:60;;;:::o;14238:123::-;;14348:5;14342:12;14332:22;;14321:40;;;:::o;14367:136::-;;14490:5;14484:12;14474:22;;14463:40;;;:::o;14509:98::-;;14594:5;14588:12;14578:22;;14567:40;;;:::o;14613:122::-;;14724:4;14719:3;14715:14;14707:22;;14697:38;;;:::o;14741:135::-;;14865:4;14860:3;14856:14;14848:22;;14838:38;;;:::o;14882:193::-;;15024:6;15019:3;15012:19;15064:4;15059:3;15055:14;15040:29;;15002:73;;;;:::o;15081:206::-;;15236:6;15231:3;15224:19;15276:4;15271:3;15267:14;15252:29;;15214:73;;;;:::o;15293:158::-;;15400:6;15395:3;15388:19;15440:4;15435:3;15431:14;15416:29;;15378:73;;;;:::o;15457:147::-;;15595:3;15580:18;;15570:34;;;;:::o;15610:169::-;;15728:6;15723:3;15716:19;15768:4;15763:3;15759:14;15744:29;;15706:73;;;;:::o;15785:191::-;;15845:20;15863:1;15845:20;:::i;:::-;15840:25;;15879:20;15897:1;15879:20;:::i;:::-;15874:25;;15918:1;15915;15912:8;15909:2;;;15923:18;;:::i;:::-;15909:2;15968:1;15965;15961:9;15953:17;;15830:146;;;;:::o;15982:96::-;;16048:24;16066:5;16048:24;:::i;:::-;16037:35;;16027:51;;;:::o;16084:90::-;;16161:5;16154:13;16147:21;16136:32;;16126:48;;;:::o;16180:77::-;;16246:5;16235:16;;16225:32;;;:::o;16263:126::-;;16340:42;16333:5;16329:54;16318:65;;16308:81;;;:::o;16395:77::-;;16461:5;16450:16;;16440:32;;;:::o;16478:154::-;16562:6;16557:3;16552;16539:30;16624:1;16615:6;16610:3;16606:16;16599:27;16529:103;;;:::o;16638:307::-;16706:1;16716:113;16730:6;16727:1;16724:13;16716:113;;;16815:1;16810:3;16806:11;16800:18;16796:1;16791:3;16787:11;16780:39;16752:2;16749:1;16745:10;16740:15;;16716:113;;;16847:6;16844:1;16841:13;16838:2;;;16927:1;16918:6;16913:3;16909:16;16902:27;16838:2;16687:258;;;;:::o;16951:281::-;17034:27;17056:4;17034:27;:::i;:::-;17026:6;17022:40;17164:6;17152:10;17149:22;17128:18;17116:10;17113:34;17110:62;17107:2;;;17175:18;;:::i;:::-;17107:2;17215:10;17211:2;17204:22;16994:238;;;:::o;17238:233::-;;17300:24;17318:5;17300:24;:::i;:::-;17291:33;;17346:66;17339:5;17336:77;17333:2;;;17416:18;;:::i;:::-;17333:2;17463:1;17456:5;17452:13;17445:20;;17281:190;;;:::o;17477:180::-;17525:77;17522:1;17515:88;17622:4;17619:1;17612:15;17646:4;17643:1;17636:15;17663:180;17711:77;17708:1;17701:88;17808:4;17805:1;17798:15;17832:4;17829:1;17822:15;17849:102;;17941:2;17937:7;17932:2;17925:5;17921:14;17917:28;17907:38;;17897:54;;;:::o;17957:220::-;18097:34;18093:1;18085:6;18081:14;18074:58;18166:3;18161:2;18153:6;18149:15;18142:28;18063:114;:::o;18183:182::-;18323:34;18319:1;18311:6;18307:14;18300:58;18289:76;:::o;18371:122::-;18444:24;18462:5;18444:24;:::i;:::-;18437:5;18434:35;18424:2;;18483:1;18480;18473:12;18424:2;18414:79;:::o;18499:116::-;18569:21;18584:5;18569:21;:::i;:::-;18562:5;18559:32;18549:2;;18605:1;18602;18595:12;18549:2;18539:76;:::o;18621:122::-;18694:24;18712:5;18694:24;:::i;:::-;18687:5;18684:35;18674:2;;18733:1;18730;18723:12;18674:2;18664:79;:::o
Swarm Source
ipfs://d1cf247e6d88abc5131cb5741dd4850c7750f049c9786615da3c1e78bad6a5fd
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.