ETH Price: $3,098.63 (-5.88%)
Gas: 8 Gwei

Token

Revomon (REVO)
 

Overview

Max Total Supply

100,000,000 REVO

Holders

3,108 (0.00%)

Market

Price

$0.01 @ 0.000004 ETH

Onchain Market Cap

$1,127,051.00

Circulating Supply Market Cap

$399,457.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
481.312446954611282538 REVO

Value
$5.42 ( ~0.00174916216072507 Eth) [0.0005%]
0x924e8fc81484781b8057db784266017fce1af136
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Revomon is an exciting online RPG that combines an immersive virtual reality experience with groundbreaking NFT blockchain technology.

Market

Volume (24H):$61.31
Market Capitalization:$399,457.00
Circulating Supply:35,442,720.00 REVO
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RevomonToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv2 license, Audited

Contract Source Code (Solidity)Audit Report

/**
 *Submitted for verification at Etherscan.io on 2021-03-24
*/

pragma solidity ^0.6.0;


interface IERC20 {
    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function transfer(address recipient, uint256 amount) external returns (bool);

    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }

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

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


library EnumerableSet {

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }


    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }


    struct AddressSet {
        Set _inner;
    }

    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(value)));
    }

    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(value)));
    }

    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(value)));
    }

    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint256(_at(set._inner, index)));
    }



    struct UintSet {
        Set _inner;
    }

    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}


contract Ownable is Context {
    address private _owner;

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

    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

library Address {
    function isContract(address account) internal view returns (bool) {
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }


    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }
}


abstract contract AccessControl is Context {
    using EnumerableSet for EnumerableSet.AddressSet;
    using Address for address;

    struct RoleData {
        EnumerableSet.AddressSet members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    function hasRole(bytes32 role, address account) public view returns (bool) {
        return _roles[role].members.contains(account);
    }

    function getRoleMemberCount(bytes32 role) public view returns (uint256) {
        return _roles[role].members.length();
    }

    function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
        return _roles[role].members.at(index);
    }

    function getRoleAdmin(bytes32 role) public view returns (bytes32) {
        return _roles[role].adminRole;
    }

    function grantRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    function revokeRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    function renounceRole(bytes32 role, address account) public virtual {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (_roles[role].members.add(account)) {
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (_roles[role].members.remove(account)) {
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

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.
     */
    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.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        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.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

    /**
     * @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. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * 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;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override 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 virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override 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 virtual override 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 virtual 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 virtual 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 virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _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 virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _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 virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _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 virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

contract TokenRecover is Ownable {

    /**
     * @dev Remember that only owner can call so be careful when use on contracts generated from other contracts.
     * @param tokenAddress The token contract address
     * @param tokenAmount Number of tokens to be sent
     */
    function recoverERC20(address tokenAddress, uint256 tokenAmount) public onlyOwner {
        IERC20(tokenAddress).transfer(owner(), tokenAmount);
    }
}

abstract contract ERC20Burnable is Context, ERC20 {
 
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    function burnFrom(address account, uint256 amount) public virtual {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}

interface IERC165 {

    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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) public view override 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 virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

interface IERC1363 is IERC20, IERC165 {


    function transferAndCall(address to, uint256 value) external returns (bool);

    function transferAndCall(address to, uint256 value, bytes calldata data) external returns (bool);

    function transferFromAndCall(address from, address to, uint256 value) external returns (bool);

    function transferFromAndCall(address from, address to, uint256 value, bytes calldata data) external returns (bool);

    function approveAndCall(address spender, uint256 value) external returns (bool);

    function approveAndCall(address spender, uint256 value, bytes calldata data) external returns (bool);
}

contract Roles is AccessControl {

    bytes32 public constant MINTER_ROLE = keccak256("MINTER");
    bytes32 public constant OPERATOR_ROLE = keccak256("OPERATOR");

    constructor () public {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(OPERATOR_ROLE, _msgSender());
    }

    modifier onlyMinter() {
        require(hasRole(MINTER_ROLE, _msgSender()), "Roles: caller does not have the MINTER role");
        _;
    }

    modifier onlyOperator() {
        require(hasRole(OPERATOR_ROLE, _msgSender()), "Roles: caller does not have the OPERATOR role");
        _;
    }
}

interface IERC1363Receiver {

    function onTransferReceived(address operator, address from, uint256 value, bytes calldata data) external returns (bytes4); // solhint-disable-line  max-line-length
}

interface IERC1363Spender {
    function onApprovalReceived(address owner, uint256 value, bytes calldata data) external returns (bytes4);
}


contract ERC1363 is ERC20, IERC1363, ERC165 {
    using Address for address;

    bytes4 internal constant _INTERFACE_ID_ERC1363_TRANSFER = 0x4bbee2df;

    bytes4 internal constant _INTERFACE_ID_ERC1363_APPROVE = 0xfb9ec8ce;

    bytes4 private constant _ERC1363_RECEIVED = 0x88a7ca5c;

    bytes4 private constant _ERC1363_APPROVED = 0x7b04a2d0;

    constructor (
        string memory name,
        string memory symbol
    ) public payable ERC20(name, symbol) {
        // register the supported interfaces to conform to ERC1363 via ERC165
        _registerInterface(_INTERFACE_ID_ERC1363_TRANSFER);
        _registerInterface(_INTERFACE_ID_ERC1363_APPROVE);
    }

    function transferAndCall(address to, uint256 value) public override returns (bool) {
        return transferAndCall(to, value, "");
    }

    function transferAndCall(address to, uint256 value, bytes memory data) public override returns (bool) {
        transfer(to, value);
        require(_checkAndCallTransfer(_msgSender(), to, value, data), "ERC1363: _checkAndCallTransfer reverts");
        return true;
    }

    function transferFromAndCall(address from, address to, uint256 value) public override returns (bool) {
        return transferFromAndCall(from, to, value, "");
    }

    function transferFromAndCall(address from, address to, uint256 value, bytes memory data) public override returns (bool) {
        transferFrom(from, to, value);
        require(_checkAndCallTransfer(from, to, value, data), "ERC1363: _checkAndCallTransfer reverts");
        return true;
    }

    function approveAndCall(address spender, uint256 value) public override returns (bool) {
        return approveAndCall(spender, value, "");
    }

    function approveAndCall(address spender, uint256 value, bytes memory data) public override returns (bool) {
        approve(spender, value);
        require(_checkAndCallApprove(spender, value, data), "ERC1363: _checkAndCallApprove reverts");
        return true;
    }

    function _checkAndCallTransfer(address from, address to, uint256 value, bytes memory data) internal returns (bool) {
        if (!to.isContract()) {
            return false;
        }
        bytes4 retval = IERC1363Receiver(to).onTransferReceived(
            _msgSender(), from, value, data
        );
        return (retval == _ERC1363_RECEIVED);
    }

    function _checkAndCallApprove(address spender, uint256 value, bytes memory data) internal returns (bool) {
        if (!spender.isContract()) {
            return false;
        }
        bytes4 retval = IERC1363Spender(spender).onApprovalReceived(
            _msgSender(), value, data
        );
        return (retval == _ERC1363_APPROVED);
    }
}


abstract contract ERC20Capped is ERC20 {
    uint256 private _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor (uint256 cap) public {
        require(cap > 0, "ERC20Capped: cap is 0");
        _cap = cap;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - minted tokens must not cause the total supply to go over the cap.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        if (from == address(0)) { // When minting tokens
            require(totalSupply().add(amount) <= _cap, "ERC20Capped: cap exceeded");
        }
    }
}


/**
 * @title RevomonToken
 * @author RevomonToken (https://github.com/RevomonVR/Contracts)
 */
contract RevomonToken is ERC20Capped, ERC20Burnable, ERC1363, Roles, TokenRecover {

    constructor(
        string memory name,
        string memory symbol,
        uint8 decimals,
        uint256 cap,
        uint256 initialSupply) public ERC20Capped(cap) ERC1363(name, symbol) {
        
        require(cap == initialSupply, "RevomonToken: cap must be equal to initialSupply");

        _setupDecimals(decimals);

        if (initialSupply > 0) {
            _mint(owner(), initialSupply);
        }
    }


    /**
     * Transfer tokens to a specified address.
     * @param to The address to transfer to
     * @param value The amount to be transferred
     * @return A boolean that indicates if the operation was successful.
     */
    function transfer(address to, uint256 value) public virtual override(ERC20) returns (bool) {
        return super.transfer(to, value);
    }

    /**
     * Transfer tokens from one address to another.
     * @param from The address which you want to send tokens from
     * @param to The address which you want to transfer to
     * @param value the amount of tokens to be transferred
     * @return A boolean that indicates if the operation was successful.
     */
    function transferFrom(address from, address to, uint256 value) public virtual override(ERC20) returns (bool) {
        return super.transferFrom(from, to, value);
    }

    /**
     * See {ERC20-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20Capped) {
        super._beforeTokenTransfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"uint256","name":"cap","type":"uint256"},{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferFromAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFromAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162003e5038038062003e50833981810160405260a08110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b838201915060208201858111156200006f57600080fd5b82518660018202830111640100000000821117156200008d57600080fd5b8083526020830192505050908051906020019080838360005b83811015620000c3578082015181840152602081019050620000a6565b50505050905090810190601f168015620000f15780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011557600080fd5b838201915060208201858111156200012c57600080fd5b82518660018202830111640100000000821117156200014a57600080fd5b8083526020830192505050908051906020019080838360005b838110156200018057808201518184015260208101905062000163565b50505050905090810190601f168015620001ae5780820380516001836020036101000a031916815260200191505b5060405260200180519060200190929190805190602001909291908051906020019092919050505084848382828160039080519060200190620001f392919062000b5e565b5080600490805190602001906200020c92919062000b5e565b506012600560006101000a81548160ff021916908360ff160217905550505060008111620002a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f45524332304361707065643a206361702069732030000000000000000000000081525060200191505060405180910390fd5b8060068190555050620002c26301ffc9a760e01b620004ed60201b60201c565b620002da634bbee2df60e01b620004ed60201b60201c565b620002f263fb9ec8ce60e01b620004ed60201b60201c565b5050620003186000801b6200030c620005f760201b60201c565b620005ff60201b60201c565b620003597ff0887ba65ee2024ea881d91b74c2450ef19e1557f03bed3ea9f16b037cbe2dc96200034d620005f760201b60201c565b620005ff60201b60201c565b6200039a7f523a704056dcd17bcf83bed8b68c59416dac1119be77755efe3bde0a64e46e0c6200038e620005f760201b60201c565b620005ff60201b60201c565b6000620003ac620005f760201b60201c565b905080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350808214620004a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018062003e206030913960400191505060405180910390fd5b620004b6836200061560201b60201c565b6000811115620004e257620004e1620004d46200063360201b60201c565b826200065d60201b60201c565b5b505050505062000c04565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156200058a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b600160076000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b6200061182826200083b60201b60201c565b5050565b80600560006101000a81548160ff021916908360ff16021790555050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000701576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6200071560008383620008df60201b60201c565b6200073181600254620008fc60201b62001daa1790919060201c565b6002819055506200078f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620008fc60201b62001daa1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6200086a81600860008581526020019081526020016000206000016200098560201b62001e321790919060201c565b15620008db5762000880620005f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b620008f7838383620009bd60201b62001e621760201c565b505050565b6000808284019050838110156200097b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000620009b5836000018373ffffffffffffffffffffffffffffffffffffffff1660001b62000ab260201b60201c565b905092915050565b620009d583838362000b2c60201b62001f391760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000aad5760065462000a378262000a2362000b3160201b60201c565b620008fc60201b62001daa1790919060201c565b111562000aac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f45524332304361707065643a206361702065786365656465640000000000000081525060200191505060405180910390fd5b5b505050565b600062000ac6838362000b3b60201b60201c565b62000b2157826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000b26565b600090505b92915050565b505050565b6000600254905090565b600080836001016000848152602001908152602001600020541415905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000ba157805160ff191683800117855562000bd2565b8280016001018555821562000bd2579182015b8281111562000bd157825182559160200191906001019062000bb4565b5b50905062000be1919062000be5565b5090565b5b8082111562000c0057600081600090555060010162000be6565b5090565b61320c8062000c146000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c806379cc679011610125578063c1d34b89116100ad578063d547741f1161007c578063d547741f14610d4b578063d8fbe99414610d99578063dd62ed3e14610e1d578063f2fde38b14610e95578063f5b541a614610ed957610211565b8063c1d34b8914610ad5578063ca15c87314610bf0578063cae9ca5114610c32578063d539139314610d2d57610211565b806391d14854116100f457806391d148541461090857806395d89b411461096c578063a217fddf146109ef578063a457c2d714610a0d578063a9059cbb14610a7157610211565b806379cc6790146107d65780638980f11f146108245780638da5cb5b146108725780639010d07c146108a657610211565b8063313ce567116101a8578063395093511161017757806339509351146105e75780634000aea01461064b57806342966c681461074657806370a0823114610774578063715018a6146107cc57610211565b8063313ce567146104f65780633177029f14610517578063355274ea1461057b57806336568abe1461059957610211565b806318160ddd116101e457806318160ddd146103c457806323b872dd146103e2578063248a9ca3146104665780632f2ff15d146104a857610211565b806301ffc9a71461021657806306fdde0314610279578063095ea7b3146102fc5780631296ee6214610360575b600080fd5b6102616004803603602081101561022c57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610ef7565b60405180821515815260200191505060405180910390f35b610281610f5f565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102c15780820151818401526020810190506102a6565b50505050905090810190601f1680156102ee5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103486004803603604081101561031257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611001565b60405180821515815260200191505060405180910390f35b6103ac6004803603604081101561037657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061101f565b60405180821515815260200191505060405180910390f35b6103cc611043565b6040518082815260200191505060405180910390f35b61044e600480360360608110156103f857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061104d565b60405180821515815260200191505060405180910390f35b6104926004803603602081101561047c57600080fd5b8101908080359060200190929190505050611063565b6040518082815260200191505060405180910390f35b6104f4600480360360408110156104be57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611083565b005b6104fe61110d565b604051808260ff16815260200191505060405180910390f35b6105636004803603604081101561052d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611124565b60405180821515815260200191505060405180910390f35b610583611148565b6040518082815260200191505060405180910390f35b6105e5600480360360408110156105af57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611152565b005b610633600480360360408110156105fd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111eb565b60405180821515815260200191505060405180910390f35b61072e6004803603606081101561066157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001906401000000008111156106a857600080fd5b8201836020820111156106ba57600080fd5b803590602001918460018302840111640100000000831117156106dc57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061129e565b60405180821515815260200191505060405180910390f35b6107726004803603602081101561075c57600080fd5b810190808035906020019092919050505061131e565b005b6107b66004803603602081101561078a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611332565b6040518082815260200191505060405180910390f35b6107d461137a565b005b610822600480360360408110156107ec57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611505565b005b6108706004803603604081101561083a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611567565b005b61087a6116e9565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108dc600480360360408110156108bc57600080fd5b810190808035906020019092919080359060200190929190505050611713565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109546004803603604081101561091e57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611745565b60405180821515815260200191505060405180910390f35b610974611777565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109b4578082015181840152602081019050610999565b50505050905090810190601f1680156109e15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6109f7611819565b6040518082815260200191505060405180910390f35b610a5960048036036040811015610a2357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611820565b60405180821515815260200191505060405180910390f35b610abd60048036036040811015610a8757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506118ed565b60405180821515815260200191505060405180910390f35b610bd860048036036080811015610aeb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610b5257600080fd5b820183602082011115610b6457600080fd5b80359060200191846001830284011164010000000083111715610b8657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611901565b60405180821515815260200191505060405180910390f35b610c1c60048036036020811015610c0657600080fd5b810190808035906020019092919050505061197c565b6040518082815260200191505060405180910390f35b610d1560048036036060811015610c4857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610c8f57600080fd5b820183602082011115610ca157600080fd5b80359060200191846001830284011164010000000083111715610cc357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506119a3565b60405180821515815260200191505060405180910390f35b610d35611a1b565b6040518082815260200191505060405180910390f35b610d9760048036036040811015610d6157600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a3f565b005b610e0560048036036060811015610daf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ac9565b60405180821515815260200191505060405180910390f35b610e7f60048036036040811015610e3357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611aef565b6040518082815260200191505060405180910390f35b610ed760048036036020811015610eab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b76565b005b610ee1611d86565b6040518082815260200191505060405180910390f35b600060076000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ff75780601f10610fcc57610100808354040283529160200191610ff7565b820191906000526020600020905b815481529060010190602001808311610fda57829003601f168201915b5050505050905090565b600061101561100e611f3e565b8484611f46565b6001905092915050565b600061103b83836040518060200160405280600081525061129e565b905092915050565b6000600254905090565b600061105a84848461213d565b90509392505050565b600060086000838152602001908152602001600020600201549050919050565b6110aa60086000848152602001908152602001600020600201546110a5611f3e565b611745565b6110ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180612f93602f913960400191505060405180910390fd5b6111098282612216565b5050565b6000600560009054906101000a900460ff16905090565b60006111408383604051806020016040528060008152506119a3565b905092915050565b6000600654905090565b61115a611f3e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806131a8602f913960400191505060405180910390fd5b6111e782826122aa565b5050565b60006112946111f8611f3e565b8461128f8560016000611209611f3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611daa90919063ffffffff16565b611f46565b6001905092915050565b60006112aa84846118ed565b506112be6112b6611f3e565b85858561233e565b611313576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806130a76026913960400191505060405180910390fd5b600190509392505050565b61132f611329611f3e565b82612502565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611382611f3e565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611444576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000611544826040518060600160405280602481526020016130f56024913961153586611530611f3e565b611aef565b6126c69092919063ffffffff16565b905061155883611552611f3e565b83611f46565b6115628383612502565b505050565b61156f611f3e565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611631576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6116556116e9565b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156116a957600080fd5b505af11580156116bd573d6000803e3d6000fd5b505050506040513d60208110156116d357600080fd5b8101908080519060200190929190505050505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061173d826008600086815260200190815260200160002060000161278690919063ffffffff16565b905092915050565b600061176f82600860008681526020019081526020016000206000016127a090919063ffffffff16565b905092915050565b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561180f5780601f106117e45761010080835404028352916020019161180f565b820191906000526020600020905b8154815290600101906020018083116117f257829003601f168201915b5050505050905090565b6000801b81565b60006118e361182d611f3e565b846118de856040518060600160405280602581526020016131836025913960016000611857611f3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126c69092919063ffffffff16565b611f46565b6001905092915050565b60006118f983836127d0565b905092915050565b600061190e85858561104d565b5061191b8585858561233e565b611970576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806130a76026913960400191505060405180910390fd5b60019050949350505050565b600061199c600860008481526020019081526020016000206000016127ee565b9050919050565b60006119af8484611001565b506119bb848484612803565b611a10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061302c6025913960400191505060405180910390fd5b600190509392505050565b7ff0887ba65ee2024ea881d91b74c2450ef19e1557f03bed3ea9f16b037cbe2dc981565b611a666008600084815260200190815260200160002060020154611a61611f3e565b611745565b611abb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806130776030913960400191505060405180910390fd5b611ac582826122aa565b5050565b6000611ae684848460405180602001604052806000815250611901565b90509392505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611b7e611f3e565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c40576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612fe46026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f523a704056dcd17bcf83bed8b68c59416dac1119be77755efe3bde0a64e46e0c81565b600080828401905083811015611e28576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000611e5a836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6129a8565b905092915050565b611e6d838383611f39565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f3457600654611ebf82611eb1611043565b611daa90919063ffffffff16565b1115611f33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f45524332304361707065643a206361702065786365656465640000000000000081525060200191505060405180910390fd5b5b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fcc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061315f6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612052576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061300a6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600061214a848484612a18565b61220b84612156611f3e565b612206856040518060600160405280602881526020016130cd60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006121bc611f3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126c69092919063ffffffff16565b611f46565b600190509392505050565b61223e8160086000858152602001908152602001600020600001611e3290919063ffffffff16565b156122a65761224b611f3e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6122d28160086000858152602001908152602001600020600001612cd990919063ffffffff16565b1561233a576122df611f3e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600061235f8473ffffffffffffffffffffffffffffffffffffffff16612d09565b61236c57600090506124fa565b60008473ffffffffffffffffffffffffffffffffffffffff166388a7ca5c612392611f3e565b8887876040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612422578082015181840152602081019050612407565b50505050905090810190601f16801561244f5780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561247157600080fd5b505af1158015612485573d6000803e3d6000fd5b505050506040513d602081101561249b57600080fd5b810190808051906020019092919050505090506388a7ca5c60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612588576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806131196021913960400191505060405180910390fd5b61259482600083612d54565b6125ff81604051806060016040528060228152602001612fc2602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126c69092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061265681600254612d6490919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000838311158290612773576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561273857808201518184015260208101905061271d565b50505050905090810190601f1680156127655780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60006127958360000183612dae565b60001c905092915050565b60006127c8836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612e31565b905092915050565b60006127e46127dd611f3e565b8484612a18565b6001905092915050565b60006127fc82600001612e54565b9050919050565b60006128248473ffffffffffffffffffffffffffffffffffffffff16612d09565b61283157600090506129a1565b60008473ffffffffffffffffffffffffffffffffffffffff16637b04a2d0612857611f3e565b86866040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156128ca5780820151818401526020810190506128af565b50505050905090810190601f1680156128f75780820380516001836020036101000a031916815260200191505b50945050505050602060405180830381600087803b15801561291857600080fd5b505af115801561292c573d6000803e3d6000fd5b505050506040513d602081101561294257600080fd5b81019080805190602001909291905050509050637b04a2d060e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b9392505050565b60006129b48383612e31565b612a0d578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612a12565b600090505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061313a6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612f706023913960400191505060405180910390fd5b612b2f838383612d54565b612b9a81604051806060016040528060268152602001613051602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126c69092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c2d816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611daa90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000612d01836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612e65565b905092915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f9150808214158015612d4b57506000801b8214155b92505050919050565b612d5f838383611e62565b505050565b6000612da683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506126c6565b905092915050565b600081836000018054905011612e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612f4e6022913960400191505060405180910390fd5b826000018281548110612e1e57fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b60008083600101600084815260200190815260200160002054905060008114612f415760006001820390506000600186600001805490500390506000866000018281548110612eb057fe5b9060005260206000200154905080876000018481548110612ecd57fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612f0557fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612f47565b60009150505b9291505056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373455243313336333a205f636865636b416e6443616c6c417070726f7665207265766572747345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65455243313336333a205f636865636b416e6443616c6c5472616e73666572207265766572747345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a2646970667358221220792c07a48a63c588740ae1be733375ceda12f8d5d18a6162658839b17ff5393964736f6c634300060c00335265766f6d6f6e546f6b656e3a20636170206d75737420626520657175616c20746f20696e697469616c537570706c7900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000052b7d2dcc80cd2e400000000000000000000000000000000000000000000000052b7d2dcc80cd2e400000000000000000000000000000000000000000000000000000000000000000000075265766f6d6f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045245564f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102115760003560e01c806379cc679011610125578063c1d34b89116100ad578063d547741f1161007c578063d547741f14610d4b578063d8fbe99414610d99578063dd62ed3e14610e1d578063f2fde38b14610e95578063f5b541a614610ed957610211565b8063c1d34b8914610ad5578063ca15c87314610bf0578063cae9ca5114610c32578063d539139314610d2d57610211565b806391d14854116100f457806391d148541461090857806395d89b411461096c578063a217fddf146109ef578063a457c2d714610a0d578063a9059cbb14610a7157610211565b806379cc6790146107d65780638980f11f146108245780638da5cb5b146108725780639010d07c146108a657610211565b8063313ce567116101a8578063395093511161017757806339509351146105e75780634000aea01461064b57806342966c681461074657806370a0823114610774578063715018a6146107cc57610211565b8063313ce567146104f65780633177029f14610517578063355274ea1461057b57806336568abe1461059957610211565b806318160ddd116101e457806318160ddd146103c457806323b872dd146103e2578063248a9ca3146104665780632f2ff15d146104a857610211565b806301ffc9a71461021657806306fdde0314610279578063095ea7b3146102fc5780631296ee6214610360575b600080fd5b6102616004803603602081101561022c57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610ef7565b60405180821515815260200191505060405180910390f35b610281610f5f565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102c15780820151818401526020810190506102a6565b50505050905090810190601f1680156102ee5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103486004803603604081101561031257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611001565b60405180821515815260200191505060405180910390f35b6103ac6004803603604081101561037657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061101f565b60405180821515815260200191505060405180910390f35b6103cc611043565b6040518082815260200191505060405180910390f35b61044e600480360360608110156103f857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061104d565b60405180821515815260200191505060405180910390f35b6104926004803603602081101561047c57600080fd5b8101908080359060200190929190505050611063565b6040518082815260200191505060405180910390f35b6104f4600480360360408110156104be57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611083565b005b6104fe61110d565b604051808260ff16815260200191505060405180910390f35b6105636004803603604081101561052d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611124565b60405180821515815260200191505060405180910390f35b610583611148565b6040518082815260200191505060405180910390f35b6105e5600480360360408110156105af57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611152565b005b610633600480360360408110156105fd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111eb565b60405180821515815260200191505060405180910390f35b61072e6004803603606081101561066157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001906401000000008111156106a857600080fd5b8201836020820111156106ba57600080fd5b803590602001918460018302840111640100000000831117156106dc57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061129e565b60405180821515815260200191505060405180910390f35b6107726004803603602081101561075c57600080fd5b810190808035906020019092919050505061131e565b005b6107b66004803603602081101561078a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611332565b6040518082815260200191505060405180910390f35b6107d461137a565b005b610822600480360360408110156107ec57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611505565b005b6108706004803603604081101561083a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611567565b005b61087a6116e9565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108dc600480360360408110156108bc57600080fd5b810190808035906020019092919080359060200190929190505050611713565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109546004803603604081101561091e57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611745565b60405180821515815260200191505060405180910390f35b610974611777565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109b4578082015181840152602081019050610999565b50505050905090810190601f1680156109e15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6109f7611819565b6040518082815260200191505060405180910390f35b610a5960048036036040811015610a2357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611820565b60405180821515815260200191505060405180910390f35b610abd60048036036040811015610a8757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506118ed565b60405180821515815260200191505060405180910390f35b610bd860048036036080811015610aeb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610b5257600080fd5b820183602082011115610b6457600080fd5b80359060200191846001830284011164010000000083111715610b8657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611901565b60405180821515815260200191505060405180910390f35b610c1c60048036036020811015610c0657600080fd5b810190808035906020019092919050505061197c565b6040518082815260200191505060405180910390f35b610d1560048036036060811015610c4857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610c8f57600080fd5b820183602082011115610ca157600080fd5b80359060200191846001830284011164010000000083111715610cc357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506119a3565b60405180821515815260200191505060405180910390f35b610d35611a1b565b6040518082815260200191505060405180910390f35b610d9760048036036040811015610d6157600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a3f565b005b610e0560048036036060811015610daf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ac9565b60405180821515815260200191505060405180910390f35b610e7f60048036036040811015610e3357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611aef565b6040518082815260200191505060405180910390f35b610ed760048036036020811015610eab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b76565b005b610ee1611d86565b6040518082815260200191505060405180910390f35b600060076000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ff75780601f10610fcc57610100808354040283529160200191610ff7565b820191906000526020600020905b815481529060010190602001808311610fda57829003601f168201915b5050505050905090565b600061101561100e611f3e565b8484611f46565b6001905092915050565b600061103b83836040518060200160405280600081525061129e565b905092915050565b6000600254905090565b600061105a84848461213d565b90509392505050565b600060086000838152602001908152602001600020600201549050919050565b6110aa60086000848152602001908152602001600020600201546110a5611f3e565b611745565b6110ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180612f93602f913960400191505060405180910390fd5b6111098282612216565b5050565b6000600560009054906101000a900460ff16905090565b60006111408383604051806020016040528060008152506119a3565b905092915050565b6000600654905090565b61115a611f3e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806131a8602f913960400191505060405180910390fd5b6111e782826122aa565b5050565b60006112946111f8611f3e565b8461128f8560016000611209611f3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611daa90919063ffffffff16565b611f46565b6001905092915050565b60006112aa84846118ed565b506112be6112b6611f3e565b85858561233e565b611313576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806130a76026913960400191505060405180910390fd5b600190509392505050565b61132f611329611f3e565b82612502565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611382611f3e565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611444576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000611544826040518060600160405280602481526020016130f56024913961153586611530611f3e565b611aef565b6126c69092919063ffffffff16565b905061155883611552611f3e565b83611f46565b6115628383612502565b505050565b61156f611f3e565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611631576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6116556116e9565b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156116a957600080fd5b505af11580156116bd573d6000803e3d6000fd5b505050506040513d60208110156116d357600080fd5b8101908080519060200190929190505050505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061173d826008600086815260200190815260200160002060000161278690919063ffffffff16565b905092915050565b600061176f82600860008681526020019081526020016000206000016127a090919063ffffffff16565b905092915050565b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561180f5780601f106117e45761010080835404028352916020019161180f565b820191906000526020600020905b8154815290600101906020018083116117f257829003601f168201915b5050505050905090565b6000801b81565b60006118e361182d611f3e565b846118de856040518060600160405280602581526020016131836025913960016000611857611f3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126c69092919063ffffffff16565b611f46565b6001905092915050565b60006118f983836127d0565b905092915050565b600061190e85858561104d565b5061191b8585858561233e565b611970576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806130a76026913960400191505060405180910390fd5b60019050949350505050565b600061199c600860008481526020019081526020016000206000016127ee565b9050919050565b60006119af8484611001565b506119bb848484612803565b611a10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061302c6025913960400191505060405180910390fd5b600190509392505050565b7ff0887ba65ee2024ea881d91b74c2450ef19e1557f03bed3ea9f16b037cbe2dc981565b611a666008600084815260200190815260200160002060020154611a61611f3e565b611745565b611abb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806130776030913960400191505060405180910390fd5b611ac582826122aa565b5050565b6000611ae684848460405180602001604052806000815250611901565b90509392505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611b7e611f3e565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c40576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612fe46026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f523a704056dcd17bcf83bed8b68c59416dac1119be77755efe3bde0a64e46e0c81565b600080828401905083811015611e28576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000611e5a836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6129a8565b905092915050565b611e6d838383611f39565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f3457600654611ebf82611eb1611043565b611daa90919063ffffffff16565b1115611f33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f45524332304361707065643a206361702065786365656465640000000000000081525060200191505060405180910390fd5b5b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fcc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061315f6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612052576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061300a6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600061214a848484612a18565b61220b84612156611f3e565b612206856040518060600160405280602881526020016130cd60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006121bc611f3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126c69092919063ffffffff16565b611f46565b600190509392505050565b61223e8160086000858152602001908152602001600020600001611e3290919063ffffffff16565b156122a65761224b611f3e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6122d28160086000858152602001908152602001600020600001612cd990919063ffffffff16565b1561233a576122df611f3e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600061235f8473ffffffffffffffffffffffffffffffffffffffff16612d09565b61236c57600090506124fa565b60008473ffffffffffffffffffffffffffffffffffffffff166388a7ca5c612392611f3e565b8887876040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612422578082015181840152602081019050612407565b50505050905090810190601f16801561244f5780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561247157600080fd5b505af1158015612485573d6000803e3d6000fd5b505050506040513d602081101561249b57600080fd5b810190808051906020019092919050505090506388a7ca5c60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612588576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806131196021913960400191505060405180910390fd5b61259482600083612d54565b6125ff81604051806060016040528060228152602001612fc2602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126c69092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061265681600254612d6490919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000838311158290612773576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561273857808201518184015260208101905061271d565b50505050905090810190601f1680156127655780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60006127958360000183612dae565b60001c905092915050565b60006127c8836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612e31565b905092915050565b60006127e46127dd611f3e565b8484612a18565b6001905092915050565b60006127fc82600001612e54565b9050919050565b60006128248473ffffffffffffffffffffffffffffffffffffffff16612d09565b61283157600090506129a1565b60008473ffffffffffffffffffffffffffffffffffffffff16637b04a2d0612857611f3e565b86866040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156128ca5780820151818401526020810190506128af565b50505050905090810190601f1680156128f75780820380516001836020036101000a031916815260200191505b50945050505050602060405180830381600087803b15801561291857600080fd5b505af115801561292c573d6000803e3d6000fd5b505050506040513d602081101561294257600080fd5b81019080805190602001909291905050509050637b04a2d060e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b9392505050565b60006129b48383612e31565b612a0d578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612a12565b600090505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061313a6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612f706023913960400191505060405180910390fd5b612b2f838383612d54565b612b9a81604051806060016040528060268152602001613051602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126c69092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c2d816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611daa90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000612d01836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612e65565b905092915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f9150808214158015612d4b57506000801b8214155b92505050919050565b612d5f838383611e62565b505050565b6000612da683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506126c6565b905092915050565b600081836000018054905011612e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612f4e6022913960400191505060405180910390fd5b826000018281548110612e1e57fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b60008083600101600084815260200190815260200160002054905060008114612f415760006001820390506000600186600001805490500390506000866000018281548110612eb057fe5b9060005260206000200154905080876000018481548110612ecd57fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612f0557fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612f47565b60009150505b9291505056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373455243313336333a205f636865636b416e6443616c6c417070726f7665207265766572747345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65455243313336333a205f636865636b416e6443616c6c5472616e73666572207265766572747345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a2646970667358221220792c07a48a63c588740ae1be733375ceda12f8d5d18a6162658839b17ff5393964736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000052b7d2dcc80cd2e400000000000000000000000000000000000000000000000052b7d2dcc80cd2e400000000000000000000000000000000000000000000000000000000000000000000075265766f6d6f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045245564f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Revomon
Arg [1] : symbol (string): REVO
Arg [2] : decimals (uint8): 18
Arg [3] : cap (uint256): 100000000000000000000000000
Arg [4] : initialSupply (uint256): 100000000000000000000000000

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [4] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 5265766f6d6f6e00000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 5245564f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

32242:1676:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25921:142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15374:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17480:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29058:139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16449:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33496:170;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;8284:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8406:227;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16301:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29968:147;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31553:75;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8879:209;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18853:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29205:276;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24695:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16612:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6146:148;;;:::i;:::-;;24794:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;24476:152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;5932:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;8138:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;7856:139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15576:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7604:49;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19574:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33014:142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29664:296;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;8003:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30123:273;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27378:57;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8641:230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29489:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17182:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6302:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27442:61;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25921:142;25998:4;26022:20;:33;26043:11;26022:33;;;;;;;;;;;;;;;;;;;;;;;;;;;26015:40;;25921:142;;;:::o;15374:83::-;15411:13;15444:5;15437:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15374:83;:::o;17480:169::-;17563:4;17580:39;17589:12;:10;:12::i;:::-;17603:7;17612:6;17580:8;:39::i;:::-;17637:4;17630:11;;17480:169;;;;:::o;29058:139::-;29135:4;29159:30;29175:2;29179:5;29159:30;;;;;;;;;;;;:15;:30::i;:::-;29152:37;;29058:139;;;;:::o;16449:100::-;16502:7;16529:12;;16522:19;;16449:100;:::o;33496:170::-;33599:4;33623:35;33642:4;33648:2;33652:5;33623:18;:35::i;:::-;33616:42;;33496:170;;;;;:::o;8284:114::-;8341:7;8368:6;:12;8375:4;8368:12;;;;;;;;;;;:22;;;8361:29;;8284:114;;;:::o;8406:227::-;8490:45;8498:6;:12;8505:4;8498:12;;;;;;;;;;;:22;;;8522:12;:10;:12::i;:::-;8490:7;:45::i;:::-;8482:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8600:25;8611:4;8617:7;8600:10;:25::i;:::-;8406:227;;:::o;16301:83::-;16342:5;16367:9;;;;;;;;;;;16360:16;;16301:83;:::o;29968:147::-;30049:4;30073:34;30088:7;30097:5;30073:34;;;;;;;;;;;;:14;:34::i;:::-;30066:41;;29968:147;;;;:::o;31553:75::-;31589:7;31616:4;;31609:11;;31553:75;:::o;8879:209::-;8977:12;:10;:12::i;:::-;8966:23;;:7;:23;;;8958:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9054:26;9066:4;9072:7;9054:11;:26::i;:::-;8879:209;;:::o;18853:218::-;18941:4;18958:83;18967:12;:10;:12::i;:::-;18981:7;18990:50;19029:10;18990:11;:25;19002:12;:10;:12::i;:::-;18990:25;;;;;;;;;;;;;;;:34;19016:7;18990:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;18958:8;:83::i;:::-;19059:4;19052:11;;18853:218;;;;:::o;29205:276::-;29301:4;29318:19;29327:2;29331:5;29318:8;:19::i;:::-;;29356:52;29378:12;:10;:12::i;:::-;29392:2;29396:5;29403:4;29356:21;:52::i;:::-;29348:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29469:4;29462:11;;29205:276;;;;;:::o;24695:91::-;24751:27;24757:12;:10;:12::i;:::-;24771:6;24751:5;:27::i;:::-;24695:91;:::o;16612:119::-;16678:7;16705:9;:18;16715:7;16705:18;;;;;;;;;;;;;;;;16698:25;;16612:119;;;:::o;6146:148::-;6069:12;:10;:12::i;:::-;6059:22;;:6;;;;;;;;;;;:22;;;6051:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6253:1:::1;6216:40;;6237:6;;;;;;;;;;;6216:40;;;;;;;;;;;;6284:1;6267:6;;:19;;;;;;;;;;;;;;;;;;6146:148::o:0;24794:295::-;24871:26;24900:84;24937:6;24900:84;;;;;;;;;;;;;;;;;:32;24910:7;24919:12;:10;:12::i;:::-;24900:9;:32::i;:::-;:36;;:84;;;;;:::i;:::-;24871:113;;24997:51;25006:7;25015:12;:10;:12::i;:::-;25029:18;24997:8;:51::i;:::-;25059:22;25065:7;25074:6;25059:5;:22::i;:::-;24794:295;;;:::o;24476:152::-;6069:12;:10;:12::i;:::-;6059:22;;:6;;;;;;;;;;;:22;;;6051:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24576:12:::1;24569:29;;;24599:7;:5;:7::i;:::-;24608:11;24569:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;24476:152:::0;;:::o;5932:79::-;5970:7;5997:6;;;;;;;;;;;5990:13;;5932:79;:::o;8138:138::-;8211:7;8238:30;8262:5;8238:6;:12;8245:4;8238:12;;;;;;;;;;;:20;;:23;;:30;;;;:::i;:::-;8231:37;;8138:138;;;;:::o;7856:139::-;7925:4;7949:38;7979:7;7949:6;:12;7956:4;7949:12;;;;;;;;;;;:20;;:29;;:38;;;;:::i;:::-;7942:45;;7856:139;;;;:::o;15576:87::-;15615:13;15648:7;15641:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15576:87;:::o;7604:49::-;7649:4;7604:49;;;:::o;19574:269::-;19667:4;19684:129;19693:12;:10;:12::i;:::-;19707:7;19716:96;19755:15;19716:96;;;;;;;;;;;;;;;;;:11;:25;19728:12;:10;:12::i;:::-;19716:25;;;;;;;;;;;;;;;:34;19742:7;19716:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;19684:8;:129::i;:::-;19831:4;19824:11;;19574:269;;;;:::o;33014:142::-;33099:4;33123:25;33138:2;33142:5;33123:14;:25::i;:::-;33116:32;;33014:142;;;;:::o;29664:296::-;29778:4;29795:29;29808:4;29814:2;29818:5;29795:12;:29::i;:::-;;29843:44;29865:4;29871:2;29875:5;29882:4;29843:21;:44::i;:::-;29835:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29948:4;29941:11;;29664:296;;;;;;:::o;8003:127::-;8066:7;8093:29;:6;:12;8100:4;8093:12;;;;;;;;;;;:20;;:27;:29::i;:::-;8086:36;;8003:127;;;:::o;30123:273::-;30223:4;30240:23;30248:7;30257:5;30240:7;:23::i;:::-;;30282:42;30303:7;30312:5;30319:4;30282:20;:42::i;:::-;30274:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30384:4;30377:11;;30123:273;;;;;:::o;27378:57::-;27416:19;27378:57;:::o;8641:230::-;8726:45;8734:6;:12;8741:4;8734:12;;;;;;;;;;;:22;;;8758:12;:10;:12::i;:::-;8726:7;:45::i;:::-;8718:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8837:26;8849:4;8855:7;8837:11;:26::i;:::-;8641:230;;:::o;29489:167::-;29584:4;29608:40;29628:4;29634:2;29638:5;29608:40;;;;;;;;;;;;:19;:40::i;:::-;29601:47;;29489:167;;;;;:::o;17182:151::-;17271:7;17298:11;:18;17310:5;17298:18;;;;;;;;;;;;;;;:27;17317:7;17298:27;;;;;;;;;;;;;;;;17291:34;;17182:151;;;;:::o;6302:244::-;6069:12;:10;:12::i;:::-;6059:22;;:6;;;;;;;;;;;:22;;;6051:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6411:1:::1;6391:22;;:8;:22;;;;6383:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6501:8;6472:38;;6493:6;;;;;;;;;;;6472:38;;;;;;;;;;;;6530:8;6521:6;;:17;;;;;;;;;;;;;;;;;;6302:244:::0;:::o;27442:61::-;27482:21;27442:61;:::o;10008:181::-;10066:7;10086:9;10102:1;10098;:5;10086:17;;10127:1;10122;:6;;10114:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10180:1;10173:8;;;10008:181;;;;:::o;4085:143::-;4155:4;4179:41;4184:3;:10;;4212:5;4204:14;;4196:23;;4179:4;:41::i;:::-;4172:48;;4085:143;;;;:::o;31815:318::-;31924:44;31951:4;31957:2;31961:6;31924:26;:44::i;:::-;32001:1;31985:18;;:4;:18;;;31981:145;;;32080:4;;32051:25;32069:6;32051:13;:11;:13::i;:::-;:17;;:25;;;;:::i;:::-;:33;;32043:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31981:145;31815:318;;;:::o;24092:92::-;;;;:::o;935:106::-;988:15;1023:10;1016:17;;935:106;:::o;22721:346::-;22840:1;22823:19;;:5;:19;;;;22815:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22921:1;22902:21;;:7;:21;;;;22894:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23005:6;22975:11;:18;22987:5;22975:18;;;;;;;;;;;;;;;:27;22994:7;22975:27;;;;;;;;;;;;;;;:36;;;;23043:7;23027:32;;23036:5;23027:32;;;23052:6;23027:32;;;;;;;;;;;;;;;;;;22721:346;;;:::o;18123:321::-;18229:4;18246:36;18256:6;18264:9;18275:6;18246:9;:36::i;:::-;18293:121;18302:6;18310:12;:10;:12::i;:::-;18324:89;18362:6;18324:89;;;;;;;;;;;;;;;;;:11;:19;18336:6;18324:19;;;;;;;;;;;;;;;:33;18344:12;:10;:12::i;:::-;18324:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;18293:8;:121::i;:::-;18432:4;18425:11;;18123:321;;;;;:::o;9350:188::-;9424:33;9449:7;9424:6;:12;9431:4;9424:12;;;;;;;;;;;:20;;:24;;:33;;;;:::i;:::-;9420:111;;;9506:12;:10;:12::i;:::-;9479:40;;9497:7;9479:40;;9491:4;9479:40;;;;;;;;;;9420:111;9350:188;;:::o;9546:192::-;9621:36;9649:7;9621:6;:12;9628:4;9621:12;;;;;;;;;;;:20;;:27;;:36;;;;:::i;:::-;9617:114;;;9706:12;:10;:12::i;:::-;9679:40;;9697:7;9679:40;;9691:4;9679:40;;;;;;;;;;9617:114;9546:192;;:::o;30404:364::-;30513:4;30535:15;:2;:13;;;:15::i;:::-;30530:61;;30574:5;30567:12;;;;30530:61;30601:13;30634:2;30617:39;;;30671:12;:10;:12::i;:::-;30685:4;30691:5;30698:4;30617:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30601:112;;28645:10;30742:17;;30732:27;;;:6;:27;;;;30724:36;;;30404:364;;;;;;;:::o;21863:418::-;21966:1;21947:21;;:7;:21;;;;21939:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22019:49;22040:7;22057:1;22061:6;22019:20;:49::i;:::-;22102:68;22125:6;22102:68;;;;;;;;;;;;;;;;;:9;:18;22112:7;22102:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;22081:9;:18;22091:7;22081:18;;;;;;;;;;;;;;;:89;;;;22196:24;22213:6;22196:12;;:16;;:24;;;;:::i;:::-;22181:12;:39;;;;22262:1;22236:37;;22245:7;22236:37;;;22266:6;22236:37;;;;;;;;;;;;;;;;;;21863:418;;:::o;10911:192::-;10997:7;11030:1;11025;:6;;11033:12;11017:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11057:9;11073:1;11069;:5;11057:17;;11094:1;11087:8;;;10911:192;;;;;:::o;4684:149::-;4758:7;4801:22;4805:3;:10;;4817:5;4801:3;:22::i;:::-;4793:31;;4778:47;;4684:149;;;;:::o;4393:158::-;4473:4;4497:46;4507:3;:10;;4535:5;4527:14;;4519:23;;4497:9;:46::i;:::-;4490:53;;4393:158;;;;:::o;16944:175::-;17030:4;17047:42;17057:12;:10;:12::i;:::-;17071:9;17082:6;17047:9;:42::i;:::-;17107:4;17100:11;;16944:175;;;;:::o;4559:117::-;4622:7;4649:19;4657:3;:10;;4649:7;:19::i;:::-;4642:26;;4559:117;;;:::o;30776:357::-;30875:4;30897:20;:7;:18;;;:20::i;:::-;30892:66;;30941:5;30934:12;;;;30892:66;30968:13;31000:7;30984:43;;;31042:12;:10;:12::i;:::-;31056:5;31063:4;30984:94;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30968:110;;28708:10;31107:17;;31097:27;;;:6;:27;;;;31089:36;;;30776:357;;;;;;:::o;1586:414::-;1649:4;1671:21;1681:3;1686:5;1671:9;:21::i;:::-;1666:327;;1709:3;:11;;1726:5;1709:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1892:3;:11;;:18;;;;1870:3;:12;;:19;1883:5;1870:19;;;;;;;;;;;:40;;;;1932:4;1925:11;;;;1666:327;1976:5;1969:12;;1586:414;;;;;:::o;20333:539::-;20457:1;20439:20;;:6;:20;;;;20431:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20541:1;20520:23;;:9;:23;;;;20512:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20596:47;20617:6;20625:9;20636:6;20596:20;:47::i;:::-;20676:71;20698:6;20676:71;;;;;;;;;;;;;;;;;:9;:17;20686:6;20676:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;20656:9;:17;20666:6;20656:17;;;;;;;;;;;;;;;:91;;;;20781:32;20806:6;20781:9;:20;20791:9;20781:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;20758:9;:20;20768:9;20758:20;;;;;;;;;;;;;;;:55;;;;20846:9;20829:35;;20838:6;20829:35;;;20857:6;20829:35;;;;;;;;;;;;;;;;;;20333:539;;;:::o;4236:149::-;4309:4;4333:44;4341:3;:10;;4369:5;4361:14;;4353:23;;4333:7;:44::i;:::-;4326:51;;4236:149;;;;:::o;6576:317::-;6636:4;6653:16;6680:19;6702:66;6680:88;;;;6814:7;6802:20;6790:32;;6854:11;6842:8;:23;;:42;;;;;6881:3;6869:15;;:8;:15;;6842:42;6834:51;;;;6576:317;;;:::o;33734:181::-;33863:44;33890:4;33896:2;33900:6;33863:26;:44::i;:::-;33734:181;;;:::o;10472:136::-;10530:7;10557:43;10561:1;10564;10557:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;10550:50;;10472:136;;;;:::o;3816:204::-;3883:7;3932:5;3911:3;:11;;:18;;;;:26;3903:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3994:3;:11;;4006:5;3994:18;;;;;;;;;;;;;;;;3987:25;;3816:204;;;;:::o;3560:129::-;3633:4;3680:1;3657:3;:12;;:19;3670:5;3657:19;;;;;;;;;;;;:24;;3650:31;;3560:129;;;;:::o;3699:109::-;3755:7;3782:3;:11;;:18;;;;3775:25;;3699:109;;;:::o;2008:1544::-;2074:4;2192:18;2213:3;:12;;:19;2226:5;2213:19;;;;;;;;;;;;2192:40;;2263:1;2249:10;:15;2245:1300;;2611:21;2648:1;2635:10;:14;2611:38;;2664:17;2705:1;2684:3;:11;;:18;;;;:22;2664:42;;2951:17;2971:3;:11;;2983:9;2971:22;;;;;;;;;;;;;;;;2951:42;;3117:9;3088:3;:11;;3100:13;3088:26;;;;;;;;;;;;;;;:38;;;;3236:1;3220:13;:17;3194:3;:12;;:23;3207:9;3194:23;;;;;;;;;;;:43;;;;3346:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;3441:3;:12;;:19;3454:5;3441:19;;;;;;;;;;;3434:26;;;3484:4;3477:11;;;;;;;;2245:1300;3528:5;3521:12;;;2008:1544;;;;;:::o

Swarm Source

ipfs://792c07a48a63c588740ae1be733375ceda12f8d5d18a6162658839b17ff53939
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.