Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
TokenTracker
Multichain Info
N/A
Latest 25 from a total of 187 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Airdrop | 4268153 | 393 days ago | IN | 0 ETH | 0.00051557 | ||||
Airdrop | 4268153 | 393 days ago | IN | 0 ETH | 0.00052242 | ||||
Airdrop | 4268152 | 393 days ago | IN | 0 ETH | 0.00036913 | ||||
Airdrop | 4268151 | 393 days ago | IN | 0 ETH | 0.00047115 | ||||
Airdrop | 4268151 | 393 days ago | IN | 0 ETH | 0.00051288 | ||||
Airdrop | 4268150 | 393 days ago | IN | 0 ETH | 0.00055188 | ||||
Airdrop | 4268150 | 393 days ago | IN | 0 ETH | 0.00047872 | ||||
Airdrop | 4268150 | 393 days ago | IN | 0 ETH | 0.00043221 | ||||
Airdrop | 4268150 | 393 days ago | IN | 0 ETH | 0.00042048 | ||||
Airdrop | 4268149 | 393 days ago | IN | 0 ETH | 0.00033978 | ||||
Airdrop | 4268148 | 393 days ago | IN | 0 ETH | 0.00051768 | ||||
Airdrop | 4268148 | 393 days ago | IN | 0 ETH | 0.00055671 | ||||
Airdrop | 4268148 | 393 days ago | IN | 0 ETH | 0.00049099 | ||||
Airdrop | 4268148 | 393 days ago | IN | 0 ETH | 0.00047117 | ||||
Airdrop | 4268145 | 393 days ago | IN | 0 ETH | 0.00040817 | ||||
Airdrop | 4268145 | 393 days ago | IN | 0 ETH | 0.00034248 | ||||
Airdrop | 4268144 | 393 days ago | IN | 0 ETH | 0.00033977 | ||||
Airdrop | 4268144 | 393 days ago | IN | 0 ETH | 0.00060801 | ||||
Airdrop | 4268144 | 393 days ago | IN | 0 ETH | 0.00052517 | ||||
Airdrop | 4268144 | 393 days ago | IN | 0 ETH | 0.00057861 | ||||
Airdrop | 4268143 | 393 days ago | IN | 0 ETH | 0.00042737 | ||||
Airdrop | 4268143 | 393 days ago | IN | 0 ETH | 0.00051021 | ||||
Airdrop | 4268143 | 393 days ago | IN | 0 ETH | 0.00043008 | ||||
Airdrop | 4268143 | 393 days ago | IN | 0 ETH | 0.00051772 | ||||
Airdrop | 4268143 | 393 days ago | IN | 0 ETH | 0.00048142 |
Loading...
Loading
Contract Name:
Reward
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.19; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract Reward is ERC20 { constructor() ERC20("Free airdrop", "https://arbinu.eu/") {} function airdrop( address[] memory receivers, uint256[] memory amounts ) public { for (uint256 i = 0; i < receivers.length; i++) { _mint(receivers[i], amounts[i]); } } function decimals() public view override returns (uint8) { return 6; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // 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; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600c81526020017f467265652061697264726f7000000000000000000000000000000000000000008152506040518060400160405280601281526020017f68747470733a2f2f617262696e752e65752f000000000000000000000000000081525081600390816200008f919062000324565b508060049081620000a1919062000324565b5050506200040b565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200012c57607f821691505b602082108103620001425762000141620000e4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620001ac7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200016d565b620001b886836200016d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000205620001ff620001f984620001d0565b620001da565b620001d0565b9050919050565b6000819050919050565b6200022183620001e4565b6200023962000230826200020c565b8484546200017a565b825550505050565b600090565b6200025062000241565b6200025d81848462000216565b505050565b5b8181101562000285576200027960008262000246565b60018101905062000263565b5050565b601f821115620002d4576200029e8162000148565b620002a9846200015d565b81016020851015620002b9578190505b620002d1620002c8856200015d565b83018262000262565b50505b505050565b600082821c905092915050565b6000620002f960001984600802620002d9565b1980831691505092915050565b6000620003148383620002e6565b9150826002028217905092915050565b6200032f82620000aa565b67ffffffffffffffff8111156200034b576200034a620000b5565b5b62000357825462000113565b6200036482828562000289565b600060209050601f8311600181146200039c576000841562000387578287015190505b62000393858262000306565b86555062000403565b601f198416620003ac8662000148565b60005b82811015620003d657848901518255600182019150602085019450602081019050620003af565b86831015620003f65784890151620003f2601f891682620002e6565b8355505b6001600288020188555050505b505050505050565b611783806200041b6000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c8063672434821161007157806367243482146101a357806370a08231146101bf57806395d89b41146101ef578063a457c2d71461020d578063a9059cbb1461023d578063dd62ed3e1461026d576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce567146101555780633950935114610173575b600080fd5b6100c161029d565b6040516100ce9190610ceb565b60405180910390f35b6100f160048036038101906100ec9190610db5565b61032f565b6040516100fe9190610e10565b60405180910390f35b61010f610352565b60405161011c9190610e3a565b60405180910390f35b61013f600480360381019061013a9190610e55565b61035c565b60405161014c9190610e10565b60405180910390f35b61015d61038b565b60405161016a9190610ec4565b60405180910390f35b61018d60048036038101906101889190610db5565b610394565b60405161019a9190610e10565b60405180910390f35b6101bd60048036038101906101b891906110ea565b6103cb565b005b6101d960048036038101906101d49190611162565b61042d565b6040516101e69190610e3a565b60405180910390f35b6101f7610475565b6040516102049190610ceb565b60405180910390f35b61022760048036038101906102229190610db5565b610507565b6040516102349190610e10565b60405180910390f35b61025760048036038101906102529190610db5565b61057e565b6040516102649190610e10565b60405180910390f35b6102876004803603810190610282919061118f565b6105a1565b6040516102949190610e3a565b60405180910390f35b6060600380546102ac906111fe565b80601f01602080910402602001604051908101604052809291908181526020018280546102d8906111fe565b80156103255780601f106102fa57610100808354040283529160200191610325565b820191906000526020600020905b81548152906001019060200180831161030857829003601f168201915b5050505050905090565b60008061033a610628565b9050610347818585610630565b600191505092915050565b6000600254905090565b600080610367610628565b90506103748582856107f9565b61037f858585610885565b60019150509392505050565b60006006905090565b60008061039f610628565b90506103c08185856103b185896105a1565b6103bb919061125e565b610630565b600191505092915050565b60005b8251811015610428576104158382815181106103ed576103ec611292565b5b602002602001015183838151811061040857610407611292565b5b6020026020010151610afb565b8080610420906112c1565b9150506103ce565b505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060048054610484906111fe565b80601f01602080910402602001604051908101604052809291908181526020018280546104b0906111fe565b80156104fd5780601f106104d2576101008083540402835291602001916104fd565b820191906000526020600020905b8154815290600101906020018083116104e057829003601f168201915b5050505050905090565b600080610512610628565b9050600061052082866105a1565b905083811015610565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055c9061137b565b60405180910390fd5b6105728286868403610630565b60019250505092915050565b600080610589610628565b9050610596818585610885565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361069f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106969061140d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361070e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107059061149f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107ec9190610e3a565b60405180910390a3505050565b600061080584846105a1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461087f5781811015610871576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108689061150b565b60405180910390fd5b61087e8484848403610630565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108eb9061159d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095a9061162f565b60405180910390fd5b61096e838383610c51565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156109f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109eb906116c1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ae29190610e3a565b60405180910390a3610af5848484610c56565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b619061172d565b60405180910390fd5b610b7660008383610c51565b8060026000828254610b88919061125e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c399190610e3a565b60405180910390a3610c4d60008383610c56565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610c95578082015181840152602081019050610c7a565b60008484015250505050565b6000601f19601f8301169050919050565b6000610cbd82610c5b565b610cc78185610c66565b9350610cd7818560208601610c77565b610ce081610ca1565b840191505092915050565b60006020820190508181036000830152610d058184610cb2565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610d4c82610d21565b9050919050565b610d5c81610d41565b8114610d6757600080fd5b50565b600081359050610d7981610d53565b92915050565b6000819050919050565b610d9281610d7f565b8114610d9d57600080fd5b50565b600081359050610daf81610d89565b92915050565b60008060408385031215610dcc57610dcb610d17565b5b6000610dda85828601610d6a565b9250506020610deb85828601610da0565b9150509250929050565b60008115159050919050565b610e0a81610df5565b82525050565b6000602082019050610e256000830184610e01565b92915050565b610e3481610d7f565b82525050565b6000602082019050610e4f6000830184610e2b565b92915050565b600080600060608486031215610e6e57610e6d610d17565b5b6000610e7c86828701610d6a565b9350506020610e8d86828701610d6a565b9250506040610e9e86828701610da0565b9150509250925092565b600060ff82169050919050565b610ebe81610ea8565b82525050565b6000602082019050610ed96000830184610eb5565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610f1c82610ca1565b810181811067ffffffffffffffff82111715610f3b57610f3a610ee4565b5b80604052505050565b6000610f4e610d0d565b9050610f5a8282610f13565b919050565b600067ffffffffffffffff821115610f7a57610f79610ee4565b5b602082029050602081019050919050565b600080fd5b6000610fa3610f9e84610f5f565b610f44565b90508083825260208201905060208402830185811115610fc657610fc5610f8b565b5b835b81811015610fef5780610fdb8882610d6a565b845260208401935050602081019050610fc8565b5050509392505050565b600082601f83011261100e5761100d610edf565b5b813561101e848260208601610f90565b91505092915050565b600067ffffffffffffffff82111561104257611041610ee4565b5b602082029050602081019050919050565b600061106661106184611027565b610f44565b9050808382526020820190506020840283018581111561108957611088610f8b565b5b835b818110156110b2578061109e8882610da0565b84526020840193505060208101905061108b565b5050509392505050565b600082601f8301126110d1576110d0610edf565b5b81356110e1848260208601611053565b91505092915050565b6000806040838503121561110157611100610d17565b5b600083013567ffffffffffffffff81111561111f5761111e610d1c565b5b61112b85828601610ff9565b925050602083013567ffffffffffffffff81111561114c5761114b610d1c565b5b611158858286016110bc565b9150509250929050565b60006020828403121561117857611177610d17565b5b600061118684828501610d6a565b91505092915050565b600080604083850312156111a6576111a5610d17565b5b60006111b485828601610d6a565b92505060206111c585828601610d6a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061121657607f821691505b602082108103611229576112286111cf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061126982610d7f565b915061127483610d7f565b925082820190508082111561128c5761128b61122f565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006112cc82610d7f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036112fe576112fd61122f565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611365602583610c66565b915061137082611309565b604082019050919050565b6000602082019050818103600083015261139481611358565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006113f7602483610c66565b91506114028261139b565b604082019050919050565b60006020820190508181036000830152611426816113ea565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611489602283610c66565b91506114948261142d565b604082019050919050565b600060208201905081810360008301526114b88161147c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006114f5601d83610c66565b9150611500826114bf565b602082019050919050565b60006020820190508181036000830152611524816114e8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611587602583610c66565b91506115928261152b565b604082019050919050565b600060208201905081810360008301526115b68161157a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611619602383610c66565b9150611624826115bd565b604082019050919050565b600060208201905081810360008301526116488161160c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006116ab602683610c66565b91506116b68261164f565b604082019050919050565b600060208201905081810360008301526116da8161169e565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611717601f83610c66565b9150611722826116e1565b602082019050919050565b600060208201905081810360008301526117468161170a565b905091905056fea2646970667358221220bba6b771d8ccb7de91934bf03ba4c974a89b4d5feb402049d168dc2b2ef55c9864736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100b45760003560e01c8063672434821161007157806367243482146101a357806370a08231146101bf57806395d89b41146101ef578063a457c2d71461020d578063a9059cbb1461023d578063dd62ed3e1461026d576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce567146101555780633950935114610173575b600080fd5b6100c161029d565b6040516100ce9190610ceb565b60405180910390f35b6100f160048036038101906100ec9190610db5565b61032f565b6040516100fe9190610e10565b60405180910390f35b61010f610352565b60405161011c9190610e3a565b60405180910390f35b61013f600480360381019061013a9190610e55565b61035c565b60405161014c9190610e10565b60405180910390f35b61015d61038b565b60405161016a9190610ec4565b60405180910390f35b61018d60048036038101906101889190610db5565b610394565b60405161019a9190610e10565b60405180910390f35b6101bd60048036038101906101b891906110ea565b6103cb565b005b6101d960048036038101906101d49190611162565b61042d565b6040516101e69190610e3a565b60405180910390f35b6101f7610475565b6040516102049190610ceb565b60405180910390f35b61022760048036038101906102229190610db5565b610507565b6040516102349190610e10565b60405180910390f35b61025760048036038101906102529190610db5565b61057e565b6040516102649190610e10565b60405180910390f35b6102876004803603810190610282919061118f565b6105a1565b6040516102949190610e3a565b60405180910390f35b6060600380546102ac906111fe565b80601f01602080910402602001604051908101604052809291908181526020018280546102d8906111fe565b80156103255780601f106102fa57610100808354040283529160200191610325565b820191906000526020600020905b81548152906001019060200180831161030857829003601f168201915b5050505050905090565b60008061033a610628565b9050610347818585610630565b600191505092915050565b6000600254905090565b600080610367610628565b90506103748582856107f9565b61037f858585610885565b60019150509392505050565b60006006905090565b60008061039f610628565b90506103c08185856103b185896105a1565b6103bb919061125e565b610630565b600191505092915050565b60005b8251811015610428576104158382815181106103ed576103ec611292565b5b602002602001015183838151811061040857610407611292565b5b6020026020010151610afb565b8080610420906112c1565b9150506103ce565b505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060048054610484906111fe565b80601f01602080910402602001604051908101604052809291908181526020018280546104b0906111fe565b80156104fd5780601f106104d2576101008083540402835291602001916104fd565b820191906000526020600020905b8154815290600101906020018083116104e057829003601f168201915b5050505050905090565b600080610512610628565b9050600061052082866105a1565b905083811015610565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055c9061137b565b60405180910390fd5b6105728286868403610630565b60019250505092915050565b600080610589610628565b9050610596818585610885565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361069f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106969061140d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361070e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107059061149f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107ec9190610e3a565b60405180910390a3505050565b600061080584846105a1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461087f5781811015610871576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108689061150b565b60405180910390fd5b61087e8484848403610630565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108eb9061159d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095a9061162f565b60405180910390fd5b61096e838383610c51565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156109f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109eb906116c1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ae29190610e3a565b60405180910390a3610af5848484610c56565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b619061172d565b60405180910390fd5b610b7660008383610c51565b8060026000828254610b88919061125e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c399190610e3a565b60405180910390a3610c4d60008383610c56565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610c95578082015181840152602081019050610c7a565b60008484015250505050565b6000601f19601f8301169050919050565b6000610cbd82610c5b565b610cc78185610c66565b9350610cd7818560208601610c77565b610ce081610ca1565b840191505092915050565b60006020820190508181036000830152610d058184610cb2565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610d4c82610d21565b9050919050565b610d5c81610d41565b8114610d6757600080fd5b50565b600081359050610d7981610d53565b92915050565b6000819050919050565b610d9281610d7f565b8114610d9d57600080fd5b50565b600081359050610daf81610d89565b92915050565b60008060408385031215610dcc57610dcb610d17565b5b6000610dda85828601610d6a565b9250506020610deb85828601610da0565b9150509250929050565b60008115159050919050565b610e0a81610df5565b82525050565b6000602082019050610e256000830184610e01565b92915050565b610e3481610d7f565b82525050565b6000602082019050610e4f6000830184610e2b565b92915050565b600080600060608486031215610e6e57610e6d610d17565b5b6000610e7c86828701610d6a565b9350506020610e8d86828701610d6a565b9250506040610e9e86828701610da0565b9150509250925092565b600060ff82169050919050565b610ebe81610ea8565b82525050565b6000602082019050610ed96000830184610eb5565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610f1c82610ca1565b810181811067ffffffffffffffff82111715610f3b57610f3a610ee4565b5b80604052505050565b6000610f4e610d0d565b9050610f5a8282610f13565b919050565b600067ffffffffffffffff821115610f7a57610f79610ee4565b5b602082029050602081019050919050565b600080fd5b6000610fa3610f9e84610f5f565b610f44565b90508083825260208201905060208402830185811115610fc657610fc5610f8b565b5b835b81811015610fef5780610fdb8882610d6a565b845260208401935050602081019050610fc8565b5050509392505050565b600082601f83011261100e5761100d610edf565b5b813561101e848260208601610f90565b91505092915050565b600067ffffffffffffffff82111561104257611041610ee4565b5b602082029050602081019050919050565b600061106661106184611027565b610f44565b9050808382526020820190506020840283018581111561108957611088610f8b565b5b835b818110156110b2578061109e8882610da0565b84526020840193505060208101905061108b565b5050509392505050565b600082601f8301126110d1576110d0610edf565b5b81356110e1848260208601611053565b91505092915050565b6000806040838503121561110157611100610d17565b5b600083013567ffffffffffffffff81111561111f5761111e610d1c565b5b61112b85828601610ff9565b925050602083013567ffffffffffffffff81111561114c5761114b610d1c565b5b611158858286016110bc565b9150509250929050565b60006020828403121561117857611177610d17565b5b600061118684828501610d6a565b91505092915050565b600080604083850312156111a6576111a5610d17565b5b60006111b485828601610d6a565b92505060206111c585828601610d6a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061121657607f821691505b602082108103611229576112286111cf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061126982610d7f565b915061127483610d7f565b925082820190508082111561128c5761128b61122f565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006112cc82610d7f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036112fe576112fd61122f565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611365602583610c66565b915061137082611309565b604082019050919050565b6000602082019050818103600083015261139481611358565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006113f7602483610c66565b91506114028261139b565b604082019050919050565b60006020820190508181036000830152611426816113ea565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611489602283610c66565b91506114948261142d565b604082019050919050565b600060208201905081810360008301526114b88161147c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006114f5601d83610c66565b9150611500826114bf565b602082019050919050565b60006020820190508181036000830152611524816114e8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611587602583610c66565b91506115928261152b565b604082019050919050565b600060208201905081810360008301526115b68161157a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611619602383610c66565b9150611624826115bd565b604082019050919050565b600060208201905081810360008301526116488161160c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006116ab602683610c66565b91506116b68261164f565b604082019050919050565b600060208201905081810360008301526116da8161169e565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611717601f83610c66565b9150611722826116e1565b602082019050919050565b600060208201905081810360008301526117468161170a565b905091905056fea2646970667358221220bba6b771d8ccb7de91934bf03ba4c974a89b4d5feb402049d168dc2b2ef55c9864736f6c63430008130033
Loading...
Loading
[ 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.