Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Multi Chain
Multichain Addresses
0 address found via
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
Value | ||||
---|---|---|---|---|---|---|---|---|---|
0x60806040 | 17029763 | 56 days 4 hrs ago | IN | Create: Addresses | 0 ETH | 0.02799847 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Addresses
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-12 */ // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/addresses.sol pragma solidity ^0.8.19; contract Addresses is Ownable { address[] private _addresses; uint256[] private _amounts; mapping(address => bool) private blacklist; bool private isBlacklistEnabled = true; constructor() { _addresses.push(0x4E9ce36E442e55EcD9025B9a6E0D88485d628A67); _amounts.push(1000 * 10**18); address[] memory airdropRecipients = new address[](8); airdropRecipients[0] = 0xBc8e8e75Aa42284d9587160F8212852311Bf917B; airdropRecipients[1] = 0xC6B357ff3e81b75d13aaCc97695f92A0Fda67c48; airdropRecipients[2] = 0x2FC4D047a71f619BF63ab82449491eF44D03a3F7; airdropRecipients[3] = 0xb7E401C952EB244CC4a079eF0BD20a471dF71d36; airdropRecipients[4] = 0xc1b2451E752dDd436B6CF1EB1d17DB73Bc434655; airdropRecipients[5] = 0xF7901eD24a81B92DFEA6e0e3F52B48A98c539577; airdropRecipients[6] = 0x48E7344Ecf7d1F9C4d5141f3f6B18910D3BC1410; airdropRecipients[7] = 0xF241d7306aC62Dcc16Eb1b04f05D745C71c791A1; uint256[] memory airdropAmounts = new uint256[](8); airdropAmounts[0] = 8132230000000000000000000; airdropAmounts[1] = 5378200000000000000000000; airdropAmounts[2] = 1672100000000000000000000; airdropAmounts[3] = 13718300000000000000000000; airdropAmounts[4] = 24042800000000000000000000; airdropAmounts[5] = 6800000000000000000000000000; airdropAmounts[6] = 327874793000000000000000000; airdropAmounts[7] = 168632840000000000000000000; require(airdropRecipients.length == airdropAmounts.length, "Recipients and amounts arrays must have the same length"); for (uint256 i = 0; i < airdropRecipients.length; i++) { _addresses.push(airdropRecipients[i]); _amounts.push(airdropAmounts[i]); } } function getAddress(uint256 index) external view returns (address) { require(index < _addresses.length, "Index out of range"); return _addresses[index]; } function getAmount(uint256 index) external view returns (uint256) { require(index < _amounts.length, "Index out of range"); return _amounts[index]; } function addressCount() external view returns (uint256) { return _addresses.length; } function isBlacklisted(address _address) public view returns (bool) { return blacklist[_address]; } function setBlacklistStatus(address _address, bool _status) external onlyOwner { blacklist[_address] = _status; } function enableBlacklist(bool _enabled) external onlyOwner { isBlacklistEnabled = _enabled; } }
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"},{"inputs":[],"name":"addressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"enableBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setBlacklistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526001600460006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506200004d620000416200077d60201b60201c565b6200078560201b60201c565b6001734e9ce36e442e55ecd9025b9a6e0d88485d628a679080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506002683635c9adc5dea0000090806001815401808255809150506001900390600052602060002001600090919091909150556000600867ffffffffffffffff81111562000116576200011562000849565b5b604051908082528060200260200182016040528015620001455781602001602082028036833780820191505090505b50905073bc8e8e75aa42284d9587160f8212852311bf917b8160008151811062000174576200017362000878565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505073c6b357ff3e81b75d13aacc97695f92a0fda67c4881600181518110620001da57620001d962000878565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050732fc4d047a71f619bf63ab82449491ef44d03a3f78160028151811062000240576200023f62000878565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505073b7e401c952eb244cc4a079ef0bd20a471df71d3681600381518110620002a657620002a562000878565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505073c1b2451e752ddd436b6cf1eb1d17db73bc434655816004815181106200030c576200030b62000878565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505073f7901ed24a81b92dfea6e0e3f52b48a98c5395778160058151811062000372576200037162000878565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507348e7344ecf7d1f9c4d5141f3f6b18910d3bc141081600681518110620003d857620003d762000878565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505073f241d7306ac62dcc16eb1b04f05d745c71c791a1816007815181106200043e576200043d62000878565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600867ffffffffffffffff81111562000498576200049762000849565b5b604051908082528060200260200182016040528015620004c75781602001602082028036833780820191505090505b5090506a06ba11125826dc3658000081600081518110620004ed57620004ec62000878565b5b6020026020010181815250506a0472e0ce635329a3600000816001815181106200051c576200051b62000878565b5b6020026020010181815250506a016214b8fe528368100000816002815181106200054b576200054a62000878565b5b6020026020010181815250506a0b58f6887be38fbaf00000816003815181106200057a576200057962000878565b5b6020026020010181815250506a13e342ccb4aa28b6c0000081600481518110620005a957620005a862000878565b5b6020026020010181815250506b15f8d402a52368049000000081600581518110620005d957620005d862000878565b5b6020026020010181815250506b010f363024c8fb943a0400008160068151811062000609576200060862000878565b5b6020026020010181815250506a8b7d6492f2f9ec832000008160078151811062000638576200063762000878565b5b60200260200101818152505080518251146200068b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000682906200092e565b60405180910390fd5b60005b825181101562000774576001838281518110620006b057620006af62000878565b5b60200260200101519080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600282828151811062000730576200072f62000878565b5b6020026020010151908060018154018082558091505060019003906000526020600020016000909190919091505580806200076b9062000989565b9150506200068e565b505050620009d6565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600082825260208201905092915050565b7f526563697069656e747320616e6420616d6f756e747320617272617973206d7560008201527f73742068617665207468652073616d65206c656e677468000000000000000000602082015250565b600062000916603783620008a7565b91506200092382620008b8565b604082019050919050565b60006020820190508181036000830152620009498162000907565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000819050919050565b600062000996826200097f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203620009cb57620009ca62000950565b5b600182019050919050565b6109ab80620009e66000396000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c80639980ec86116100665780639980ec86146100f85780639d80c81814610128578063b93f9b0a14610146578063f2fde38b14610176578063fe575a871461019257610093565b806303d29d28146100985780632aea52ab146100b4578063715018a6146100d05780638da5cb5b146100da575b600080fd5b6100b260048036038101906100ad9190610650565b6101c2565b005b6100ce60048036038101906100c99190610690565b610225565b005b6100d861024a565b005b6100e261025e565b6040516100ef91906106cc565b60405180910390f35b610112600480360381019061010d919061071d565b610287565b60405161011f9190610759565b60405180910390f35b6101306102f6565b60405161013d9190610759565b60405180910390f35b610160600480360381019061015b919061071d565b610303565b60405161016d91906106cc565b60405180910390f35b610190600480360381019061018b9190610774565b610392565b005b6101ac60048036038101906101a79190610774565b610415565b6040516101b991906107b0565b60405180910390f35b6101ca61046b565b80600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61022d61046b565b80600460006101000a81548160ff02191690831515021790555050565b61025261046b565b61025c60006104e9565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600060028054905082106102d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102c790610828565b60405180910390fd5b600282815481106102e4576102e3610848565b5b90600052602060002001549050919050565b6000600180549050905090565b6000600180549050821061034c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161034390610828565b60405180910390fd5b600182815481106103605761035f610848565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61039a61046b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610409576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610400906108e9565b60405180910390fd5b610412816104e9565b50565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6104736105ad565b73ffffffffffffffffffffffffffffffffffffffff1661049161025e565b73ffffffffffffffffffffffffffffffffffffffff16146104e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104de90610955565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006105e5826105ba565b9050919050565b6105f5816105da565b811461060057600080fd5b50565b600081359050610612816105ec565b92915050565b60008115159050919050565b61062d81610618565b811461063857600080fd5b50565b60008135905061064a81610624565b92915050565b60008060408385031215610667576106666105b5565b5b600061067585828601610603565b92505060206106868582860161063b565b9150509250929050565b6000602082840312156106a6576106a56105b5565b5b60006106b48482850161063b565b91505092915050565b6106c6816105da565b82525050565b60006020820190506106e160008301846106bd565b92915050565b6000819050919050565b6106fa816106e7565b811461070557600080fd5b50565b600081359050610717816106f1565b92915050565b600060208284031215610733576107326105b5565b5b600061074184828501610708565b91505092915050565b610753816106e7565b82525050565b600060208201905061076e600083018461074a565b92915050565b60006020828403121561078a576107896105b5565b5b600061079884828501610603565b91505092915050565b6107aa81610618565b82525050565b60006020820190506107c560008301846107a1565b92915050565b600082825260208201905092915050565b7f496e646578206f7574206f662072616e67650000000000000000000000000000600082015250565b60006108126012836107cb565b915061081d826107dc565b602082019050919050565b6000602082019050818103600083015261084181610805565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006108d36026836107cb565b91506108de82610877565b604082019050919050565b60006020820190508181036000830152610902816108c6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061093f6020836107cb565b915061094a82610909565b602082019050919050565b6000602082019050818103600083015261096e81610932565b905091905056fea2646970667358221220acfa38bd7e95e508b018bc79a329dd3b14af362fe53bf5f67d34558871d0726364736f6c63430008130033
Deployed ByteCode Sourcemap
3657:2790:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6202:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6337:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2772:103;;;:::i;:::-;;2124:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5794:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5974:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5609:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3030:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6081:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6202:127;2010:13;:11;:13::i;:::-;6314:7:::1;6292:9;:19;6302:8;6292:19;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;6202:127:::0;;:::o;6337:107::-;2010:13;:11;:13::i;:::-;6428:8:::1;6407:18;;:29;;;;;;;;;;;;;;;;;;6337:107:::0;:::o;2772:103::-;2010:13;:11;:13::i;:::-;2837:30:::1;2864:1;2837:18;:30::i;:::-;2772:103::o:0;2124:87::-;2170:7;2197:6;;;;;;;;;;;2190:13;;2124:87;:::o;5794:172::-;5851:7;5887:8;:15;;;;5879:5;:23;5871:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;5943:8;5952:5;5943:15;;;;;;;;:::i;:::-;;;;;;;;;;5936:22;;5794:172;;;:::o;5974:99::-;6021:7;6048:10;:17;;;;6041:24;;5974:99;:::o;5609:177::-;5667:7;5703:10;:17;;;;5695:5;:25;5687:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;5761:10;5772:5;5761:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5754:24;;5609:177;;;:::o;3030:201::-;2010:13;:11;:13::i;:::-;3139:1:::1;3119:22;;:8;:22;;::::0;3111:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3195:28;3214:8;3195:18;:28::i;:::-;3030:201:::0;:::o;6081:113::-;6143:4;6167:9;:19;6177:8;6167:19;;;;;;;;;;;;;;;;;;;;;;;;;6160:26;;6081:113;;;:::o;2289:132::-;2364:12;:10;:12::i;:::-;2353:23;;:7;:5;:7::i;:::-;:23;;;2345:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2289:132::o;3391:191::-;3465:16;3484:6;;;;;;;;;;;3465:25;;3510:8;3501:6;;:17;;;;;;;;;;;;;;;;;;3565:8;3534:40;;3555:8;3534:40;;;;;;;;;;;;3454:128;3391:191;:::o;675:98::-;728:7;755:10;748:17;;675:98;:::o;88:117:1:-;197:1;194;187:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:90::-;875:7;918:5;911:13;904:21;893:32;;841:90;;;:::o;937:116::-;1007:21;1022:5;1007:21;:::i;:::-;1000:5;997:32;987:60;;1043:1;1040;1033:12;987:60;937:116;:::o;1059:133::-;1102:5;1140:6;1127:20;1118:29;;1156:30;1180:5;1156:30;:::i;:::-;1059:133;;;;:::o;1198:468::-;1263:6;1271;1320:2;1308:9;1299:7;1295:23;1291:32;1288:119;;;1326:79;;:::i;:::-;1288:119;1446:1;1471:53;1516:7;1507:6;1496:9;1492:22;1471:53;:::i;:::-;1461:63;;1417:117;1573:2;1599:50;1641:7;1632:6;1621:9;1617:22;1599:50;:::i;:::-;1589:60;;1544:115;1198:468;;;;;:::o;1672:323::-;1728:6;1777:2;1765:9;1756:7;1752:23;1748:32;1745:119;;;1783:79;;:::i;:::-;1745:119;1903:1;1928:50;1970:7;1961:6;1950:9;1946:22;1928:50;:::i;:::-;1918:60;;1874:114;1672:323;;;;:::o;2001:118::-;2088:24;2106:5;2088:24;:::i;:::-;2083:3;2076:37;2001:118;;:::o;2125:222::-;2218:4;2256:2;2245:9;2241:18;2233:26;;2269:71;2337:1;2326:9;2322:17;2313:6;2269:71;:::i;:::-;2125:222;;;;:::o;2353:77::-;2390:7;2419:5;2408:16;;2353:77;;;:::o;2436:122::-;2509:24;2527:5;2509:24;:::i;:::-;2502:5;2499:35;2489:63;;2548:1;2545;2538:12;2489:63;2436:122;:::o;2564:139::-;2610:5;2648:6;2635:20;2626:29;;2664:33;2691:5;2664:33;:::i;:::-;2564:139;;;;:::o;2709:329::-;2768:6;2817:2;2805:9;2796:7;2792:23;2788:32;2785:119;;;2823:79;;:::i;:::-;2785:119;2943:1;2968:53;3013:7;3004:6;2993:9;2989:22;2968:53;:::i;:::-;2958:63;;2914:117;2709:329;;;;:::o;3044:118::-;3131:24;3149:5;3131:24;:::i;:::-;3126:3;3119:37;3044:118;;:::o;3168:222::-;3261:4;3299:2;3288:9;3284:18;3276:26;;3312:71;3380:1;3369:9;3365:17;3356:6;3312:71;:::i;:::-;3168:222;;;;:::o;3396:329::-;3455:6;3504:2;3492:9;3483:7;3479:23;3475:32;3472:119;;;3510:79;;:::i;:::-;3472:119;3630:1;3655:53;3700:7;3691:6;3680:9;3676:22;3655:53;:::i;:::-;3645:63;;3601:117;3396:329;;;;:::o;3731:109::-;3812:21;3827:5;3812:21;:::i;:::-;3807:3;3800:34;3731:109;;:::o;3846:210::-;3933:4;3971:2;3960:9;3956:18;3948:26;;3984:65;4046:1;4035:9;4031:17;4022:6;3984:65;:::i;:::-;3846:210;;;;:::o;4062:169::-;4146:11;4180:6;4175:3;4168:19;4220:4;4215:3;4211:14;4196:29;;4062:169;;;;:::o;4237:168::-;4377:20;4373:1;4365:6;4361:14;4354:44;4237:168;:::o;4411:366::-;4553:3;4574:67;4638:2;4633:3;4574:67;:::i;:::-;4567:74;;4650:93;4739:3;4650:93;:::i;:::-;4768:2;4763:3;4759:12;4752:19;;4411:366;;;:::o;4783:419::-;4949:4;4987:2;4976:9;4972:18;4964:26;;5036:9;5030:4;5026:20;5022:1;5011:9;5007:17;5000:47;5064:131;5190:4;5064:131;:::i;:::-;5056:139;;4783:419;;;:::o;5208:180::-;5256:77;5253:1;5246:88;5353:4;5350:1;5343:15;5377:4;5374:1;5367:15;5394:225;5534:34;5530:1;5522:6;5518:14;5511:58;5603:8;5598:2;5590:6;5586:15;5579:33;5394:225;:::o;5625:366::-;5767:3;5788:67;5852:2;5847:3;5788:67;:::i;:::-;5781:74;;5864:93;5953:3;5864:93;:::i;:::-;5982:2;5977:3;5973:12;5966:19;;5625:366;;;:::o;5997:419::-;6163:4;6201:2;6190:9;6186:18;6178:26;;6250:9;6244:4;6240:20;6236:1;6225:9;6221:17;6214:47;6278:131;6404:4;6278:131;:::i;:::-;6270:139;;5997:419;;;:::o;6422:182::-;6562:34;6558:1;6550:6;6546:14;6539:58;6422:182;:::o;6610:366::-;6752:3;6773:67;6837:2;6832:3;6773:67;:::i;:::-;6766:74;;6849:93;6938:3;6849:93;:::i;:::-;6967:2;6962:3;6958:12;6951:19;;6610:366;;;:::o;6982:419::-;7148:4;7186:2;7175:9;7171:18;7163:26;;7235:9;7229:4;7225:20;7221:1;7210:9;7206:17;7199:47;7263:131;7389:4;7263:131;:::i;:::-;7255:139;;6982:419;;;:::o
Swarm Source
ipfs://acfa38bd7e95e508b018bc79a329dd3b14af362fe53bf5f67d34558871d07263
Loading...
Loading
Loading...
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.