Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
2,500,722.50000000000000005 UMI
Holders
1,018
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 Source Code Verified (Exact Match)
Contract Name:
UmiToken
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-12-08 */ /** *Submitted for verification at Etherscan.io on 2020-10-22 */ /** *Submitted for verification at Etherscan.io on 2020-10-11 */ pragma solidity >=0.4.23 <0.6.0; 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; } } 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); } 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)); } } 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]; } } contract WhitelistAdminRole { using Roles for Roles.Role; event WhitelistAdminAdded(address indexed account); event WhitelistAdminRemoved(address indexed account); Roles.Role private _whitelistAdmins; constructor () internal { _addWhitelistAdmin(msg.sender); } modifier onlyWhitelistAdmin() { require(isWhitelistAdmin(msg.sender), "WhitelistAdminRole: caller does not have the WhitelistAdmin role"); _; } function isWhitelistAdmin(address account) public view returns (bool) { return _whitelistAdmins.has(account); } function addWhitelistAdmin(address account) public onlyWhitelistAdmin { _addWhitelistAdmin(account); } function renounceWhitelistAdmin() public { _removeWhitelistAdmin(msg.sender); } function _addWhitelistAdmin(address account) internal { _whitelistAdmins.add(account); emit WhitelistAdminAdded(account); } function _removeWhitelistAdmin(address account) internal { _whitelistAdmins.remove(account); emit WhitelistAdminRemoved(account); } } 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); } } 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); } } 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; } } 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, "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); } } 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); } } contract ERC20BlackList is ERC20Pausable,WhitelistAdminRole{ mapping(address=>bool) public blacklist; function putIntoBlacklist(address _addr) public onlyWhitelistAdmin{ blacklist[_addr]=true; } function removeFromBlacklist(address _addr) public onlyWhitelistAdmin{ blacklist[_addr]=false; } function inBlacklist(address _addr)external view returns (bool){ return blacklist[_addr]; } function transfer(address to, uint256 value) public whenNotPaused returns (bool) { require(blacklist[msg.sender]==false,"address in blacklist"); return super.transfer(to, value); } function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) { require(blacklist[from]==false,"address in blacklist"); return super.transferFrom(from, to, value); } } contract UmiToken is ERC20BlackList,ERC20Mintable{ using SafeMath for uint256; string public constant name="UMI"; string public constant symbol="UMI"; string public constant version = "1.0"; uint256 public decimals = 18; uint256 public maxMine=100000000*10**decimals; uint256 public totalMined=0; function mint(address account, uint256 amount) public onlyMinter returns (bool) { require(totalMined.add(amount)<=maxMine,"reach max supply"); _mint(account, amount); totalMined=totalMined.add(amount); return true; } function addIssue(uint256 amount) public onlyWhitelistAdmin { maxMine=maxMine.add(amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminRemoved","type":"event"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addIssue","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addWhitelistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"inBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelistAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maxMine","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"putIntoBlacklist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"removeFromBlacklist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceWhitelistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalMined","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526012600855600854600a0a6305f5e100026009556000600a556200002e336200007160201b60201c565b6000600460006101000a81548160ff0219169083151502179055506200005a33620000d260201b60201c565b6200006b336200013360201b60201c565b62000358565b6200008c8160036200019460201b620024421790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b620000ed8160056200019460201b620024421790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129960405160405180910390a250565b6200014e8160076200019460201b620024421790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b620001a682826200027860201b60201c565b156200021a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000301576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018062002d676022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6129ff80620003686000396000f3fe608060405234801561001057600080fd5b50600436106101ef5760003560e01c806370a082311161010f578063a9059cbb116100a2578063d57c1ea211610071578063d57c1ea2146109cb578063dd62ed3e146109f9578063e09f220614610a71578063f9f92be414610a8f576101ef565b8063a9059cbb14610869578063aa271e1a146108cf578063bb5f747b1461092b578063bb77b16f14610987576101ef565b806395d89b41116100de57806395d89b4114610732578063983b2d56146107b557806398650275146107f9578063a457c2d714610803576101ef565b806370a08231146106485780637362d9c8146106a057806382dc1ec4146106e45780638456cb5914610728576101ef565b806340c10f191161018757806354fd4d501161015657806354fd4d501461057b5780635556db65146105fe5780635c975abb1461061c5780636ef8d66d1461063e576101ef565b806340c10f191461046b57806346fbf68e146104d15780634c5a628c1461052d578063537df3b614610537576101ef565b806323b872dd116101c357806323b872dd14610357578063313ce567146103dd57806339509351146103fb5780633f4ba83a14610461576101ef565b806286786e146101f457806306fdde0314610250578063095ea7b3146102d357806318160ddd14610339575b600080fd5b6102366004803603602081101561020a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610aeb565b604051808215151515815260200191505060405180910390f35b610258610b41565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561029857808201518184015260208101905061027d565b50505050905090810190601f1680156102c55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61031f600480360360408110156102e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b7a565b604051808215151515815260200191505060405180910390f35b610341610c11565b6040518082815260200191505060405180910390f35b6103c36004803603606081101561036d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c1b565b604051808215151515815260200191505060405180910390f35b6103e5610d7a565b6040518082815260200191505060405180910390f35b6104476004803603604081101561041157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d80565b604051808215151515815260200191505060405180910390f35b610469610e17565b005b6104b76004803603604081101561048157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f77565b604051808215151515815260200191505060405180910390f35b610513600480360360208110156104e757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611092565b604051808215151515815260200191505060405180910390f35b6105356110af565b005b6105796004803603602081101561054d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110ba565b005b610583611173565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105c35780820151818401526020810190506105a8565b50505050905090810190601f1680156105f05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106066111ac565b6040518082815260200191505060405180910390f35b6106246111b2565b604051808215151515815260200191505060405180910390f35b6106466111c9565b005b61068a6004803603602081101561065e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111d4565b6040518082815260200191505060405180910390f35b6106e2600480360360208110156106b657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061121c565b005b610726600480360360208110156106fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611286565b005b6107306112f0565b005b61073a611451565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561077a57808201518184015260208101905061075f565b50505050905090810190601f1680156107a75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6107f7600480360360208110156107cb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061148a565b005b6108016114f4565b005b61084f6004803603604081101561081957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114ff565b604051808215151515815260200191505060405180910390f35b6108b56004803603604081101561087f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611596565b604051808215151515815260200191505060405180910390f35b610911600480360360208110156108e557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116f3565b604051808215151515815260200191505060405180910390f35b61096d6004803603602081101561094157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611710565b604051808215151515815260200191505060405180910390f35b6109c96004803603602081101561099d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061172d565b005b6109f7600480360360208110156109e157600080fd5b81019080803590602001909291905050506117e6565b005b610a5b60048036036040811015610a0f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611862565b6040518082815260200191505060405180910390f35b610a796118e9565b6040518082815260200191505060405180910390f35b610ad160048036036020811015610aa557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118ef565b604051808215151515815260200191505060405180910390f35b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6040518060400160405280600381526020017f554d49000000000000000000000000000000000000000000000000000000000081525081565b6000600460009054906101000a900460ff1615610bff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610c09838361190f565b905092915050565b6000600254905090565b6000600460009054906101000a900460ff1615610ca0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b60001515600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610d66576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f6164647265737320696e20626c61636b6c69737400000000000000000000000081525060200191505060405180910390fd5b610d71848484611926565b90509392505050565b60085481565b6000600460009054906101000a900460ff1615610e05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610e0f83836119bf565b905092915050565b610e2033611092565b610e75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061287d6030913960400191505060405180910390fd5b600460009054906101000a900460ff16610ef7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600460006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000610f82336116f3565b610fd7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806128cf6030913960400191505060405180910390fd5b600954610fef83600a54611a6490919063ffffffff16565b1115611063576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f7265616368206d617820737570706c790000000000000000000000000000000081525060200191505060405180910390fd5b61106d8383611aec565b61108282600a54611a6490919063ffffffff16565b600a819055506001905092915050565b60006110a8826003611ca790919063ffffffff16565b9050919050565b6110b833611d85565b565b6110c333611710565b611118576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260408152602001806129426040913960400191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6040518060400160405280600381526020017f312e30000000000000000000000000000000000000000000000000000000000081525081565b600a5481565b6000600460009054906101000a900460ff16905090565b6111d233611ddf565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61122533611710565b61127a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260408152602001806129426040913960400191505060405180910390fd5b61128381611e39565b50565b61128f33611092565b6112e4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061287d6030913960400191505060405180910390fd5b6112ed81611e93565b50565b6112f933611092565b61134e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061287d6030913960400191505060405180910390fd5b600460009054906101000a900460ff16156113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600460006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6040518060400160405280600381526020017f554d49000000000000000000000000000000000000000000000000000000000081525081565b611493336116f3565b6114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806128cf6030913960400191505060405180910390fd5b6114f181611eed565b50565b6114fd33611f47565b565b6000600460009054906101000a900460ff1615611584576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61158e8383611fa1565b905092915050565b6000600460009054906101000a900460ff161561161b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b60001515600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f6164647265737320696e20626c61636b6c69737400000000000000000000000081525060200191505060405180910390fd5b6116eb8383612046565b905092915050565b6000611709826007611ca790919063ffffffff16565b9050919050565b6000611726826005611ca790919063ffffffff16565b9050919050565b61173633611710565b61178b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260408152602001806129426040913960400191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6117ef33611710565b611844576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260408152602001806129426040913960400191505060405180910390fd5b61185981600954611a6490919063ffffffff16565b60098190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60066020528060005260406000206000915054906101000a900460ff1681565b600061191c3384846120dd565b6001905092915050565b6000600460009054906101000a900460ff16156119ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6119b68484846122d4565b90509392505050565b6000611a5a3384611a5585600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a6490919063ffffffff16565b6120dd565b6001905092915050565b600080828401905083811015611ae2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b8f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611ba481600254611a6490919063ffffffff16565b600281905550611bfb816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a6490919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d2e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806129206022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d9981600561238590919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16560405160405180910390a250565b611df381600361238590919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b611e4d81600561244290919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129960405160405180910390a250565b611ea781600361244290919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b611f0181600761244290919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b611f5b81600761238590919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b600061203c338461203785600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461251d90919063ffffffff16565b6120dd565b6001905092915050565b6000600460009054906101000a900460ff16156120cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6120d583836125a6565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612163576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806129a76024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806128ad6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60006122e18484846125bd565b61237a843361237585600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461251d90919063ffffffff16565b6120dd565b600190509392505050565b61238f8282611ca7565b6123e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806128ff6021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61244c8282611ca7565b156124bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600082821115612595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b60006125b33384846125bd565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612643576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806129826025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061285a6023913960400191505060405180910390fd5b61271a816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461251d90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506127ad816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a6490919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a350505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737357686974656c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652057686974656c69737441646d696e20726f6c6545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a723158208509a59be4db1e8ed75c09f37c10507b757f90bb9f980c78be69f63fb54ad9d064736f6c63430005110032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101ef5760003560e01c806370a082311161010f578063a9059cbb116100a2578063d57c1ea211610071578063d57c1ea2146109cb578063dd62ed3e146109f9578063e09f220614610a71578063f9f92be414610a8f576101ef565b8063a9059cbb14610869578063aa271e1a146108cf578063bb5f747b1461092b578063bb77b16f14610987576101ef565b806395d89b41116100de57806395d89b4114610732578063983b2d56146107b557806398650275146107f9578063a457c2d714610803576101ef565b806370a08231146106485780637362d9c8146106a057806382dc1ec4146106e45780638456cb5914610728576101ef565b806340c10f191161018757806354fd4d501161015657806354fd4d501461057b5780635556db65146105fe5780635c975abb1461061c5780636ef8d66d1461063e576101ef565b806340c10f191461046b57806346fbf68e146104d15780634c5a628c1461052d578063537df3b614610537576101ef565b806323b872dd116101c357806323b872dd14610357578063313ce567146103dd57806339509351146103fb5780633f4ba83a14610461576101ef565b806286786e146101f457806306fdde0314610250578063095ea7b3146102d357806318160ddd14610339575b600080fd5b6102366004803603602081101561020a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610aeb565b604051808215151515815260200191505060405180910390f35b610258610b41565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561029857808201518184015260208101905061027d565b50505050905090810190601f1680156102c55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61031f600480360360408110156102e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b7a565b604051808215151515815260200191505060405180910390f35b610341610c11565b6040518082815260200191505060405180910390f35b6103c36004803603606081101561036d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c1b565b604051808215151515815260200191505060405180910390f35b6103e5610d7a565b6040518082815260200191505060405180910390f35b6104476004803603604081101561041157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d80565b604051808215151515815260200191505060405180910390f35b610469610e17565b005b6104b76004803603604081101561048157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f77565b604051808215151515815260200191505060405180910390f35b610513600480360360208110156104e757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611092565b604051808215151515815260200191505060405180910390f35b6105356110af565b005b6105796004803603602081101561054d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110ba565b005b610583611173565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105c35780820151818401526020810190506105a8565b50505050905090810190601f1680156105f05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106066111ac565b6040518082815260200191505060405180910390f35b6106246111b2565b604051808215151515815260200191505060405180910390f35b6106466111c9565b005b61068a6004803603602081101561065e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111d4565b6040518082815260200191505060405180910390f35b6106e2600480360360208110156106b657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061121c565b005b610726600480360360208110156106fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611286565b005b6107306112f0565b005b61073a611451565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561077a57808201518184015260208101905061075f565b50505050905090810190601f1680156107a75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6107f7600480360360208110156107cb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061148a565b005b6108016114f4565b005b61084f6004803603604081101561081957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114ff565b604051808215151515815260200191505060405180910390f35b6108b56004803603604081101561087f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611596565b604051808215151515815260200191505060405180910390f35b610911600480360360208110156108e557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116f3565b604051808215151515815260200191505060405180910390f35b61096d6004803603602081101561094157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611710565b604051808215151515815260200191505060405180910390f35b6109c96004803603602081101561099d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061172d565b005b6109f7600480360360208110156109e157600080fd5b81019080803590602001909291905050506117e6565b005b610a5b60048036036040811015610a0f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611862565b6040518082815260200191505060405180910390f35b610a796118e9565b6040518082815260200191505060405180910390f35b610ad160048036036020811015610aa557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118ef565b604051808215151515815260200191505060405180910390f35b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6040518060400160405280600381526020017f554d49000000000000000000000000000000000000000000000000000000000081525081565b6000600460009054906101000a900460ff1615610bff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610c09838361190f565b905092915050565b6000600254905090565b6000600460009054906101000a900460ff1615610ca0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b60001515600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610d66576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f6164647265737320696e20626c61636b6c69737400000000000000000000000081525060200191505060405180910390fd5b610d71848484611926565b90509392505050565b60085481565b6000600460009054906101000a900460ff1615610e05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610e0f83836119bf565b905092915050565b610e2033611092565b610e75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061287d6030913960400191505060405180910390fd5b600460009054906101000a900460ff16610ef7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600460006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000610f82336116f3565b610fd7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806128cf6030913960400191505060405180910390fd5b600954610fef83600a54611a6490919063ffffffff16565b1115611063576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f7265616368206d617820737570706c790000000000000000000000000000000081525060200191505060405180910390fd5b61106d8383611aec565b61108282600a54611a6490919063ffffffff16565b600a819055506001905092915050565b60006110a8826003611ca790919063ffffffff16565b9050919050565b6110b833611d85565b565b6110c333611710565b611118576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260408152602001806129426040913960400191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6040518060400160405280600381526020017f312e30000000000000000000000000000000000000000000000000000000000081525081565b600a5481565b6000600460009054906101000a900460ff16905090565b6111d233611ddf565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61122533611710565b61127a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260408152602001806129426040913960400191505060405180910390fd5b61128381611e39565b50565b61128f33611092565b6112e4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061287d6030913960400191505060405180910390fd5b6112ed81611e93565b50565b6112f933611092565b61134e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061287d6030913960400191505060405180910390fd5b600460009054906101000a900460ff16156113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600460006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6040518060400160405280600381526020017f554d49000000000000000000000000000000000000000000000000000000000081525081565b611493336116f3565b6114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806128cf6030913960400191505060405180910390fd5b6114f181611eed565b50565b6114fd33611f47565b565b6000600460009054906101000a900460ff1615611584576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61158e8383611fa1565b905092915050565b6000600460009054906101000a900460ff161561161b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b60001515600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f6164647265737320696e20626c61636b6c69737400000000000000000000000081525060200191505060405180910390fd5b6116eb8383612046565b905092915050565b6000611709826007611ca790919063ffffffff16565b9050919050565b6000611726826005611ca790919063ffffffff16565b9050919050565b61173633611710565b61178b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260408152602001806129426040913960400191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6117ef33611710565b611844576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260408152602001806129426040913960400191505060405180910390fd5b61185981600954611a6490919063ffffffff16565b60098190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60066020528060005260406000206000915054906101000a900460ff1681565b600061191c3384846120dd565b6001905092915050565b6000600460009054906101000a900460ff16156119ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6119b68484846122d4565b90509392505050565b6000611a5a3384611a5585600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a6490919063ffffffff16565b6120dd565b6001905092915050565b600080828401905083811015611ae2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b8f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611ba481600254611a6490919063ffffffff16565b600281905550611bfb816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a6490919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d2e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806129206022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d9981600561238590919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16560405160405180910390a250565b611df381600361238590919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b611e4d81600561244290919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129960405160405180910390a250565b611ea781600361244290919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b611f0181600761244290919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b611f5b81600761238590919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b600061203c338461203785600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461251d90919063ffffffff16565b6120dd565b6001905092915050565b6000600460009054906101000a900460ff16156120cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6120d583836125a6565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612163576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806129a76024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806128ad6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60006122e18484846125bd565b61237a843361237585600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461251d90919063ffffffff16565b6120dd565b600190509392505050565b61238f8282611ca7565b6123e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806128ff6021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61244c8282611ca7565b156124bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600082821115612595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b60006125b33384846125bd565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612643576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806129826025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061285a6023913960400191505060405180910390fd5b61271a816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461251d90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506127ad816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a6490919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a350505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737357686974656c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652057686974656c69737441646d696e20726f6c6545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a723158208509a59be4db1e8ed75c09f37c10507b757f90bb9f980c78be69f63fb54ad9d064736f6c63430005110032
Deployed Bytecode Sourcemap
20328:730:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20328:730:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19755:105;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19755:105:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20417:33;;;:::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;20417:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18886:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18886:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6141:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20087:225;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20087:225:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20544:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19034:167;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19034:167:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18402:118;;;:::i;:::-;;20677:257;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20677:257:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16095:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16095:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14278:93;;;:::i;:::-;;19629:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19629:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;20499:38;;;:::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;20499:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20637:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17611:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16312:77;;;:::i;:::-;;6295:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6295:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14154:116;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14154:116:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;16212:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16212:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;18191:116;;;:::i;:::-;;20457:35;;;:::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;20457:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15226:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15226:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;15326:77;;;:::i;:::-;;19209:177;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19209:177:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19876:203;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19876:203:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15109:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15109:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14021:125;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14021:125:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19511:106;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19511:106:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;20947:108;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20947:108:0;;;;;;;;;;;;;;;;;:::i;:::-;;6837:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6837:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20585:45;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19459:39;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19459:39:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19755:105;19813:4;19836:9;:16;19846:5;19836:16;;;;;;;;;;;;;;;;;;;;;;;;;19829:23;;19755:105;;;:::o;20417:33::-;;;;;;;;;;;;;;;;;;;:::o;18886:140::-;18965:4;17848:7;;;;;;;;;;;17847:8;17839:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18989:29;19003:7;19012:5;18989:13;:29::i;:::-;18982:36;;18886:140;;;;:::o;6141:91::-;6185:7;6212:12;;6205:19;;6141:91;:::o;20087:225::-;20180:4;17848:7;;;;;;;;;;;17847:8;17839:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20222:5;20205:22;;:9;:15;20215:4;20205:15;;;;;;;;;;;;;;;;;;;;;;;;;:22;;;20197:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20269:35;20288:4;20294:2;20298:5;20269:18;:35::i;:::-;20262:42;;20087:225;;;;;:::o;20544:28::-;;;;:::o;19034:167::-;19125:4;17848:7;;;;;;;;;;;17847:8;17839:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19149:44;19173:7;19182:10;19149:23;:44::i;:::-;19142:51;;19034:167;;;;:::o;18402:118::-;15994:20;16003:10;15994:8;:20::i;:::-;15986:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18047:7;;;;;;;;;;;18039:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18471:5;18461:7;;:15;;;;;;;;;;;;;;;;;;18492:20;18501:10;18492:20;;;;;;;;;;;;;;;;;;;;;;18402:118::o;20677:257::-;20751:4;15008:20;15017:10;15008:8;:20::i;:::-;15000:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20800:7;;20776:22;20791:6;20776:10;;:14;;:22;;;;:::i;:::-;:31;;20768:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20838:22;20844:7;20853:6;20838:5;:22::i;:::-;20882;20897:6;20882:10;;:14;;:22;;;;:::i;:::-;20871:10;:33;;;;20922:4;20915:11;;20677:257;;;;:::o;16095:109::-;16151:4;16175:21;16188:7;16175:8;:12;;:21;;;;:::i;:::-;16168:28;;16095:109;;;:::o;14278:93::-;14330:33;14352:10;14330:21;:33::i;:::-;14278:93::o;19629:110::-;13896:28;13913:10;13896:16;:28::i;:::-;13888:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19726:5;19709:9;:16;19719:5;19709:16;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;19629:110;:::o;20499:38::-;;;;;;;;;;;;;;;;;;;:::o;20637:27::-;;;;:::o;17611:78::-;17650:4;17674:7;;;;;;;;;;;17667:14;;17611:78;:::o;16312:77::-;16356:25;16370:10;16356:13;:25::i;:::-;16312:77::o;6295:110::-;6352:7;6379:9;:18;6389:7;6379:18;;;;;;;;;;;;;;;;6372:25;;6295:110;;;:::o;14154:116::-;13896:28;13913:10;13896:16;:28::i;:::-;13888:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14235:27;14254:7;14235:18;:27::i;:::-;14154:116;:::o;16212:92::-;15994:20;16003:10;15994:8;:20::i;:::-;15986:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16277:19;16288:7;16277:10;:19::i;:::-;16212:92;:::o;18191:116::-;15994:20;16003:10;15994:8;:20::i;:::-;15986:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17848:7;;;;;;;;;;;17847:8;17839:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18261:4;18251:7;;:14;;;;;;;;;;;;;;;;;;18281:18;18288:10;18281:18;;;;;;;;;;;;;;;;;;;;;;18191:116::o;20457:35::-;;;;;;;;;;;;;;;;;;;:::o;15226:92::-;15008:20;15017:10;15008:8;:20::i;:::-;15000:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15291:19;15302:7;15291:10;:19::i;:::-;15226:92;:::o;15326:77::-;15370:25;15384:10;15370:13;:25::i;:::-;15326:77::o;19209:177::-;19305:4;17848:7;;;;;;;;;;;17847:8;17839:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19329:49;19353:7;19362:15;19329:23;:49::i;:::-;19322:56;;19209:177;;;;:::o;19876:203::-;19951:4;17848:7;;;;;;;;;;;17847:8;17839:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19999:5;19976:28;;:9;:21;19986:10;19976:21;;;;;;;;;;;;;;;;;;;;;;;;;:28;;;19968:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20046:25;20061:2;20065:5;20046:14;:25::i;:::-;20039:32;;19876:203;;;;:::o;15109:109::-;15165:4;15189:21;15202:7;15189:8;:12;;:21;;;;:::i;:::-;15182:28;;15109:109;;;:::o;14021:125::-;14085:4;14109:29;14130:7;14109:16;:20;;:29;;;;:::i;:::-;14102:36;;14021:125;;;:::o;19511:106::-;13896:28;13913:10;13896:16;:28::i;:::-;13888:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19605:4;19588:9;:16;19598:5;19588:16;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;19511:106;:::o;20947:108::-;13896:28;13913:10;13896:16;:28::i;:::-;13888:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21027:19;21039:6;21027:7;;:11;;:19;;;;:::i;:::-;21019:7;:27;;;;20947:108;:::o;6837:134::-;6909:7;6936:11;:18;6948:5;6936:18;;;;;;;;;;;;;;;:27;6955:7;6936:27;;;;;;;;;;;;;;;;6929:34;;6837:134;;;;:::o;20585:45::-;;;;:::o;19459:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;7118:148::-;7183:4;7200:36;7209:10;7221:7;7230:5;7200:8;:36::i;:::-;7254:4;7247:11;;7118:148;;;;:::o;18718:160::-;18811:4;17848:7;;;;;;;;;;;17847:8;17839:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18835:35;18854:4;18860:2;18864:5;18835:18;:35::i;:::-;18828:42;;18718:160;;;;;:::o;8402:206::-;8482:4;8499:79;8508:10;8520:7;8529:48;8566:10;8529:11;:23;8541:10;8529:23;;;;;;;;;;;;;;;:32;8553:7;8529:32;;;;;;;;;;;;;;;;:36;;:48;;;;:::i;:::-;8499:8;:79::i;:::-;8596:4;8589:11;;8402:206;;;;:::o;433:181::-;491:7;511:9;527:1;523;:5;511:17;;552:1;547;:6;;539:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;605:1;598:8;;;433:181;;;;:::o;10527:308::-;10622:1;10603:21;;:7;:21;;;;10595:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10688:24;10705:6;10688:12;;:16;;:24;;;;:::i;:::-;10673:12;:39;;;;10744:30;10767:6;10744:9;:18;10754:7;10744:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;10723:9;:18;10733:7;10723:18;;;;;;;;;;;;;;;:51;;;;10811:7;10790:37;;10807:1;10790:37;;;10820:6;10790:37;;;;;;;;;;;;;;;;;;10527:308;;:::o;13326:203::-;13398:4;13442:1;13423:21;;:7;:21;;;;13415:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13501:4;:11;;:20;13513:7;13501:20;;;;;;;;;;;;;;;;;;;;;;;;;13494:27;;13326:203;;;;:::o;14533:154::-;14601:32;14625:7;14601:16;:23;;:32;;;;:::i;:::-;14671:7;14649:30;;;;;;;;;;;;14533:154;:::o;16527:130::-;16587:24;16603:7;16587:8;:15;;:24;;;;:::i;:::-;16641:7;16627:22;;;;;;;;;;;;16527:130;:::o;14379:146::-;14444:29;14465:7;14444:16;:20;;:29;;;;:::i;:::-;14509:7;14489:28;;;;;;;;;;;;14379:146;:::o;16397:122::-;16454:21;16467:7;16454:8;:12;;:21;;;;:::i;:::-;16503:7;16491:20;;;;;;;;;;;;16397:122;:::o;15411:::-;15468:21;15481:7;15468:8;:12;;:21;;;;:::i;:::-;15517:7;15505:20;;;;;;;;;;;;15411:122;:::o;15541:130::-;15601:24;15617:7;15601:8;:15;;:24;;;;:::i;:::-;15655:7;15641:22;;;;;;;;;;;;15541:130;:::o;9111:216::-;9196:4;9213:84;9222:10;9234:7;9243:53;9280:15;9243:11;:23;9255:10;9243:23;;;;;;;;;;;;;;;:32;9267:7;9243:32;;;;;;;;;;;;;;;;:36;;:53;;;;:::i;:::-;9213:8;:84::i;:::-;9315:4;9308:11;;9111:216;;;;:::o;18578:132::-;18653:4;17848:7;;;;;;;;;;;17847:8;17839:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18677:25;18692:2;18696:5;18677:14;:25::i;:::-;18670:32;;18578:132;;;;:::o;11913:335::-;12023:1;12006:19;;:5;:19;;;;11998:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12104:1;12085:21;;:7;:21;;;;12077:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12188:5;12158:11;:18;12170:5;12158:18;;;;;;;;;;;;;;;:27;12177:7;12158:27;;;;;;;;;;;;;;;:35;;;;12225:7;12209:31;;12218:5;12209:31;;;12234:5;12209:31;;;;;;;;;;;;;;;;;;11913:335;;;:::o;7737:256::-;7826:4;7843:36;7853:6;7861:9;7872:6;7843:9;:36::i;:::-;7890:73;7899:6;7907:10;7919:43;7955:6;7919:11;:19;7931:6;7919:19;;;;;;;;;;;;;;;:31;7939:10;7919:31;;;;;;;;;;;;;;;;:35;;:43;;;;:::i;:::-;7890:8;:73::i;:::-;7981:4;7974:11;;7737:256;;;;;:::o;13048:183::-;13128:18;13132:4;13138:7;13128:3;:18::i;:::-;13120:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13218:5;13195:4;:11;;:20;13207:7;13195:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;13048:183;;:::o;12790:178::-;12868:18;12872:4;12878:7;12868:3;:18::i;:::-;12867:19;12859:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12956:4;12933;:11;;:20;12945:7;12933:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;12790:178;;:::o;889:184::-;947:7;980:1;975;:6;;967:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1027:9;1043:1;1039;:5;1027:17;;1064:1;1057:8;;;889:184;;;;:::o;6618:156::-;6687:4;6704:40;6714:10;6726:9;6737:6;6704:9;:40::i;:::-;6762:4;6755:11;;6618:156;;;;:::o;9817:429::-;9933:1;9915:20;;:6;:20;;;;9907:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10017:1;9996:23;;:9;:23;;;;9988:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10092:29;10114:6;10092:9;:17;10102:6;10092:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;10072:9;:17;10082:6;10072:17;;;;;;;;;;;;;;;:49;;;;10155:32;10180:6;10155:9;:20;10165:9;10155:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;10132:9;:20;10142:9;10132:20;;;;;;;;;;;;;;;:55;;;;10220:9;10203:35;;10212:6;10203:35;;;10231:6;10203:35;;;;;;;;;;;;;;;;;;9817:429;;;:::o
Swarm Source
bzzr://8509a59be4db1e8ed75c09f37c10507b757f90bb9f980c78be69f63fb54ad9d0
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.