Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- Noah
- Optimization enabled
- true
- Compiler version
- v0.8.13+commit.abaa5c0e
- Optimization runs
- 200
- EVM Version
- default
- Verified at
- 2023-10-31T09:26:17.891379Z
contracts/Noah.sol
// SPDX-License-Identifier: MIT pragma solidity 0.8.13; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "contracts/access/Governable.sol"; import "contracts/interfaces/INoah.sol"; contract Noah is ERC20, Governable, INoah { uint public cap = 21_000_000 * 1e18; mapping(address => bool) public override isMinter; modifier onlyMinter() { require(isMinter[msg.sender], "Noah: msg.sender not minter"); _; } constructor() ERC20("NOAH", "NOAH") {} // to help users who accidentally send their tokens to this contract function withdrawToken(address _token, address _account, uint _amount) external override onlyGov { require(_token.code.length > 0); (bool success, bytes memory data) = _token.call( abi.encodeWithSelector(IERC20.transfer.selector, _account, _amount) ); require(success && (data.length == 0 || abi.decode(data, (bool)))); } function setMinter(address _minter, bool _isActive) external override onlyGov { isMinter[_minter] = _isActive; } function mint(address _account, uint _amount) external override onlyMinter { require(ERC20.totalSupply() + _amount <= cap, "Noah: cap exceeded"); _mint(_account, _amount); } }
@openzeppelin/contracts/token/ERC20/ERC20.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.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]. * * 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}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * 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 value {ERC20} uses, unless this function is * 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 {} }
@openzeppelin/contracts/token/ERC20/IERC20.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.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); }
@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
// 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); }
@openzeppelin/contracts/utils/Context.sol
// 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; } }
contracts/access/Governable.sol
// SPDX-License-Identifier: MIT pragma solidity 0.8.13; contract Governable { address public gov; constructor() { gov = msg.sender; } modifier onlyGov() { require(msg.sender == gov, "Governable: forbidden"); _; } function setGov(address _gov) external onlyGov { gov = _gov; } }
contracts/interfaces/INoah.sol
// SPDX-License-Identifier: MIT pragma solidity 0.8.13; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface INoah is IERC20 { function withdrawToken(address token, address account, uint amount) external; function isMinter(address account) external returns (bool); function setMinter(address minter, bool isActive) external; function mint(address account, uint amount) external; }
Compiler Settings
{"outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers"]}},"optimizer":{"runs":200,"enabled":true},"metadata":{"useLiteralContent":true},"libraries":{"":{"__CACHE_BREAKER__":"0x0000000000000031363938373434323034373536"}}}
Contract ABI
[{"type":"constructor","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"cap","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"gov","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isMinter","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"mint","inputs":[{"type":"address","name":"_account","internalType":"address"},{"type":"uint256","name":"_amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setGov","inputs":[{"type":"address","name":"_gov","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMinter","inputs":[{"type":"address","name":"_minter","internalType":"address"},{"type":"bool","name":"_isActive","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdrawToken","inputs":[{"type":"address","name":"_token","internalType":"address"},{"type":"address","name":"_account","internalType":"address"},{"type":"uint256","name":"_amount","internalType":"uint256"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","indexed":true},{"type":"address","name":"spender","indexed":true},{"type":"uint256","name":"value","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","indexed":true},{"type":"address","name":"to","indexed":true},{"type":"uint256","name":"value","indexed":false}],"anonymous":false}]
Contract Creation Code
0x60806040526a115eec47f6cf7e350000006006553480156200002057600080fd5b5060408051808201825260048082526309c9e82960e31b602080840182815285518087019096529285528401528151919291620000609160039162000091565b5080516200007690600490602084019062000091565b5050600580546001600160a01b031916331790555062000173565b8280546200009f9062000137565b90600052602060002090601f016020900481019282620000c357600085556200010e565b82601f10620000de57805160ff19168380011785556200010e565b828001600101855582156200010e579182015b828111156200010e578251825591602001919060010190620000f1565b506200011c92915062000120565b5090565b5b808211156200011c576000815560010162000121565b600181811c908216806200014c57607f821691505b6020821081036200016d57634e487b7160e01b600052602260045260246000fd5b50919050565b610d6c80620001836000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806340c10f19116100a2578063a9059cbb11610071578063a9059cbb14610243578063aa271e1a14610256578063cf456ae714610279578063cfad57a21461028c578063dd62ed3e1461029f57600080fd5b806340c10f19146101ec57806370a08231146101ff57806395d89b4114610228578063a457c2d71461023057600080fd5b806318160ddd116100e957806318160ddd1461019c57806323b872dd146101ae578063313ce567146101c1578063355274ea146101d057806339509351146101d957600080fd5b806301e336671461011b57806306fdde0314610130578063095ea7b31461014e57806312d43a5114610171575b600080fd5b61012e610129366004610b0c565b6102b2565b005b6101386103d4565b6040516101459190610b74565b60405180910390f35b61016161015c366004610ba7565b610466565b6040519015158152602001610145565b600554610184906001600160a01b031681565b6040516001600160a01b039091168152602001610145565b6002545b604051908152602001610145565b6101616101bc366004610b0c565b61047e565b60405160128152602001610145565b6101a060065481565b6101616101e7366004610ba7565b6104a2565b61012e6101fa366004610ba7565b6104c4565b6101a061020d366004610bd1565b6001600160a01b031660009081526020819052604090205490565b61013861058b565b61016161023e366004610ba7565b61059a565b610161610251366004610ba7565b610615565b610161610264366004610bd1565b60076020526000908152604090205460ff1681565b61012e610287366004610c04565b610623565b61012e61029a366004610bd1565b610678565b6101a06102ad366004610c3b565b6106c4565b6005546001600160a01b031633146102e55760405162461bcd60e51b81526004016102dc90610c6e565b60405180910390fd5b6000836001600160a01b03163b116102fc57600080fd5b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b17905291516000928392908716916103589190610c9d565b6000604051808303816000865af19150503d8060008114610395576040519150601f19603f3d011682016040523d82523d6000602084013e61039a565b606091505b50915091508180156103c45750805115806103c45750808060200190518101906103c49190610cb9565b6103cd57600080fd5b5050505050565b6060600380546103e390610cd6565b80601f016020809104026020016040519081016040528092919081815260200182805461040f90610cd6565b801561045c5780601f106104315761010080835404028352916020019161045c565b820191906000526020600020905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b6000336104748185856106ef565b5060019392505050565b60003361048c858285610813565b61049785858561088d565b506001949350505050565b6000336104748185856104b583836106c4565b6104bf9190610d10565b6106ef565b3360009081526007602052604090205460ff166105235760405162461bcd60e51b815260206004820152601b60248201527f4e6f61683a206d73672e73656e646572206e6f74206d696e746572000000000060448201526064016102dc565b6006548161053060025490565b61053a9190610d10565b111561057d5760405162461bcd60e51b8152602060048201526012602482015271139bd85a0e8818d85c08195e18d95959195960721b60448201526064016102dc565b6105878282610a31565b5050565b6060600480546103e390610cd6565b600033816105a882866106c4565b9050838110156106085760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102dc565b61049782868684036106ef565b60003361047481858561088d565b6005546001600160a01b0316331461064d5760405162461bcd60e51b81526004016102dc90610c6e565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146106a25760405162461bcd60e51b81526004016102dc90610c6e565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166107515760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102dc565b6001600160a01b0382166107b25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102dc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061081f84846106c4565b90506000198114610887578181101561087a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016102dc565b61088784848484036106ef565b50505050565b6001600160a01b0383166108f15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102dc565b6001600160a01b0382166109535760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102dc565b6001600160a01b038316600090815260208190526040902054818110156109cb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102dc565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610887565b6001600160a01b038216610a875760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016102dc565b8060026000828254610a999190610d10565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b80356001600160a01b0381168114610b0757600080fd5b919050565b600080600060608486031215610b2157600080fd5b610b2a84610af0565b9250610b3860208501610af0565b9150604084013590509250925092565b60005b83811015610b63578181015183820152602001610b4b565b838111156108875750506000910152565b6020815260008251806020840152610b93816040850160208701610b48565b601f01601f19169190910160400192915050565b60008060408385031215610bba57600080fd5b610bc383610af0565b946020939093013593505050565b600060208284031215610be357600080fd5b610bec82610af0565b9392505050565b8015158114610c0157600080fd5b50565b60008060408385031215610c1757600080fd5b610c2083610af0565b91506020830135610c3081610bf3565b809150509250929050565b60008060408385031215610c4e57600080fd5b610c5783610af0565b9150610c6560208401610af0565b90509250929050565b60208082526015908201527423b7bb32b93730b136329d103337b93134b23232b760591b604082015260600190565b60008251610caf818460208701610b48565b9190910192915050565b600060208284031215610ccb57600080fd5b8151610bec81610bf3565b600181811c90821680610cea57607f821691505b602082108103610d0a57634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610d3157634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220b9bef872247d75cf520482948505aa24935dc0054883d5e9e11efa026e4e4a8064736f6c634300080d0033
Deployed ByteCode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c806340c10f19116100a2578063a9059cbb11610071578063a9059cbb14610243578063aa271e1a14610256578063cf456ae714610279578063cfad57a21461028c578063dd62ed3e1461029f57600080fd5b806340c10f19146101ec57806370a08231146101ff57806395d89b4114610228578063a457c2d71461023057600080fd5b806318160ddd116100e957806318160ddd1461019c57806323b872dd146101ae578063313ce567146101c1578063355274ea146101d057806339509351146101d957600080fd5b806301e336671461011b57806306fdde0314610130578063095ea7b31461014e57806312d43a5114610171575b600080fd5b61012e610129366004610b0c565b6102b2565b005b6101386103d4565b6040516101459190610b74565b60405180910390f35b61016161015c366004610ba7565b610466565b6040519015158152602001610145565b600554610184906001600160a01b031681565b6040516001600160a01b039091168152602001610145565b6002545b604051908152602001610145565b6101616101bc366004610b0c565b61047e565b60405160128152602001610145565b6101a060065481565b6101616101e7366004610ba7565b6104a2565b61012e6101fa366004610ba7565b6104c4565b6101a061020d366004610bd1565b6001600160a01b031660009081526020819052604090205490565b61013861058b565b61016161023e366004610ba7565b61059a565b610161610251366004610ba7565b610615565b610161610264366004610bd1565b60076020526000908152604090205460ff1681565b61012e610287366004610c04565b610623565b61012e61029a366004610bd1565b610678565b6101a06102ad366004610c3b565b6106c4565b6005546001600160a01b031633146102e55760405162461bcd60e51b81526004016102dc90610c6e565b60405180910390fd5b6000836001600160a01b03163b116102fc57600080fd5b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b17905291516000928392908716916103589190610c9d565b6000604051808303816000865af19150503d8060008114610395576040519150601f19603f3d011682016040523d82523d6000602084013e61039a565b606091505b50915091508180156103c45750805115806103c45750808060200190518101906103c49190610cb9565b6103cd57600080fd5b5050505050565b6060600380546103e390610cd6565b80601f016020809104026020016040519081016040528092919081815260200182805461040f90610cd6565b801561045c5780601f106104315761010080835404028352916020019161045c565b820191906000526020600020905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b6000336104748185856106ef565b5060019392505050565b60003361048c858285610813565b61049785858561088d565b506001949350505050565b6000336104748185856104b583836106c4565b6104bf9190610d10565b6106ef565b3360009081526007602052604090205460ff166105235760405162461bcd60e51b815260206004820152601b60248201527f4e6f61683a206d73672e73656e646572206e6f74206d696e746572000000000060448201526064016102dc565b6006548161053060025490565b61053a9190610d10565b111561057d5760405162461bcd60e51b8152602060048201526012602482015271139bd85a0e8818d85c08195e18d95959195960721b60448201526064016102dc565b6105878282610a31565b5050565b6060600480546103e390610cd6565b600033816105a882866106c4565b9050838110156106085760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102dc565b61049782868684036106ef565b60003361047481858561088d565b6005546001600160a01b0316331461064d5760405162461bcd60e51b81526004016102dc90610c6e565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146106a25760405162461bcd60e51b81526004016102dc90610c6e565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166107515760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102dc565b6001600160a01b0382166107b25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102dc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061081f84846106c4565b90506000198114610887578181101561087a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016102dc565b61088784848484036106ef565b50505050565b6001600160a01b0383166108f15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102dc565b6001600160a01b0382166109535760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102dc565b6001600160a01b038316600090815260208190526040902054818110156109cb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102dc565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610887565b6001600160a01b038216610a875760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016102dc565b8060026000828254610a999190610d10565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b80356001600160a01b0381168114610b0757600080fd5b919050565b600080600060608486031215610b2157600080fd5b610b2a84610af0565b9250610b3860208501610af0565b9150604084013590509250925092565b60005b83811015610b63578181015183820152602001610b4b565b838111156108875750506000910152565b6020815260008251806020840152610b93816040850160208701610b48565b601f01601f19169190910160400192915050565b60008060408385031215610bba57600080fd5b610bc383610af0565b946020939093013593505050565b600060208284031215610be357600080fd5b610bec82610af0565b9392505050565b8015158114610c0157600080fd5b50565b60008060408385031215610c1757600080fd5b610c2083610af0565b91506020830135610c3081610bf3565b809150509250929050565b60008060408385031215610c4e57600080fd5b610c5783610af0565b9150610c6560208401610af0565b90509250929050565b60208082526015908201527423b7bb32b93730b136329d103337b93134b23232b760591b604082015260600190565b60008251610caf818460208701610b48565b9190910192915050565b600060208284031215610ccb57600080fd5b8151610bec81610bf3565b600181811c90821680610cea57607f821691505b602082108103610d0a57634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610d3157634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220b9bef872247d75cf520482948505aa24935dc0054883d5e9e11efa026e4e4a8064736f6c634300080d0033
External libraries
__CACHE_BREAKER__ : 0x0000000000000031363938373434323034373536