Polygon Sponsored slots available. Book your slot here!
My Name Tag:
Not Available, login to update
Txn Hash |
Method
|
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0x35eac95239f315476ea673a91b9b5aa2813be627d6a941f4024d5a15cbd23b21 | Claim_ERC20 | 18777570 | 629 days 14 hrs ago | ISLAMICOIN: Deployer | IN | ISLAMICOIN: Bayt Al-Mal | 0 MATIC | 0.000165720401 | |
0x92a4765f315b4fd3adf4604a2689a7c2fc05000f1408fe25b632d4a7d2a8cb22 | 0x60806040 | 18761685 | 630 days 1 hr ago | ISLAMICOIN: Deployer | IN | Contract Creation | 0 MATIC | 0.007059344 |
[ Download CSV Export ]
OVERVIEW
Each transaction that occurs on ISLAMICOIN contract triggers a 2.5% of the transferred amount sent from ISLAMICOIN for their charity purpose.
Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0x8D95fbB700991Dd298b91CE8F987AC4638AC9294
Contract Name:
ISLAMICOIN_BAYT_AL_MAL
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-09-05 */ // SPDX-License-Identifier: MIT // ISLAMICOIN Bayt Al-Mal Official smart contract / Date: 5th of September 2021 pragma solidity ^0.8.4; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IMatic_Charity { /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); } abstract contract Charity is IMatic_Charity { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } } contract ISLAMICOIN_BAYT_AL_MAL is Charity { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } function Claim_ERC20(address tokenAddress, uint256 tokenAmount, uint256 decimal) public onlyOwner { Charity(tokenAddress).transfer(owner(), tokenAmount *10** decimal); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"internalType":"uint256","name":"decimal","type":"uint256"}],"name":"Claim_ERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5060006100216100c560201b60201c565b905080600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506100cd565b600033905090565b610e96806100dc6000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c806311958ce51461005c57806370a08231146100785780638da5cb5b146100a8578063a9059cbb146100c6578063f2fde38b146100f6575b600080fd5b61007660048036038101906100719190610792565b610112565b005b610092600480360381019061008d919061072d565b61023f565b60405161009f91906109e5565b60405180910390f35b6100b0610287565b6040516100bd91906108e6565b60405180910390f35b6100e060048036038101906100db9190610756565b6102b1565b6040516100ed919061092a565b60405180910390f35b610110600480360381019061010b919061072d565b6102cf565b005b61011a61047b565b73ffffffffffffffffffffffffffffffffffffffff16610138610287565b73ffffffffffffffffffffffffffffffffffffffff161461018e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610185906109a5565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6101b2610287565b83600a6101bf9190610aba565b856101ca9190610bd8565b6040518363ffffffff1660e01b81526004016101e7929190610901565b602060405180830381600087803b15801561020157600080fd5b505af1158015610215573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061023991906107e1565b50505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006102c56102be61047b565b8484610483565b6001905092915050565b6102d761047b565b73ffffffffffffffffffffffffffffffffffffffff166102f5610287565b73ffffffffffffffffffffffffffffffffffffffff161461034b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610342906109a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156103bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103b290610965565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156104f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ea906109c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055a90610945565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156105e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e090610985565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461067c9190610a11565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106e091906109e5565b60405180910390a350505050565b6000813590506106fd81610e1b565b92915050565b60008151905061071281610e32565b92915050565b60008135905061072781610e49565b92915050565b60006020828403121561073f57600080fd5b600061074d848285016106ee565b91505092915050565b6000806040838503121561076957600080fd5b6000610777858286016106ee565b925050602061078885828601610718565b9150509250929050565b6000806000606084860312156107a757600080fd5b60006107b5868287016106ee565b93505060206107c686828701610718565b92505060406107d786828701610718565b9150509250925092565b6000602082840312156107f357600080fd5b600061080184828501610703565b91505092915050565b61081381610c32565b82525050565b61082281610c44565b82525050565b6000610835602383610a00565b915061084082610cb6565b604082019050919050565b6000610858602683610a00565b915061086382610d05565b604082019050919050565b600061087b602683610a00565b915061088682610d54565b604082019050919050565b600061089e602083610a00565b91506108a982610da3565b602082019050919050565b60006108c1602583610a00565b91506108cc82610dcc565b604082019050919050565b6108e081610c70565b82525050565b60006020820190506108fb600083018461080a565b92915050565b6000604082019050610916600083018561080a565b61092360208301846108d7565b9392505050565b600060208201905061093f6000830184610819565b92915050565b6000602082019050818103600083015261095e81610828565b9050919050565b6000602082019050818103600083015261097e8161084b565b9050919050565b6000602082019050818103600083015261099e8161086e565b9050919050565b600060208201905081810360008301526109be81610891565b9050919050565b600060208201905081810360008301526109de816108b4565b9050919050565b60006020820190506109fa60008301846108d7565b92915050565b600082825260208201905092915050565b6000610a1c82610c70565b9150610a2783610c70565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610a5c57610a5b610c7a565b5b828201905092915050565b6000808291508390505b6001851115610ab157808604811115610a8d57610a8c610c7a565b5b6001851615610a9c5780820291505b8081029050610aaa85610ca9565b9450610a71565b94509492505050565b6000610ac582610c70565b9150610ad083610c70565b9250610afd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610b05565b905092915050565b600082610b155760019050610bd1565b81610b235760009050610bd1565b8160018114610b395760028114610b4357610b72565b6001915050610bd1565b60ff841115610b5557610b54610c7a565b5b8360020a915084821115610b6c57610b6b610c7a565b5b50610bd1565b5060208310610133831016604e8410600b8410161715610ba75782820a905083811115610ba257610ba1610c7a565b5b610bd1565b610bb48484846001610a67565b92509050818404811115610bcb57610bca610c7a565b5b81810290505b9392505050565b6000610be382610c70565b9150610bee83610c70565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615610c2757610c26610c7a565b5b828202905092915050565b6000610c3d82610c50565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b610e2481610c32565b8114610e2f57600080fd5b50565b610e3b81610c44565b8114610e4657600080fd5b50565b610e5281610c70565b8114610e5d57600080fd5b5056fea2646970667358221220ef231b9eab177b599f98395ee4d7a1e42df49e23a9339929e52baddb674d843c64736f6c63430008040033
Deployed ByteCode Sourcemap
3043:1408:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4265:183;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1441:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3556:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1781:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4015:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4265:183;3791:12;:10;:12::i;:::-;3780:23;;:7;:5;:7::i;:::-;:23;;;3772:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4382:12:::1;4374:30;;;4405:7;:5;:7::i;:::-;4432;4427:2;:12;;;;:::i;:::-;4414:11;:25;;;;:::i;:::-;4374:66;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;4265:183:::0;;;:::o;1441:127::-;1515:7;1542:9;:18;1552:7;1542:18;;;;;;;;;;;;;;;;1535:25;;1441:127;;;:::o;3556:87::-;3602:7;3629:6;;;;;;;;;;;3622:13;;3556:87;:::o;1781:175::-;1867:4;1884:42;1894:12;:10;:12::i;:::-;1908:9;1919:6;1884:9;:42::i;:::-;1944:4;1937:11;;1781:175;;;;:::o;4015:244::-;3791:12;:10;:12::i;:::-;3780:23;;:7;:5;:7::i;:::-;:23;;;3772:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4124:1:::1;4104:22;;:8;:22;;;;4096:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4214:8;4185:38;;4206:6;;;;;;;;;;;4185:38;;;;;;;;;;;;4243:8;4234:6;;:17;;;;;;;;;;;;;;;;;;4015:244:::0;:::o;1027:98::-;1080:7;1107:10;1100:17;;1027:98;:::o;2450:584::-;2574:1;2556:20;;:6;:20;;;;2548:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;2658:1;2637:23;;:9;:23;;;;2629:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;2715:21;2739:9;:17;2749:6;2739:17;;;;;;;;;;;;;;;;2715:41;;2792:6;2775:13;:23;;2767:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2913:6;2897:13;:22;2877:9;:17;2887:6;2877:17;;;;;;;;;;;;;;;:42;;;;2965:6;2941:9;:20;2951:9;2941:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;3006:9;2989:35;;2998:6;2989:35;;;3017:6;2989:35;;;;;;:::i;:::-;;;;;;;;2450:584;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:137::-;206:5;237:6;231:13;222:22;;253:30;277:5;253:30;:::i;:::-;212:77;;;;:::o;295:139::-;341:5;379:6;366:20;357:29;;395:33;422:5;395:33;:::i;:::-;347:87;;;;:::o;440:262::-;499:6;548:2;536:9;527:7;523:23;519:32;516:2;;;564:1;561;554:12;516:2;607:1;632:53;677:7;668:6;657:9;653:22;632:53;:::i;:::-;622:63;;578:117;506:196;;;;:::o;708:407::-;776:6;784;833:2;821:9;812:7;808:23;804:32;801:2;;;849:1;846;839:12;801:2;892:1;917:53;962:7;953:6;942:9;938:22;917:53;:::i;:::-;907:63;;863:117;1019:2;1045:53;1090:7;1081:6;1070:9;1066:22;1045:53;:::i;:::-;1035:63;;990:118;791:324;;;;;:::o;1121:552::-;1198:6;1206;1214;1263:2;1251:9;1242:7;1238:23;1234:32;1231:2;;;1279:1;1276;1269:12;1231:2;1322:1;1347:53;1392:7;1383:6;1372:9;1368:22;1347:53;:::i;:::-;1337:63;;1293:117;1449:2;1475:53;1520:7;1511:6;1500:9;1496:22;1475:53;:::i;:::-;1465:63;;1420:118;1577:2;1603:53;1648:7;1639:6;1628:9;1624:22;1603:53;:::i;:::-;1593:63;;1548:118;1221:452;;;;;:::o;1679:278::-;1746:6;1795:2;1783:9;1774:7;1770:23;1766:32;1763:2;;;1811:1;1808;1801:12;1763:2;1854:1;1879:61;1932:7;1923:6;1912:9;1908:22;1879:61;:::i;:::-;1869:71;;1825:125;1753:204;;;;:::o;1963:118::-;2050:24;2068:5;2050:24;:::i;:::-;2045:3;2038:37;2028:53;;:::o;2087:109::-;2168:21;2183:5;2168:21;:::i;:::-;2163:3;2156:34;2146:50;;:::o;2202:366::-;2344:3;2365:67;2429:2;2424:3;2365:67;:::i;:::-;2358:74;;2441:93;2530:3;2441:93;:::i;:::-;2559:2;2554:3;2550:12;2543:19;;2348:220;;;:::o;2574:366::-;2716:3;2737:67;2801:2;2796:3;2737:67;:::i;:::-;2730:74;;2813:93;2902:3;2813:93;:::i;:::-;2931:2;2926:3;2922:12;2915:19;;2720:220;;;:::o;2946:366::-;3088:3;3109:67;3173:2;3168:3;3109:67;:::i;:::-;3102:74;;3185:93;3274:3;3185:93;:::i;:::-;3303:2;3298:3;3294:12;3287:19;;3092:220;;;:::o;3318:366::-;3460:3;3481:67;3545:2;3540:3;3481:67;:::i;:::-;3474:74;;3557:93;3646:3;3557:93;:::i;:::-;3675:2;3670:3;3666:12;3659:19;;3464:220;;;:::o;3690:366::-;3832:3;3853:67;3917:2;3912:3;3853:67;:::i;:::-;3846:74;;3929:93;4018:3;3929:93;:::i;:::-;4047:2;4042:3;4038:12;4031:19;;3836:220;;;:::o;4062:118::-;4149:24;4167:5;4149:24;:::i;:::-;4144:3;4137:37;4127:53;;:::o;4186:222::-;4279:4;4317:2;4306:9;4302:18;4294:26;;4330:71;4398:1;4387:9;4383:17;4374:6;4330:71;:::i;:::-;4284:124;;;;:::o;4414:332::-;4535:4;4573:2;4562:9;4558:18;4550:26;;4586:71;4654:1;4643:9;4639:17;4630:6;4586:71;:::i;:::-;4667:72;4735:2;4724:9;4720:18;4711:6;4667:72;:::i;:::-;4540:206;;;;;:::o;4752:210::-;4839:4;4877:2;4866:9;4862:18;4854:26;;4890:65;4952:1;4941:9;4937:17;4928:6;4890:65;:::i;:::-;4844:118;;;;:::o;4968:419::-;5134:4;5172:2;5161:9;5157:18;5149:26;;5221:9;5215:4;5211:20;5207:1;5196:9;5192:17;5185:47;5249:131;5375:4;5249:131;:::i;:::-;5241:139;;5139:248;;;:::o;5393:419::-;5559:4;5597:2;5586:9;5582:18;5574:26;;5646:9;5640:4;5636:20;5632:1;5621:9;5617:17;5610:47;5674:131;5800:4;5674:131;:::i;:::-;5666:139;;5564:248;;;:::o;5818:419::-;5984:4;6022:2;6011:9;6007:18;5999:26;;6071:9;6065:4;6061:20;6057:1;6046:9;6042:17;6035:47;6099:131;6225:4;6099:131;:::i;:::-;6091:139;;5989:248;;;:::o;6243:419::-;6409:4;6447:2;6436:9;6432:18;6424:26;;6496:9;6490:4;6486:20;6482:1;6471:9;6467:17;6460:47;6524:131;6650:4;6524:131;:::i;:::-;6516:139;;6414:248;;;:::o;6668:419::-;6834:4;6872:2;6861:9;6857:18;6849:26;;6921:9;6915:4;6911:20;6907:1;6896:9;6892:17;6885:47;6949:131;7075:4;6949:131;:::i;:::-;6941:139;;6839:248;;;:::o;7093:222::-;7186:4;7224:2;7213:9;7209:18;7201:26;;7237:71;7305:1;7294:9;7290:17;7281:6;7237:71;:::i;:::-;7191:124;;;;:::o;7321:169::-;7405:11;7439:6;7434:3;7427:19;7479:4;7474:3;7470:14;7455:29;;7417:73;;;;:::o;7496:305::-;7536:3;7555:20;7573:1;7555:20;:::i;:::-;7550:25;;7589:20;7607:1;7589:20;:::i;:::-;7584:25;;7743:1;7675:66;7671:74;7668:1;7665:81;7662:2;;;7749:18;;:::i;:::-;7662:2;7793:1;7790;7786:9;7779:16;;7540:261;;;;:::o;7807:848::-;7868:5;7875:4;7899:6;7890:15;;7923:5;7914:14;;7937:712;7958:1;7948:8;7945:15;7937:712;;;8053:4;8048:3;8044:14;8038:4;8035:24;8032:2;;;8062:18;;:::i;:::-;8032:2;8112:1;8102:8;8098:16;8095:2;;;8527:4;8520:5;8516:16;8507:25;;8095:2;8577:4;8571;8567:15;8559:23;;8607:32;8630:8;8607:32;:::i;:::-;8595:44;;7937:712;;;7880:775;;;;;;;:::o;8661:285::-;8721:5;8745:23;8763:4;8745:23;:::i;:::-;8737:31;;8789:27;8807:8;8789:27;:::i;:::-;8777:39;;8835:104;8872:66;8862:8;8856:4;8835:104;:::i;:::-;8826:113;;8727:219;;;;:::o;8952:1073::-;9006:5;9197:8;9187:2;;9218:1;9209:10;;9220:5;;9187:2;9246:4;9236:2;;9263:1;9254:10;;9265:5;;9236:2;9332:4;9380:1;9375:27;;;;9416:1;9411:191;;;;9325:277;;9375:27;9393:1;9384:10;;9395:5;;;9411:191;9456:3;9446:8;9443:17;9440:2;;;9463:18;;:::i;:::-;9440:2;9512:8;9509:1;9505:16;9496:25;;9547:3;9540:5;9537:14;9534:2;;;9554:18;;:::i;:::-;9534:2;9587:5;;;9325:277;;9711:2;9701:8;9698:16;9692:3;9686:4;9683:13;9679:36;9661:2;9651:8;9648:16;9643:2;9637:4;9634:12;9630:35;9614:111;9611:2;;;9767:8;9761:4;9757:19;9748:28;;9802:3;9795:5;9792:14;9789:2;;;9809:18;;:::i;:::-;9789:2;9842:5;;9611:2;9882:42;9920:3;9910:8;9904:4;9901:1;9882:42;:::i;:::-;9867:57;;;;9956:4;9951:3;9947:14;9940:5;9937:25;9934:2;;;9965:18;;:::i;:::-;9934:2;10014:4;10007:5;10003:16;9994:25;;9012:1013;;;;;;:::o;10031:348::-;10071:7;10094:20;10112:1;10094:20;:::i;:::-;10089:25;;10128:20;10146:1;10128:20;:::i;:::-;10123:25;;10316:1;10248:66;10244:74;10241:1;10238:81;10233:1;10226:9;10219:17;10215:105;10212:2;;;10323:18;;:::i;:::-;10212:2;10371:1;10368;10364:9;10353:20;;10079:300;;;;:::o;10385:96::-;10422:7;10451:24;10469:5;10451:24;:::i;:::-;10440:35;;10430:51;;;:::o;10487:90::-;10521:7;10564:5;10557:13;10550:21;10539:32;;10529:48;;;:::o;10583:126::-;10620:7;10660:42;10653:5;10649:54;10638:65;;10628:81;;;:::o;10715:77::-;10752:7;10781:5;10770:16;;10760:32;;;:::o;10798:180::-;10846:77;10843:1;10836:88;10943:4;10940:1;10933:15;10967:4;10964:1;10957:15;10984:102;11026:8;11073:5;11070:1;11066:13;11045:34;;11035:51;;;:::o;11092:222::-;11232:34;11228:1;11220:6;11216:14;11209:58;11301:5;11296:2;11288:6;11284:15;11277:30;11198:116;:::o;11320:225::-;11460:34;11456:1;11448:6;11444:14;11437:58;11529:8;11524:2;11516:6;11512:15;11505:33;11426:119;:::o;11551:225::-;11691:34;11687:1;11679:6;11675:14;11668:58;11760:8;11755:2;11747:6;11743:15;11736:33;11657:119;:::o;11782:182::-;11922:34;11918:1;11910:6;11906:14;11899:58;11888:76;:::o;11970:224::-;12110:34;12106:1;12098:6;12094:14;12087:58;12179:7;12174:2;12166:6;12162:15;12155:32;12076:118;:::o;12200:122::-;12273:24;12291:5;12273:24;:::i;:::-;12266:5;12263:35;12253:2;;12312:1;12309;12302:12;12253:2;12243:79;:::o;12328:116::-;12398:21;12413:5;12398:21;:::i;:::-;12391:5;12388:32;12378:2;;12434:1;12431;12424:12;12378:2;12368:76;:::o;12450:122::-;12523:24;12541:5;12523:24;:::i;:::-;12516:5;12513:35;12503:2;;12562:1;12559;12552:12;12503:2;12493:79;:::o
Swarm Source
ipfs://ef231b9eab177b599f98395ee4d7a1e42df49e23a9339929e52baddb674d843c
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.