ETH Price: $3,106.69 (+0.66%)
Gas: 9.75 Gwei

Token

Public Sale CFX Token (pubCFX)
 

Overview

Max Total Supply

16,547,785.003039540935144623 pubCFX

Holders

435

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,161.229668884781378066 pubCFX

Value
$0.00
0x13e8a7867a4690bf1ebd2aa0f77bee13b5290450
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
byzantium EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-10
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/GSN/Context.sol



pragma solidity >=0.6.0 <0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    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;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/math/SafeMath.sol



pragma solidity >=0.6.0 <0.8.0;

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

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    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;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    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 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 {}
}

// File: @openzeppelin/contracts/utils/Pausable.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() internal {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Pausable.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}

// File: @openzeppelin/contracts/utils/EnumerableSet.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

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

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    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;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    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;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value)
        private
        view
        returns (bool)
    {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {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];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value)
        internal
        returns (bool)
    {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value)
        internal
        returns (bool)
    {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index)
        internal
        view
        returns (bytes32)
    {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        return _add(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        return _remove(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index)
        internal
        view
        returns (address)
    {
        return address(uint256(_at(set._inner, index)));
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value)
        internal
        returns (bool)
    {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index)
        internal
        view
        returns (uint256)
    {
        return uint256(_at(set._inner, index));
    }
}

// File: @openzeppelin/contracts/utils/Address.sol



pragma solidity >=0.6.2 <0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    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"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) =
            target.call{value: value}(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data)
        internal
        view
        returns (bytes memory)
    {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/access/AccessControl.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
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;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(
        bytes32 indexed role,
        bytes32 indexed previousAdminRole,
        bytes32 indexed newAdminRole
    );

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(
        bytes32 indexed role,
        address indexed account,
        address indexed sender
    );

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(
        bytes32 indexed role,
        address indexed account,
        address indexed sender
    );

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view returns (bool) {
        return _roles[role].members.contains(account);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view returns (uint256) {
        return _roles[role].members.length();
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index)
        public
        view
        returns (address)
    {
        return _roles[role].members.at(index);
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    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);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    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);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual {
        require(
            account == _msgSender(),
            "AccessControl: can only renounce roles for self"
        );

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
        _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());
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Burnable.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    using SafeMath for uint256;

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `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);
    }
}

// File: @openzeppelin/contracts/presets/ERC20PresetMinterPauser.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev {ERC20} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 */
contract ERC20PresetMinterPauser is
    Context,
    AccessControl,
    ERC20Burnable,
    ERC20Pausable
{
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * See {ERC20-constructor}.
     */
    constructor(string memory name, string memory symbol)
        public
        ERC20(name, symbol)
    {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
    }

    /**
     * @dev Creates `amount` new tokens for `to`.
     *
     * See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function mint(address to, uint256 amount) public virtual {
        require(
            hasRole(MINTER_ROLE, _msgSender()),
            "ERC20PresetMinterPauser: must have minter role to mint"
        );
        _mint(to, amount);
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(
            hasRole(PAUSER_ROLE, _msgSender()),
            "ERC20PresetMinterPauser: must have pauser role to pause"
        );
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(
            hasRole(PAUSER_ROLE, _msgSender()),
            "ERC20PresetMinterPauser: must have pauser role to unpause"
        );
        _unpause();
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override(ERC20, ERC20Pausable) {
        super._beforeTokenTransfer(from, to, amount);
    }
}

// File: @openzeppelin/contracts/introspection/IERC165.sol



pragma solidity >=0.6.0 <0.8.0;

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

// File: @openzeppelin/contracts/introspection/ERC165.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract 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;
    }
}

// File: @openzeppelin/contracts/introspection/ERC165Checker.sol



pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

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

        // all interfaces supported
        return true;
    }

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

        return (success && result);
    }

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

// File: contracts/token/ERC20OnApprove.sol



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

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

// File: contracts/token/Token.sol



pragma solidity >=0.6.0 <0.8.0;

contract Token is ERC20PresetMinterPauser, ERC20OnApprove {
    bytes32 public constant MINTER_ADMIN_ROLE = keccak256("MINTER_ADMIN_ROLE");
    bytes32 public constant PAUSER_ADMIN_ROLE = keccak256("PAUSER_ADMIN_ROLE");

    constructor(
        string memory name_,
        string memory symbol_,
        uint256 initialSupply_
    ) public ERC20PresetMinterPauser(name_, symbol_) {
        _mint(_msgSender(), initialSupply_);

        _setRoleAdmin(MINTER_ROLE, MINTER_ADMIN_ROLE);
        _setRoleAdmin(PAUSER_ROLE, PAUSER_ADMIN_ROLE);

        _setupRole(MINTER_ADMIN_ROLE, _msgSender());
        _setupRole(PAUSER_ADMIN_ROLE, _msgSender());
    }

    /**
     * @dev change DEFAULT_ADMIN_ROLE to `account`
     */
    function changeAdminRole(address account) external {
        changeRole(DEFAULT_ADMIN_ROLE, account);
    }

    /**
     * @dev grant and revoke `role` to `account`
     */
    function changeRole(bytes32 role, address account) public {
        grantRole(role, account);
        revokeRole(role, _msgSender());
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal override(ERC20, ERC20PresetMinterPauser) {
        super._beforeTokenTransfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_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":"PAUSER_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_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":"amount","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":[{"internalType":"address","name":"account","type":"address"}],"name":"changeAdminRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"changeRole","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620028ed380380620028ed833981810160405260608110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b506040526020908101518551909350859250849183918391620001c19160049185019062000759565b508051620001d790600590602084019062000759565b50506006805461ff001960ff19909116601217169055506200021660006200020764010000000062000350810204565b64010000000062000354810204565b6200023d600080516020620028a38339815191526200020764010000000062000350810204565b62000264600080516020620028838339815191526200020764010000000062000350810204565b5050620002936200028362000350640100000000026401000000009004565b826401000000006200036d810204565b620002c6600080516020620028a383398151915260008051602062002863833981519152640100000000620004a5810204565b620002f96000805160206200288383398151915260008051602062002843833981519152640100000000620004a5810204565b62000320600080516020620028638339815191526200020764010000000062000350810204565b62000347600080516020620028438339815191526200020764010000000062000350810204565b505050620007f5565b3390565b620003698282640100000000620004f7810204565b5050565b600160a060020a038216620003e357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620003fa600083836401000000006200057c810204565b60035462000417908264010000000062000e146200059c82021704565b600355600160a060020a0382166000908152600160205260409020546200044d908264010000000062000e146200059c82021704565b600160a060020a03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082815260208190526040808220600201549051839285917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a460009182526020829052604090912060020155565b60008281526020819052604090206200051f908264010000000062000e716200061a82021704565b1562000369576200053864010000000062000350810204565b600160a060020a031681600160a060020a0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6200059783838364010000000062000e866200063a82021704565b505050565b6000828201838110156200061157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b60006200061183600160a060020a03841664010000000062000655810204565b6200059783838364010000000062000e8d620006ad82021704565b60006200066c838364010000000062000733810204565b620006a45750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000614565b50600062000614565b620006c883838364010000000062000b3c6200059782021704565b620006db6401000000006200074b810204565b1562000597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180620028c3602a913960400191505060405180910390fd5b60009081526001919091016020526040902054151590565b600654610100900460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200079c57805160ff1916838001178555620007cc565b82800160010185558215620007cc579182015b82811115620007cc578251825591602001919060010190620007af565b50620007da929150620007de565b5090565b5b80821115620007da5760008155600101620007df565b61203e80620008056000396000f3fe608060405234801561001057600080fd5b506004361061020d576000357c0100000000000000000000000000000000000000000000000000000000900480635c975abb1161012c578063a457c2d7116100bf578063d53913931161008e578063d53913931461066a578063d547741f14610672578063dd62ed3e1461069e578063e63ab1e9146106cc5761020d565b8063a457c2d714610570578063a9059cbb1461059c578063ca15c873146105c8578063cae9ca51146105e55761020d565b80639010d07c116100fb5780639010d07c146104f557806391d148541461053457806395d89b4114610560578063a217fddf146105685761020d565b80635c975abb1461049357806370a082311461049b57806379cc6790146104c15780638456cb59146104ed5761020d565b8063264964ba116101a4578063395093511161017357806339509351146104165780633f4ba83a1461044257806340c10f191461044a57806342966c68146104765761020d565b8063264964ba146103745780632f2ff15d146103a0578063313ce567146103cc57806336568abe146103ea5761020d565b806318160ddd116101e057806318160ddd1461031157806323b872dd14610319578063248a9ca31461034f57806325a004731461036c5761020d565b806304b8c4711461021257806306fdde031461023a578063095ea7b3146102b75780631339324b146102f7575b600080fd5b6102386004803603602081101561022857600080fd5b5035600160a060020a03166106d4565b005b6102426106e2565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561027c578181015183820152602001610264565b50505050905090810190601f1680156102a95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e3600480360360408110156102cd57600080fd5b50600160a060020a038135169060200135610778565b604080519115158252519081900360200190f35b6102ff610796565b60408051918252519081900360200190f35b6102ff6107ba565b6102e36004803603606081101561032f57600080fd5b50600160a060020a038135811691602081013590911690604001356107c0565b6102ff6004803603602081101561036557600080fd5b5035610847565b6102ff61085c565b6102386004803603604081101561038a57600080fd5b5080359060200135600160a060020a0316610880565b610238600480360360408110156103b657600080fd5b5080359060200135600160a060020a031661089f565b6103d461090a565b6040805160ff9092168252519081900360200190f35b6102386004803603604081101561040057600080fd5b5080359060200135600160a060020a0316610913565b6102e36004803603604081101561042c57600080fd5b50600160a060020a038135169060200135610977565b6102386109c5565b6102386004803603604081101561046057600080fd5b50600160a060020a038135169060200135610a39565b6102386004803603602081101561048c57600080fd5b5035610aad565b6102e3610abe565b6102ff600480360360208110156104b157600080fd5b5035600160a060020a0316610acc565b610238600480360360408110156104d757600080fd5b50600160a060020a038135169060200135610ae7565b610238610b41565b6105186004803603604081101561050b57600080fd5b5080359060200135610bb3565b60408051600160a060020a039092168252519081900360200190f35b6102e36004803603604081101561054a57600080fd5b5080359060200135600160a060020a0316610bd2565b610242610bea565b6102ff610c4b565b6102e36004803603604081101561058657600080fd5b50600160a060020a038135169060200135610c50565b6102e3600480360360408110156105b257600080fd5b50600160a060020a038135169060200135610cb8565b6102ff600480360360208110156105de57600080fd5b5035610ccc565b6102e3600480360360608110156105fb57600080fd5b600160a060020a038235169160208101359181019060608101604082013564010000000081111561062b57600080fd5b82018360208201111561063d57600080fd5b8035906020019184600183028401116401000000008311171561065f57600080fd5b509092509050610ce3565b6102ff610d45565b6102386004803603604081101561068857600080fd5b5080359060200135600160a060020a0316610d69565b6102ff600480360360408110156106b457600080fd5b50600160a060020a0381358116916020013516610dc5565b6102ff610df0565b6106df600082610880565b50565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561076e5780601f106107435761010080835404028352916020019161076e565b820191906000526020600020905b81548152906001019060200180831161075157829003601f168201915b5050505050905090565b600061078c610785610edf565b8484610ee3565b5060015b92915050565b7f70480ee89cb38eff00b7d23da25713d52ce19c6ed428691d22c58b2f615e3d6781565b60035490565b60006107cd848484610fd5565b61083d846107d9610edf565b61083885604051806060016040528060288152602001611e4060289139600160a060020a038a16600090815260026020526040812090610817610edf565b600160a060020a031681526020810191909152604001600020549190611138565b610ee3565b5060019392505050565b60009081526020819052604090206002015490565b7fe0e65c783ac33ff1c5ccf4399c9185066773921d6f8d050bf80781603021f09781565b61088a828261089f565b61089b82610896610edf565b610d69565b5050565b6000828152602081905260409020600201546108c2906108bd610edf565b610bd2565b6109005760405160e560020a62461bcd02815260040180806020018281038252602f815260200180611d0d602f913960400191505060405180910390fd5b61089b82826111d2565b60065460ff1690565b61091b610edf565b600160a060020a031681600160a060020a03161461096d5760405160e560020a62461bcd02815260040180806020018281038252602f815260200180611fb0602f913960400191505060405180910390fd5b61089b828261123b565b600061078c610984610edf565b846108388560026000610995610edf565b600160a060020a03908116825260208083019390935260409182016000908120918c168152925290205490610e14565b6109f17f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6108bd610edf565b610a2f5760405160e560020a62461bcd028152600401808060200182810382526039815260200180611d5e6039913960400191505060405180910390fd5b610a376112a4565b565b610a657f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66108bd610edf565b610aa35760405160e560020a62461bcd028152600401808060200182810382526036815260200180611e686036913960400191505060405180910390fd5b61089b8282611354565b6106df610ab8610edf565b82611449565b600654610100900460ff1690565b600160a060020a031660009081526001602052604090205490565b6000610b1e82604051806060016040528060248152602001611e9e60249139610b1786610b12610edf565b610dc5565b9190611138565b9050610b3283610b2c610edf565b83610ee3565b610b3c8383611449565b505050565b610b6d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6108bd610edf565b610bab5760405160e560020a62461bcd028152600401808060200182810382526037815260200180611f546037913960400191505060405180910390fd5b610a37611548565b6000828152602081905260408120610bcb90836115e0565b9392505050565b6000828152602081905260408120610bcb90836115ec565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561076e5780601f106107435761010080835404028352916020019161076e565b600081565b600061078c610c5d610edf565b8461083885604051806060016040528060258152602001611f8b6025913960026000610c87610edf565b600160a060020a03908116825260208083019390935260409182016000908120918d16815292529020549190611138565b600061078c610cc5610edf565b8484610fd5565b600081815260208190526040812061079090611601565b6000610cef8585610778565b610cf857600080fd5b610d3a33868686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061160c92505050565b506001949350505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b600082815260208190526040902060020154610d87906108bd610edf565b61096d5760405160e560020a62461bcd028152600401808060200182810382526030815260200180611e106030913960400191505060405180910390fd5b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b600082820183811015610bcb576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000610bcb83600160a060020a0384166118b8565b610b3c8383835b610e98838383610b3c565b610ea0610abe565b15610b3c5760405160e560020a62461bcd02815260040180806020018281038252602a815260200180611fdf602a913960400191505060405180910390fd5b3390565b600160a060020a038316610f2b5760405160e560020a62461bcd028152600401808060200182810382526024815260200180611f086024913960400191505060405180910390fd5b600160a060020a038216610f735760405160e560020a62461bcd028152600401808060200182810382526022815260200180611d976022913960400191505060405180910390fd5b600160a060020a03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a03831661101d5760405160e560020a62461bcd028152600401808060200182810382526025815260200180611ee36025913960400191505060405180910390fd5b600160a060020a0382166110655760405160e560020a62461bcd028152600401808060200182810382526023815260200180611cea6023913960400191505060405180910390fd5b611070838383611902565b6110ad81604051806060016040528060268152602001611dea60269139600160a060020a0386166000908152600160205260409020549190611138565b600160a060020a0380851660009081526001602052604080822093909355908416815220546110dc9082610e14565b600160a060020a0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156111ca5760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561118f578181015183820152602001611177565b50505050905090810190601f1680156111bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008281526020819052604090206111ea9082610e71565b1561089b576111f7610edf565b600160a060020a031681600160a060020a0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152602081905260409020611253908261190d565b1561089b57611260610edf565b600160a060020a031681600160a060020a0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b600654610100900460ff16611303576040805160e560020a62461bcd02815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b6006805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611337610edf565b60408051600160a060020a039092168252519081900360200190a1565b600160a060020a0382166113b2576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6113be60008383611902565b6003546113cb9082610e14565b600355600160a060020a0382166000908152600160205260409020546113f19082610e14565b600160a060020a03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a0382166114915760405160e560020a62461bcd028152600401808060200182810382526021815260200180611ec26021913960400191505060405180910390fd5b61149d82600083611902565b6114da81604051806060016040528060228152602001611d3c60229139600160a060020a0385166000908152600160205260409020549190611138565b600160a060020a0383166000908152600160205260409020556003546115009082611922565b600355604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600654610100900460ff16156115a8576040805160e560020a62461bcd02815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b6006805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611337610edf565b6000610bcb8383611964565b6000610bcb83600160a060020a0384166119cb565b6000610790826119e3565b7f4273ca160000000000000000000000000000000000000000000000000000000061163784826119e7565b6116755760405160e560020a62461bcd028152600401808060200182810382526031815260200180611db96031913960400191505060405180910390fd5b6000606085600160a060020a031683888888886040516024018085600160a060020a0316815260200184600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156116ec5781810151838201526020016116d4565b50505050905090810190601f1680156117195780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19909a16999099178952518151919890975087965094509250829150849050835b602083106117ab5780518252601f19909201916020918201910161178c565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811461180d576040519150601f19603f3d011682016040523d82523d6000602084013e611812565b606091505b50915091508181906118685760405160e560020a62461bcd02815260206004820181815283516024840152835190928392604490910191908501908083836000831561118f578181015183820152602001611177565b5060208101519150816118af5760405160e560020a62461bcd028152600401808060200182810382526028815260200180611f2c6028913960400191505060405180910390fd5b50505050505050565b60006118c483836119cb565b6118fa57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610790565b506000610790565b610b3c838383610e86565b6000610bcb83600160a060020a038416611a03565b6000610bcb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611138565b815460009082106119a95760405160e560020a62461bcd028152600401808060200182810382526022815260200180611cc86022913960400191505060405180910390fd5b8260000182815481106119b857fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b60006119f283611ac9565b8015610bcb5750610bcb8383611b2a565b60008181526001830160205260408120548015611abf5783546000198083019190810190600090879083908110611a3657fe5b9060005260206000200154905080876000018481548110611a5357fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611a8357fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610790565b6000915050610790565b6000611af5827f01ffc9a700000000000000000000000000000000000000000000000000000000611b2a565b80156107905750611b23827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19611b2a565b1592915050565b6000806000611b398585611b50565b91509150818015611b475750805b95945050505050565b604080517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19831660248083019190915282518083039091018152604490910182526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f01ffc9a700000000000000000000000000000000000000000000000000000000178152915181516000938493928492606092600160a060020a038a169261753092879282918083835b60208310611c1b5780518252601f199092019160209182019101611bfc565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303818686fa925050503d8060008114611c7c576040519150601f19603f3d011682016040523d82523d6000602084013e611c81565b606091505b5091509150602081511015611c9f5760008094509450505050611cc0565b81818060200190516020811015611cb557600080fd5b505190955093505050505b925092905056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20756e706175736545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332304f6e417070726f76653a207370656e64657220646f65736e277420737570706f7274206f6e417070726f766545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332305072657365744d696e7465725061757365723a206d7573742068617665206d696e74657220726f6c6520746f206d696e7445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332304f6e417070726f76653a206661696c656420746f2063616c6c206f6e417070726f766545524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20706175736545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a2646970667358221220cc551cdd493590e472fdebf85123a05472dad3c02db05e0b994b9209a5a6f8f364736f6c634300060c0033e0e65c783ac33ff1c5ccf4399c9185066773921d6f8d050bf80781603021f09770480ee89cb38eff00b7d23da25713d52ce19c6ed428691d22c58b2f615e3d6765d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000108b2a2c2802909400000000000000000000000000000000000000000000000000000000000000000000155075626c69632053616c652043465820546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000067075624346580000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061020d576000357c0100000000000000000000000000000000000000000000000000000000900480635c975abb1161012c578063a457c2d7116100bf578063d53913931161008e578063d53913931461066a578063d547741f14610672578063dd62ed3e1461069e578063e63ab1e9146106cc5761020d565b8063a457c2d714610570578063a9059cbb1461059c578063ca15c873146105c8578063cae9ca51146105e55761020d565b80639010d07c116100fb5780639010d07c146104f557806391d148541461053457806395d89b4114610560578063a217fddf146105685761020d565b80635c975abb1461049357806370a082311461049b57806379cc6790146104c15780638456cb59146104ed5761020d565b8063264964ba116101a4578063395093511161017357806339509351146104165780633f4ba83a1461044257806340c10f191461044a57806342966c68146104765761020d565b8063264964ba146103745780632f2ff15d146103a0578063313ce567146103cc57806336568abe146103ea5761020d565b806318160ddd116101e057806318160ddd1461031157806323b872dd14610319578063248a9ca31461034f57806325a004731461036c5761020d565b806304b8c4711461021257806306fdde031461023a578063095ea7b3146102b75780631339324b146102f7575b600080fd5b6102386004803603602081101561022857600080fd5b5035600160a060020a03166106d4565b005b6102426106e2565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561027c578181015183820152602001610264565b50505050905090810190601f1680156102a95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e3600480360360408110156102cd57600080fd5b50600160a060020a038135169060200135610778565b604080519115158252519081900360200190f35b6102ff610796565b60408051918252519081900360200190f35b6102ff6107ba565b6102e36004803603606081101561032f57600080fd5b50600160a060020a038135811691602081013590911690604001356107c0565b6102ff6004803603602081101561036557600080fd5b5035610847565b6102ff61085c565b6102386004803603604081101561038a57600080fd5b5080359060200135600160a060020a0316610880565b610238600480360360408110156103b657600080fd5b5080359060200135600160a060020a031661089f565b6103d461090a565b6040805160ff9092168252519081900360200190f35b6102386004803603604081101561040057600080fd5b5080359060200135600160a060020a0316610913565b6102e36004803603604081101561042c57600080fd5b50600160a060020a038135169060200135610977565b6102386109c5565b6102386004803603604081101561046057600080fd5b50600160a060020a038135169060200135610a39565b6102386004803603602081101561048c57600080fd5b5035610aad565b6102e3610abe565b6102ff600480360360208110156104b157600080fd5b5035600160a060020a0316610acc565b610238600480360360408110156104d757600080fd5b50600160a060020a038135169060200135610ae7565b610238610b41565b6105186004803603604081101561050b57600080fd5b5080359060200135610bb3565b60408051600160a060020a039092168252519081900360200190f35b6102e36004803603604081101561054a57600080fd5b5080359060200135600160a060020a0316610bd2565b610242610bea565b6102ff610c4b565b6102e36004803603604081101561058657600080fd5b50600160a060020a038135169060200135610c50565b6102e3600480360360408110156105b257600080fd5b50600160a060020a038135169060200135610cb8565b6102ff600480360360208110156105de57600080fd5b5035610ccc565b6102e3600480360360608110156105fb57600080fd5b600160a060020a038235169160208101359181019060608101604082013564010000000081111561062b57600080fd5b82018360208201111561063d57600080fd5b8035906020019184600183028401116401000000008311171561065f57600080fd5b509092509050610ce3565b6102ff610d45565b6102386004803603604081101561068857600080fd5b5080359060200135600160a060020a0316610d69565b6102ff600480360360408110156106b457600080fd5b50600160a060020a0381358116916020013516610dc5565b6102ff610df0565b6106df600082610880565b50565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561076e5780601f106107435761010080835404028352916020019161076e565b820191906000526020600020905b81548152906001019060200180831161075157829003601f168201915b5050505050905090565b600061078c610785610edf565b8484610ee3565b5060015b92915050565b7f70480ee89cb38eff00b7d23da25713d52ce19c6ed428691d22c58b2f615e3d6781565b60035490565b60006107cd848484610fd5565b61083d846107d9610edf565b61083885604051806060016040528060288152602001611e4060289139600160a060020a038a16600090815260026020526040812090610817610edf565b600160a060020a031681526020810191909152604001600020549190611138565b610ee3565b5060019392505050565b60009081526020819052604090206002015490565b7fe0e65c783ac33ff1c5ccf4399c9185066773921d6f8d050bf80781603021f09781565b61088a828261089f565b61089b82610896610edf565b610d69565b5050565b6000828152602081905260409020600201546108c2906108bd610edf565b610bd2565b6109005760405160e560020a62461bcd02815260040180806020018281038252602f815260200180611d0d602f913960400191505060405180910390fd5b61089b82826111d2565b60065460ff1690565b61091b610edf565b600160a060020a031681600160a060020a03161461096d5760405160e560020a62461bcd02815260040180806020018281038252602f815260200180611fb0602f913960400191505060405180910390fd5b61089b828261123b565b600061078c610984610edf565b846108388560026000610995610edf565b600160a060020a03908116825260208083019390935260409182016000908120918c168152925290205490610e14565b6109f17f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6108bd610edf565b610a2f5760405160e560020a62461bcd028152600401808060200182810382526039815260200180611d5e6039913960400191505060405180910390fd5b610a376112a4565b565b610a657f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66108bd610edf565b610aa35760405160e560020a62461bcd028152600401808060200182810382526036815260200180611e686036913960400191505060405180910390fd5b61089b8282611354565b6106df610ab8610edf565b82611449565b600654610100900460ff1690565b600160a060020a031660009081526001602052604090205490565b6000610b1e82604051806060016040528060248152602001611e9e60249139610b1786610b12610edf565b610dc5565b9190611138565b9050610b3283610b2c610edf565b83610ee3565b610b3c8383611449565b505050565b610b6d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6108bd610edf565b610bab5760405160e560020a62461bcd028152600401808060200182810382526037815260200180611f546037913960400191505060405180910390fd5b610a37611548565b6000828152602081905260408120610bcb90836115e0565b9392505050565b6000828152602081905260408120610bcb90836115ec565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561076e5780601f106107435761010080835404028352916020019161076e565b600081565b600061078c610c5d610edf565b8461083885604051806060016040528060258152602001611f8b6025913960026000610c87610edf565b600160a060020a03908116825260208083019390935260409182016000908120918d16815292529020549190611138565b600061078c610cc5610edf565b8484610fd5565b600081815260208190526040812061079090611601565b6000610cef8585610778565b610cf857600080fd5b610d3a33868686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061160c92505050565b506001949350505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b600082815260208190526040902060020154610d87906108bd610edf565b61096d5760405160e560020a62461bcd028152600401808060200182810382526030815260200180611e106030913960400191505060405180910390fd5b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b600082820183811015610bcb576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000610bcb83600160a060020a0384166118b8565b610b3c8383835b610e98838383610b3c565b610ea0610abe565b15610b3c5760405160e560020a62461bcd02815260040180806020018281038252602a815260200180611fdf602a913960400191505060405180910390fd5b3390565b600160a060020a038316610f2b5760405160e560020a62461bcd028152600401808060200182810382526024815260200180611f086024913960400191505060405180910390fd5b600160a060020a038216610f735760405160e560020a62461bcd028152600401808060200182810382526022815260200180611d976022913960400191505060405180910390fd5b600160a060020a03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a03831661101d5760405160e560020a62461bcd028152600401808060200182810382526025815260200180611ee36025913960400191505060405180910390fd5b600160a060020a0382166110655760405160e560020a62461bcd028152600401808060200182810382526023815260200180611cea6023913960400191505060405180910390fd5b611070838383611902565b6110ad81604051806060016040528060268152602001611dea60269139600160a060020a0386166000908152600160205260409020549190611138565b600160a060020a0380851660009081526001602052604080822093909355908416815220546110dc9082610e14565b600160a060020a0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156111ca5760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561118f578181015183820152602001611177565b50505050905090810190601f1680156111bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008281526020819052604090206111ea9082610e71565b1561089b576111f7610edf565b600160a060020a031681600160a060020a0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152602081905260409020611253908261190d565b1561089b57611260610edf565b600160a060020a031681600160a060020a0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b600654610100900460ff16611303576040805160e560020a62461bcd02815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b6006805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611337610edf565b60408051600160a060020a039092168252519081900360200190a1565b600160a060020a0382166113b2576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6113be60008383611902565b6003546113cb9082610e14565b600355600160a060020a0382166000908152600160205260409020546113f19082610e14565b600160a060020a03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a0382166114915760405160e560020a62461bcd028152600401808060200182810382526021815260200180611ec26021913960400191505060405180910390fd5b61149d82600083611902565b6114da81604051806060016040528060228152602001611d3c60229139600160a060020a0385166000908152600160205260409020549190611138565b600160a060020a0383166000908152600160205260409020556003546115009082611922565b600355604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600654610100900460ff16156115a8576040805160e560020a62461bcd02815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b6006805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611337610edf565b6000610bcb8383611964565b6000610bcb83600160a060020a0384166119cb565b6000610790826119e3565b7f4273ca160000000000000000000000000000000000000000000000000000000061163784826119e7565b6116755760405160e560020a62461bcd028152600401808060200182810382526031815260200180611db96031913960400191505060405180910390fd5b6000606085600160a060020a031683888888886040516024018085600160a060020a0316815260200184600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156116ec5781810151838201526020016116d4565b50505050905090810190601f1680156117195780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19909a16999099178952518151919890975087965094509250829150849050835b602083106117ab5780518252601f19909201916020918201910161178c565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811461180d576040519150601f19603f3d011682016040523d82523d6000602084013e611812565b606091505b50915091508181906118685760405160e560020a62461bcd02815260206004820181815283516024840152835190928392604490910191908501908083836000831561118f578181015183820152602001611177565b5060208101519150816118af5760405160e560020a62461bcd028152600401808060200182810382526028815260200180611f2c6028913960400191505060405180910390fd5b50505050505050565b60006118c483836119cb565b6118fa57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610790565b506000610790565b610b3c838383610e86565b6000610bcb83600160a060020a038416611a03565b6000610bcb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611138565b815460009082106119a95760405160e560020a62461bcd028152600401808060200182810382526022815260200180611cc86022913960400191505060405180910390fd5b8260000182815481106119b857fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b60006119f283611ac9565b8015610bcb5750610bcb8383611b2a565b60008181526001830160205260408120548015611abf5783546000198083019190810190600090879083908110611a3657fe5b9060005260206000200154905080876000018481548110611a5357fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611a8357fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610790565b6000915050610790565b6000611af5827f01ffc9a700000000000000000000000000000000000000000000000000000000611b2a565b80156107905750611b23827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19611b2a565b1592915050565b6000806000611b398585611b50565b91509150818015611b475750805b95945050505050565b604080517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19831660248083019190915282518083039091018152604490910182526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f01ffc9a700000000000000000000000000000000000000000000000000000000178152915181516000938493928492606092600160a060020a038a169261753092879282918083835b60208310611c1b5780518252601f199092019160209182019101611bfc565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303818686fa925050503d8060008114611c7c576040519150601f19603f3d011682016040523d82523d6000602084013e611c81565b606091505b5091509150602081511015611c9f5760008094509450505050611cc0565b81818060200190516020811015611cb557600080fd5b505190955093505050505b925092905056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20756e706175736545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332304f6e417070726f76653a207370656e64657220646f65736e277420737570706f7274206f6e417070726f766545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332305072657365744d696e7465725061757365723a206d7573742068617665206d696e74657220726f6c6520746f206d696e7445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332304f6e417070726f76653a206661696c656420746f2063616c6c206f6e417070726f766545524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20706175736545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a2646970667358221220cc551cdd493590e472fdebf85123a05472dad3c02db05e0b994b9209a5a6f8f364736f6c634300060c0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000108b2a2c2802909400000000000000000000000000000000000000000000000000000000000000000000155075626c69632053616c652043465820546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000067075624346580000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Public Sale CFX Token
Arg [1] : symbol_ (string): pubCFX
Arg [2] : initialSupply_ (uint256): 20000000000000000000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000108b2a2c28029094000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [4] : 5075626c69632053616c652043465820546f6b656e0000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 7075624346580000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

63223:1303:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63969:109;;;;;;;;;;;;;;;;-1:-1:-1;63969:109:0;-1:-1:-1;;;;;63969:109:0;;:::i;:::-;;11598:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13795:210;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13795:210:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;63288:74;;;:::i;:::-;;;;;;;;;;;;;;;;12673:100;;;:::i;14487:454::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14487:454:0;;;;;;;;;;;;;;;;;:::i;46383:114::-;;;;;;;;;;;;;;;;-1:-1:-1;46383:114:0;;:::i;63369:74::-;;;:::i;64154:142::-;;;;;;;;;;;;;;;;-1:-1:-1;64154:142:0;;;;;;-1:-1:-1;;;;;64154:142:0;;:::i;46759:264::-;;;;;;;;;;;;;;;;-1:-1:-1;46759:264:0;;;;;;-1:-1:-1;;;;;46759:264:0;;:::i;12525:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48042:246;;;;;;;;;;;;;;;;-1:-1:-1;48042:246:0;;;;;;-1:-1:-1;;;;;48042:246:0;;:::i;15350:300::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15350:300:0;;;;;;;;:::i;53490:215::-;;;:::i;52607:242::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;52607:242:0;;;;;;;;:::i;50236:91::-;;;;;;;;;;;;;;;;-1:-1:-1;50236:91:0;;:::i;22162:78::-;;;:::i;12836:119::-;;;;;;;;;;;;;;;;-1:-1:-1;12836:119:0;-1:-1:-1;;;;;12836:119:0;;:::i;50646:357::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;50646:357:0;;;;;;;;:::i;53063:209::-;;;:::i;46024:170::-;;;;;;;;;;;;;;;;-1:-1:-1;46024:170:0;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;46024:170:0;;;;;;;;;;;;;;44985:139;;;;;;;;;;;;;;;;-1:-1:-1;44985:139:0;;;;;;-1:-1:-1;;;;;44985:139:0;;:::i;11800:87::-;;;:::i;43628:49::-;;;:::i;16153:400::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16153:400:0;;;;;;;;:::i;13168:216::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13168:216:0;;;;;;;;:::i;45298:127::-;;;;;;;;;;;;;;;;-1:-1:-1;45298:127:0;;:::i;61873:270::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;61873:270:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61873:270:0;;-1:-1:-1;61873:270:0;-1:-1:-1;61873:270:0;:::i;51819:62::-;;;:::i;47268:267::-;;;;;;;;;;;;;;;;-1:-1:-1;47268:267:0;;;;;;-1:-1:-1;;;;;47268:267:0;;:::i;13447:201::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13447:201:0;;;;;;;;;;:::i;51888:62::-;;;:::i;63969:109::-;64031:39;43673:4;64062:7;64031:10;:39::i;:::-;63969:109;:::o;11598:83::-;11668:5;11661:12;;;;;;;;-1:-1:-1;;11661:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11635:13;;11661:12;;11668:5;;11661:12;;11668:5;11661:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11598:83;:::o;13795:210::-;13914:4;13936:39;13945:12;:10;:12::i;:::-;13959:7;13968:6;13936:8;:39::i;:::-;-1:-1:-1;13993:4:0;13795:210;;;;;:::o;63288:74::-;63332:30;63288:74;:::o;12673:100::-;12753:12;;12673:100;:::o;14487:454::-;14627:4;14644:36;14654:6;14662:9;14673:6;14644:9;:36::i;:::-;14691:220;14714:6;14735:12;:10;:12::i;:::-;14762:138;14818:6;14762:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14762:19:0;;;;;;:11;:19;;;;;;14782:12;:10;:12::i;:::-;-1:-1:-1;;;;;14762:33:0;;;;;;;;;;;;-1:-1:-1;14762:33:0;;;:138;:37;:138::i;:::-;14691:8;:220::i;:::-;-1:-1:-1;14929:4:0;14487:454;;;;;:::o;46383:114::-;46440:7;46467:12;;;;;;;;;;:22;;;;46383:114::o;63369:74::-;63413:30;63369:74;:::o;64154:142::-;64223:24;64233:4;64239:7;64223:9;:24::i;:::-;64258:30;64269:4;64275:12;:10;:12::i;:::-;64258:10;:30::i;:::-;64154:142;;:::o;46759:264::-;46865:6;:12;;;;;;;;;;:22;;;46857:45;;46889:12;:10;:12::i;:::-;46857:7;:45::i;:::-;46835:142;;;;-1:-1:-1;;;;;46835:142:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46990:25;47001:4;47007:7;46990:10;:25::i;12525:83::-;12591:9;;;;12525:83;:::o;48042:246::-;48154:12;:10;:12::i;:::-;-1:-1:-1;;;;;48143:23:0;:7;-1:-1:-1;;;;;48143:23:0;;48121:120;;;;-1:-1:-1;;;;;48121:120:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48254:26;48266:4;48272:7;48254:11;:26::i;15350:300::-;15465:4;15487:133;15510:12;:10;:12::i;:::-;15537:7;15559:50;15598:10;15559:11;:25;15571:12;:10;:12::i;:::-;-1:-1:-1;;;;;15559:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15559:25:0;;;:34;;;;;;;;;;;:38;:50::i;53490:215::-;53557:34;51926:24;53578:12;:10;:12::i;53557:34::-;53535:141;;;;-1:-1:-1;;;;;53535:141:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53687:10;:8;:10::i;:::-;53490:215::o;52607:242::-;52697:34;51857:24;52718:12;:10;:12::i;52697:34::-;52675:138;;;;-1:-1:-1;;;;;52675:138:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52824:17;52830:2;52834:6;52824:5;:17::i;50236:91::-;50292:27;50298:12;:10;:12::i;:::-;50312:6;50292:5;:27::i;22162:78::-;22225:7;;;;;;;;22162:78::o;12836:119::-;-1:-1:-1;;;;;12929:18:0;12902:7;12929:18;;;:9;:18;;;;;;;12836:119::o;50646:357::-;50723:26;50765:133;50820:6;50765:133;;;;;;;;;;;;;;;;;:32;50775:7;50784:12;:10;:12::i;:::-;50765:9;:32::i;:::-;:36;:133;:36;:133::i;:::-;50723:175;;50911:51;50920:7;50929:12;:10;:12::i;:::-;50943:18;50911:8;:51::i;:::-;50973:22;50979:7;50988:6;50973:5;:22::i;:::-;50646:357;;;:::o;53063:209::-;53128:34;51926:24;53149:12;:10;:12::i;53128:34::-;53106:139;;;;-1:-1:-1;;;;;53106:139:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53256:8;:6;:8::i;46024:170::-;46124:7;46156:12;;;;;;;;;;:30;;46180:5;46156:23;:30::i;:::-;46149:37;46024:170;-1:-1:-1;;;46024:170:0:o;44985:139::-;45054:4;45078:12;;;;;;;;;;:38;;45108:7;45078:29;:38::i;11800:87::-;11872:7;11865:14;;;;;;;;-1:-1:-1;;11865:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11839:13;;11865:14;;11872:7;;11865:14;;11872:7;11865:14;;;;;;;;;;;;;;;;;;;;;;;;43628:49;43673:4;43628:49;:::o;16153:400::-;16273:4;16295:228;16318:12;:10;:12::i;:::-;16345:7;16367:145;16424:15;16367:145;;;;;;;;;;;;;;;;;:11;:25;16379:12;:10;:12::i;:::-;-1:-1:-1;;;;;16367:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16367:25:0;;;:34;;;;;;;;;;;:145;:38;:145::i;13168:216::-;13290:4;13312:42;13322:12;:10;:12::i;:::-;13336:9;13347:6;13312:9;:42::i;45298:127::-;45361:7;45388:12;;;;;;;;;;:29;;:27;:29::i;61873:270::-;62003:4;62028:24;62036:7;62045:6;62028:7;:24::i;:::-;62020:33;;;;;;62064:49;62079:10;62091:7;62100:6;62108:4;;62064:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62064:14:0;;-1:-1:-1;;;62064:49:0:i;:::-;-1:-1:-1;62131:4:0;61873:270;;;;;;:::o;51819:62::-;51857:24;51819:62;:::o;47268:267::-;47375:6;:12;;;;;;;;;;:22;;;47367:45;;47399:12;:10;:12::i;47367:45::-;47345:143;;;;-1:-1:-1;;;;;47345:143:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13447:201;-1:-1:-1;;;;;13613:18:0;;;13581:7;13613:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13447:201::o;51888:62::-;51926:24;51888:62;:::o;4878:181::-;4936:7;4968:5;;;4992:6;;;;4984:46;;;;;-1:-1:-1;;;;;4984:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;31102:166;31190:4;31219:41;31224:3;-1:-1:-1;;;;;31244:14:0;;31219:4;:41::i;53713:217::-;53878:44;53905:4;53911:2;53915:6;23924:272;24067:44;24094:4;24100:2;24104:6;24067:26;:44::i;:::-;24133:8;:6;:8::i;:::-;24132:9;24124:64;;;;-1:-1:-1;;;;;24124:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;667:106;755:10;667:106;:::o;19539:380::-;-1:-1:-1;;;;;19675:19:0;;19667:68;;;;-1:-1:-1;;;;;19667:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19754:21:0;;19746:68;;;;-1:-1:-1;;;;;19746:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19827:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19879:32;;;;;;;;;;;;;;;;;19539:380;;;:::o;17043:610::-;-1:-1:-1;;;;;17183:20:0;;17175:70;;;;-1:-1:-1;;;;;17175:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17264:23:0;;17256:71;;;;-1:-1:-1;;;;;17256:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17340:47;17361:6;17369:9;17380:6;17340:20;:47::i;:::-;17420:108;17456:6;17420:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17420:17:0;;;;;;:9;:17;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;17400:17:0;;;;;;;:9;:17;;;;;;:128;;;;17562:20;;;;;;;:32;;17587:6;17562:24;:32::i;:::-;-1:-1:-1;;;;;17539:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;17610:35;;;;;;;17539:20;;17610:35;;;;;;;;;;;;;17043:610;;;:::o;5781:226::-;5901:7;5937:12;5929:6;;;;5921:29;;;;-1:-1:-1;;;;;5921:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5973:5:0;;;5781:226::o;49322:188::-;49396:6;:12;;;;;;;;;;:33;;49421:7;49396:24;:33::i;:::-;49392:111;;;49478:12;:10;:12::i;:::-;-1:-1:-1;;;;;49451:40:0;49469:7;-1:-1:-1;;;;;49451:40:0;49463:4;49451:40;;;;;;;;;;49322:188;;:::o;49518:192::-;49593:6;:12;;;;;;;;;;:36;;49621:7;49593:27;:36::i;:::-;49589:114;;;49678:12;:10;:12::i;:::-;-1:-1:-1;;;;;49651:40:0;49669:7;-1:-1:-1;;;;;49651:40:0;49663:4;49651:40;;;;;;;;;;49518:192;;:::o;23211:120::-;22756:7;;;;;;;22748:40;;;;;-1:-1:-1;;;;;22748:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23270:7:::1;:15:::0;;-1:-1:-1;;23270:15:0::1;::::0;;23301:22:::1;23310:12;:10;:12::i;:::-;23301:22;::::0;;-1:-1:-1;;;;;23301:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;23211:120::o:0;17935:378::-;-1:-1:-1;;;;;18019:21:0;;18011:65;;;;;-1:-1:-1;;;;;18011:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18089:49;18118:1;18122:7;18131:6;18089:20;:49::i;:::-;18166:12;;:24;;18183:6;18166:16;:24::i;:::-;18151:12;:39;-1:-1:-1;;;;;18222:18:0;;;;;;:9;:18;;;;;;:30;;18245:6;18222:22;:30::i;:::-;-1:-1:-1;;;;;18201:18:0;;;;;;:9;:18;;;;;;;;:51;;;;18268:37;;;;;;;18201:18;;;;18268:37;;;;;;;;;;17935:378;;:::o;18646:455::-;-1:-1:-1;;;;;18730:21:0;;18722:67;;;;-1:-1:-1;;;;;18722:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18802:49;18823:7;18840:1;18844:6;18802:20;:49::i;:::-;18885:105;18922:6;18885:105;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18885:18:0;;;;;;:9;:18;;;;;;;:105;:22;:105::i;:::-;-1:-1:-1;;;;;18864:18:0;;;;;;:9;:18;;;;;:126;19016:12;;:24;;19033:6;19016:16;:24::i;:::-;19001:12;:39;19056:37;;;;;;;;19082:1;;-1:-1:-1;;;;;19056:37:0;;;;;;;;;;;;18646:455;;:::o;22952:118::-;22480:7;;;;;;;22479:8;22471:37;;;;;-1:-1:-1;;;;;22471:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23012:7:::1;:14:::0;;-1:-1:-1;;23012:14:0::1;;;::::0;;23042:20:::1;23049:12;:10;:12::i;32449:181::-:0;32550:7;32598:22;32602:3;32614:5;32598:3;:22::i;31702:190::-;31809:4;31838:46;31848:3;-1:-1:-1;;;;;31868:14:0;;31838:9;:46::i;31978:117::-;32041:7;32068:19;32076:3;32068:7;:19::i;62151:988::-;62332:37;62404:59;62436:7;62332:37;62404:31;:59::i;:::-;62382:158;;;;-1:-1:-1;;;;;62382:158:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62554:7;62563:16;62596:7;-1:-1:-1;;;;;62596:12:0;62672:17;62712:5;62740:7;62770:6;62799:4;62627:195;;;;;;-1:-1:-1;;;;;62627:195:0;;;;;;-1:-1:-1;;;;;62627:195:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62627:195:0;;;-1:-1:-1;;62627:195:0;;;;;;;;;;;;;;;;-1:-1:-1;;62627:195:0;;;;;;;;;62596:241;;;62627:195;;62596:241;;-1:-1:-1;62596:241:0;;-1:-1:-1;62627:195:0;-1:-1:-1;62596:241:0;-1:-1:-1;62596:241:0;;-1:-1:-1;62596:241:0;;-1:-1:-1;62627:195:0;62596:241;;;;;;;;;;-1:-1:-1;;62596:241:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62553:284;;;;62910:2;62921:3;62902:24;;;;;-1:-1:-1;;;;;62902:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62984:4;62979:3;62975:14;62969:21;62963:27;;63084:2;63076:55;;;;-1:-1:-1;;;;;63076:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62151:988;;;;;;;:::o;25922:414::-;25985:4;26007:21;26017:3;26022:5;26007:9;:21::i;:::-;26002:327;;-1:-1:-1;26045:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;26228:18;;26206:19;;;:12;;;:19;;;;;;:40;;;;26261:11;;26002:327;-1:-1:-1;26312:5:0;26305:12;;64304:219;64471:44;64498:4;64504:2;64508:6;64471:26;:44::i;31444:172::-;31535:4;31564:44;31572:3;-1:-1:-1;;;;;31592:14:0;;31564:7;:44::i;5342:136::-;5400:7;5427:43;5431:1;5434;5427:43;;;;;;;;;;;;;;;;;:3;:43::i;28865:273::-;29006:18;;28959:7;;29006:26;-1:-1:-1;28984:110:0;;;;-1:-1:-1;;;;;28984:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29112:3;:11;;29124:5;29112:18;;;;;;;;;;;;;;;;29105:25;;28865:273;;;;:::o;28155:161::-;28255:4;28284:19;;;:12;;;;;:19;;;;;;:24;;;28155:161::o;28402:109::-;28485:18;;28402:109::o;58031:335::-;58145:4;58272:23;58287:7;58272:14;:23::i;:::-;:86;;;;;58312:46;58337:7;58346:11;58312:24;:46::i;26512:1557::-;26578:4;26717:19;;;:12;;;:19;;;;;;26753:15;;26749:1313;;27201:18;;-1:-1:-1;;27152:14:0;;;;27201:22;;;;27128:21;;27201:3;;:22;;27488;;;;;;;;;;;;;;27468:42;;27634:9;27605:3;:11;;27617:13;27605:26;;;;;;;;;;;;;;;;;;;:38;;;;27711:23;;;27753:1;27711:12;;;:23;;;;;;27737:17;;;27711:43;;27863:17;;27711:3;;27863:17;;;;;;;;;;;;;;;;;;;;;;27958:3;:12;;:19;27971:5;27958:19;;;;;;;;;;;27951:26;;;28001:4;27994:11;;;;;;;;26749:1313;28045:5;28038:12;;;;;57393:412;57457:4;57668:55;57693:7;57702:20;57668:24;:55::i;:::-;:129;;;;-1:-1:-1;57741:56:0;57766:7;-1:-1:-1;;57741:24:0;:56::i;:::-;57740:57;;57393:412;-1:-1:-1;;57393:412:0:o;59964:446::-;60084:4;60271:12;60285:11;60313:50;60342:7;60351:11;60313:28;:50::i;:::-;60270:93;;;;60384:7;:17;;;;;60395:6;60384:17;60376:26;59964:446;-1:-1:-1;;;;;59964:446:0:o;60937:477::-;61131:57;;;-1:-1:-1;;61131:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61154:20;61131:57;;;61250:45;;;;61061:4;;;;61131:57;61061:4;;61089:26;;-1:-1:-1;;;;;61250:18:0;;;61274:5;;61131:57;;61250:45;;;;61131:57;61250:45;;;;;;;;;;-1:-1:-1;;61250:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61199:96;;;;61326:2;61310:6;:13;:18;61306:45;;;61338:5;61345;61330:21;;;;;;;;;61306:45;61370:7;61390:6;61379:26;;;;;;;;;;;;;;;-1:-1:-1;61379:26:0;61362:44;;-1:-1:-1;61379:26:0;-1:-1:-1;;;;60937:477:0;;;;;;:::o

Swarm Source

ipfs://cc551cdd493590e472fdebf85123a05472dad3c02db05e0b994b9209a5a6f8f3
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.