ETH Price: $2,912.20 (-2.89%)
Gas: 5 Gwei

Token

Tokamak Network Token (TON)
 

Overview

Max Total Supply

50,085,623.025324109278933578 TON

Holders

4,417 (0.00%)

Total Transfers

-

Market

Price

$1.93 @ 0.000663 ETH (-0.85%)

Onchain Market Cap

$96,665,252.44

Circulating Supply Market Cap

$90,030,764.00

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Turing complete plasma chain building protocol.

Market

Volume (24H):$2,098,691.00
Market Capitalization:$90,030,764.00
Circulating Supply:46,620,334.00 TON
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x7490c529...93D5cB0AC
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
TON

Compiler Version
v0.5.12+commit.7709ece9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-08-11
*/

// File: openzeppelin-solidity/contracts/GSN/Context.sol

pragma solidity ^0.5.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: openzeppelin-solidity/contracts/ownership/Ownable.sol

pragma solidity ^0.5.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @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 _msgSender() == _owner;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: openzeppelin-solidity/contracts/math/SafeMath.sol

pragma solidity ^0.5.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        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-contracts/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) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message 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.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        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) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol

pragma solidity ^0.5.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20Mintable}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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 Context, 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(_msgSender(), 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 amount) public returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - 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, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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(_msgSender(), spender, _allowances[_msgSender()][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(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        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, "ERC20: transfer amount exceeds balance");
        _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 Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), 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 amount) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Destroys `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, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}

// File: openzeppelin-solidity/contracts/access/Roles.sol

pragma solidity ^0.5.0;

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

// File: openzeppelin-solidity/contracts/access/roles/MinterRole.sol

pragma solidity ^0.5.0;



contract MinterRole is Context {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(_msgSender());
    }

    modifier onlyMinter() {
        require(isMinter(_msgSender()), "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(_msgSender());
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Mintable.sol

pragma solidity ^0.5.0;



/**
 * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},
 * which have permission to mint (create) new tokens as they see fit.
 *
 * At construction, the deployer of the contract is the only minter.
 */
contract ERC20Mintable is ERC20, MinterRole {
    /**
     * @dev See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the {MinterRole}.
     */
    function mint(address account, uint256 amount) public onlyMinter returns (bool) {
        _mint(account, amount);
        return true;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Detailed.sol

pragma solidity ^0.5.0;


/**
 * @dev Optional functions from the ERC20 standard.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}

// File: openzeppelin-solidity/contracts/introspection/ERC165Checker.sol

pragma solidity ^0.5.10;

/**
 * @dev Library used to query support of an interface declared via {IERC165}.
 *
 * Note that these functions return the actual result of the query: they do not
 * `revert` if an interface is not supported. It is up to the caller to decide
 * what to do in these cases.
 */
library ERC165Checker {
    // As per the EIP-165 spec, no interface should ever match 0xffffffff
    bytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff;

    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Returns true if `account` supports the {IERC165} interface,
     */
    function _supportsERC165(address account) internal view returns (bool) {
        // Any contract that implements ERC165 must explicitly indicate support of
        // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid
        return _supportsERC165Interface(account, _INTERFACE_ID_ERC165) &&
            !_supportsERC165Interface(account, _INTERFACE_ID_INVALID);
    }

    /**
     * @dev Returns true if `account` supports the interface defined by
     * `interfaceId`. Support for {IERC165} itself is queried automatically.
     *
     * See {IERC165-supportsInterface}.
     */
    function _supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) {
        // query support of both ERC165 as per the spec and support of _interfaceId
        return _supportsERC165(account) &&
            _supportsERC165Interface(account, interfaceId);
    }

    /**
     * @dev Returns true if `account` supports all the interfaces defined in
     * `interfaceIds`. Support for {IERC165} itself is queried automatically.
     *
     * Batch-querying can lead to gas savings by skipping repeated checks for
     * {IERC165} support.
     *
     * See {IERC165-supportsInterface}.
     */
    function _supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) {
        // query support of ERC165 itself
        if (!_supportsERC165(account)) {
            return false;
        }

        // query support of each interface in _interfaceIds
        for (uint256 i = 0; i < interfaceIds.length; i++) {
            if (!_supportsERC165Interface(account, interfaceIds[i])) {
                return false;
            }
        }

        // all interfaces supported
        return true;
    }

    /**
     * @notice Query if a contract implements an interface, does not check ERC165 support
     * @param account The address of the contract to query for support of an interface
     * @param interfaceId The interface identifier, as specified in ERC-165
     * @return true if the contract at account indicates support of the interface with
     * identifier interfaceId, false otherwise
     * @dev Assumes that account contains a contract that supports ERC165, otherwise
     * the behavior of this method is undefined. This precondition can be checked
     * with the `supportsERC165` method in this library.
     * Interface identification is specified in ERC-165.
     */
    function _supportsERC165Interface(address account, bytes4 interfaceId) private view returns (bool) {
        // success determines whether the staticcall succeeded and result determines
        // whether the contract at account indicates support of _interfaceId
        (bool success, bool result) = _callERC165SupportsInterface(account, interfaceId);

        return (success && result);
    }

    /**
     * @notice Calls the function with selector 0x01ffc9a7 (ERC165) and suppresses throw
     * @param account The address of the contract to query for support of an interface
     * @param interfaceId The interface identifier, as specified in ERC-165
     * @return success true if the STATICCALL succeeded, false otherwise
     * @return result true if the STATICCALL succeeded and the contract at account
     * indicates support of the interface with identifier interfaceId, false otherwise
     */
    function _callERC165SupportsInterface(address account, bytes4 interfaceId)
        private
        view
        returns (bool, bool)
    {
        bytes memory encodedParams = abi.encodeWithSelector(_INTERFACE_ID_ERC165, interfaceId);
        (bool success, bytes memory result) = account.staticcall.gas(30000)(encodedParams);
        if (result.length < 32) return (false, false);
        return (success, abi.decode(result, (bool)));
    }
}

// File: contracts/stake/interfaces/SeigManagerI.sol

pragma solidity ^0.5.12;


interface SeigManagerI {
  function registry() external view returns (address);
  function depositManager() external view returns (address);
  function ton() external view returns (address);
  function wton() external view returns (address);
  function powerton() external view returns (address);
  function tot() external view returns (address);
  function coinages(address rootchain) external view returns (address);
  function commissionRates(address rootchain) external view returns (uint256);

  function lastCommitBlock(address rootchain) external view returns (uint256);
  function seigPerBlock() external view returns (uint256);
  function lastSeigBlock() external view returns (uint256);
  function pausedBlock() external view returns (uint256);
  function unpausedBlock() external view returns (uint256);
  function DEFAULT_FACTOR() external view returns (uint256);

  function deployCoinage(address rootchain) external returns (bool);
  function setCommissionRate(address rootchain, uint256 commission, bool isCommissionRateNegative) external returns (bool);

  function uncomittedStakeOf(address rootchain, address account) external view returns (uint256);
  function stakeOf(address rootchain, address account) external view returns (uint256);
  function additionalTotBurnAmount(address rootchain, address account, uint256 amount) external view returns (uint256 totAmount);

  function onTransfer(address sender, address recipient, uint256 amount) external returns (bool);
  function onCommit() external returns (bool);
  function onDeposit(address rootchain, address account, uint256 amount) external returns (bool);
  function onWithdraw(address rootchain, address account, uint256 amount) external returns (bool);

}

// File: openzeppelin-solidity/contracts/introspection/IERC165.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: openzeppelin-solidity/contracts/introspection/ERC165.sol

pragma solidity ^0.5.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: contracts/stake/tokens/OnApprove.sol

pragma solidity ^0.5.12;


contract OnApprove is ERC165 {
  constructor() public {
    _registerInterface(OnApprove(this).onApprove.selector);
  }

  function onApprove(address owner, address spender, uint256 amount, bytes calldata data) external returns (bool);
}

// File: contracts/stake/tokens/ERC20OnApprove.sol

pragma solidity ^0.5.12;





contract ERC20OnApprove is ERC20 {
  function approveAndCall(address spender, uint256 amount, bytes memory data) public returns (bool) {
    require(approve(spender, amount));
    _callOnApprove(msg.sender, spender, amount, data);
    return true;
  }

  function _callOnApprove(address owner, address spender, uint256 amount, bytes memory data) internal {
    bytes4 onApproveSelector = OnApprove(spender).onApprove.selector;

    require(ERC165Checker._supportsInterface(spender, onApproveSelector),
      "ERC20OnApprove: spender doesn't support onApprove");

    (bool ok, bytes memory res) = spender.call(
      abi.encodeWithSelector(
        onApproveSelector,
        owner,
        spender,
        amount,
        data
      )
    );

    // check if low-level call reverted or not
    require(ok, string(res));

    assembly {
      ok := mload(add(res, 0x20))
    }

    // check if OnApprove.onApprove returns true or false
    require(ok, "ERC20OnApprove: failed to call onApprove");
  }

}

// File: contracts/stake/tokens/AuthController.sol

pragma solidity ^0.5.12;



interface MinterRoleRenounceTarget {
  function renounceMinter() external;
}

interface PauserRoleRenounceTarget {
  function renouncePauser() external;
}

interface OwnableTarget {
  function renounceOwnership() external;
  function transferOwnership(address newOwner) external;
}

contract AuthController is Ownable {
  function renounceMinter(address target) public onlyOwner {
    MinterRoleRenounceTarget(target).renounceMinter();
  }

  function renouncePauser(address target) public onlyOwner {
    PauserRoleRenounceTarget(target).renouncePauser();
  }

  function renounceOwnership(address target) public onlyOwner {
    OwnableTarget(target).renounceOwnership();
  }

  function transferOwnership(address target, address newOwner) public onlyOwner {
    OwnableTarget(target).transferOwnership(newOwner);
  }
}

// File: contracts/stake/tokens/SeigToken.sol

pragma solidity ^0.5.12;







contract SeigToken is ERC20, Ownable, ERC20OnApprove, AuthController {
  SeigManagerI public seigManager;
  bool public callbackEnabled;

  function enableCallback(bool _callbackEnabled) external onlyOwner {
    callbackEnabled = _callbackEnabled;
  }

  function setSeigManager(SeigManagerI _seigManager) external onlyOwner {
    seigManager = _seigManager;
  }

  //////////////////////
  // Override ERC20 functions
  //////////////////////

  function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
    require(msg.sender == sender || msg.sender == recipient, "SeigToken: only sender or recipient can transfer");
    return super.transferFrom(sender, recipient, amount);
  }

  function _transfer(address sender, address recipient, uint256 amount) internal {
    super._transfer(sender, recipient, amount);
    if (callbackEnabled && address(seigManager) != address(0)) {
      require(seigManager.onTransfer(sender, recipient, amount));
    }
  }

  function _mint(address account, uint256 amount) internal {
    super._mint(account, amount);
    if (callbackEnabled && address(seigManager) != address(0)) {
      require(seigManager.onTransfer(address(0), account, amount));
    }
  }

  function _burn(address account, uint256 amount) internal {
    super._burn(account, amount);
    if (callbackEnabled && address(seigManager) != address(0)) {
      require(seigManager.onTransfer(account, address(0), amount));
    }
  }
}

// File: contracts/stake/tokens/TON.sol

pragma solidity ^0.5.12;








/**
 * @dev Current implementations is just for testing seigniorage manager.
 */
contract TON is Ownable, ERC20Mintable, ERC20Detailed, SeigToken {
  constructor() public ERC20Detailed("Tokamak Network Token", "TON", 18) {}

  function setSeigManager(SeigManagerI _seigManager) external {
    revert("TON: TON doesn't allow setSeigManager");
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"approveAndCall","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":"callbackEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"bool","name":"_callbackEnabled","type":"bool"}],"name":"enableCallback","outputs":[],"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":"isMinter","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":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":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"seigManager","outputs":[{"internalType":"contract SeigManagerI","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"contract SeigManagerI","name":"_seigManager","type":"address"}],"name":"setSeigManager","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601581526020017f546f6b616d616b204e6574776f726b20546f6b656e00000000000000000000008152506040518060400160405280600381526020017f544f4e00000000000000000000000000000000000000000000000000000000008152506012620000a3620000946200014f60201b60201c565b6001600160e01b036200015416565b6000620000b86001600160e01b036200014f16565b600480546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35082516200011b906005906020860190620002d0565b50815162000131906006906020850190620002d0565b506007805460ff191660ff9290921691909117905550620003729050565b335b90565b6200016f816003620001a660201b620017501790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b620001bb82826001600160e01b036200024d16565b156200022857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b038216620002b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806200215c6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200031357805160ff191683800117855562000343565b8280016001018555821562000343579182015b828111156200034357825182559160200191906001019062000326565b506200035192915062000355565b5090565b6200015191905b808211156200035157600081556001016200035c565b611dda80620003826000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f95780639865027511610097578063aa271e1a11610071578063aa271e1a1461052b578063cae9ca5114610551578063dd62ed3e1461060c578063f2fde38b1461063a576101c4565b806398650275146104cb578063a457c2d7146104d3578063a9059cbb146104ff576101c4565b80638da5cb5b116100d35780638da5cb5b1461048d5780638f32d59b1461049557806395d89b411461049d578063983b2d56146104a5576101c4565b806370a0823114610439578063715018a61461045f5780637657f20a14610467576101c4565b806339509351116101665780635f112c68116101405780635f112c68146103b957806363380113146103df5780636d435421146103e75780636fb7f55814610415576101c4565b8063395093511461033b57806340c10f191461036757806341eb24bb14610393576101c4565b806323b872dd116101a257806323b872dd146102a05780633113ed5c146102d6578063313ce567146102f757806338bf3cfa14610315576101c4565b806306fdde03146101c9578063095ea7b31461024657806318160ddd14610286575b600080fd5b6101d1610660565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561020b5781810151838201526020016101f3565b50505050905090810190601f1680156102385780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102726004803603604081101561025c57600080fd5b506001600160a01b0381351690602001356106f6565b604080519115158252519081900360200190f35b61028e610713565b60408051918252519081900360200190f35b610272600480360360608110156102b657600080fd5b506001600160a01b03813581169160208101359091169060400135610719565b6102f5600480360360208110156102ec57600080fd5b50351515610788565b005b6102ff6107ed565b6040805160ff9092168252519081900360200190f35b6102f56004803603602081101561032b57600080fd5b50356001600160a01b03166107f6565b6102726004803603604081101561035157600080fd5b506001600160a01b038135169060200135610893565b6102726004803603604081101561037d57600080fd5b506001600160a01b0381351690602001356108ec565b6102f5600480360360208110156103a957600080fd5b50356001600160a01b0316610943565b6102f5600480360360208110156103cf57600080fd5b50356001600160a01b03166109c5565b610272610a47565b6102f5600480360360408110156103fd57600080fd5b506001600160a01b0381358116916020013516610a57565b61041d610b12565b604080516001600160a01b039092168252519081900360200190f35b61028e6004803603602081101561044f57600080fd5b50356001600160a01b0316610b26565b6102f5610b41565b6102f56004803603602081101561047d57600080fd5b50356001600160a01b0316610bd2565b61041d610c09565b610272610c18565b6101d1610c3e565b6102f5600480360360208110156104bb57600080fd5b50356001600160a01b0316610c9f565b6102f5610cf1565b610272600480360360408110156104e957600080fd5b506001600160a01b038135169060200135610d03565b6102726004803603604081101561051557600080fd5b506001600160a01b038135169060200135610d71565b6102726004803603602081101561054157600080fd5b50356001600160a01b0316610d85565b6102726004803603606081101561056757600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561059757600080fd5b8201836020820111156105a957600080fd5b803590602001918460018302840111640100000000831117156105cb57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610d9e945050505050565b61028e6004803603604081101561062257600080fd5b506001600160a01b0381358116916020013516610dc9565b6102f56004803603602081101561065057600080fd5b50356001600160a01b0316610df4565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106ec5780601f106106c1576101008083540402835291602001916106ec565b820191906000526020600020905b8154815290600101906020018083116106cf57829003601f168201915b5050505050905090565b600061070a610703610e44565b8484610e48565b50600192915050565b60025490565b6000336001600160a01b038516148061073a5750336001600160a01b038416145b6107755760405162461bcd60e51b8152600401808060200182810382526030815260200180611c006030913960400191505060405180910390fd5b610780848484610f34565b949350505050565b610790610c18565b6107cf576040805162461bcd60e51b81526020600482018190526024820152600080516020611ca9833981519152604482015290519081900360640190fd5b60078054911515600160a81b0260ff60a81b19909216919091179055565b60075460ff1690565b6107fe610c18565b61083d576040805162461bcd60e51b81526020600482018190526024820152600080516020611ca9833981519152604482015290519081900360640190fd5b806001600160a01b031663715018a66040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561087857600080fd5b505af115801561088c573d6000803e3d6000fd5b5050505050565b600061070a6108a0610e44565b846108e785600160006108b1610e44565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610fb216565b610e48565b60006108fe6108f9610e44565b610d85565b6109395760405162461bcd60e51b8152600401808060200182810382526030815260200180611c306030913960400191505060405180910390fd5b61070a8383611013565b61094b610c18565b61098a576040805162461bcd60e51b81526020600482018190526024820152600080516020611ca9833981519152604482015290519081900360640190fd5b806001600160a01b0316636ef8d66d6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561087857600080fd5b6109cd610c18565b610a0c576040805162461bcd60e51b81526020600482018190526024820152600080516020611ca9833981519152604482015290519081900360640190fd5b806001600160a01b031663986502756040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561087857600080fd5b600754600160a81b900460ff1681565b610a5f610c18565b610a9e576040805162461bcd60e51b81526020600482018190526024820152600080516020611ca9833981519152604482015290519081900360640190fd5b816001600160a01b031663f2fde38b826040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b03168152602001915050600060405180830381600087803b158015610af657600080fd5b505af1158015610b0a573d6000803e3d6000fd5b505050505050565b60075461010090046001600160a01b031681565b6001600160a01b031660009081526020819052604090205490565b610b49610c18565b610b88576040805162461bcd60e51b81526020600482018190526024820152600080516020611ca9833981519152604482015290519081900360640190fd5b6004546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600480546001600160a01b0319169055565b60405162461bcd60e51b8152600401808060200182810382526025815260200180611d346025913960400191505060405180910390fd5b6004546001600160a01b031690565b6004546000906001600160a01b0316610c2f610e44565b6001600160a01b031614905090565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106ec5780601f106106c1576101008083540402835291602001916106ec565b610caa6108f9610e44565b610ce55760405162461bcd60e51b8152600401808060200182810382526030815260200180611c306030913960400191505060405180910390fd5b610cee816110e9565b50565b610d01610cfc610e44565b611131565b565b600061070a610d10610e44565b846108e785604051806060016040528060258152602001611d816025913960016000610d3a610e44565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61117916565b600061070a610d7e610e44565b8484611210565b6000610d9860038363ffffffff6112e616565b92915050565b6000610daa84846106f6565b610db357600080fd5b610dbf3385858561134d565b5060019392505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610dfc610c18565b610e3b576040805162461bcd60e51b81526020600482018190526024820152600080516020611ca9833981519152604482015290519081900360640190fd5b610cee816115bf565b3390565b6001600160a01b038316610e8d5760405162461bcd60e51b8152600401808060200182810382526024815260200180611d106024913960400191505060405180910390fd5b6001600160a01b038216610ed25760405162461bcd60e51b8152600401808060200182810382526022815260200180611b876022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000610f41848484611210565b610dbf84610f4d610e44565b6108e785604051806060016040528060288152602001611c81602891396001600160a01b038a16600090815260016020526040812090610f8b610e44565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61117916565b60008282018381101561100c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b61101d8282611660565b600754600160a81b900460ff168015611045575060075461010090046001600160a01b031615155b156110e55760075460408051634a39314960e01b81526000600482018190526001600160a01b03868116602484015260448301869052925161010090940490921692634a39314992606480840193602093929083900390910190829087803b1580156110b057600080fd5b505af11580156110c4573d6000803e3d6000fd5b505050506040513d60208110156110da57600080fd5b50516110e557600080fd5b5050565b6110fa60038263ffffffff61175016565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61114260038263ffffffff6117d116565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b600081848411156112085760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156111cd5781810151838201526020016111b5565b50505050905090810190601f1680156111fa5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b61121b838383611838565b600754600160a81b900460ff168015611243575060075461010090046001600160a01b031615155b156112e15760075460408051634a39314960e01b81526001600160a01b038681166004830152858116602483015260448201859052915161010090930490911691634a393149916064808201926020929091908290030181600087803b1580156112ac57600080fd5b505af11580156112c0573d6000803e3d6000fd5b505050506040513d60208110156112d657600080fd5b50516112e157600080fd5b505050565b60006001600160a01b03821661132d5760405162461bcd60e51b8152600401808060200182810382526022815260200180611cc96022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b632139e50b60e11b61135f8482611994565b61139a5760405162461bcd60e51b8152600401808060200182810382526031815260200180611ba96031913960400191505060405180910390fd5b60006060856001600160a01b0316838888888860405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561142357818101518382015260200161140b565b50505050905090810190601f1680156114505780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909a16999099178952518151919890975087965094509250829150849050835b602083106114b85780518252601f199092019160209182019101611499565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811461151a576040519150601f19603f3d011682016040523d82523d6000602084013e61151f565b606091505b50915091508181906115725760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156111cd5781810151838201526020016111b5565b5060208101519150816115b65760405162461bcd60e51b8152600401808060200182810382526028815260200180611d596028913960400191505060405180910390fd5b50505050505050565b6001600160a01b0381166116045760405162461bcd60e51b8152600401808060200182810382526026815260200180611b616026913960400191505060405180910390fd5b6004546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166116bb576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6002546116ce908263ffffffff610fb216565b6002556001600160a01b0382166000908152602081905260409020546116fa908263ffffffff610fb216565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b61175a82826112e6565b156117ac576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6117db82826112e6565b6118165760405162461bcd60e51b8152600401808060200182810382526021815260200180611c606021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6001600160a01b03831661187d5760405162461bcd60e51b8152600401808060200182810382526025815260200180611ceb6025913960400191505060405180910390fd5b6001600160a01b0382166118c25760405162461bcd60e51b8152600401808060200182810382526023815260200180611b3e6023913960400191505060405180910390fd5b61190581604051806060016040528060268152602001611bda602691396001600160a01b038616600090815260208190526040902054919063ffffffff61117916565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461193a908263ffffffff610fb216565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600061199f836119b0565b801561100c575061100c83836119e3565b60006119c3826301ffc9a760e01b6119e3565b8015610d9857506119dc826001600160e01b03196119e3565b1592915050565b60008060006119f28585611a09565b91509150818015611a005750805b95945050505050565b604080516001600160e01b0319831660248083019190915282518083039091018152604490910182526020810180516001600160e01b03166301ffc9a760e01b1781529151815160009384939284926060926001600160a01b038a169261753092879282918083835b60208310611a915780518252601f199092019160209182019101611a72565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303818686fa925050503d8060008114611af2576040519150601f19603f3d011682016040523d82523d6000602084013e611af7565b606091505b5091509150602081511015611b155760008094509450505050611b36565b81818060200190516020811015611b2b57600080fd5b505190955093505050505b925092905056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332304f6e417070726f76653a207370656e64657220646f65736e277420737570706f7274206f6e417070726f766545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636553656967546f6b656e3a206f6e6c792073656e646572206f7220726563697069656e742063616e207472616e736665724d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373544f4e3a20544f4e20646f65736e277420616c6c6f7720736574536569674d616e6167657245524332304f6e417070726f76653a206661696c656420746f2063616c6c206f6e417070726f766545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158205acbb5bfd5f6981d9718f217b2535ee43574f978327da90713ca318b5181142b64736f6c634300050c0032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f95780639865027511610097578063aa271e1a11610071578063aa271e1a1461052b578063cae9ca5114610551578063dd62ed3e1461060c578063f2fde38b1461063a576101c4565b806398650275146104cb578063a457c2d7146104d3578063a9059cbb146104ff576101c4565b80638da5cb5b116100d35780638da5cb5b1461048d5780638f32d59b1461049557806395d89b411461049d578063983b2d56146104a5576101c4565b806370a0823114610439578063715018a61461045f5780637657f20a14610467576101c4565b806339509351116101665780635f112c68116101405780635f112c68146103b957806363380113146103df5780636d435421146103e75780636fb7f55814610415576101c4565b8063395093511461033b57806340c10f191461036757806341eb24bb14610393576101c4565b806323b872dd116101a257806323b872dd146102a05780633113ed5c146102d6578063313ce567146102f757806338bf3cfa14610315576101c4565b806306fdde03146101c9578063095ea7b31461024657806318160ddd14610286575b600080fd5b6101d1610660565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561020b5781810151838201526020016101f3565b50505050905090810190601f1680156102385780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102726004803603604081101561025c57600080fd5b506001600160a01b0381351690602001356106f6565b604080519115158252519081900360200190f35b61028e610713565b60408051918252519081900360200190f35b610272600480360360608110156102b657600080fd5b506001600160a01b03813581169160208101359091169060400135610719565b6102f5600480360360208110156102ec57600080fd5b50351515610788565b005b6102ff6107ed565b6040805160ff9092168252519081900360200190f35b6102f56004803603602081101561032b57600080fd5b50356001600160a01b03166107f6565b6102726004803603604081101561035157600080fd5b506001600160a01b038135169060200135610893565b6102726004803603604081101561037d57600080fd5b506001600160a01b0381351690602001356108ec565b6102f5600480360360208110156103a957600080fd5b50356001600160a01b0316610943565b6102f5600480360360208110156103cf57600080fd5b50356001600160a01b03166109c5565b610272610a47565b6102f5600480360360408110156103fd57600080fd5b506001600160a01b0381358116916020013516610a57565b61041d610b12565b604080516001600160a01b039092168252519081900360200190f35b61028e6004803603602081101561044f57600080fd5b50356001600160a01b0316610b26565b6102f5610b41565b6102f56004803603602081101561047d57600080fd5b50356001600160a01b0316610bd2565b61041d610c09565b610272610c18565b6101d1610c3e565b6102f5600480360360208110156104bb57600080fd5b50356001600160a01b0316610c9f565b6102f5610cf1565b610272600480360360408110156104e957600080fd5b506001600160a01b038135169060200135610d03565b6102726004803603604081101561051557600080fd5b506001600160a01b038135169060200135610d71565b6102726004803603602081101561054157600080fd5b50356001600160a01b0316610d85565b6102726004803603606081101561056757600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561059757600080fd5b8201836020820111156105a957600080fd5b803590602001918460018302840111640100000000831117156105cb57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610d9e945050505050565b61028e6004803603604081101561062257600080fd5b506001600160a01b0381358116916020013516610dc9565b6102f56004803603602081101561065057600080fd5b50356001600160a01b0316610df4565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106ec5780601f106106c1576101008083540402835291602001916106ec565b820191906000526020600020905b8154815290600101906020018083116106cf57829003601f168201915b5050505050905090565b600061070a610703610e44565b8484610e48565b50600192915050565b60025490565b6000336001600160a01b038516148061073a5750336001600160a01b038416145b6107755760405162461bcd60e51b8152600401808060200182810382526030815260200180611c006030913960400191505060405180910390fd5b610780848484610f34565b949350505050565b610790610c18565b6107cf576040805162461bcd60e51b81526020600482018190526024820152600080516020611ca9833981519152604482015290519081900360640190fd5b60078054911515600160a81b0260ff60a81b19909216919091179055565b60075460ff1690565b6107fe610c18565b61083d576040805162461bcd60e51b81526020600482018190526024820152600080516020611ca9833981519152604482015290519081900360640190fd5b806001600160a01b031663715018a66040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561087857600080fd5b505af115801561088c573d6000803e3d6000fd5b5050505050565b600061070a6108a0610e44565b846108e785600160006108b1610e44565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610fb216565b610e48565b60006108fe6108f9610e44565b610d85565b6109395760405162461bcd60e51b8152600401808060200182810382526030815260200180611c306030913960400191505060405180910390fd5b61070a8383611013565b61094b610c18565b61098a576040805162461bcd60e51b81526020600482018190526024820152600080516020611ca9833981519152604482015290519081900360640190fd5b806001600160a01b0316636ef8d66d6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561087857600080fd5b6109cd610c18565b610a0c576040805162461bcd60e51b81526020600482018190526024820152600080516020611ca9833981519152604482015290519081900360640190fd5b806001600160a01b031663986502756040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561087857600080fd5b600754600160a81b900460ff1681565b610a5f610c18565b610a9e576040805162461bcd60e51b81526020600482018190526024820152600080516020611ca9833981519152604482015290519081900360640190fd5b816001600160a01b031663f2fde38b826040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b03168152602001915050600060405180830381600087803b158015610af657600080fd5b505af1158015610b0a573d6000803e3d6000fd5b505050505050565b60075461010090046001600160a01b031681565b6001600160a01b031660009081526020819052604090205490565b610b49610c18565b610b88576040805162461bcd60e51b81526020600482018190526024820152600080516020611ca9833981519152604482015290519081900360640190fd5b6004546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600480546001600160a01b0319169055565b60405162461bcd60e51b8152600401808060200182810382526025815260200180611d346025913960400191505060405180910390fd5b6004546001600160a01b031690565b6004546000906001600160a01b0316610c2f610e44565b6001600160a01b031614905090565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106ec5780601f106106c1576101008083540402835291602001916106ec565b610caa6108f9610e44565b610ce55760405162461bcd60e51b8152600401808060200182810382526030815260200180611c306030913960400191505060405180910390fd5b610cee816110e9565b50565b610d01610cfc610e44565b611131565b565b600061070a610d10610e44565b846108e785604051806060016040528060258152602001611d816025913960016000610d3a610e44565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61117916565b600061070a610d7e610e44565b8484611210565b6000610d9860038363ffffffff6112e616565b92915050565b6000610daa84846106f6565b610db357600080fd5b610dbf3385858561134d565b5060019392505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610dfc610c18565b610e3b576040805162461bcd60e51b81526020600482018190526024820152600080516020611ca9833981519152604482015290519081900360640190fd5b610cee816115bf565b3390565b6001600160a01b038316610e8d5760405162461bcd60e51b8152600401808060200182810382526024815260200180611d106024913960400191505060405180910390fd5b6001600160a01b038216610ed25760405162461bcd60e51b8152600401808060200182810382526022815260200180611b876022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000610f41848484611210565b610dbf84610f4d610e44565b6108e785604051806060016040528060288152602001611c81602891396001600160a01b038a16600090815260016020526040812090610f8b610e44565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61117916565b60008282018381101561100c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b61101d8282611660565b600754600160a81b900460ff168015611045575060075461010090046001600160a01b031615155b156110e55760075460408051634a39314960e01b81526000600482018190526001600160a01b03868116602484015260448301869052925161010090940490921692634a39314992606480840193602093929083900390910190829087803b1580156110b057600080fd5b505af11580156110c4573d6000803e3d6000fd5b505050506040513d60208110156110da57600080fd5b50516110e557600080fd5b5050565b6110fa60038263ffffffff61175016565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61114260038263ffffffff6117d116565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b600081848411156112085760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156111cd5781810151838201526020016111b5565b50505050905090810190601f1680156111fa5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b61121b838383611838565b600754600160a81b900460ff168015611243575060075461010090046001600160a01b031615155b156112e15760075460408051634a39314960e01b81526001600160a01b038681166004830152858116602483015260448201859052915161010090930490911691634a393149916064808201926020929091908290030181600087803b1580156112ac57600080fd5b505af11580156112c0573d6000803e3d6000fd5b505050506040513d60208110156112d657600080fd5b50516112e157600080fd5b505050565b60006001600160a01b03821661132d5760405162461bcd60e51b8152600401808060200182810382526022815260200180611cc96022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b632139e50b60e11b61135f8482611994565b61139a5760405162461bcd60e51b8152600401808060200182810382526031815260200180611ba96031913960400191505060405180910390fd5b60006060856001600160a01b0316838888888860405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561142357818101518382015260200161140b565b50505050905090810190601f1680156114505780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909a16999099178952518151919890975087965094509250829150849050835b602083106114b85780518252601f199092019160209182019101611499565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811461151a576040519150601f19603f3d011682016040523d82523d6000602084013e61151f565b606091505b50915091508181906115725760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156111cd5781810151838201526020016111b5565b5060208101519150816115b65760405162461bcd60e51b8152600401808060200182810382526028815260200180611d596028913960400191505060405180910390fd5b50505050505050565b6001600160a01b0381166116045760405162461bcd60e51b8152600401808060200182810382526026815260200180611b616026913960400191505060405180910390fd5b6004546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166116bb576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6002546116ce908263ffffffff610fb216565b6002556001600160a01b0382166000908152602081905260409020546116fa908263ffffffff610fb216565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b61175a82826112e6565b156117ac576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6117db82826112e6565b6118165760405162461bcd60e51b8152600401808060200182810382526021815260200180611c606021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6001600160a01b03831661187d5760405162461bcd60e51b8152600401808060200182810382526025815260200180611ceb6025913960400191505060405180910390fd5b6001600160a01b0382166118c25760405162461bcd60e51b8152600401808060200182810382526023815260200180611b3e6023913960400191505060405180910390fd5b61190581604051806060016040528060268152602001611bda602691396001600160a01b038616600090815260208190526040902054919063ffffffff61117916565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461193a908263ffffffff610fb216565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600061199f836119b0565b801561100c575061100c83836119e3565b60006119c3826301ffc9a760e01b6119e3565b8015610d9857506119dc826001600160e01b03196119e3565b1592915050565b60008060006119f28585611a09565b91509150818015611a005750805b95945050505050565b604080516001600160e01b0319831660248083019190915282518083039091018152604490910182526020810180516001600160e01b03166301ffc9a760e01b1781529151815160009384939284926060926001600160a01b038a169261753092879282918083835b60208310611a915780518252601f199092019160209182019101611a72565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303818686fa925050503d8060008114611af2576040519150601f19603f3d011682016040523d82523d6000602084013e611af7565b606091505b5091509150602081511015611b155760008094509450505050611b36565b81818060200190516020811015611b2b57600080fd5b505190955093505050505b925092905056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332304f6e417070726f76653a207370656e64657220646f65736e277420737570706f7274206f6e417070726f766545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636553656967546f6b656e3a206f6e6c792073656e646572206f7220726563697069656e742063616e207472616e736665724d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373544f4e3a20544f4e20646f65736e277420616c6c6f7720736574536569674d616e6167657245524332304f6e417070726f76653a206661696c656420746f2063616c6c206f6e417070726f766545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158205acbb5bfd5f6981d9718f217b2535ee43574f978327da90713ca318b5181142b64736f6c634300050c0032

Deployed Bytecode Sourcemap

38270:272:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38270:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24017:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;24017:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14689:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14689:152:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;13710:91;;;:::i;:::-;;;;;;;;;;;;;;;;37047:275;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;37047:275:0;;;;;;;;;;;;;;;;;:::i;36728:113::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36728:113:0;;;;:::i;:::-;;24869:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36228:114;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36228:114:0;-1:-1:-1;;;;;36228:114:0;;:::i;16026:210::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16026:210:0;;;;;;;;:::i;23147:143::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23147:143:0;;;;;;;;:::i;36103:119::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36103:119:0;-1:-1:-1;;;;;36103:119:0;;:::i;35978:::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35978:119:0;-1:-1:-1;;;;;35978:119:0;;:::i;36694:27::-;;;:::i;36348:140::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;36348:140:0;;;;;;;;;;:::i;36658:31::-;;;:::i;:::-;;;;-1:-1:-1;;;;;36658:31:0;;;;;;;;;;;;;;13864:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13864:110:0;-1:-1:-1;;;;;13864:110:0;;:::i;2979:140::-;;;:::i;38419:120::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38419:120:0;-1:-1:-1;;;;;38419:120:0;;:::i;2168:79::-;;;:::i;2534:94::-;;;:::i;24219:87::-;;;:::i;22164:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22164:92:0;-1:-1:-1;;;;;22164:92:0;;:::i;22264:79::-;;;:::i;16739:261::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16739:261:0;;;;;;;;:::i;14187:158::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14187:158:0;;;;;;;;:::i;22047:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22047:109:0;-1:-1:-1;;;;;22047:109:0;;:::i;34552:218::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;34552:218:0;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;34552:218:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;34552:218:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;34552:218:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;34552:218:0;;-1:-1:-1;34552:218:0;;-1:-1:-1;;;;;34552:218:0:i;14408:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14408:134:0;;;;;;;;;;:::i;3274:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3274:109:0;-1:-1:-1;;;;;3274:109:0;;:::i;24017:83::-;24087:5;24080:12;;;;;;;;-1:-1:-1;;24080:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24054:13;;24080:12;;24087:5;;24080:12;;24087:5;24080:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24017:83;:::o;14689:152::-;14755:4;14772:39;14781:12;:10;:12::i;:::-;14795:7;14804:6;14772:8;:39::i;:::-;-1:-1:-1;14829:4:0;14689:152;;;;:::o;13710:91::-;13781:12;;13710:91;:::o;37047:275::-;37136:4;37157:10;-1:-1:-1;;;;;37157:20:0;;;;:47;;-1:-1:-1;37181:10:0;-1:-1:-1;;;;;37181:23:0;;;37157:47;37149:108;;;;-1:-1:-1;;;37149:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37271:45;37290:6;37298:9;37309:6;37271:18;:45::i;:::-;37264:52;37047:275;-1:-1:-1;;;;37047:275:0:o;36728:113::-;2380:9;:7;:9::i;:::-;2372:54;;;;;-1:-1:-1;;;2372:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2372:54:0;;;;;;;;;;;;;;;36801:15;:34;;;;;-1:-1:-1;;;36801:34:0;-1:-1:-1;;;;36801:34:0;;;;;;;;;36728:113::o;24869:83::-;24935:9;;;;24869:83;:::o;36228:114::-;2380:9;:7;:9::i;:::-;2372:54;;;;;-1:-1:-1;;;2372:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2372:54:0;;;;;;;;;;;;;;;36309:6;-1:-1:-1;;;;;36295:39:0;;:41;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36295:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36295:41:0;;;;36228:114;:::o;16026:210::-;16106:4;16123:83;16132:12;:10;:12::i;:::-;16146:7;16155:50;16194:10;16155:11;:25;16167:12;:10;:12::i;:::-;-1:-1:-1;;;;;16155:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16155:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;:::-;16123:8;:83::i;23147:143::-;23221:4;21944:22;21953:12;:10;:12::i;:::-;21944:8;:22::i;:::-;21936:83;;;;-1:-1:-1;;;21936:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23238:22;23244:7;23253:6;23238:5;:22::i;36103:119::-;2380:9;:7;:9::i;:::-;2372:54;;;;;-1:-1:-1;;;2372:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2372:54:0;;;;;;;;;;;;;;;36192:6;-1:-1:-1;;;;;36167:47:0;;:49;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;35978:119:0;2380:9;:7;:9::i;:::-;2372:54;;;;;-1:-1:-1;;;2372:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2372:54:0;;;;;;;;;;;;;;;36067:6;-1:-1:-1;;;;;36042:47:0;;:49;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;36694:27:0;;;-1:-1:-1;;;36694:27:0;;;;;:::o;36348:140::-;2380:9;:7;:9::i;:::-;2372:54;;;;;-1:-1:-1;;;2372:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2372:54:0;;;;;;;;;;;;;;;36447:6;-1:-1:-1;;;;;36433:39:0;;36473:8;36433:49;;;;;;;;;;;;;-1:-1:-1;;;;;36433:49:0;-1:-1:-1;;;;;36433:49:0;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36433:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36433:49:0;;;;36348:140;;:::o;36658:31::-;;;;;;-1:-1:-1;;;;;36658:31:0;;:::o;13864:110::-;-1:-1:-1;;;;;13948:18:0;13921:7;13948:18;;;;;;;;;;;;13864:110::o;2979:140::-;2380:9;:7;:9::i;:::-;2372:54;;;;;-1:-1:-1;;;2372:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2372:54:0;;;;;;;;;;;;;;;3062:6;;3041:40;;3078:1;;-1:-1:-1;;;;;3062:6:0;;3041:40;;3078:1;;3041:40;3092:6;:19;;-1:-1:-1;;;;;;3092:19:0;;;2979:140::o;38419:120::-;38486:47;;-1:-1:-1;;;38486:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2168:79;2233:6;;-1:-1:-1;;;;;2233:6:0;2168:79;:::o;2534:94::-;2614:6;;2574:4;;-1:-1:-1;;;;;2614:6:0;2598:12;:10;:12::i;:::-;-1:-1:-1;;;;;2598:22:0;;2591:29;;2534:94;:::o;24219:87::-;24291:7;24284:14;;;;;;;;-1:-1:-1;;24284:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24258:13;;24284:14;;24291:7;;24284:14;;24291:7;24284:14;;;;;;;;;;;;;;;;;;;;;;;;22164:92;21944:22;21953:12;:10;:12::i;21944:22::-;21936:83;;;;-1:-1:-1;;;21936:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22229:19;22240:7;22229:10;:19::i;:::-;22164:92;:::o;22264:79::-;22308:27;22322:12;:10;:12::i;:::-;22308:13;:27::i;:::-;22264:79::o;16739:261::-;16824:4;16841:129;16850:12;:10;:12::i;:::-;16864:7;16873:96;16912:15;16873:96;;;;;;;;;;;;;;;;;:11;:25;16885:12;:10;:12::i;:::-;-1:-1:-1;;;;;16873:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16873:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;14187:158::-;14256:4;14273:42;14283:12;:10;:12::i;:::-;14297:9;14308:6;14273:9;:42::i;22047:109::-;22103:4;22127:21;:8;22140:7;22127:21;:12;:21;:::i;:::-;22120:28;22047:109;-1:-1:-1;;22047:109:0:o;34552:218::-;34644:4;34665:24;34673:7;34682:6;34665:7;:24::i;:::-;34657:33;;;;;;34697:49;34712:10;34724:7;34733:6;34741:4;34697:14;:49::i;:::-;-1:-1:-1;34760:4:0;34552:218;;;;;:::o;14408:134::-;-1:-1:-1;;;;;14507:18:0;;;14480:7;14507:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14408:134::o;3274:109::-;2380:9;:7;:9::i;:::-;2372:54;;;;;-1:-1:-1;;;2372:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2372:54:0;;;;;;;;;;;;;;;3347:28;3366:8;3347:18;:28::i;866:98::-;946:10;866:98;:::o;19670:338::-;-1:-1:-1;;;;;19764:19:0;;19756:68;;;;-1:-1:-1;;;19756:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19843:21:0;;19835:68;;;;-1:-1:-1;;;19835:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19916:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19968:32;;;;;;;;;;;;;;;;;19670:338;;;:::o;15313:304::-;15402:4;15419:36;15429:6;15437:9;15448:6;15419:9;:36::i;:::-;15466:121;15475:6;15483:12;:10;:12::i;:::-;15497:89;15535:6;15497:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15497:19:0;;;;;;:11;:19;;;;;;15517:12;:10;:12::i;:::-;-1:-1:-1;;;;;15497:33:0;;;;;;;;;;;;-1:-1:-1;15497:33:0;;;:89;;:37;:89;:::i;7534:181::-;7592:7;7624:5;;;7648:6;;;;7640:46;;;;;-1:-1:-1;;;7640:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7706:1;7534:181;-1:-1:-1;;;7534:181:0:o;37608:240::-;37672:28;37684:7;37693:6;37672:11;:28::i;:::-;37711:15;;-1:-1:-1;;;37711:15:0;;;;:53;;;;-1:-1:-1;37738:11:0;;;;;-1:-1:-1;;;;;37738:11:0;37730:34;;37711:53;37707:136;;;37783:11;;:51;;;-1:-1:-1;;;37783:51:0;;37814:1;37783:51;;;;;;-1:-1:-1;;;;;37783:51:0;;;;;;;;;;;;;;;:11;;;;;;;;:22;;:51;;;;;;;;;;;;;;;;;;:11;:51;;;5:2:-1;;;;30:1;27;20:12;5:2;37783:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37783:51:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37783:51:0;37775:60;;;;;;37608:240;;:::o;22351:122::-;22408:21;:8;22421:7;22408:21;:12;:21;:::i;:::-;22445:20;;-1:-1:-1;;;;;22445:20:0;;;;;;;;22351:122;:::o;22481:130::-;22541:24;:8;22557:7;22541:24;:15;:24;:::i;:::-;22581:22;;-1:-1:-1;;;;;22581:22:0;;;;;;;;22481:130;:::o;8463:192::-;8549:7;8585:12;8577:6;;;;8569:29;;;;-1:-1:-1;;;8569:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;8569:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8621:5:0;;;8463:192::o;37328:274::-;37414:42;37430:6;37438:9;37449:6;37414:15;:42::i;:::-;37467:15;;-1:-1:-1;;;37467:15:0;;;;:53;;;;-1:-1:-1;37494:11:0;;;;;-1:-1:-1;;;;;37494:11:0;37486:34;;37467:53;37463:134;;;37539:11;;:49;;;-1:-1:-1;;;37539:49:0;;-1:-1:-1;;;;;37539:49:0;;;;;;;;;;;;;;;;;;;;;;:11;;;;;;;;:22;;:49;;;;;;;;;;;;;;;-1:-1:-1;37539:11:0;:49;;;5:2:-1;;;;30:1;27;20:12;5:2;37539:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37539:49:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37539:49:0;37531:58;;;;;;37328:274;;;:::o;21304:203::-;21376:4;-1:-1:-1;;;;;21401:21:0;;21393:68;;;;-1:-1:-1;;;21393:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21479:20:0;:11;:20;;;;;;;;;;;;;;;21304:203::o;34776:771::-;-1:-1:-1;;;34964:60:0;34920:7;34910:37;34964:32;:60::i;:::-;34956:129;;;;-1:-1:-1;;;34956:129:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35095:7;35104:16;35124:7;-1:-1:-1;;;;;35124:12:0;35178:17;35206:5;35222:7;35240:6;35257:4;35145:125;;;;;;-1:-1:-1;;;;;35145:125:0;-1:-1:-1;;;;;35145:125:0;;;;;;-1:-1:-1;;;;;35145:125:0;-1:-1:-1;;;;;35145:125:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;35145:125:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35145:125:0;;;-1:-1:-1;;26:21;;;22:32;6:49;;35145:125:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;;;;35145:125:0;;;179:29:-1;;;;160:49;;35124:153:0;;;35145:125;;35124:153;;-1:-1:-1;35124:153:0;;-1:-1:-1;25:18;-1:-1;35124:153:0;-1:-1:-1;35124:153:0;;-1:-1:-1;35124:153:0;;-1:-1:-1;25:18;36:153;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;35124:153:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;35094:183:0;;;;35342:2;35353:3;35334:24;;;;;-1:-1:-1;;;35334:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;35334:24:0;;35406:4;35401:3;35397:14;35391:21;35385:27;;35494:2;35486:55;;;;-1:-1:-1;;;35486:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34776:771;;;;;;;:::o;3489:229::-;-1:-1:-1;;;;;3563:22:0;;3555:73;;;;-1:-1:-1;;;3555:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3665:6;;3644:38;;-1:-1:-1;;;;;3644:38:0;;;;3665:6;;3644:38;;3665:6;;3644:38;3693:6;:17;;-1:-1:-1;;;;;;3693:17:0;-1:-1:-1;;;;;3693:17:0;;;;;;;;;;3489:229::o;18242:308::-;-1:-1:-1;;;;;18318:21:0;;18310:65;;;;;-1:-1:-1;;;18310:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18403:12;;:24;;18420:6;18403:24;:16;:24;:::i;:::-;18388:12;:39;-1:-1:-1;;;;;18459:18:0;;:9;:18;;;;;;;;;;;:30;;18482:6;18459:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;18438:18:0;;:9;:18;;;;;;;;;;;:51;;;;18505:37;;;;;;;18438:18;;:9;;18505:37;;;;;;;;;;18242:308;;:::o;20768:178::-;20846:18;20850:4;20856:7;20846:3;:18::i;:::-;20845:19;20837:63;;;;;-1:-1:-1;;;20837:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20911:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;20911:27:0;20934:4;20911:27;;;20768:178::o;21026:183::-;21106:18;21110:4;21116:7;21106:3;:18::i;:::-;21098:64;;;;-1:-1:-1;;;21098:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21173:20:0;21196:5;21173:20;;;;;;;;;;;:28;;-1:-1:-1;;21173:28:0;;;21026:183::o;17490:471::-;-1:-1:-1;;;;;17588:20:0;;17580:70;;;;-1:-1:-1;;;17580:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17669:23:0;;17661:71;;;;-1:-1:-1;;;17661:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17765;17787:6;17765:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17765:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;17745:17:0;;;:9;:17;;;;;;;;;;;:91;;;;17870:20;;;;;;;:32;;17895:6;17870:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;17847:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;17918:35;;;;;;;17847:20;;17918:35;;;;;;;;;;;;;17490:471;;;:::o;26388:292::-;26476:4;26585:24;26601:7;26585:15;:24::i;:::-;:87;;;;;26626:46;26651:7;26660:11;26626:24;:46::i;25762:400::-;25827:4;26025:55;26050:7;-1:-1:-1;;;26025:24:0;:55::i;:::-;:129;;;;-1:-1:-1;26098:56:0;26123:7;-1:-1:-1;;;;;;26098:24:0;:56::i;:::-;26097:57;;25762:400;-1:-1:-1;;25762:400:0:o;28282:401::-;28375:4;28557:12;28571:11;28586:50;28615:7;28624:11;28586:28;:50::i;:::-;28556:80;;;;28657:7;:17;;;;;28668:6;28657:17;28649:26;28282:401;-1:-1:-1;;;;;28282:401:0:o;29210:450::-;29391:57;;;-1:-1:-1;;;;;;29391:57:0;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;29391:57:0;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;29497:44:0;;;;29334:4;;;;29391:57;29334:4;;29362:26;;-1:-1:-1;;;;;29497:18:0;;;29520:5;;29391:57;;29497:44;;;;25:18:-1;36:153;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;29497:44:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;29459:82:0;;;;29572:2;29556:6;:13;:18;29552:45;;;29584:5;29591;29576:21;;;;;;;;;29552:45;29616:7;29636:6;29625:26;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29625:26:0;29608:44;;-1:-1:-1;29625:26:0;-1:-1:-1;;;;29210:450:0;;;;;;:::o

Swarm Source

bzzr://5acbb5bfd5f6981d9718f217b2535ee43574f978327da90713ca318b5181142b
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.