ETH Price: $3,295.67 (-3.62%)
Gas: 11 Gwei

Token

Suterusu (Suter)
 

Overview

Max Total Supply

10,000,000,000 Suter

Holders

5,915 ( -0.017%)

Market

Price

$0.00 @ 0.000000 ETH (-12.79%)

Onchain Market Cap

$2,193,800.00

Circulating Supply Market Cap

$799,334.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.0477170171473298 Suter

Value
$0.00 ( ~0 Eth) [0.0000%]
0xc0134f66c55b632c4d35a7c9b5083e9e55149b50
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Suterusu Protocol is a second-layer private payment infrastructure for smart contract platforms.

Market

Volume (24H):$18,616.23
Market Capitalization:$799,334.00
Circulating Supply:3,639,040,000.00 Suter
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume
1
Gate.io
SUTER-USDT$0.0002
0.0000001 Eth
$14,532.02
61,879,960.919 SUTER
76.8305%
2
KuCoin
SUTER-USDT$0.0002
0.0000001 Eth
$4,097.52
18,660,887.574 SUTER
23.1695%

Contract Source Code Verified (Exact Match)

Contract Name:
SuterusuToken

Compiler Version
v0.5.12+commit.7709ece9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-14
*/

pragma solidity 0.5.12;

/**
 * @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;
    }
}


/**
 * @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 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;
    }
}

/**
 * @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];
    }
}

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);
    }
}

/**
 * @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, "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);
    }
}

/**
 * @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);
}


/**
 * @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 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);
    }

}
/**
 * @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);
    }
}

contract Admin is Ownable {

    event AdminRoleAdded(address indexed account);

    event AdminRoleRemoved(address indexed account);

    mapping(address => bool) public AdminRole;

    constructor () internal {
        _addAdmin(msg.sender);
    }

    modifier onlyAdmin() {
        require(AdminRole[msg.sender]);
        _;
    }

    function addAdmin(address account) public onlyOwner {
        _addAdmin(account);
    }

    function removeAdmin(address account) public onlyOwner {
        _removeAdmin(account);
    }

    function renounceAdmin() public {
        _removeAdmin(msg.sender);
    }

    function _addAdmin(address account) internal {
        require(AdminRole[account] == false);
        AdminRole[account] = true;
        emit AdminRoleAdded(account);
    }

    function _removeAdmin(address account) internal {
        require(AdminRole[account] == true);
        AdminRole[account] = false;
        emit AdminRoleRemoved(account);
    }
}

contract Blacklist is Admin {

    mapping (address => bool) private _blacklist;

    event BlacklistAdded(address indexed account);

    event BlacklistRemoved(address indexed account);
    
    function isBlacklist(address account) public view returns (bool) {
        return _blacklist[account];
    }


    function addBlacklist(address account) public onlyAdmin {
        require(_blacklist[account] == false);
        _blacklist[account] = true;
        emit BlacklistAdded(account);
    }

    function removeBlacklist(address account) public onlyAdmin {
        require(_blacklist[account] == true);
        _blacklist[account] = false;
        emit BlacklistRemoved(account);
    }
}
contract SuterusuToken is Blacklist ,ERC20,ERC20Pausable {
    string  public constant  name  = "Suterusu";
    string  public constant symbol   = "Suter";
    uint8 public constant decimals = 18;
    uint256  private constant _totalSupply = 10000000000 * (10 ** uint256(decimals));

    constructor()  public {
        _mint(msg.sender, _totalSupply);
    }


    function transfer(address to, uint256 value) public  returns (bool) {
        require(!isBlacklist(msg.sender), "Token: caller in blacklist can't transfer");
        require(!isBlacklist(to), "Token: not allow to transfer to recipient address in blacklist");
        return super.transfer(to, value);
    }

    function transferFrom(address from, address to, uint256 value) public  returns (bool) {
        require(!isBlacklist(msg.sender), "Token: caller in blacklist can't transferFrom");
        require(!isBlacklist(from), "Token: from in blacklist can't transfer");
        require(!isBlacklist(to), "Token: not allow to transfer to recipient address in blacklist");
        return super.transferFrom(from, to, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"AdminRoleAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"AdminRoleRemoved","type":"event"},{"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":"BlacklistAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BlacklistRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AdminRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBlacklist","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":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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":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":"isBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"account","type":"address"}],"name":"removeAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBlacklist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","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":"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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3620000df336200013160201b60201c565b620000f0336200022c60201b60201c565b6000600760006101000a81548160ff0219169083151502179055506200012b33601260ff16600a0a6402540be400026200028d60201b60201c565b620006a6565b60001515600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146200018f57600080fd5b60018060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f25cc8d4039f7afd8efdce4a2a256292a21960a85fee5e8e73a3209d334cdcdab60405160405180910390a250565b620002478160066200045960201b620022491790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6200034d816005546200053d60201b620021041790919060201c565b600581905550620003ac81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200053d60201b620021041790919060201c565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6200046b8282620005c660201b60201c565b15620004df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080828401905083811015620005bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200064f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018062002f316022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61287b80620006b66000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370480275116100f957806395d89b4111610097578063a9059cbb11610071578063a9059cbb146107e0578063dd62ed3e14610846578063eb91e651146108be578063f2fde38b14610902576101a9565b806395d89b41146106b35780639cfe42da14610736578063a457c2d71461077a576101a9565b80638456cb59116100d35780638456cb59146106335780638bad0c0a1461063d5780638da5cb5b146106475780638f32d59b14610691576101a9565b8063704802751461055357806370a082311461059757806382dc1ec4146105ef576101a9565b8063313ce567116101665780633f4ba83a116101405780633f4ba83a146104c157806346fbf68e146104cb5780635c975abb146105275780636ef8d66d14610549576101a9565b8063313ce567146103db578063333e99db146103ff578063395093511461045b576101a9565b806306fdde03146101ae578063095ea7b31461023157806316afc871146102975780631785f53c146102f357806318160ddd1461033757806323b872dd14610355575b600080fd5b6101b6610946565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101f65780820151818401526020810190506101db565b50505050905090810190601f1680156102235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61027d6004803603604081101561024757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061097f565b604051808215151515815260200191505060405180910390f35b6102d9600480360360208110156102ad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a16565b604051808215151515815260200191505060405180910390f35b6103356004803603602081101561030957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a36565b005b61033f610abc565b6040518082815260200191505060405180910390f35b6103c16004803603606081101561036b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ac6565b604051808215151515815260200191505060405180910390f35b6103e3610bf9565b604051808260ff1660ff16815260200191505060405180910390f35b6104416004803603602081101561041557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bfe565b604051808215151515815260200191505060405180910390f35b6104a76004803603604081101561047157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c54565b604051808215151515815260200191505060405180910390f35b6104c9610ceb565b005b61050d600480360360208110156104e157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e4b565b604051808215151515815260200191505060405180910390f35b61052f610e68565b604051808215151515815260200191505060405180910390f35b610551610e7f565b005b6105956004803603602081101561056957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e8a565b005b6105d9600480360360208110156105ad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f10565b6040518082815260200191505060405180910390f35b6106316004803603602081101561060557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f59565b005b61063b610fc3565b005b610645611124565b005b61064f61112f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610699611158565b604051808215151515815260200191505060405180910390f35b6106bb6111af565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106fb5780820151818401526020810190506106e0565b50505050905090810190601f1680156107285780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6107786004803603602081101561074c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111e8565b005b6107c66004803603604081101561079057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611339565b604051808215151515815260200191505060405180910390f35b61082c600480360360408110156107f657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113d0565b604051808215151515815260200191505060405180910390f35b6108a86004803603604081101561085c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114a2565b6040518082815260200191505060405180910390f35b610900600480360360208110156108d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611529565b005b6109446004803603602081101561091857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061167a565b005b6040518060400160405280600881526020017f537574657275737500000000000000000000000000000000000000000000000081525081565b6000600760009054906101000a900460ff1615610a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610a0e8383611700565b905092915050565b60016020528060005260406000206000915054906101000a900460ff1681565b610a3e611158565b610ab0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610ab981611717565b50565b6000600554905090565b6000610ad133610bfe565b15610b27576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d81526020018061281a602d913960400191505060405180910390fd5b610b3084610bfe565b15610b86576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806127006027913960400191505060405180910390fd5b610b8f83610bfe565b15610be5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e8152602001806127b8603e913960400191505060405180910390fd5b610bf0848484611812565b90509392505050565b601281565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600760009054906101000a900460ff1615610cd9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610ce383836118ab565b905092915050565b610cf433610e4b565b610d49576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806126886030913960400191505060405180910390fd5b600760009054906101000a900460ff16610dcb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000610e6182600661195090919063ffffffff16565b9050919050565b6000600760009054906101000a900460ff16905090565b610e8833611a2e565b565b610e92611158565b610f04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610f0d81611a88565b50565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f6233610e4b565b610fb7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806126886030913960400191505060405180910390fd5b610fc081611b82565b50565b610fcc33610e4b565b611021576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806126886030913960400191505060405180910390fd5b600760009054906101000a900460ff16156110a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b61112d33611717565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6040518060400160405280600581526020017f537574657200000000000000000000000000000000000000000000000000000081525081565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661123e57600080fd5b60001515600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461129b57600080fd5b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f44d5fe68b00f68950fb9c1ff0a61ef7f747b1a36359a7e3a7f3324db4b87896760405160405180910390a250565b6000600760009054906101000a900460ff16156113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6113c88383611bdc565b905092915050565b60006113db33610bfe565b15611431576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806127276029913960400191505060405180910390fd5b61143a83610bfe565b15611490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e8152602001806127b8603e913960400191505060405180910390fd5b61149a8383611c81565b905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661157f57600080fd5b60011515600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146115dc57600080fd5b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f1747ca720b1a174a464b6513ace29b1d3190b5f632b9f34147017c81425bfde860405160405180910390a250565b611682611158565b6116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6116fd81611d18565b50565b600061170d338484611e5c565b6001905092915050565b60011515600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461177457600080fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f2d63f8ac641aea9e12c12daecbbf1ff5c41954f082604d02af14295e2d50f64060405160405180910390a250565b6000600760009054906101000a900460ff1615611897576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6118a2848484612053565b90509392505050565b6000611946338461194185600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461210490919063ffffffff16565b611e5c565b6001905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806127716022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a4281600661218c90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b60001515600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611ae557600080fd5b60018060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f25cc8d4039f7afd8efdce4a2a256292a21960a85fee5e8e73a3209d334cdcdab60405160405180910390a250565b611b9681600661224990919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b6000611c773384611c7285600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232490919063ffffffff16565b611e5c565b6001905092915050565b6000600760009054906101000a900460ff1615611d06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611d1083836123ad565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d9e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806126b86026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ee2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806127f66024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806126de6022913960400191505060405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60006120608484846123c4565b6120f984336120f485600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232490919063ffffffff16565b611e5c565b600190509392505050565b600080828401905083811015612182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6121968282611950565b6121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806127506021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6122538282611950565b156122c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008282111561239c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b60006123ba3384846123c4565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561244a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806127936025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806126656023913960400191505060405180910390fd5b61252281600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232490919063ffffffff16565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506125b781600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461210490919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a350505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373546f6b656e3a2066726f6d20696e20626c61636b6c6973742063616e2774207472616e73666572546f6b656e3a2063616c6c657220696e20626c61636b6c6973742063616e2774207472616e73666572526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373546f6b656e3a206e6f7420616c6c6f7720746f207472616e7366657220746f20726563697069656e74206164647265737320696e20626c61636b6c69737445524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373546f6b656e3a2063616c6c657220696e20626c61636b6c6973742063616e2774207472616e7366657246726f6da265627a7a723158209179066e616e3d9750fa287c0fb57120563f816359c61b1ea5e4b7470f77df8b64736f6c634300050c0032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370480275116100f957806395d89b4111610097578063a9059cbb11610071578063a9059cbb146107e0578063dd62ed3e14610846578063eb91e651146108be578063f2fde38b14610902576101a9565b806395d89b41146106b35780639cfe42da14610736578063a457c2d71461077a576101a9565b80638456cb59116100d35780638456cb59146106335780638bad0c0a1461063d5780638da5cb5b146106475780638f32d59b14610691576101a9565b8063704802751461055357806370a082311461059757806382dc1ec4146105ef576101a9565b8063313ce567116101665780633f4ba83a116101405780633f4ba83a146104c157806346fbf68e146104cb5780635c975abb146105275780636ef8d66d14610549576101a9565b8063313ce567146103db578063333e99db146103ff578063395093511461045b576101a9565b806306fdde03146101ae578063095ea7b31461023157806316afc871146102975780631785f53c146102f357806318160ddd1461033757806323b872dd14610355575b600080fd5b6101b6610946565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101f65780820151818401526020810190506101db565b50505050905090810190601f1680156102235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61027d6004803603604081101561024757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061097f565b604051808215151515815260200191505060405180910390f35b6102d9600480360360208110156102ad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a16565b604051808215151515815260200191505060405180910390f35b6103356004803603602081101561030957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a36565b005b61033f610abc565b6040518082815260200191505060405180910390f35b6103c16004803603606081101561036b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ac6565b604051808215151515815260200191505060405180910390f35b6103e3610bf9565b604051808260ff1660ff16815260200191505060405180910390f35b6104416004803603602081101561041557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bfe565b604051808215151515815260200191505060405180910390f35b6104a76004803603604081101561047157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c54565b604051808215151515815260200191505060405180910390f35b6104c9610ceb565b005b61050d600480360360208110156104e157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e4b565b604051808215151515815260200191505060405180910390f35b61052f610e68565b604051808215151515815260200191505060405180910390f35b610551610e7f565b005b6105956004803603602081101561056957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e8a565b005b6105d9600480360360208110156105ad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f10565b6040518082815260200191505060405180910390f35b6106316004803603602081101561060557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f59565b005b61063b610fc3565b005b610645611124565b005b61064f61112f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610699611158565b604051808215151515815260200191505060405180910390f35b6106bb6111af565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106fb5780820151818401526020810190506106e0565b50505050905090810190601f1680156107285780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6107786004803603602081101561074c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111e8565b005b6107c66004803603604081101561079057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611339565b604051808215151515815260200191505060405180910390f35b61082c600480360360408110156107f657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113d0565b604051808215151515815260200191505060405180910390f35b6108a86004803603604081101561085c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114a2565b6040518082815260200191505060405180910390f35b610900600480360360208110156108d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611529565b005b6109446004803603602081101561091857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061167a565b005b6040518060400160405280600881526020017f537574657275737500000000000000000000000000000000000000000000000081525081565b6000600760009054906101000a900460ff1615610a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610a0e8383611700565b905092915050565b60016020528060005260406000206000915054906101000a900460ff1681565b610a3e611158565b610ab0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610ab981611717565b50565b6000600554905090565b6000610ad133610bfe565b15610b27576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d81526020018061281a602d913960400191505060405180910390fd5b610b3084610bfe565b15610b86576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806127006027913960400191505060405180910390fd5b610b8f83610bfe565b15610be5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e8152602001806127b8603e913960400191505060405180910390fd5b610bf0848484611812565b90509392505050565b601281565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600760009054906101000a900460ff1615610cd9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610ce383836118ab565b905092915050565b610cf433610e4b565b610d49576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806126886030913960400191505060405180910390fd5b600760009054906101000a900460ff16610dcb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000610e6182600661195090919063ffffffff16565b9050919050565b6000600760009054906101000a900460ff16905090565b610e8833611a2e565b565b610e92611158565b610f04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610f0d81611a88565b50565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f6233610e4b565b610fb7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806126886030913960400191505060405180910390fd5b610fc081611b82565b50565b610fcc33610e4b565b611021576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806126886030913960400191505060405180910390fd5b600760009054906101000a900460ff16156110a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b61112d33611717565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6040518060400160405280600581526020017f537574657200000000000000000000000000000000000000000000000000000081525081565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661123e57600080fd5b60001515600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461129b57600080fd5b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f44d5fe68b00f68950fb9c1ff0a61ef7f747b1a36359a7e3a7f3324db4b87896760405160405180910390a250565b6000600760009054906101000a900460ff16156113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6113c88383611bdc565b905092915050565b60006113db33610bfe565b15611431576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806127276029913960400191505060405180910390fd5b61143a83610bfe565b15611490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e8152602001806127b8603e913960400191505060405180910390fd5b61149a8383611c81565b905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661157f57600080fd5b60011515600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146115dc57600080fd5b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f1747ca720b1a174a464b6513ace29b1d3190b5f632b9f34147017c81425bfde860405160405180910390a250565b611682611158565b6116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6116fd81611d18565b50565b600061170d338484611e5c565b6001905092915050565b60011515600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461177457600080fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f2d63f8ac641aea9e12c12daecbbf1ff5c41954f082604d02af14295e2d50f64060405160405180910390a250565b6000600760009054906101000a900460ff1615611897576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6118a2848484612053565b90509392505050565b6000611946338461194185600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461210490919063ffffffff16565b611e5c565b6001905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806127716022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a4281600661218c90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b60001515600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611ae557600080fd5b60018060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f25cc8d4039f7afd8efdce4a2a256292a21960a85fee5e8e73a3209d334cdcdab60405160405180910390a250565b611b9681600661224990919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b6000611c773384611c7285600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232490919063ffffffff16565b611e5c565b6001905092915050565b6000600760009054906101000a900460ff1615611d06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611d1083836123ad565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d9e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806126b86026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ee2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806127f66024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806126de6022913960400191505060405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60006120608484846123c4565b6120f984336120f485600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232490919063ffffffff16565b611e5c565b600190509392505050565b600080828401905083811015612182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6121968282611950565b6121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806127506021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6122538282611950565b156122c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008282111561239c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b60006123ba3384846123c4565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561244a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806127936025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806126656023913960400191505060405180910390fd5b61252281600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232490919063ffffffff16565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506125b781600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461210490919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a350505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373546f6b656e3a2066726f6d20696e20626c61636b6c6973742063616e2774207472616e73666572546f6b656e3a2063616c6c657220696e20626c61636b6c6973742063616e2774207472616e73666572526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373546f6b656e3a206e6f7420616c6c6f7720746f207472616e7366657220746f20726563697069656e74206164647265737320696e20626c61636b6c69737445524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373546f6b656e3a2063616c6c657220696e20626c61636b6c6973742063616e2774207472616e7366657246726f6da265627a7a723158209179066e616e3d9750fa287c0fb57120563f816359c61b1ea5e4b7470f77df8b64736f6c634300050c0032

Deployed Bytecode Sourcemap

21878:1120:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21878:1120:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21942:43;;;:::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;21942:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19643:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19643:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20295:41;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20295:41:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20604:95;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20604:95:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;13723:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22572:423;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22572:423:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22041:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21364:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21364:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19791:167;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19791:167:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;9345:118;;;:::i;:::-;;6927:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6927:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8554:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;7144:77;;;:::i;:::-;;20507:89;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20507:89:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;13877:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13877:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7044:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7044:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;9134:116;;;:::i;:::-;;20707:75;;;:::i;:::-;;4453:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4819:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21992:42;;;:::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;21992:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21484:188;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21484:188:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;19966:177;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19966:177:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22254:310;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22254:310:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14419:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14419:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21680:193;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21680:193:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;5068:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5068:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;21942:43;;;;;;;;;;;;;;;;;;;:::o;19643:140::-;19722:4;8791:7;;;;;;;;;;;8790:8;8782:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19746:29;19760:7;19769:5;19746:13;:29::i;:::-;19739:36;;19643:140;;;;:::o;20295:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;20604:95::-;4665:9;:7;:9::i;:::-;4657:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20670:21;20683:7;20670:12;:21::i;:::-;20604:95;:::o;13723:91::-;13767:7;13794:12;;13787:19;;13723:91;:::o;22572:423::-;22652:4;22678:23;22690:10;22678:11;:23::i;:::-;22677:24;22669:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22771:17;22783:4;22771:11;:17::i;:::-;22770:18;22762:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22852:15;22864:2;22852:11;:15::i;:::-;22851:16;22843:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22952:35;22971:4;22977:2;22981:5;22952:18;:35::i;:::-;22945:42;;22572:423;;;;;:::o;22041:35::-;22074:2;22041:35;:::o;21364:110::-;21423:4;21447:10;:19;21458:7;21447:19;;;;;;;;;;;;;;;;;;;;;;;;;21440:26;;21364:110;;;:::o;19791:167::-;19882:4;8791:7;;;;;;;;;;;8790:8;8782:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19906:44;19930:7;19939:10;19906:23;:44::i;:::-;19899:51;;19791:167;;;;:::o;9345:118::-;6826:20;6835:10;6826:8;:20::i;:::-;6818:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8990:7;;;;;;;;;;;8982:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9414:5;9404:7;;:15;;;;;;;;;;;;;;;;;;9435:20;9444:10;9435:20;;;;;;;;;;;;;;;;;;;;;;9345:118::o;6927:109::-;6983:4;7007:21;7020:7;7007:8;:12;;:21;;;;:::i;:::-;7000:28;;6927:109;;;:::o;8554:78::-;8593:4;8617:7;;;;;;;;;;;8610:14;;8554:78;:::o;7144:77::-;7188:25;7202:10;7188:13;:25::i;:::-;7144:77::o;20507:89::-;4665:9;:7;:9::i;:::-;4657:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20570:18;20580:7;20570:9;:18::i;:::-;20507:89;:::o;13877:110::-;13934:7;13961:9;:18;13971:7;13961:18;;;;;;;;;;;;;;;;13954:25;;13877:110;;;:::o;7044:92::-;6826:20;6835:10;6826:8;:20::i;:::-;6818:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7109:19;7120:7;7109:10;:19::i;:::-;7044:92;:::o;9134:116::-;6826:20;6835:10;6826:8;:20::i;:::-;6818:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8791:7;;;;;;;;;;;8790:8;8782:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9204:4;9194:7;;:14;;;;;;;;;;;;;;;;;;9224:18;9231:10;9224:18;;;;;;;;;;;;;;;;;;;;;;9134:116::o;20707:75::-;20750:24;20763:10;20750:12;:24::i;:::-;20707:75::o;4453:79::-;4491:7;4518:6;;;;;;;;;;;4511:13;;4453:79;:::o;4819:92::-;4859:4;4897:6;;;;;;;;;;;4883:20;;:10;:20;;;4876:27;;4819:92;:::o;21992:42::-;;;;;;;;;;;;;;;;;;;:::o;21484:188::-;20457:9;:21;20467:10;20457:21;;;;;;;;;;;;;;;;;;;;;;;;;20449:30;;;;;;21582:5;21559:28;;:10;:19;21570:7;21559:19;;;;;;;;;;;;;;;;;;;;;;;;;:28;;;21551:37;;;;;;21621:4;21599:10;:19;21610:7;21599:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;21656:7;21641:23;;;;;;;;;;;;21484:188;:::o;19966:177::-;20062:4;8791:7;;;;;;;;;;;8790:8;8782:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20086:49;20110:7;20119:15;20086:23;:49::i;:::-;20079:56;;19966:177;;;;:::o;22254:310::-;22316:4;22342:23;22354:10;22342:11;:23::i;:::-;22341:24;22333:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22431:15;22443:2;22431:11;:15::i;:::-;22430:16;22422:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22531:25;22546:2;22550:5;22531:14;:25::i;:::-;22524:32;;22254:310;;;;:::o;14419:134::-;14491:7;14518:11;:18;14530:5;14518:18;;;;;;;;;;;;;;;:27;14537:7;14518:27;;;;;;;;;;;;;;;;14511:34;;14419:134;;;;:::o;21680:193::-;20457:9;:21;20467:10;20457:21;;;;;;;;;;;;;;;;;;;;;;;;;20449:30;;;;;;21781:4;21758:27;;:10;:19;21769:7;21758:19;;;;;;;;;;;;;;;;;;;;;;;;;:27;;;21750:36;;;;;;21819:5;21797:10;:19;21808:7;21797:19;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;21857:7;21840:25;;;;;;;;;;;;21680:193;:::o;5068:109::-;4665:9;:7;:9::i;:::-;4657:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5141:28;5160:8;5141:18;:28::i;:::-;5068:109;:::o;14700:148::-;14765:4;14782:36;14791:10;14803:7;14812:5;14782:8;:36::i;:::-;14836:4;14829:11;;14700:148;;;;:::o;20973:180::-;21062:4;21040:26;;:9;:18;21050:7;21040:18;;;;;;;;;;;;;;;;;;;;;;;;;:26;;;21032:35;;;;;;21099:5;21078:9;:18;21088:7;21078:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;21137:7;21120:25;;;;;;;;;;;;20973:180;:::o;19475:160::-;19568:4;8791:7;;;;;;;;;;;8790:8;8782:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19592:35;19611:4;19617:2;19621:5;19592:18;:35::i;:::-;19585:42;;19475:160;;;;;:::o;15984:206::-;16064:4;16081:79;16090:10;16102:7;16111:48;16148:10;16111:11;:23;16123:10;16111:23;;;;;;;;;;;;;;;:32;16135:7;16111:32;;;;;;;;;;;;;;;;:36;;:48;;;;:::i;:::-;16081:8;:79::i;:::-;16178:4;16171:11;;15984:206;;;;:::o;6302:203::-;6374:4;6418:1;6399:21;;:7;:21;;;;6391:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6477:4;:11;;:20;6489:7;6477:20;;;;;;;;;;;;;;;;;;;;;;;;;6470:27;;6302:203;;;;:::o;7359:130::-;7419:24;7435:7;7419:8;:15;;:24;;;;:::i;:::-;7473:7;7459:22;;;;;;;;;;;;7359:130;:::o;20790:175::-;20876:5;20854:27;;:9;:18;20864:7;20854:18;;;;;;;;;;;;;;;;;;;;;;;;;:27;;;20846:36;;;;;;20914:4;20893:9;:18;20903:7;20893:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;20949:7;20934:23;;;;;;;;;;;;20790:175;:::o;7229:122::-;7286:21;7299:7;7286:8;:12;;:21;;;;:::i;:::-;7335:7;7323:20;;;;;;;;;;;;7229:122;:::o;16693:216::-;16778:4;16795:84;16804:10;16816:7;16825:53;16862:15;16825:11;:23;16837:10;16825:23;;;;;;;;;;;;;;;:32;16849:7;16825:32;;;;;;;;;;;;;;;;:36;;:53;;;;:::i;:::-;16795:8;:84::i;:::-;16897:4;16890:11;;16693:216;;;;:::o;19335:132::-;19410:4;8791:7;;;;;;;;;;;8790:8;8782:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19434:25;19449:2;19453:5;19434:14;:25::i;:::-;19427:32;;19335:132;;;;:::o;5283:229::-;5377:1;5357:22;;:8;:22;;;;5349:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5467:8;5438:38;;5459:6;;;;;;;;;;;5438:38;;;;;;;;;;;;5496:8;5487:6;;:17;;;;;;;;;;;;;;;;;;5283:229;:::o;18859:335::-;18969:1;18952:19;;:5;:19;;;;18944:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19050:1;19031:21;;:7;:21;;;;19023:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19134:5;19104:11;:18;19116:5;19104:18;;;;;;;;;;;;;;;:27;19123:7;19104:27;;;;;;;;;;;;;;;:35;;;;19171:7;19155:31;;19164:5;19155:31;;;19180:5;19155:31;;;;;;;;;;;;;;;;;;18859:335;;;:::o;15319:256::-;15408:4;15425:36;15435:6;15443:9;15454:6;15425:9;:36::i;:::-;15472:73;15481:6;15489:10;15501:43;15537:6;15501:11;:19;15513:6;15501:19;;;;;;;;;;;;;;;:31;15521:10;15501:31;;;;;;;;;;;;;;;;:35;;:43;;;;:::i;:::-;15472:8;:73::i;:::-;15563:4;15556:11;;15319:256;;;;;:::o;859:181::-;917:7;937:9;953:1;949;:5;937:17;;978:1;973;:6;;965:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1031:1;1024:8;;;859:181;;;;:::o;6024:183::-;6104:18;6108:4;6114:7;6104:3;:18::i;:::-;6096:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6194:5;6171:4;:11;;:20;6183:7;6171:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;6024:183;;:::o;5766:178::-;5844:18;5848:4;5854:7;5844:3;:18::i;:::-;5843:19;5835:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5932:4;5909;:11;;:20;5921:7;5909:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;5766:178;;:::o;1315:184::-;1373:7;1406:1;1401;:6;;1393:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1453:9;1469:1;1465;:5;1453:17;;1490:1;1483:8;;;1315:184;;;;:::o;14200:156::-;14269:4;14286:40;14296:10;14308:9;14319:6;14286:9;:40::i;:::-;14344:4;14337:11;;14200:156;;;;:::o;17399:429::-;17515:1;17497:20;;:6;:20;;;;17489:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17599:1;17578:23;;:9;:23;;;;17570:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17674:29;17696:6;17674:9;:17;17684:6;17674:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;17654:9;:17;17664:6;17654:17;;;;;;;;;;;;;;;:49;;;;17737:32;17762:6;17737:9;:20;17747:9;17737:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;17714:9;:20;17724:9;17714:20;;;;;;;;;;;;;;;:55;;;;17802:9;17785:35;;17794:6;17785:35;;;17813:6;17785:35;;;;;;;;;;;;;;;;;;17399:429;;;:::o

Swarm Source

bzzr://9179066e616e3d9750fa287c0fb57120563f816359c61b1ea5e4b7470f77df8b
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.