ERC-20
Overview
Max Total Supply
75,000,000 HTR
Holders
253
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HTR
Compiler Version
v0.5.8+commit.23d335f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-06-07 */ // File: ../3rdparty/openzeppelin-solidity/contracts/token/ERC20/IERC20.sol pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see `ERC20Detailed`. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a `Transfer` event. */ function transfer(address recipient, 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. * * > 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @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); } // File: ../3rdparty/openzeppelin-solidity/contracts/math/SafeMath.sol pragma solidity ^0.5.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } // File: ../3rdparty/openzeppelin-solidity/contracts/token/ERC20/ERC20.sol pragma solidity ^0.5.0; /** * @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 `ERC20Mintable`. * * *For a detailed writeup see our guide [How to implement supply * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).* * * We have followed general OpenZeppelin guidelines: functions revert instead * of 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 IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See `IERC20.totalSupply`. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See `IERC20.balanceOf`. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See `IERC20.transfer`. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * @dev See `IERC20.allowance`. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See `IERC20.approve`. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public returns (bool) { _approve(msg.sender, spender, value); 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`; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `value`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(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 returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].add(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 returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue)); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to `transfer`, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a `Transfer` event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, 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 * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destoys `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 value) internal { require(account != address(0), "ERC20: burn from the zero address"); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is 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 value) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = value; emit Approval(owner, spender, value); } /** * @dev Destoys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See `_burn` and `_approve`. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount)); } } // File: ../3rdparty/openzeppelin-solidity/contracts/token/ERC20/ERC20Detailed.sol pragma solidity ^0.5.0; /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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. * * > Note that 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 returns (uint8) { return _decimals; } } // File: ../3rdparty/openzeppelin-solidity/contracts/access/Roles.sol pragma solidity ^0.5.0; /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev Give an account access to this role. */ function add(Role storage role, address account) internal { require(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); role.bearer[account] = false; } /** * @dev Check if an account has this role. * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0), "Roles: account is the zero address"); return role.bearer[account]; } } // File: ../3rdparty/openzeppelin-solidity/contracts/access/roles/PauserRole.sol pragma solidity ^0.5.0; contract PauserRole { using Roles for Roles.Role; event PauserAdded(address indexed account); event PauserRemoved(address indexed account); Roles.Role private _pausers; constructor () internal { _addPauser(msg.sender); } modifier onlyPauser() { require(isPauser(msg.sender), "PauserRole: caller does not have the Pauser role"); _; } function isPauser(address account) public view returns (bool) { return _pausers.has(account); } function addPauser(address account) public onlyPauser { _addPauser(account); } function renouncePauser() public { _removePauser(msg.sender); } function _addPauser(address account) internal { _pausers.add(account); emit PauserAdded(account); } function _removePauser(address account) internal { _pausers.remove(account); emit PauserRemoved(account); } } // File: ../3rdparty/openzeppelin-solidity/contracts/lifecycle/Pausable.sol pragma solidity ^0.5.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ contract Pausable is PauserRole { /** * @dev Emitted when the pause is triggered by a pauser (`account`). */ event Paused(address account); /** * @dev Emitted when the pause is lifted by a pauser (`account`). */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. Assigns the Pauser role * to the deployer. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!_paused || isPauser(msg.sender), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Called by a pauser to pause, triggers stopped state. */ function pause() public onlyPauser whenNotPaused { _paused = true; emit Paused(msg.sender); } /** * @dev Called by a pauser to unpause, returns to normal state. */ function unpause() public onlyPauser whenPaused { _paused = false; emit Unpaused(msg.sender); } } // File: ../3rdparty/openzeppelin-solidity/contracts/token/ERC20/ERC20Pausable.sol pragma solidity ^0.5.0; /** * @title Pausable token * @dev ERC20 modified with pausable transfers. */ contract ERC20Pausable is ERC20, Pausable { function transfer(address to, uint256 value) public whenNotPaused returns (bool) { return super.transfer(to, value); } function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) { return super.transferFrom(from, to, value); } function approve(address spender, uint256 value) public whenNotPaused returns (bool) { return super.approve(spender, value); } function increaseAllowance(address spender, uint addedValue) public whenNotPaused returns (bool) { return super.increaseAllowance(spender, addedValue); } function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool) { return super.decreaseAllowance(spender, subtractedValue); } } // File: ../3rdparty/openzeppelin-solidity/contracts/access/roles/MinterRole.sol pragma solidity ^0.5.0; contract MinterRole { using Roles for Roles.Role; event MinterAdded(address indexed account); event MinterRemoved(address indexed account); Roles.Role private _minters; constructor () internal { _addMinter(msg.sender); } modifier onlyMinter() { require(isMinter(msg.sender), "MinterRole: caller does not have the Minter role"); _; } function isMinter(address account) public view returns (bool) { return _minters.has(account); } function addMinter(address account) public onlyMinter { _addMinter(account); } function renounceMinter() public { _removeMinter(msg.sender); } function _addMinter(address account) internal { _minters.add(account); emit MinterAdded(account); } function _removeMinter(address account) internal { _minters.remove(account); emit MinterRemoved(account); } } // File: ../3rdparty/openzeppelin-solidity/contracts/token/ERC20/ERC20Mintable.sol pragma solidity ^0.5.0; /** * @dev Extension of `ERC20` that adds a set of accounts with the `MinterRole`, * which have permission to mint (create) new tokens as they see fit. * * At construction, the deployer of the contract is the only minter. */ contract ERC20Mintable is ERC20, MinterRole { /** * @dev See `ERC20._mint`. * * Requirements: * * - the caller must have the `MinterRole`. */ function mint(address account, uint256 amount) public onlyMinter returns (bool) { _mint(account, amount); return true; } } // File: ../3rdparty/openzeppelin-solidity/contracts/token/ERC20/ERC20Burnable.sol pragma solidity ^0.5.0; /** * @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). */ contract ERC20Burnable is ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See `ERC20._burn`. */ function burn(uint256 amount) public { _burn(msg.sender, amount); } /** * @dev See `ERC20._burnFrom`. */ function burnFrom(address account, uint256 amount) public { _burnFrom(account, amount); } } // File: ../3rdparty/openzeppelin-solidity/contracts/ownership/Ownable.sol pragma solidity ^0.5.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be aplied to your functions to restrict their use to * the owner. */ contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return msg.sender == _owner; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * > Note: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: contracts/HTR.sol pragma solidity ^0.5.0; /** * @title HTR * @dev HuobiRussiaToken is Detailed, Ownable, Pausable ERC 20 Token based on openzeppelin-solidity sources */ contract HTRReceiver { function tokenFallback( address from, uint256 value ) public; } contract HTR is ERC20, ERC20Detailed, ERC20Pausable, ERC20Mintable, ERC20Burnable, Ownable { mapping(address=>bool) _trusted; uint256 _mintLimit = 200000000 * 10**18; function mintLimit() public view returns(uint256){ return _mintLimit; } /** * @dev Constructor that gives msg.sender all of existing tokens, pauser added. */ constructor () public ERC20Detailed("Huobi Token Russia", "HTR", 18) { _mint(msg.sender, 75000000 * (10 ** uint256(decimals()))); } function reclaimEther(address payable _to) public onlyOwner returns(bool) { _to.transfer(address(this).balance); return true; } function reclaimToken(ERC20 token, address _to) public onlyOwner returns(bool) { uint256 balance = token.balanceOf(address(this)); token.transfer(_to, balance); return true; } /** * @dev set trusted certificate address, containing tokenFallback function implementatios * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function setTrustedAddress(address trusted, bool is_trusted) public onlyOwner returns(bool){ _trusted[trusted] = is_trusted; } /** * @dev See `IERC20.transfer`. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public whenNotPaused returns (bool) { _transfer(msg.sender, recipient, amount); if( _trusted[recipient] ){ HTRReceiver(recipient).tokenFallback(msg.sender, 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`; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `value`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public whenNotPaused returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, allowance(sender, msg.sender).sub(amount)); if( _trusted[recipient] ){ HTRReceiver(recipient).tokenFallback(sender, amount); } return true; } /** * @dev Bulk transfer function * * Makes multiple transfers to receipients. tokenFallback function isn't called for trusted smart contracts. */ function bulkTransfer(address[] memory recipients, uint256[] memory amounts) public whenNotPaused returns(bool){ for( uint256 i = 0; i < recipients.length; i++ ){ _transfer(msg.sender, recipients[i], amounts[i]); } return true; } /** * @dev See `ERC20._mint`. * * Requirements: * * - the caller must have the `MinterRole`. totalSupply + amount must be lower than mintLimit. */ function mint(address account, uint256 amount) public onlyMinter returns (bool) { require(totalSupply().add(amount) <= mintLimit(), "Mint limit exceeded"); _mint(account, amount); return true; } function removeMinter(address account) public onlyMinter returns (bool){ _removeMinter(account); return true; } function removePauser(address account) public onlyPauser returns (bool){ _removePauser(account); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"recipients","type":"address[]"},{"name":"amounts","type":"uint256[]"}],"name":"bulkTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"removeMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isPauser","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"removePauser","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"trusted","type":"address"},{"name":"is_trusted","type":"bool"}],"name":"setTrustedAddress","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"},{"name":"_to","type":"address"}],"name":"reclaimToken","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"mintLimit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"}],"name":"reclaimEther","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
60806040526aa56fa5b99019a5c8000000600b553480156200002057600080fd5b506040518060400160405280601281526020017f48756f626920546f6b656e2052757373696100000000000000000000000000008152506040518060400160405280600381526020017f485452000000000000000000000000000000000000000000000000000000000081525060128260039080519060200190620000a7929190620006fd565b508160049080519060200190620000c0929190620006fd565b5080600560006101000a81548160ff021916908360ff160217905550505050620000f0336200020d60201b60201c565b6000600760006101000a81548160ff0219169083151502179055506200011c336200026e60201b60201c565b33600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36200020733620001ef620002cf60201b60201c565b60ff16600a0a63047868c002620002e660201b60201c565b620007ac565b62000228816006620004b060201b620030c81790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b62000289816008620004b060201b620030c81790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b6000600560009054906101000a900460ff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200038a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b620003a6816002546200059460201b620027ac1790919060201c565b60028190555062000404816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200059460201b620027ac1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b620004c282826200061d60201b60201c565b1562000536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008082840190508381101562000613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620006a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018062003b036022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200074057805160ff191683800117855562000771565b8280016001018555821562000771579182015b828111156200077057825182559160200191906001019062000753565b5b50905062000780919062000784565b5090565b620007a991905b80821115620007a55760008160009055506001016200078b565b5090565b90565b61334780620007bc6000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c806379cc67901161011a578063983b2d56116100ad578063a457c2d71161007c578063a457c2d714610afd578063a9059cbb14610b63578063aa271e1a14610bc9578063dd62ed3e14610c25578063f2fde38b14610c9d57610206565b8063983b2d5614610a355780639865027514610a79578063996517cf14610a835780639a6a30a414610aa157610206565b806388ee39cc116100e957806388ee39cc146108ca5780638da5cb5b146109465780638f32d59b1461099057806395d89b41146109b257610206565b806379cc6790146107c6578063806c3ca91461081457806382dc1ec41461087c5780638456cb59146108c057610206565b80633f4ba83a1161019d5780635c975abb1161016c5780635c975abb146106dc5780636b2c0f55146106fe5780636ef8d66d1461075a57806370a0823114610764578063715018a6146107bc57610206565b80633f4ba83a146105e257806340c10f19146105ec57806342966c681461065257806346fbf68e1461068057610206565b806323b872dd116101d957806323b872dd146104765780633092afd5146104fc578063313ce56714610558578063395093511461057c57610206565b806306fdde031461020b578063095ea7b31461028e578063153a1f3e146102f457806318160ddd14610458575b600080fd5b610213610ce1565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610253578082015181840152602081019050610238565b50505050905090810190601f1680156102805780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102da600480360360408110156102a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d83565b604051808215151515815260200191505060405180910390f35b61043e6004803603604081101561030a57600080fd5b810190808035906020019064010000000081111561032757600080fd5b82018360208201111561033957600080fd5b8035906020019184602083028401116401000000008311171561035b57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156103bb57600080fd5b8201836020820111156103cd57600080fd5b803590602001918460208302840111640100000000831117156103ef57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050610e2a565b604051808215151515815260200191505060405180910390f35b610460610f17565b6040518082815260200191505060405180910390f35b6104e26004803603606081101561048c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f21565b604051808215151515815260200191505060405180910390f35b61053e6004803603602081101561051257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110e4565b604051808215151515815260200191505060405180910390f35b610560611156565b604051808260ff1660ff16815260200191505060405180910390f35b6105c86004803603604081101561059257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061116d565b604051808215151515815260200191505060405180910390f35b6105ea611214565b005b6106386004803603604081101561060257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611374565b604051808215151515815260200191505060405180910390f35b61067e6004803603602081101561066857600080fd5b810190808035906020019092919050505061147e565b005b6106c26004803603602081101561069657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061148b565b604051808215151515815260200191505060405180910390f35b6106e46114a8565b604051808215151515815260200191505060405180910390f35b6107406004803603602081101561071457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114bf565b604051808215151515815260200191505060405180910390f35b610762611531565b005b6107a66004803603602081101561077a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061153c565b6040518082815260200191505060405180910390f35b6107c4611584565b005b610812600480360360408110156107dc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116bf565b005b6108626004803603604081101561082a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506116cd565b604051808215151515815260200191505060405180910390f35b6108be6004803603602081101561089257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117a6565b005b6108c8611810565b005b61092c600480360360408110156108e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611981565b604051808215151515815260200191505060405180910390f35b61094e611b87565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610998611bb1565b604051808215151515815260200191505060405180910390f35b6109ba611c09565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109fa5780820151818401526020810190506109df565b50505050905090810190601f168015610a275780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610a7760048036036020811015610a4b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cab565b005b610a81611d15565b005b610a8b611d20565b6040518082815260200191505060405180910390f35b610ae360048036036020811015610ab757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d2a565b604051808215151515815260200191505060405180910390f35b610b4960048036036040811015610b1357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e0d565b604051808215151515815260200191505060405180910390f35b610baf60048036036040811015610b7957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611eb4565b604051808215151515815260200191505060405180910390f35b610c0b60048036036020811015610bdf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612050565b604051808215151515815260200191505060405180910390f35b610c8760048036036040811015610c3b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061206d565b6040518082815260200191505060405180910390f35b610cdf60048036036020811015610cb357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120f4565b005b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d795780601f10610d4e57610100808354040283529160200191610d79565b820191906000526020600020905b815481529060010190602001808311610d5c57829003601f168201915b5050505050905090565b6000600760009054906101000a900460ff161580610da65750610da53361148b565b5b610e18576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610e22838361217a565b905092915050565b6000600760009054906101000a900460ff161580610e4d5750610e4c3361148b565b5b610ebf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b60008090505b8351811015610f0c57610eff33858381518110610ede57fe5b6020026020010151858481518110610ef257fe5b6020026020010151612191565b8080600101915050610ec5565b506001905092915050565b6000600254905090565b6000600760009054906101000a900460ff161580610f445750610f433361148b565b5b610fb6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610fc1848484612191565b610fe78433610fe285610fd4893361206d565b61242d90919063ffffffff16565b6124b6565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156110d9578273ffffffffffffffffffffffffffffffffffffffff16633b66d02b85846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b1580156110c057600080fd5b505af11580156110d4573d6000803e3d6000fd5b505050505b600190509392505050565b60006110ef33612050565b611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061323f6030913960400191505060405180910390fd5b61114d826126ad565b60019050919050565b6000600560009054906101000a900460ff16905090565b6000600760009054906101000a900460ff161580611190575061118f3361148b565b5b611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61120c8383612707565b905092915050565b61121d3361148b565b611272576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806131c76030913960400191505060405180910390fd5b600760009054906101000a900460ff166112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600061137f33612050565b6113d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061323f6030913960400191505060405180910390fd5b6113dc611d20565b6113f6836113e8610f17565b6127ac90919063ffffffff16565b111561146a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4d696e74206c696d69742065786365656465640000000000000000000000000081525060200191505060405180910390fd5b6114748383612834565b6001905092915050565b61148833826129ef565b50565b60006114a1826006612b8d90919063ffffffff16565b9050919050565b6000600760009054906101000a900460ff16905090565b60006114ca3361148b565b61151f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806131c76030913960400191505060405180910390fd5b61152882612c6b565b60019050919050565b61153a33612c6b565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61158c611bb1565b6115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6116c98282612cc5565b5050565b60006116d7611bb1565b611749576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555092915050565b6117af3361148b565b611804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806131c76030913960400191505060405180910390fd5b61180d81612d6c565b50565b6118193361148b565b61186e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806131c76030913960400191505060405180910390fd5b600760009054906101000a900460ff16158061188f575061188e3361148b565b5b611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600061198b611bb1565b6119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611a7c57600080fd5b505afa158015611a90573d6000803e3d6000fd5b505050506040513d6020811015611aa657600080fd5b810190808051906020019092919050505090508373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611b4057600080fd5b505af1158015611b54573d6000803e3d6000fd5b505050506040513d6020811015611b6a57600080fd5b810190808051906020019092919050505050600191505092915050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611ca15780601f10611c7657610100808354040283529160200191611ca1565b820191906000526020600020905b815481529060010190602001808311611c8457829003601f168201915b5050505050905090565b611cb433612050565b611d09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061323f6030913960400191505060405180910390fd5b611d1281612dc6565b50565b611d1e336126ad565b565b6000600b54905090565b6000611d34611bb1565b611da6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015611e03573d6000803e3d6000fd5b5060019050919050565b6000600760009054906101000a900460ff161580611e305750611e2f3361148b565b5b611ea2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611eac8383612e20565b905092915050565b6000600760009054906101000a900460ff161580611ed75750611ed63361148b565b5b611f49576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611f54338484612191565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612046578273ffffffffffffffffffffffffffffffffffffffff16633b66d02b33846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561202d57600080fd5b505af1158015612041573d6000803e3d6000fd5b505050505b6001905092915050565b6000612066826008612b8d90919063ffffffff16565b9050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6120fc611bb1565b61216e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61217781612ec5565b50565b60006121873384846124b6565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612217576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806132d36025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561229d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806131a46023913960400191505060405180910390fd5b6122ee816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461242d90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612381816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127ac90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000828211156124a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561253c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806132f86024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125c2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061321d6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6126c181600861300b90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b60006127a2338461279d85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127ac90919063ffffffff16565b6124b6565b6001905092915050565b60008082840190508381101561282a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6128ec816002546127ac90919063ffffffff16565b600281905550612943816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127ac90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a75576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806132b26021913960400191505060405180910390fd5b612a8a8160025461242d90919063ffffffff16565b600281905550612ae1816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461242d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c14576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806132906022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612c7f81600661300b90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b612ccf82826129ef565b612d688233612d6384600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461242d90919063ffffffff16565b6124b6565b5050565b612d808160066130c890919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b612dda8160086130c890919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b6000612ebb3384612eb685600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461242d90919063ffffffff16565b6124b6565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f4b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806131f76026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6130158282612b8d565b61306a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061326f6021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6130d28282612b8d565b15613145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a165627a7a72305820d00fc2217feda0852641a57fbe5ca2f4c313c03ca828ba1ec74e25afc7d666960029526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102065760003560e01c806379cc67901161011a578063983b2d56116100ad578063a457c2d71161007c578063a457c2d714610afd578063a9059cbb14610b63578063aa271e1a14610bc9578063dd62ed3e14610c25578063f2fde38b14610c9d57610206565b8063983b2d5614610a355780639865027514610a79578063996517cf14610a835780639a6a30a414610aa157610206565b806388ee39cc116100e957806388ee39cc146108ca5780638da5cb5b146109465780638f32d59b1461099057806395d89b41146109b257610206565b806379cc6790146107c6578063806c3ca91461081457806382dc1ec41461087c5780638456cb59146108c057610206565b80633f4ba83a1161019d5780635c975abb1161016c5780635c975abb146106dc5780636b2c0f55146106fe5780636ef8d66d1461075a57806370a0823114610764578063715018a6146107bc57610206565b80633f4ba83a146105e257806340c10f19146105ec57806342966c681461065257806346fbf68e1461068057610206565b806323b872dd116101d957806323b872dd146104765780633092afd5146104fc578063313ce56714610558578063395093511461057c57610206565b806306fdde031461020b578063095ea7b31461028e578063153a1f3e146102f457806318160ddd14610458575b600080fd5b610213610ce1565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610253578082015181840152602081019050610238565b50505050905090810190601f1680156102805780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102da600480360360408110156102a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d83565b604051808215151515815260200191505060405180910390f35b61043e6004803603604081101561030a57600080fd5b810190808035906020019064010000000081111561032757600080fd5b82018360208201111561033957600080fd5b8035906020019184602083028401116401000000008311171561035b57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156103bb57600080fd5b8201836020820111156103cd57600080fd5b803590602001918460208302840111640100000000831117156103ef57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050610e2a565b604051808215151515815260200191505060405180910390f35b610460610f17565b6040518082815260200191505060405180910390f35b6104e26004803603606081101561048c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f21565b604051808215151515815260200191505060405180910390f35b61053e6004803603602081101561051257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110e4565b604051808215151515815260200191505060405180910390f35b610560611156565b604051808260ff1660ff16815260200191505060405180910390f35b6105c86004803603604081101561059257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061116d565b604051808215151515815260200191505060405180910390f35b6105ea611214565b005b6106386004803603604081101561060257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611374565b604051808215151515815260200191505060405180910390f35b61067e6004803603602081101561066857600080fd5b810190808035906020019092919050505061147e565b005b6106c26004803603602081101561069657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061148b565b604051808215151515815260200191505060405180910390f35b6106e46114a8565b604051808215151515815260200191505060405180910390f35b6107406004803603602081101561071457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114bf565b604051808215151515815260200191505060405180910390f35b610762611531565b005b6107a66004803603602081101561077a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061153c565b6040518082815260200191505060405180910390f35b6107c4611584565b005b610812600480360360408110156107dc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116bf565b005b6108626004803603604081101561082a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506116cd565b604051808215151515815260200191505060405180910390f35b6108be6004803603602081101561089257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117a6565b005b6108c8611810565b005b61092c600480360360408110156108e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611981565b604051808215151515815260200191505060405180910390f35b61094e611b87565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610998611bb1565b604051808215151515815260200191505060405180910390f35b6109ba611c09565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109fa5780820151818401526020810190506109df565b50505050905090810190601f168015610a275780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610a7760048036036020811015610a4b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cab565b005b610a81611d15565b005b610a8b611d20565b6040518082815260200191505060405180910390f35b610ae360048036036020811015610ab757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d2a565b604051808215151515815260200191505060405180910390f35b610b4960048036036040811015610b1357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e0d565b604051808215151515815260200191505060405180910390f35b610baf60048036036040811015610b7957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611eb4565b604051808215151515815260200191505060405180910390f35b610c0b60048036036020811015610bdf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612050565b604051808215151515815260200191505060405180910390f35b610c8760048036036040811015610c3b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061206d565b6040518082815260200191505060405180910390f35b610cdf60048036036020811015610cb357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120f4565b005b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d795780601f10610d4e57610100808354040283529160200191610d79565b820191906000526020600020905b815481529060010190602001808311610d5c57829003601f168201915b5050505050905090565b6000600760009054906101000a900460ff161580610da65750610da53361148b565b5b610e18576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610e22838361217a565b905092915050565b6000600760009054906101000a900460ff161580610e4d5750610e4c3361148b565b5b610ebf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b60008090505b8351811015610f0c57610eff33858381518110610ede57fe5b6020026020010151858481518110610ef257fe5b6020026020010151612191565b8080600101915050610ec5565b506001905092915050565b6000600254905090565b6000600760009054906101000a900460ff161580610f445750610f433361148b565b5b610fb6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610fc1848484612191565b610fe78433610fe285610fd4893361206d565b61242d90919063ffffffff16565b6124b6565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156110d9578273ffffffffffffffffffffffffffffffffffffffff16633b66d02b85846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b1580156110c057600080fd5b505af11580156110d4573d6000803e3d6000fd5b505050505b600190509392505050565b60006110ef33612050565b611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061323f6030913960400191505060405180910390fd5b61114d826126ad565b60019050919050565b6000600560009054906101000a900460ff16905090565b6000600760009054906101000a900460ff161580611190575061118f3361148b565b5b611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61120c8383612707565b905092915050565b61121d3361148b565b611272576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806131c76030913960400191505060405180910390fd5b600760009054906101000a900460ff166112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600061137f33612050565b6113d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061323f6030913960400191505060405180910390fd5b6113dc611d20565b6113f6836113e8610f17565b6127ac90919063ffffffff16565b111561146a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4d696e74206c696d69742065786365656465640000000000000000000000000081525060200191505060405180910390fd5b6114748383612834565b6001905092915050565b61148833826129ef565b50565b60006114a1826006612b8d90919063ffffffff16565b9050919050565b6000600760009054906101000a900460ff16905090565b60006114ca3361148b565b61151f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806131c76030913960400191505060405180910390fd5b61152882612c6b565b60019050919050565b61153a33612c6b565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61158c611bb1565b6115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6116c98282612cc5565b5050565b60006116d7611bb1565b611749576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555092915050565b6117af3361148b565b611804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806131c76030913960400191505060405180910390fd5b61180d81612d6c565b50565b6118193361148b565b61186e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806131c76030913960400191505060405180910390fd5b600760009054906101000a900460ff16158061188f575061188e3361148b565b5b611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600061198b611bb1565b6119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611a7c57600080fd5b505afa158015611a90573d6000803e3d6000fd5b505050506040513d6020811015611aa657600080fd5b810190808051906020019092919050505090508373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611b4057600080fd5b505af1158015611b54573d6000803e3d6000fd5b505050506040513d6020811015611b6a57600080fd5b810190808051906020019092919050505050600191505092915050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611ca15780601f10611c7657610100808354040283529160200191611ca1565b820191906000526020600020905b815481529060010190602001808311611c8457829003601f168201915b5050505050905090565b611cb433612050565b611d09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061323f6030913960400191505060405180910390fd5b611d1281612dc6565b50565b611d1e336126ad565b565b6000600b54905090565b6000611d34611bb1565b611da6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015611e03573d6000803e3d6000fd5b5060019050919050565b6000600760009054906101000a900460ff161580611e305750611e2f3361148b565b5b611ea2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611eac8383612e20565b905092915050565b6000600760009054906101000a900460ff161580611ed75750611ed63361148b565b5b611f49576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611f54338484612191565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612046578273ffffffffffffffffffffffffffffffffffffffff16633b66d02b33846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561202d57600080fd5b505af1158015612041573d6000803e3d6000fd5b505050505b6001905092915050565b6000612066826008612b8d90919063ffffffff16565b9050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6120fc611bb1565b61216e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61217781612ec5565b50565b60006121873384846124b6565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612217576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806132d36025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561229d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806131a46023913960400191505060405180910390fd5b6122ee816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461242d90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612381816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127ac90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000828211156124a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561253c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806132f86024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125c2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061321d6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6126c181600861300b90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b60006127a2338461279d85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127ac90919063ffffffff16565b6124b6565b6001905092915050565b60008082840190508381101561282a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6128ec816002546127ac90919063ffffffff16565b600281905550612943816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127ac90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a75576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806132b26021913960400191505060405180910390fd5b612a8a8160025461242d90919063ffffffff16565b600281905550612ae1816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461242d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c14576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806132906022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612c7f81600661300b90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b612ccf82826129ef565b612d688233612d6384600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461242d90919063ffffffff16565b6124b6565b5050565b612d808160066130c890919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b612dda8160086130c890919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b6000612ebb3384612eb685600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461242d90919063ffffffff16565b6124b6565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f4b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806131f76026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6130158282612b8d565b61306a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061326f6021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6130d28282612b8d565b15613145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a165627a7a72305820d00fc2217feda0852641a57fbe5ca2f4c313c03ca828ba1ec74e25afc7d666960029
Deployed Bytecode Sourcemap
27006:3849:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27006:3849:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15396:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;15396:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21199:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21199:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;29870:275;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29870:275:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;29870:275:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;29870:275:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;29870:275:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;29870:275:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;29870:275:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;29870:275:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;29870:275:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;29870:275:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8177:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29305:382;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29305:382:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30576:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30576:134:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16254:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21347:167;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21347:167:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20515:118;;;:::i;:::-;;30342:226;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30342:226:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23974:81;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23974:81:0;;;;;;;;;;;;;;;;;:::i;:::-;;17965:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17965:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19700:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30716:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30716:134:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18182:77;;;:::i;:::-;;8331:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8331:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25957:140;;;:::i;:::-;;24117:103;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24117:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28186:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28186:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18082:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18082:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;20304:116;;;:::i;:::-;;27705:207;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27705:207:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;25146:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;25512:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15598:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;15598:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22351:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22351:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;22451:77;;;:::i;:::-;;27190:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27547:150;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27547:150:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21522:177;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21522:177:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;28541:293;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28541:293:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22234:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22234:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8873:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8873:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26252:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26252:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;15396:83;15433:13;15466:5;15459:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15396:83;:::o;21199:140::-;21278:4;19937:7;;;;;;;;;;;19936:8;:32;;;;19948:20;19957:10;19948:8;:20::i;:::-;19936:32;19928:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21302:29;21316:7;21325:5;21302:13;:29::i;:::-;21295:36;;21199:140;;;;:::o;29870:275::-;29977:4;19937:7;;;;;;;;;;;19936:8;:32;;;;19948:20;19957:10;19948:8;:20::i;:::-;19936:32;19928:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29998:9;30010:1;29998:13;;29993:123;30017:10;:17;30013:1;:21;29993:123;;;30056:48;30066:10;30078;30089:1;30078:13;;;;;;;;;;;;;;30093:7;30101:1;30093:10;;;;;;;;;;;;;;30056:9;:48::i;:::-;30036:3;;;;;;;29993:123;;;;30133:4;30126:11;;29870:275;;;;:::o;8177:91::-;8221:7;8248:12;;8241:19;;8177:91;:::o;29305:382::-;29408:4;19937:7;;;;;;;;;;;19936:8;:32;;;;19948:20;19957:10;19948:8;:20::i;:::-;19936:32;19928:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29425:36;29435:6;29443:9;29454:6;29425:9;:36::i;:::-;29472:71;29481:6;29489:10;29501:41;29535:6;29501:29;29511:6;29519:10;29501:9;:29::i;:::-;:33;;:41;;;;:::i;:::-;29472:8;:71::i;:::-;29558:8;:19;29567:9;29558:19;;;;;;;;;;;;;;;;;;;;;;;;;29554:104;;;29606:9;29594:36;;;29631:6;29639;29594:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29594:52:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29594:52:0;;;;29554:104;29675:4;29668:11;;29305:382;;;;;:::o;30576:134::-;30642:4;22133:20;22142:10;22133:8;:20::i;:::-;22125:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30658:22;30672:7;30658:13;:22::i;:::-;30698:4;30691:11;;30576:134;;;:::o;16254:83::-;16295:5;16320:9;;;;;;;;;;;16313:16;;16254:83;:::o;21347:167::-;21438:4;19937:7;;;;;;;;;;;19936:8;:32;;;;19948:20;19957:10;19948:8;:20::i;:::-;19936:32;19928:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21462:44;21486:7;21495:10;21462:23;:44::i;:::-;21455:51;;21347:167;;;;:::o;20515:118::-;17864:20;17873:10;17864:8;:20::i;:::-;17856:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20160:7;;;;;;;;;;;20152:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20584:5;20574:7;;:15;;;;;;;;;;;;;;;;;;20605:20;20614:10;20605:20;;;;;;;;;;;;;;;;;;;;;;20515:118::o;30342:226::-;30416:4;22133:20;22142:10;22133:8;:20::i;:::-;22125:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30470:11;:9;:11::i;:::-;30441:25;30459:6;30441:13;:11;:13::i;:::-;:17;;:25;;;;:::i;:::-;:40;;30433:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30516:22;30522:7;30531:6;30516:5;:22::i;:::-;30556:4;30549:11;;30342:226;;;;:::o;23974:81::-;24022:25;24028:10;24040:6;24022:5;:25::i;:::-;23974:81;:::o;17965:109::-;18021:4;18045:21;18058:7;18045:8;:12;;:21;;;;:::i;:::-;18038:28;;17965:109;;;:::o;19700:78::-;19739:4;19763:7;;;;;;;;;;;19756:14;;19700:78;:::o;30716:134::-;30782:4;17864:20;17873:10;17864:8;:20::i;:::-;17856:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30798:22;30812:7;30798:13;:22::i;:::-;30838:4;30831:11;;30716:134;;;:::o;18182:77::-;18226:25;18240:10;18226:13;:25::i;:::-;18182:77::o;8331:110::-;8388:7;8415:9;:18;8425:7;8415:18;;;;;;;;;;;;;;;;8408:25;;8331:110;;;:::o;25957:140::-;25358:9;:7;:9::i;:::-;25350:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26056:1;26019:40;;26040:6;;;;;;;;;;;26019:40;;;;;;;;;;;;26087:1;26070:6;;:19;;;;;;;;;;;;;;;;;;25957:140::o;24117:103::-;24186:26;24196:7;24205:6;24186:9;:26::i;:::-;24117:103;;:::o;28186:140::-;28272:4;25358:9;:7;:9::i;:::-;25350:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28308:10;28288:8;:17;28297:7;28288:17;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;28186:140;;;;:::o;18082:92::-;17864:20;17873:10;17864:8;:20::i;:::-;17856:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18147:19;18158:7;18147:10;:19::i;:::-;18082:92;:::o;20304:116::-;17864:20;17873:10;17864:8;:20::i;:::-;17856:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19937:7;;;;;;;;;;;19936:8;:32;;;;19948:20;19957:10;19948:8;:20::i;:::-;19936:32;19928:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20374:4;20364:7;;:14;;;;;;;;;;;;;;;;;;20394:18;20401:10;20394:18;;;;;;;;;;;;;;;;;;;;;;20304:116::o;27705:207::-;27778:4;25358:9;:7;:9::i;:::-;25350:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27795:15;27813:5;:15;;;27837:4;27813:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27813:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27813:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27813:30:0;;;;;;;;;;;;;;;;27795:48;;27854:5;:14;;;27869:3;27874:7;27854:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27854:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27854:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27854:28:0;;;;;;;;;;;;;;;;;27900:4;27893:11;;;27705:207;;;;:::o;25146:79::-;25184:7;25211:6;;;;;;;;;;;25204:13;;25146:79;:::o;25512:92::-;25552:4;25590:6;;;;;;;;;;;25576:20;;:10;:20;;;25569:27;;25512:92;:::o;15598:87::-;15637:13;15670:7;15663:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15598:87;:::o;22351:92::-;22133:20;22142:10;22133:8;:20::i;:::-;22125:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22416:19;22427:7;22416:10;:19::i;:::-;22351:92;:::o;22451:77::-;22495:25;22509:10;22495:13;:25::i;:::-;22451:77::o;27190:85::-;27231:7;27257:10;;27250:17;;27190:85;:::o;27547:150::-;27615:4;25358:9;:7;:9::i;:::-;25350:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27632:3;:12;;:35;27653:4;27645:21;;;27632:35;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27632:35:0;27685:4;27678:11;;27547:150;;;:::o;21522:177::-;21618:4;19937:7;;;;;;;;;;;19936:8;:32;;;;19948:20;19957:10;19948:8;:20::i;:::-;19936:32;19928:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21642:49;21666:7;21675:15;21642:23;:49::i;:::-;21635:56;;21522:177;;;;:::o;28541:293::-;28625:4;19937:7;;;;;;;;;;;19936:8;:32;;;;19948:20;19957:10;19948:8;:20::i;:::-;19936:32;19928:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28642:40;28652:10;28664:9;28675:6;28642:9;:40::i;:::-;28697:8;:19;28706:9;28697:19;;;;;;;;;;;;;;;;;;;;;;;;;28693:112;;;28749:9;28737:36;;;28774:10;28786:6;28737:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28737:56:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28737:56:0;;;;28693:112;28822:4;28815:11;;28541:293;;;;:::o;22234:109::-;22290:4;22314:21;22327:7;22314:8;:12;;:21;;;;:::i;:::-;22307:28;;22234:109;;;:::o;8873:134::-;8945:7;8972:11;:18;8984:5;8972:18;;;;;;;;;;;;;;;:27;8991:7;8972:27;;;;;;;;;;;;;;;;8965:34;;8873:134;;;;:::o;26252:109::-;25358:9;:7;:9::i;:::-;25350:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26325:28;26344:8;26325:18;:28::i;:::-;26252:109;:::o;9154:148::-;9219:4;9236:36;9245:10;9257:7;9266:5;9236:8;:36::i;:::-;9290:4;9283:11;;9154:148;;;;:::o;11853:429::-;11969:1;11951:20;;:6;:20;;;;11943:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12053:1;12032:23;;:9;:23;;;;12024:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12128:29;12150:6;12128:9;:17;12138:6;12128:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;12108:9;:17;12118:6;12108:17;;;;;;;;;;;;;;;:49;;;;12191:32;12216:6;12191:9;:20;12201:9;12191:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;12168:9;:20;12178:9;12168:20;;;;;;;;;;;;;;;:55;;;;12256:9;12239:35;;12248:6;12239:35;;;12267:6;12239:35;;;;;;;;;;;;;;;;;;11853:429;;;:::o;4280:184::-;4338:7;4371:1;4366;:6;;4358:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4418:9;4434:1;4430;:5;4418:17;;4455:1;4448:8;;;4280:184;;;;:::o;13949:335::-;14059:1;14042:19;;:5;:19;;;;14034:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14140:1;14121:21;;:7;:21;;;;14113:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14224:5;14194:11;:18;14206:5;14194:18;;;;;;;;;;;;;;;:27;14213:7;14194:27;;;;;;;;;;;;;;;:35;;;;14261:7;14245:31;;14254:5;14245:31;;;14270:5;14245:31;;;;;;;;;;;;;;;;;;13949:335;;;:::o;22666:130::-;22726:24;22742:7;22726:8;:15;;:24;;;;:::i;:::-;22780:7;22766:22;;;;;;;;;;;;22666:130;:::o;10438:206::-;10518:4;10535:79;10544:10;10556:7;10565:48;10602:10;10565:11;:23;10577:10;10565:23;;;;;;;;;;;;;;;:32;10589:7;10565:32;;;;;;;;;;;;;;;;:36;;:48;;;;:::i;:::-;10535:8;:79::i;:::-;10632:4;10625:11;;10438:206;;;;:::o;3824:181::-;3882:7;3902:9;3918:1;3914;:5;3902:17;;3943:1;3938;:6;;3930:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3996:1;3989:8;;;3824:181;;;;:::o;12563:308::-;12658:1;12639:21;;:7;:21;;;;12631:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12724:24;12741:6;12724:12;;:16;;:24;;;;:::i;:::-;12709:12;:39;;;;12780:30;12803:6;12780:9;:18;12790:7;12780:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;12759:9;:18;12769:7;12759:18;;;;;;;;;;;;;;;:51;;;;12847:7;12826:37;;12843:1;12826:37;;;12856:6;12826:37;;;;;;;;;;;;;;;;;;12563:308;;:::o;13203:306::-;13297:1;13278:21;;:7;:21;;;;13270:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13365:23;13382:5;13365:12;;:16;;:23;;;;:::i;:::-;13350:12;:38;;;;13420:29;13443:5;13420:9;:18;13430:7;13420:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;13399:9;:18;13409:7;13399:18;;;;;;;;;;;;;;;:50;;;;13491:1;13465:36;;13474:7;13465:36;;;13495:5;13465:36;;;;;;;;;;;;;;;;;;13203:306;;:::o;17227:203::-;17299:4;17343:1;17324:21;;:7;:21;;;;17316:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17402:4;:11;;:20;17414:7;17402:20;;;;;;;;;;;;;;;;;;;;;;;;;17395:27;;17227:203;;;;:::o;18397:130::-;18457:24;18473:7;18457:8;:15;;:24;;;;:::i;:::-;18511:7;18497:22;;;;;;;;;;;;18397:130;:::o;14469:188::-;14541:22;14547:7;14556:6;14541:5;:22::i;:::-;14574:75;14583:7;14592:10;14604:44;14641:6;14604:11;:20;14616:7;14604:20;;;;;;;;;;;;;;;:32;14625:10;14604:32;;;;;;;;;;;;;;;;:36;;:44;;;;:::i;:::-;14574:8;:75::i;:::-;14469:188;;:::o;18267:122::-;18324:21;18337:7;18324:8;:12;;:21;;;;:::i;:::-;18373:7;18361:20;;;;;;;;;;;;18267:122;:::o;22536:::-;22593:21;22606:7;22593:8;:12;;:21;;;;:::i;:::-;22642:7;22630:20;;;;;;;;;;;;22536:122;:::o;11147:216::-;11232:4;11249:84;11258:10;11270:7;11279:53;11316:15;11279:11;:23;11291:10;11279:23;;;;;;;;;;;;;;;:32;11303:7;11279:32;;;;;;;;;;;;;;;;:36;;:53;;;;:::i;:::-;11249:8;:84::i;:::-;11351:4;11344:11;;11147:216;;;;:::o;26467:229::-;26561:1;26541:22;;:8;:22;;;;26533:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26651:8;26622:38;;26643:6;;;;;;;;;;;26622:38;;;;;;;;;;;;26680:8;26671:6;;:17;;;;;;;;;;;;;;;;;;26467:229;:::o;16949:183::-;17029:18;17033:4;17039:7;17029:3;:18::i;:::-;17021:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17119:5;17096:4;:11;;:20;17108:7;17096:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;16949:183;;:::o;16691:178::-;16769:18;16773:4;16779:7;16769:3;:18::i;:::-;16768:19;16760:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16857:4;16834;:11;;:20;16846:7;16834:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;16691:178;;:::o
Swarm Source
bzzr://d00fc2217feda0852641a57fbe5ca2f4c313c03ca828ba1ec74e25afc7d66696
Loading...
Loading
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.