Polygon Sponsored slots available. Book your slot here!
ERC-20
Overview
Max Total Supply
700,000,045 BNU
Holders
9
Market
Price
$0.00 @ 0.000000 POL
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
Boonu
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.3/contracts/token/ERC20/ERC20.sol"; import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.3/contracts/token/ERC20/extensions/ERC20Capped.sol"; import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.3/contracts/token/ERC20/extensions/ERC20Burnable.sol"; contract Boonu is ERC20Capped, ERC20Burnable{ address payable public owner; uint256 blockReward; constructor(uint256 cap, uint256 reward) ERC20("BOONU","BNU") ERC20Capped(cap * (10 ** decimals())) { owner = payable(msg.sender); _mint(owner, 700000000 * (10 ** decimals())); // once initil supply is done, send (mint) all supply to myself blockReward = reward * (10 ** decimals()); } //_mint function from ERC20Capped in order to a function _mint(address account, uint256 amount) internal virtual override(ERC20Capped, ERC20) { require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded"); super._mint(account, amount); } function _mintMinerReward() internal { _mint(block.coinbase, blockReward); } function _beforeTokenTransfer(address from, address to, uint256 value) internal virtual override { if(from != address(0) && to != block.coinbase && block.coinbase != address(0)) { _mintMinerReward(); } super._beforeTokenTransfer(from, to, value); } function setBlockReward(uint256 reward) public onlyOwner { blockReward = reward * (10 * decimals()); } function destroy() public onlyOwner{ selfdestruct(owner); } modifier onlyOwner { require(msg.sender == owner, "Only the owner can call this function"); _; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; /** * @dev Extension of {ERC20} that adds a cap to the supply of tokens. */ abstract contract ERC20Capped is ERC20 { uint256 private immutable _cap; /** * @dev Sets the value of the `cap`. This value is immutable, it can only be * set once during construction. */ constructor(uint256 cap_) { require(cap_ > 0, "ERC20Capped: cap is 0"); _cap = cap_; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view virtual returns (uint256) { return _cap; } /** * @dev See {ERC20-_mint}. */ function _mint(address account, uint256 amount) internal virtual override { require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded"); super._mint(account, amount); } }
// 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 (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; } }
// 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"cap","type":"uint256"},{"internalType":"uint256","name":"reward","type":"uint256"}],"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":"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","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":[],"name":"destroy","outputs":[],"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":"owner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"setBlockReward","outputs":[],"stateMutability":"nonpayable","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
60a06040523480156200001157600080fd5b5060405162002b2738038062002b27833981810160405281019062000037919062000603565b620000476200021f60201b60201c565b600a620000559190620007da565b826200006291906200082b565b6040518060400160405280600581526020017f424f4f4e550000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f424e5500000000000000000000000000000000000000000000000000000000008152508160039081620000df919062000ae6565b508060049081620000f1919062000ae6565b505050600081116200013a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001319062000c2e565b60405180910390fd5b80608081815250505033600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001e6600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620001bb6200021f60201b60201c565b600a620001c99190620007da565b6329b92700620001da91906200082b565b6200022860201b60201c565b620001f66200021f60201b60201c565b600a620002049190620007da565b816200021191906200082b565b600681905550505062000d9d565b60006012905090565b62000238620002b960201b60201c565b816200024e620002c360201b620004271760201c565b6200025a919062000c50565b11156200029e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002959062000cdb565b60405180910390fd5b620002b58282620002cd60201b620008a31760201c565b5050565b6000608051905090565b6000600254905090565b620002dd620002b960201b60201c565b81620002f3620002c360201b620004271760201c565b620002ff919062000c50565b111562000343576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033a9062000cdb565b60405180910390fd5b6200035a82826200035e60201b6200090d1760201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c79062000d4d565b60405180910390fd5b620003e460008383620004cb60201b60201c565b8060026000828254620003f8919062000c50565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004ab919062000d80565b60405180910390a3620004c760008383620005a360201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156200053557504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156200056f5750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b15620005865762000585620005a860201b60201c565b5b6200059e838383620005be60201b62000a631760201c565b505050565b505050565b620005bc416006546200022860201b60201c565b565b505050565b600080fd5b6000819050919050565b620005dd81620005c8565b8114620005e957600080fd5b50565b600081519050620005fd81620005d2565b92915050565b600080604083850312156200061d576200061c620005c3565b5b60006200062d85828601620005ec565b92505060206200064085828601620005ec565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620006d857808604811115620006b057620006af6200064a565b5b6001851615620006c05780820291505b8081029050620006d08562000679565b945062000690565b94509492505050565b600082620006f35760019050620007c6565b81620007035760009050620007c6565b81600181146200071c576002811462000727576200075d565b6001915050620007c6565b60ff8411156200073c576200073b6200064a565b5b8360020a9150848211156200075657620007556200064a565b5b50620007c6565b5060208310610133831016604e8410600b8410161715620007975782820a9050838111156200079157620007906200064a565b5b620007c6565b620007a6848484600162000686565b92509050818404811115620007c057620007bf6200064a565b5b81810290505b9392505050565b600060ff82169050919050565b6000620007e782620005c8565b9150620007f483620007cd565b9250620008237fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006e1565b905092915050565b60006200083882620005c8565b91506200084583620005c8565b92508282026200085581620005c8565b915082820484148315176200086f576200086e6200064a565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008f857607f821691505b6020821081036200090e576200090d620008b0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009787fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000939565b62000984868362000939565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620009c7620009c1620009bb84620005c8565b6200099c565b620005c8565b9050919050565b6000819050919050565b620009e383620009a6565b620009fb620009f282620009ce565b84845462000946565b825550505050565b600090565b62000a1262000a03565b62000a1f818484620009d8565b505050565b5b8181101562000a475762000a3b60008262000a08565b60018101905062000a25565b5050565b601f82111562000a965762000a608162000914565b62000a6b8462000929565b8101602085101562000a7b578190505b62000a9362000a8a8562000929565b83018262000a24565b50505b505050565b600082821c905092915050565b600062000abb6000198460080262000a9b565b1980831691505092915050565b600062000ad6838362000aa8565b9150826002028217905092915050565b62000af18262000876565b67ffffffffffffffff81111562000b0d5762000b0c62000881565b5b62000b198254620008df565b62000b2682828562000a4b565b600060209050601f83116001811462000b5e576000841562000b49578287015190505b62000b55858262000ac8565b86555062000bc5565b601f19841662000b6e8662000914565b60005b8281101562000b985784890151825560018201915060208501945060208101905062000b71565b8683101562000bb8578489015162000bb4601f89168262000aa8565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b600062000c1660158362000bcd565b915062000c238262000bde565b602082019050919050565b6000602082019050818103600083015262000c498162000c07565b9050919050565b600062000c5d82620005c8565b915062000c6a83620005c8565b925082820190508082111562000c855762000c846200064a565b5b92915050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b600062000cc360198362000bcd565b915062000cd08262000c8b565b602082019050919050565b6000602082019050818103600083015262000cf68162000cb4565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d35601f8362000bcd565b915062000d428262000cfd565b602082019050919050565b6000602082019050818103600083015262000d688162000d26565b9050919050565b62000d7a81620005c8565b82525050565b600060208201905062000d97600083018462000d6f565b92915050565b608051611d6e62000db960003960006105280152611d6e6000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806342966c68116100a25780638da5cb5b116100715780638da5cb5b146102a657806395d89b41146102c4578063a457c2d7146102e2578063a9059cbb14610312578063dd62ed3e146103425761010b565b806342966c681461023457806370a082311461025057806379cc67901461028057806383197ef01461029c5761010b565b806323b872dd116100de57806323b872dd14610198578063313ce567146101c8578063355274ea146101e657806339509351146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e5780631a18e7071461017c575b600080fd5b610118610372565b60405161012591906112d5565b60405180910390f35b61014860048036038101906101439190611390565b610404565b60405161015591906113eb565b60405180910390f35b610166610427565b6040516101739190611415565b60405180910390f35b61019660048036038101906101919190611430565b610431565b005b6101b260048036038101906101ad919061145d565b6104ec565b6040516101bf91906113eb565b60405180910390f35b6101d061051b565b6040516101dd91906114cc565b60405180910390f35b6101ee610524565b6040516101fb9190611415565b60405180910390f35b61021e60048036038101906102199190611390565b61054c565b60405161022b91906113eb565b60405180910390f35b61024e60048036038101906102499190611430565b610583565b005b61026a600480360381019061026591906114e7565b610597565b6040516102779190611415565b60405180910390f35b61029a60048036038101906102959190611390565b6105df565b005b6102a46105ff565b005b6102ae6106ca565b6040516102bb9190611535565b60405180910390f35b6102cc6106f0565b6040516102d991906112d5565b60405180910390f35b6102fc60048036038101906102f79190611390565b610782565b60405161030991906113eb565b60405180910390f35b61032c60048036038101906103279190611390565b6107f9565b60405161033991906113eb565b60405180910390f35b61035c60048036038101906103579190611550565b61081c565b6040516103699190611415565b60405180910390f35b606060038054610381906115bf565b80601f01602080910402602001604051908101604052809291908181526020018280546103ad906115bf565b80156103fa5780601f106103cf576101008083540402835291602001916103fa565b820191906000526020600020905b8154815290600101906020018083116103dd57829003601f168201915b5050505050905090565b60008061040f610a68565b905061041c818585610a70565b600191505092915050565b6000600254905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b890611662565b60405180910390fd5b6104c961051b565b600a6104d591906116b1565b60ff16816104e391906116ee565b60068190555050565b6000806104f7610a68565b9050610504858285610c39565b61050f858585610cc5565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600080610557610a68565b9050610578818585610569858961081c565b6105739190611730565b610a70565b600191505092915050565b61059461058e610a68565b82610f3b565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105f1826105eb610a68565b83610c39565b6105fb8282610f3b565b5050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461068f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068690611662565b60405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16ff5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546106ff906115bf565b80601f016020809104026020016040519081016040528092919081815260200182805461072b906115bf565b80156107785780601f1061074d57610100808354040283529160200191610778565b820191906000526020600020905b81548152906001019060200180831161075b57829003601f168201915b5050505050905090565b60008061078d610a68565b9050600061079b828661081c565b9050838110156107e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d7906117d6565b60405180910390fd5b6107ed8286868403610a70565b60019250505092915050565b600080610804610a68565b9050610811818585610cc5565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108ab610524565b816108b4610427565b6108be9190611730565b11156108ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f690611842565b60405180910390fd5b610909828261090d565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361097c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610973906118ae565b60405180910390fd5b61098860008383611108565b806002600082825461099a9190611730565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a4b9190611415565b60405180910390a3610a5f600083836111c8565b5050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad690611940565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b45906119d2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c2c9190611415565b60405180910390a3505050565b6000610c45848461081c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cbf5781811015610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890611a3e565b60405180910390fd5b610cbe8484848403610a70565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b90611ad0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a90611b62565b60405180910390fd5b610dae838383611108565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b90611bf4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f229190611415565b60405180910390a3610f358484846111c8565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa190611c86565b60405180910390fd5b610fb682600083611108565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390611d18565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110ef9190611415565b60405180910390a3611103836000846111c8565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561117157504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156111aa5750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b156111b8576111b76111cd565b5b6111c3838383610a63565b505050565b505050565b6111d9416006546111db565b565b6111e3610524565b816111ec610427565b6111f69190611730565b1115611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e90611842565b60405180910390fd5b61124182826108a3565b5050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561127f578082015181840152602081019050611264565b60008484015250505050565b6000601f19601f8301169050919050565b60006112a782611245565b6112b18185611250565b93506112c1818560208601611261565b6112ca8161128b565b840191505092915050565b600060208201905081810360008301526112ef818461129c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611327826112fc565b9050919050565b6113378161131c565b811461134257600080fd5b50565b6000813590506113548161132e565b92915050565b6000819050919050565b61136d8161135a565b811461137857600080fd5b50565b60008135905061138a81611364565b92915050565b600080604083850312156113a7576113a66112f7565b5b60006113b585828601611345565b92505060206113c68582860161137b565b9150509250929050565b60008115159050919050565b6113e5816113d0565b82525050565b600060208201905061140060008301846113dc565b92915050565b61140f8161135a565b82525050565b600060208201905061142a6000830184611406565b92915050565b600060208284031215611446576114456112f7565b5b60006114548482850161137b565b91505092915050565b600080600060608486031215611476576114756112f7565b5b600061148486828701611345565b935050602061149586828701611345565b92505060406114a68682870161137b565b9150509250925092565b600060ff82169050919050565b6114c6816114b0565b82525050565b60006020820190506114e160008301846114bd565b92915050565b6000602082840312156114fd576114fc6112f7565b5b600061150b84828501611345565b91505092915050565b600061151f826112fc565b9050919050565b61152f81611514565b82525050565b600060208201905061154a6000830184611526565b92915050565b60008060408385031215611567576115666112f7565b5b600061157585828601611345565b925050602061158685828601611345565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115d757607f821691505b6020821081036115ea576115e9611590565b5b50919050565b7f4f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e60008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b600061164c602583611250565b9150611657826115f0565b604082019050919050565b6000602082019050818103600083015261167b8161163f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116bc826114b0565b91506116c7836114b0565b92508282026116d5816114b0565b91508082146116e7576116e6611682565b5b5092915050565b60006116f98261135a565b91506117048361135a565b92508282026117128161135a565b9150828204841483151761172957611728611682565b5b5092915050565b600061173b8261135a565b91506117468361135a565b925082820190508082111561175e5761175d611682565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117c0602583611250565b91506117cb82611764565b604082019050919050565b600060208201905081810360008301526117ef816117b3565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b600061182c601983611250565b9150611837826117f6565b602082019050919050565b6000602082019050818103600083015261185b8161181f565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611898601f83611250565b91506118a382611862565b602082019050919050565b600060208201905081810360008301526118c78161188b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061192a602483611250565b9150611935826118ce565b604082019050919050565b600060208201905081810360008301526119598161191d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006119bc602283611250565b91506119c782611960565b604082019050919050565b600060208201905081810360008301526119eb816119af565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611a28601d83611250565b9150611a33826119f2565b602082019050919050565b60006020820190508181036000830152611a5781611a1b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611aba602583611250565b9150611ac582611a5e565b604082019050919050565b60006020820190508181036000830152611ae981611aad565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b4c602383611250565b9150611b5782611af0565b604082019050919050565b60006020820190508181036000830152611b7b81611b3f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611bde602683611250565b9150611be982611b82565b604082019050919050565b60006020820190508181036000830152611c0d81611bd1565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c70602183611250565b9150611c7b82611c14565b604082019050919050565b60006020820190508181036000830152611c9f81611c63565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d02602283611250565b9150611d0d82611ca6565b604082019050919050565b60006020820190508181036000830152611d3181611cf5565b905091905056fea2646970667358221220f0a94baef1eb3f40496d2fbd9c50d8cba3d399de3aa603f5c406cbaf73e777ec64736f6c63430008110033000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000000000000000000000000000000000000000000003
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806342966c68116100a25780638da5cb5b116100715780638da5cb5b146102a657806395d89b41146102c4578063a457c2d7146102e2578063a9059cbb14610312578063dd62ed3e146103425761010b565b806342966c681461023457806370a082311461025057806379cc67901461028057806383197ef01461029c5761010b565b806323b872dd116100de57806323b872dd14610198578063313ce567146101c8578063355274ea146101e657806339509351146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e5780631a18e7071461017c575b600080fd5b610118610372565b60405161012591906112d5565b60405180910390f35b61014860048036038101906101439190611390565b610404565b60405161015591906113eb565b60405180910390f35b610166610427565b6040516101739190611415565b60405180910390f35b61019660048036038101906101919190611430565b610431565b005b6101b260048036038101906101ad919061145d565b6104ec565b6040516101bf91906113eb565b60405180910390f35b6101d061051b565b6040516101dd91906114cc565b60405180910390f35b6101ee610524565b6040516101fb9190611415565b60405180910390f35b61021e60048036038101906102199190611390565b61054c565b60405161022b91906113eb565b60405180910390f35b61024e60048036038101906102499190611430565b610583565b005b61026a600480360381019061026591906114e7565b610597565b6040516102779190611415565b60405180910390f35b61029a60048036038101906102959190611390565b6105df565b005b6102a46105ff565b005b6102ae6106ca565b6040516102bb9190611535565b60405180910390f35b6102cc6106f0565b6040516102d991906112d5565b60405180910390f35b6102fc60048036038101906102f79190611390565b610782565b60405161030991906113eb565b60405180910390f35b61032c60048036038101906103279190611390565b6107f9565b60405161033991906113eb565b60405180910390f35b61035c60048036038101906103579190611550565b61081c565b6040516103699190611415565b60405180910390f35b606060038054610381906115bf565b80601f01602080910402602001604051908101604052809291908181526020018280546103ad906115bf565b80156103fa5780601f106103cf576101008083540402835291602001916103fa565b820191906000526020600020905b8154815290600101906020018083116103dd57829003601f168201915b5050505050905090565b60008061040f610a68565b905061041c818585610a70565b600191505092915050565b6000600254905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b890611662565b60405180910390fd5b6104c961051b565b600a6104d591906116b1565b60ff16816104e391906116ee565b60068190555050565b6000806104f7610a68565b9050610504858285610c39565b61050f858585610cc5565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000905090565b600080610557610a68565b9050610578818585610569858961081c565b6105739190611730565b610a70565b600191505092915050565b61059461058e610a68565b82610f3b565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105f1826105eb610a68565b83610c39565b6105fb8282610f3b565b5050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461068f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068690611662565b60405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16ff5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546106ff906115bf565b80601f016020809104026020016040519081016040528092919081815260200182805461072b906115bf565b80156107785780601f1061074d57610100808354040283529160200191610778565b820191906000526020600020905b81548152906001019060200180831161075b57829003601f168201915b5050505050905090565b60008061078d610a68565b9050600061079b828661081c565b9050838110156107e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d7906117d6565b60405180910390fd5b6107ed8286868403610a70565b60019250505092915050565b600080610804610a68565b9050610811818585610cc5565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108ab610524565b816108b4610427565b6108be9190611730565b11156108ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f690611842565b60405180910390fd5b610909828261090d565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361097c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610973906118ae565b60405180910390fd5b61098860008383611108565b806002600082825461099a9190611730565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a4b9190611415565b60405180910390a3610a5f600083836111c8565b5050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad690611940565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b45906119d2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c2c9190611415565b60405180910390a3505050565b6000610c45848461081c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cbf5781811015610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890611a3e565b60405180910390fd5b610cbe8484848403610a70565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b90611ad0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a90611b62565b60405180910390fd5b610dae838383611108565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b90611bf4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f229190611415565b60405180910390a3610f358484846111c8565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa190611c86565b60405180910390fd5b610fb682600083611108565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390611d18565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110ef9190611415565b60405180910390a3611103836000846111c8565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561117157504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156111aa5750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b156111b8576111b76111cd565b5b6111c3838383610a63565b505050565b505050565b6111d9416006546111db565b565b6111e3610524565b816111ec610427565b6111f69190611730565b1115611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e90611842565b60405180910390fd5b61124182826108a3565b5050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561127f578082015181840152602081019050611264565b60008484015250505050565b6000601f19601f8301169050919050565b60006112a782611245565b6112b18185611250565b93506112c1818560208601611261565b6112ca8161128b565b840191505092915050565b600060208201905081810360008301526112ef818461129c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611327826112fc565b9050919050565b6113378161131c565b811461134257600080fd5b50565b6000813590506113548161132e565b92915050565b6000819050919050565b61136d8161135a565b811461137857600080fd5b50565b60008135905061138a81611364565b92915050565b600080604083850312156113a7576113a66112f7565b5b60006113b585828601611345565b92505060206113c68582860161137b565b9150509250929050565b60008115159050919050565b6113e5816113d0565b82525050565b600060208201905061140060008301846113dc565b92915050565b61140f8161135a565b82525050565b600060208201905061142a6000830184611406565b92915050565b600060208284031215611446576114456112f7565b5b60006114548482850161137b565b91505092915050565b600080600060608486031215611476576114756112f7565b5b600061148486828701611345565b935050602061149586828701611345565b92505060406114a68682870161137b565b9150509250925092565b600060ff82169050919050565b6114c6816114b0565b82525050565b60006020820190506114e160008301846114bd565b92915050565b6000602082840312156114fd576114fc6112f7565b5b600061150b84828501611345565b91505092915050565b600061151f826112fc565b9050919050565b61152f81611514565b82525050565b600060208201905061154a6000830184611526565b92915050565b60008060408385031215611567576115666112f7565b5b600061157585828601611345565b925050602061158685828601611345565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115d757607f821691505b6020821081036115ea576115e9611590565b5b50919050565b7f4f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e60008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b600061164c602583611250565b9150611657826115f0565b604082019050919050565b6000602082019050818103600083015261167b8161163f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116bc826114b0565b91506116c7836114b0565b92508282026116d5816114b0565b91508082146116e7576116e6611682565b5b5092915050565b60006116f98261135a565b91506117048361135a565b92508282026117128161135a565b9150828204841483151761172957611728611682565b5b5092915050565b600061173b8261135a565b91506117468361135a565b925082820190508082111561175e5761175d611682565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117c0602583611250565b91506117cb82611764565b604082019050919050565b600060208201905081810360008301526117ef816117b3565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b600061182c601983611250565b9150611837826117f6565b602082019050919050565b6000602082019050818103600083015261185b8161181f565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611898601f83611250565b91506118a382611862565b602082019050919050565b600060208201905081810360008301526118c78161188b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061192a602483611250565b9150611935826118ce565b604082019050919050565b600060208201905081810360008301526119598161191d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006119bc602283611250565b91506119c782611960565b604082019050919050565b600060208201905081810360008301526119eb816119af565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611a28601d83611250565b9150611a33826119f2565b602082019050919050565b60006020820190508181036000830152611a5781611a1b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611aba602583611250565b9150611ac582611a5e565b604082019050919050565b60006020820190508181036000830152611ae981611aad565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b4c602383611250565b9150611b5782611af0565b604082019050919050565b60006020820190508181036000830152611b7b81611b3f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611bde602683611250565b9150611be982611b82565b604082019050919050565b60006020820190508181036000830152611c0d81611bd1565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c70602183611250565b9150611c7b82611c14565b604082019050919050565b60006020820190508181036000830152611c9f81611c63565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d02602283611250565b9150611d0d82611ca6565b604082019050919050565b60006020820190508181036000830152611d3181611cf5565b905091905056fea2646970667358221220f0a94baef1eb3f40496d2fbd9c50d8cba3d399de3aa603f5c406cbaf73e777ec64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000000000000000000000000000000000000000000003
-----Decoded View---------------
Arg [0] : cap (uint256): 1000000000
Arg [1] : reward (uint256): 3
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000003
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.