ETH Price: $2,465.51 (+1.20%)

Token

MEXC Token (MEXC)
 

Overview

Max Total Supply

349,278,921.948765717652 MEXC

Holders

93 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
325.869120654397 MEXC

Value
$0.00
0x7fe5657f89acc4e4592294b0d9120a292479e789
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:
MEXCToken

Compiler Version
v0.5.10+commit.5a6ea5b1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-08-12
*/

/**
 *
 * MIT License
 *
 * Copyright (c) 2019, MEXC Program Developers & OpenZeppelin Project.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 *
 */
pragma solidity ^0.5.0;

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

        return c;
    }

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

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the `nonReentrant` modifier
 * available, which can be aplied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 */
contract ReentrancyGuard {
    /// @dev counter to allow mutex lock with only one SSTORE operation
    uint256 private _guardCounter;

    constructor () internal {
        // The counter starts at one to prevent changing it from zero to a non-zero
        // value, which is a more expensive operation.
        _guardCounter = 1;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _guardCounter += 1;
        uint256 localCounter = _guardCounter;
        _;
        require(localCounter == _guardCounter, "ReentrancyGuard: reentrant call");
    }
}

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

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

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

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

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

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

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

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

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

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

    /**
     * @dev See `IERC20.balanceOf`.
     */
    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See `IERC20.transfer`.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

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

    /**
     * @dev See `IERC20.approve`.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev See `IERC20.transferFrom`.
     *
     * Emits an `Approval` event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of `ERC20`;
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `value`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to `approve` that can be used as a mitigation for
     * problems described in `IERC20.approve`.
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to `approve` that can be used as a mitigation for
     * problems described in `IERC20.approve`.
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to `transfer`, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a `Transfer` event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount);
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a `Transfer` event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

     /**
     * @dev Destoys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a `Transfer` event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 value) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an `Approval` event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Destoys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See `_burn` and `_approve`.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount));
    }
}

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

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

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

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

contract MinterRole {
    using Roles for Roles.Role;

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

    Roles.Role private _minters;

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

    modifier onlyMinter() {
        require(isMinter(msg.sender), "MinterRole: caller does not have the Minter role");
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    // function addMinter(address account) public onlyMinter {
    //     _addMinter(account);
    // }

    // function renounceMinter() public {
    //     _removeMinter(msg.sender);
    // }

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

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

/**
 * @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).
 */
contract ERC20Burnable is ERC20 {
    /**
     * @dev Destoys `amount` tokens from the caller.
     *
     * See `ERC20._burn`.
     */
    function burn(address account, uint256 amount) public {
        _burn(account, amount);
    }

    /**
     * @dev See `ERC20._burnFrom`.
     */
    // function burnFrom(address account, uint256 amount) public {
    //     _burnFrom(account, amount);
    // }
}

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

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

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

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

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

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

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

/**
 * @dev Collection of functions related to the address type,
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * This test is non-exhaustive, and there may be false-negatives: during the
     * execution of a contract's constructor, its address will be reported as
     * not containing a contract.
     *
     * > It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in 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;
    }
}

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value);
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves.

        // A Solidity high level call has three parts:
        //  1. The target address is checked to verify it contains contract code
        //  2. The call itself is made, and success asserted
        //  3. The return value is decoded, which in turn checks the size of the returned data.
        // solhint-disable-next-line max-line-length
        require(address(token).isContract(), "SafeERC20: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = address(token).call(data);
        require(success, "SafeERC20: low-level call failed");

        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

contract MEXCToken is ERC20Mintable, ERC20Burnable, ReentrancyGuard, Ownable {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    string  public name      = "MEXC Token";
    string  public symbol    = "MEXC";
    uint8   public decimals  = 18;
    uint256 public maxSupply = 1714285714 ether;    // max allowable minting.

    bool    private _transferAllowed = true;        // allow/disallow transfer.

    mapping(address => bool) locked;                // locked addresses.

    modifier canTransfer() {
        if (msg.sender == owner()) {
            _;
        } else {
            require(_transferAllowed, "MEXC: transfer is not allowed");
            require(locked[msg.sender] == false, "MEXC: account is locked");
            _;
        }
    }
    
    event burnTokenEvent(address account, uint256 value);
    event lockAddressEvent(address account);
    event unlockAddressEvent(address account);
    event tokenIsRenamed(string symbol, string name);
    event supplyHasIncreased(uint256 newSupply);

    constructor() public {
    }

    /**
     * Allow the transfer of token to happen once listed on exchangers
     */
    function allowTransfers() onlyOwner public returns (bool) {
        _transferAllowed = true;
        return true;
    }

    /**
     * disallow the transfer
     */
    function disallowTransfers() onlyOwner public returns (bool) {
        _transferAllowed = false;
        return true;
    } 

    function isTransferAllowed() public view returns (bool) {
        return _transferAllowed;
    }

    /**
     * lock the address from any transfer
     */
    function lockAddress(address _addr) onlyOwner public {
        locked[_addr] = true;
        emit lockAddressEvent(_addr);
    }

    /**
     * lock the address from any transfer
     */
    function unlockAddress(address _addr) onlyOwner public {
        locked[_addr] = false;
        emit unlockAddressEvent(_addr);
    }

    /**
     * Check if the address is locked, or not
     */
    function isLocked(address _addr) public view returns (bool) {
        return locked[_addr];
    }

    /**
     * Rename the token to new name, and symbol
     */
    function renameToken(string memory _symbol, string memory _name) onlyOwner public {
        symbol = _symbol;
        name = _name;
        emit tokenIsRenamed(_symbol, _name);
    }

    /**
     * Increase the max supply
     */
    function increaseSupply(uint256 supply) onlyOwner public returns (bool) {
        maxSupply = maxSupply.add(supply);
        emit supplyHasIncreased(maxSupply);
        return true;
    }

    /**
     * Mint the token to new owner
     */
    function mint(address account, uint256 amount) 
            onlyMinter onlyOwner nonReentrant public returns (bool) {
        require(totalSupply().add(amount) <= maxSupply, "MEXC: exceeding the maxSupply amount");
        super.mint(account, amount);
        return true;
    }

    /**
     * Mint the token to new owner
     */
    function mintThenLock(address account, uint256 amount) 
            onlyMinter onlyOwner public returns (bool) {
        require(totalSupply().add(amount) <= maxSupply, "MEXC: exceeding the maxSupply amount");
        mint(account, amount);
        lockAddress(account);
        return true;
    }

    /**
     * Burn the amount in the address
     */
    function burn(address account, uint256 value) 
            onlyOwner nonReentrant public {
        super.burn(account, value);
        emit burnTokenEvent(account, value);
    }

    /**
     * @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) 
            canTransfer nonReentrant public returns (bool) {
        super.transfer(recipient, amount);
        return true;
    }

    /**
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) 
            canTransfer nonReentrant public returns (bool) {
        super.approve(spender, value);
        return true;
    }

    /**
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `value`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) 
            canTransfer nonReentrant public returns (bool) {
        super.transferFrom(sender, recipient, amount);
        return true;
    }

    /**
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) 
            canTransfer nonReentrant public returns (bool) {
        super.increaseAllowance(spender, addedValue);
        return true;
    }

    /**
     *
     * 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) 
            canTransfer nonReentrant public returns (bool) {
        super.decreaseAllowance(spender, subtractedValue);
        return true;
    }  

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"disallowTransfers","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"allowTransfers","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"lockAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_symbol","type":"string"},{"name":"_name","type":"string"}],"name":"renameToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"isLocked","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"unlockAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"supply","type":"uint256"}],"name":"increaseSupply","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"mintThenLock","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isTransferAllowed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maxSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"burnTokenEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"lockAddressEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"unlockAddressEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"symbol","type":"string"},{"indexed":false,"name":"name","type":"string"}],"name":"tokenIsRenamed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newSupply","type":"uint256"}],"name":"supplyHasIncreased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

60c0604052600a60808190527f4d45584320546f6b656e0000000000000000000000000000000000000000000060a0908152620000409160069190620002a9565b506040805180820190915260048082527f4d4558430000000000000000000000000000000000000000000000000000000060209092019182526200008791600791620002a9565b506008805460ff199081166012179091556b058a061ec4dc1559a7080000600955600a80549091166001179055348015620000c157600080fd5b50620000d6336001600160e01b036200012d16565b6001600455600580546001600160a01b0319163317908190556040516001600160a01b0391909116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36200034e565b620001488160036200017f60201b62001cf01790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6200019482826001600160e01b036200022616565b156200020157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b03821662000289576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180620022af6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002ec57805160ff19168380011785556200031c565b828001600101855582156200031c579182015b828111156200031c578251825591602001919060010190620002ff565b506200032a9291506200032e565b5090565b6200034b91905b808211156200032a576000815560010162000335565b90565b611f51806200035e6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80638da5cb5b116100f9578063b7eb5e0a11610097578063cd8c063b11610071578063cd8c063b1461062f578063d5abeb0114610637578063dd62ed3e1461063f578063f2fde38b1461066d576101a9565b8063b7eb5e0a146105c0578063b921e163146105e6578063c4be6bb414610603576101a9565b80639dc29fac116100d35780639dc29fac14610516578063a457c2d714610542578063a9059cbb1461056e578063aa271e1a1461059a576101a9565b80638da5cb5b146104e25780638f32d59b1461050657806395d89b411461050e576101a9565b8063313ce5671161016657806340c10f191161014057806340c10f191461033d57806341cc8912146103695780634a4fbeec1461049657806370a08231146104bc576101a9565b8063313ce567146102cb57806334a90d02146102e95780633950935114610311576101a9565b806306fdde03146101ae578063095ea7b31461022b57806318160ddd1461026b578063212c8157146102855780632185810b1461028d57806323b872dd14610295575b600080fd5b6101b6610693565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f05781810151838201526020016101d8565b50505050905090810190601f16801561021d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102576004803603604081101561024157600080fd5b506001600160a01b038135169060200135610721565b604080519115158252519081900360200190f35b6102736108b2565b60408051918252519081900360200190f35b6102576108b9565b610257610912565b610257600480360360608110156102ab57600080fd5b506001600160a01b0381358116916020810135909116906040013561096f565b6102d3610b03565b6040805160ff9092168252519081900360200190f35b61030f600480360360208110156102ff57600080fd5b50356001600160a01b0316610b0c565b005b6102576004803603604081101561032757600080fd5b506001600160a01b038135169060200135610bae565b6102576004803603604081101561035357600080fd5b506001600160a01b038135169060200135610c9f565b61030f6004803603604081101561037f57600080fd5b81019060208101813564010000000081111561039a57600080fd5b8201836020820111156103ac57600080fd5b803590602001918460018302840111640100000000831117156103ce57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561042157600080fd5b82018360208201111561043357600080fd5b8035906020019184600183028401116401000000008311171561045557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610d99945050505050565b610257600480360360208110156104ac57600080fd5b50356001600160a01b0316610f0c565b610273600480360360208110156104d257600080fd5b50356001600160a01b0316610f2a565b6104ea610f45565b604080516001600160a01b039092168252519081900360200190f35b610257610f54565b6101b6610f65565b61030f6004803603604081101561052c57600080fd5b506001600160a01b038135169060200135610fc0565b6102576004803603604081101561055857600080fd5b506001600160a01b0381351690602001356110a9565b6102576004803603604081101561058457600080fd5b506001600160a01b03813516906020013561119a565b610257600480360360208110156105b057600080fd5b50356001600160a01b031661128b565b61030f600480360360208110156105d657600080fd5b50356001600160a01b031661129e565b610257600480360360208110156105fc57600080fd5b503561133d565b6102576004803603604081101561061957600080fd5b506001600160a01b0381351690602001356113d8565b6102576114ce565b6102736114d7565b6102736004803603604081101561065557600080fd5b506001600160a01b03813581169160200135166114dd565b61030f6004803603602081101561068357600080fd5b50356001600160a01b0316611508565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107195780601f106106ee57610100808354040283529160200191610719565b820191906000526020600020905b8154815290600101906020018083116106fc57829003601f168201915b505050505081565b600061072b610f45565b6001600160a01b0316336001600160a01b031614156107a8576004805460010190819055610759848461155b565b506001915060045481146107a2576040805162461bcd60e51b815260206004820152601f6024820152600080516020611d95833981519152604482015290519081900360640190fd5b506108ac565b600a5460ff166107ed576040805162461bcd60e51b815260206004820152601d6024820152600080516020611db5833981519152604482015290519081900360640190fd5b336000908152600b602052604090205460ff161561084c576040805162461bcd60e51b815260206004820152601760248201527613515610ce881858d8dbdd5b9d081a5cc81b1bd8dad959604a1b604482015290519081900360640190fd5b6004805460010190819055610861848461155b565b506001915060045481146108aa576040805162461bcd60e51b815260206004820152601f6024820152600080516020611d95833981519152604482015290519081900360640190fd5b505b92915050565b6002545b90565b60006108c3610f54565b610902576040805162461bcd60e51b81526020600482018190526024820152600080516020611e4d833981519152604482015290519081900360640190fd5b50600a805460ff19169055600190565b600061091c610f54565b61095b576040805162461bcd60e51b81526020600482018190526024820152600080516020611e4d833981519152604482015290519081900360640190fd5b50600a805460ff1916600190811790915590565b6000610979610f45565b6001600160a01b0316336001600160a01b031614156109f75760048054600101908190556109a8858585611568565b506001915060045481146109f1576040805162461bcd60e51b815260206004820152601f6024820152600080516020611d95833981519152604482015290519081900360640190fd5b50610afc565b600a5460ff16610a3c576040805162461bcd60e51b815260206004820152601d6024820152600080516020611db5833981519152604482015290519081900360640190fd5b336000908152600b602052604090205460ff1615610a9b576040805162461bcd60e51b815260206004820152601760248201527613515610ce881858d8dbdd5b9d081a5cc81b1bd8dad959604a1b604482015290519081900360640190fd5b6004805460010190819055610ab1858585611568565b50600191506004548114610afa576040805162461bcd60e51b815260206004820152601f6024820152600080516020611d95833981519152604482015290519081900360640190fd5b505b9392505050565b60085460ff1681565b610b14610f54565b610b53576040805162461bcd60e51b81526020600482018190526024820152600080516020611e4d833981519152604482015290519081900360640190fd5b6001600160a01b0381166000818152600b6020908152604091829020805460ff19166001179055815192835290517f8a7c4419c95cb4931471e12f2ad5fb760abfc1389479f0e9a588c2dc98f2dceb9281900390910190a150565b6000610bb8610f45565b6001600160a01b0316336001600160a01b03161415610be657600480546001019081905561075984846115bf565b600a5460ff16610c2b576040805162461bcd60e51b815260206004820152601d6024820152600080516020611db5833981519152604482015290519081900360640190fd5b336000908152600b602052604090205460ff1615610c8a576040805162461bcd60e51b815260206004820152601760248201527613515610ce881858d8dbdd5b9d081a5cc81b1bd8dad959604a1b604482015290519081900360640190fd5b600480546001019081905561086184846115bf565b6000610caa3361128b565b610ce55760405162461bcd60e51b8152600401808060200182810382526030815260200180611e1d6030913960400191505060405180910390fd5b610ced610f54565b610d2c576040805162461bcd60e51b81526020600482018190526024820152600080516020611e4d833981519152604482015290519081900360640190fd5b6004805460010190819055600954610d5284610d466108b2565b9063ffffffff6115fb16565b1115610d8f5760405162461bcd60e51b8152600401808060200182810382526024815260200180611ef96024913960400191505060405180910390fd5b6108618484611655565b610da1610f54565b610de0576040805162461bcd60e51b81526020600482018190526024820152600080516020611e4d833981519152604482015290519081900360640190fd5b8151610df3906007906020850190611c58565b508051610e07906006906020840190611c58565b507fa5c92e86140feb7eb0bbbc3f7d785a90e1d168989b528ff22962e995f7ef21df8282604051808060200180602001838103835285818151815260200191508051906020019080838360005b83811015610e6c578181015183820152602001610e54565b50505050905090810190601f168015610e995780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015610ecc578181015183820152602001610eb4565b50505050905090810190601f168015610ef95780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a15050565b6001600160a01b03166000908152600b602052604090205460ff1690565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b031690565b6005546001600160a01b0316331490565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107195780601f106106ee57610100808354040283529160200191610719565b610fc8610f54565b611007576040805162461bcd60e51b81526020600482018190526024820152600080516020611e4d833981519152604482015290519081900360640190fd5b600480546001019081905561101c83836116a5565b604080516001600160a01b03851681526020810184905281517f7c21cf5d524274e2d794116265284572dceb98c78e6f691aa7072e1925a29e03929181900390910190a160045481146110a4576040805162461bcd60e51b815260206004820152601f6024820152600080516020611d95833981519152604482015290519081900360640190fd5b505050565b60006110b3610f45565b6001600160a01b0316336001600160a01b031614156110e157600480546001019081905561075984846116b3565b600a5460ff16611126576040805162461bcd60e51b815260206004820152601d6024820152600080516020611db5833981519152604482015290519081900360640190fd5b336000908152600b602052604090205460ff1615611185576040805162461bcd60e51b815260206004820152601760248201527613515610ce881858d8dbdd5b9d081a5cc81b1bd8dad959604a1b604482015290519081900360640190fd5b600480546001019081905561086184846116b3565b60006111a4610f45565b6001600160a01b0316336001600160a01b031614156111d257600480546001019081905561075984846116ef565b600a5460ff16611217576040805162461bcd60e51b815260206004820152601d6024820152600080516020611db5833981519152604482015290519081900360640190fd5b336000908152600b602052604090205460ff1615611276576040805162461bcd60e51b815260206004820152601760248201527613515610ce881858d8dbdd5b9d081a5cc81b1bd8dad959604a1b604482015290519081900360640190fd5b600480546001019081905561086184846116ef565b60006108ac60038363ffffffff6116fc16565b6112a6610f54565b6112e5576040805162461bcd60e51b81526020600482018190526024820152600080516020611e4d833981519152604482015290519081900360640190fd5b6001600160a01b0381166000818152600b6020908152604091829020805460ff19169055815192835290517fe097c69c634880f1c9ee76294a0c05b4b9b14becebfa150ded7979498f732e809281900390910190a150565b6000611347610f54565b611386576040805162461bcd60e51b81526020600482018190526024820152600080516020611e4d833981519152604482015290519081900360640190fd5b600954611399908363ffffffff6115fb16565b600981905560408051918252517f6af448a356e1211a28bdca85758a1e5df103f84609147923fef12d451bc61ab89181900360200190a1506001919050565b60006113e33361128b565b61141e5760405162461bcd60e51b8152600401808060200182810382526030815260200180611e1d6030913960400191505060405180910390fd5b611426610f54565b611465576040805162461bcd60e51b81526020600482018190526024820152600080516020611e4d833981519152604482015290519081900360640190fd5b60095461147483610d466108b2565b11156114b15760405162461bcd60e51b8152600401808060200182810382526024815260200180611ef96024913960400191505060405180910390fd5b6114bb8383610c9f565b506114c583610b0c565b50600192915050565b600a5460ff1690565b60095481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611510610f54565b61154f576040805162461bcd60e51b81526020600482018190526024820152600080516020611e4d833981519152604482015290519081900360640190fd5b61155881611763565b50565b60006114c5338484611804565b60006115758484846118f0565b6001600160a01b0384166000908152600160209081526040808320338085529252909120546115b59186916115b0908663ffffffff611a3216565b611804565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916114c59185906115b0908663ffffffff6115fb16565b600082820183811015610afc576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60006116603361128b565b61169b5760405162461bcd60e51b8152600401808060200182810382526030815260200180611e1d6030913960400191505060405180910390fd5b6114c58383611a8f565b6116af8282611b7f565b5050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916114c59185906115b0908663ffffffff611a3216565b60006114c53384846118f0565b60006001600160a01b0382166117435760405162461bcd60e51b8152600401808060200182810382526022815260200180611e6d6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b0381166117a85760405162461bcd60e51b8152600401808060200182810382526026815260200180611dd56026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166118495760405162461bcd60e51b8152600401808060200182810382526024815260200180611ed56024913960400191505060405180910390fd5b6001600160a01b03821661188e5760405162461bcd60e51b8152600401808060200182810382526022815260200180611dfb6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166119355760405162461bcd60e51b8152600401808060200182810382526025815260200180611eb06025913960400191505060405180910390fd5b6001600160a01b03821661197a5760405162461bcd60e51b8152600401808060200182810382526023815260200180611d726023913960400191505060405180910390fd5b6001600160a01b0383166000908152602081905260409020546119a3908263ffffffff611a3216565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546119d8908263ffffffff6115fb16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115611a89576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001600160a01b038216611aea576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254611afd908263ffffffff6115fb16565b6002556001600160a01b038216600090815260208190526040902054611b29908263ffffffff6115fb16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216611bc45760405162461bcd60e51b8152600401808060200182810382526021815260200180611e8f6021913960400191505060405180910390fd5b600254611bd7908263ffffffff611a3216565b6002556001600160a01b038216600090815260208190526040902054611c03908263ffffffff611a3216565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611c9957805160ff1916838001178555611cc6565b82800160010185558215611cc6579182015b82811115611cc6578251825591602001919060010190611cab565b50611cd2929150611cd6565b5090565b6108b691905b80821115611cd25760008155600101611cdc565b611cfa82826116fc565b15611d4c576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff1916600117905556fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573735265656e7472616e637947756172643a207265656e7472616e742063616c6c004d4558433a207472616e73666572206973206e6f7420616c6c6f7765640000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734d4558433a20657863656564696e6720746865206d6178537570706c7920616d6f756e74a265627a7a72305820fa54c6728fa5ad28ebddc72410101936b48f3cea45dfbcb0ded35ee5d7e9672964736f6c634300050a0032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80638da5cb5b116100f9578063b7eb5e0a11610097578063cd8c063b11610071578063cd8c063b1461062f578063d5abeb0114610637578063dd62ed3e1461063f578063f2fde38b1461066d576101a9565b8063b7eb5e0a146105c0578063b921e163146105e6578063c4be6bb414610603576101a9565b80639dc29fac116100d35780639dc29fac14610516578063a457c2d714610542578063a9059cbb1461056e578063aa271e1a1461059a576101a9565b80638da5cb5b146104e25780638f32d59b1461050657806395d89b411461050e576101a9565b8063313ce5671161016657806340c10f191161014057806340c10f191461033d57806341cc8912146103695780634a4fbeec1461049657806370a08231146104bc576101a9565b8063313ce567146102cb57806334a90d02146102e95780633950935114610311576101a9565b806306fdde03146101ae578063095ea7b31461022b57806318160ddd1461026b578063212c8157146102855780632185810b1461028d57806323b872dd14610295575b600080fd5b6101b6610693565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f05781810151838201526020016101d8565b50505050905090810190601f16801561021d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102576004803603604081101561024157600080fd5b506001600160a01b038135169060200135610721565b604080519115158252519081900360200190f35b6102736108b2565b60408051918252519081900360200190f35b6102576108b9565b610257610912565b610257600480360360608110156102ab57600080fd5b506001600160a01b0381358116916020810135909116906040013561096f565b6102d3610b03565b6040805160ff9092168252519081900360200190f35b61030f600480360360208110156102ff57600080fd5b50356001600160a01b0316610b0c565b005b6102576004803603604081101561032757600080fd5b506001600160a01b038135169060200135610bae565b6102576004803603604081101561035357600080fd5b506001600160a01b038135169060200135610c9f565b61030f6004803603604081101561037f57600080fd5b81019060208101813564010000000081111561039a57600080fd5b8201836020820111156103ac57600080fd5b803590602001918460018302840111640100000000831117156103ce57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561042157600080fd5b82018360208201111561043357600080fd5b8035906020019184600183028401116401000000008311171561045557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610d99945050505050565b610257600480360360208110156104ac57600080fd5b50356001600160a01b0316610f0c565b610273600480360360208110156104d257600080fd5b50356001600160a01b0316610f2a565b6104ea610f45565b604080516001600160a01b039092168252519081900360200190f35b610257610f54565b6101b6610f65565b61030f6004803603604081101561052c57600080fd5b506001600160a01b038135169060200135610fc0565b6102576004803603604081101561055857600080fd5b506001600160a01b0381351690602001356110a9565b6102576004803603604081101561058457600080fd5b506001600160a01b03813516906020013561119a565b610257600480360360208110156105b057600080fd5b50356001600160a01b031661128b565b61030f600480360360208110156105d657600080fd5b50356001600160a01b031661129e565b610257600480360360208110156105fc57600080fd5b503561133d565b6102576004803603604081101561061957600080fd5b506001600160a01b0381351690602001356113d8565b6102576114ce565b6102736114d7565b6102736004803603604081101561065557600080fd5b506001600160a01b03813581169160200135166114dd565b61030f6004803603602081101561068357600080fd5b50356001600160a01b0316611508565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107195780601f106106ee57610100808354040283529160200191610719565b820191906000526020600020905b8154815290600101906020018083116106fc57829003601f168201915b505050505081565b600061072b610f45565b6001600160a01b0316336001600160a01b031614156107a8576004805460010190819055610759848461155b565b506001915060045481146107a2576040805162461bcd60e51b815260206004820152601f6024820152600080516020611d95833981519152604482015290519081900360640190fd5b506108ac565b600a5460ff166107ed576040805162461bcd60e51b815260206004820152601d6024820152600080516020611db5833981519152604482015290519081900360640190fd5b336000908152600b602052604090205460ff161561084c576040805162461bcd60e51b815260206004820152601760248201527613515610ce881858d8dbdd5b9d081a5cc81b1bd8dad959604a1b604482015290519081900360640190fd5b6004805460010190819055610861848461155b565b506001915060045481146108aa576040805162461bcd60e51b815260206004820152601f6024820152600080516020611d95833981519152604482015290519081900360640190fd5b505b92915050565b6002545b90565b60006108c3610f54565b610902576040805162461bcd60e51b81526020600482018190526024820152600080516020611e4d833981519152604482015290519081900360640190fd5b50600a805460ff19169055600190565b600061091c610f54565b61095b576040805162461bcd60e51b81526020600482018190526024820152600080516020611e4d833981519152604482015290519081900360640190fd5b50600a805460ff1916600190811790915590565b6000610979610f45565b6001600160a01b0316336001600160a01b031614156109f75760048054600101908190556109a8858585611568565b506001915060045481146109f1576040805162461bcd60e51b815260206004820152601f6024820152600080516020611d95833981519152604482015290519081900360640190fd5b50610afc565b600a5460ff16610a3c576040805162461bcd60e51b815260206004820152601d6024820152600080516020611db5833981519152604482015290519081900360640190fd5b336000908152600b602052604090205460ff1615610a9b576040805162461bcd60e51b815260206004820152601760248201527613515610ce881858d8dbdd5b9d081a5cc81b1bd8dad959604a1b604482015290519081900360640190fd5b6004805460010190819055610ab1858585611568565b50600191506004548114610afa576040805162461bcd60e51b815260206004820152601f6024820152600080516020611d95833981519152604482015290519081900360640190fd5b505b9392505050565b60085460ff1681565b610b14610f54565b610b53576040805162461bcd60e51b81526020600482018190526024820152600080516020611e4d833981519152604482015290519081900360640190fd5b6001600160a01b0381166000818152600b6020908152604091829020805460ff19166001179055815192835290517f8a7c4419c95cb4931471e12f2ad5fb760abfc1389479f0e9a588c2dc98f2dceb9281900390910190a150565b6000610bb8610f45565b6001600160a01b0316336001600160a01b03161415610be657600480546001019081905561075984846115bf565b600a5460ff16610c2b576040805162461bcd60e51b815260206004820152601d6024820152600080516020611db5833981519152604482015290519081900360640190fd5b336000908152600b602052604090205460ff1615610c8a576040805162461bcd60e51b815260206004820152601760248201527613515610ce881858d8dbdd5b9d081a5cc81b1bd8dad959604a1b604482015290519081900360640190fd5b600480546001019081905561086184846115bf565b6000610caa3361128b565b610ce55760405162461bcd60e51b8152600401808060200182810382526030815260200180611e1d6030913960400191505060405180910390fd5b610ced610f54565b610d2c576040805162461bcd60e51b81526020600482018190526024820152600080516020611e4d833981519152604482015290519081900360640190fd5b6004805460010190819055600954610d5284610d466108b2565b9063ffffffff6115fb16565b1115610d8f5760405162461bcd60e51b8152600401808060200182810382526024815260200180611ef96024913960400191505060405180910390fd5b6108618484611655565b610da1610f54565b610de0576040805162461bcd60e51b81526020600482018190526024820152600080516020611e4d833981519152604482015290519081900360640190fd5b8151610df3906007906020850190611c58565b508051610e07906006906020840190611c58565b507fa5c92e86140feb7eb0bbbc3f7d785a90e1d168989b528ff22962e995f7ef21df8282604051808060200180602001838103835285818151815260200191508051906020019080838360005b83811015610e6c578181015183820152602001610e54565b50505050905090810190601f168015610e995780820380516001836020036101000a031916815260200191505b50838103825284518152845160209182019186019080838360005b83811015610ecc578181015183820152602001610eb4565b50505050905090810190601f168015610ef95780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a15050565b6001600160a01b03166000908152600b602052604090205460ff1690565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b031690565b6005546001600160a01b0316331490565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107195780601f106106ee57610100808354040283529160200191610719565b610fc8610f54565b611007576040805162461bcd60e51b81526020600482018190526024820152600080516020611e4d833981519152604482015290519081900360640190fd5b600480546001019081905561101c83836116a5565b604080516001600160a01b03851681526020810184905281517f7c21cf5d524274e2d794116265284572dceb98c78e6f691aa7072e1925a29e03929181900390910190a160045481146110a4576040805162461bcd60e51b815260206004820152601f6024820152600080516020611d95833981519152604482015290519081900360640190fd5b505050565b60006110b3610f45565b6001600160a01b0316336001600160a01b031614156110e157600480546001019081905561075984846116b3565b600a5460ff16611126576040805162461bcd60e51b815260206004820152601d6024820152600080516020611db5833981519152604482015290519081900360640190fd5b336000908152600b602052604090205460ff1615611185576040805162461bcd60e51b815260206004820152601760248201527613515610ce881858d8dbdd5b9d081a5cc81b1bd8dad959604a1b604482015290519081900360640190fd5b600480546001019081905561086184846116b3565b60006111a4610f45565b6001600160a01b0316336001600160a01b031614156111d257600480546001019081905561075984846116ef565b600a5460ff16611217576040805162461bcd60e51b815260206004820152601d6024820152600080516020611db5833981519152604482015290519081900360640190fd5b336000908152600b602052604090205460ff1615611276576040805162461bcd60e51b815260206004820152601760248201527613515610ce881858d8dbdd5b9d081a5cc81b1bd8dad959604a1b604482015290519081900360640190fd5b600480546001019081905561086184846116ef565b60006108ac60038363ffffffff6116fc16565b6112a6610f54565b6112e5576040805162461bcd60e51b81526020600482018190526024820152600080516020611e4d833981519152604482015290519081900360640190fd5b6001600160a01b0381166000818152600b6020908152604091829020805460ff19169055815192835290517fe097c69c634880f1c9ee76294a0c05b4b9b14becebfa150ded7979498f732e809281900390910190a150565b6000611347610f54565b611386576040805162461bcd60e51b81526020600482018190526024820152600080516020611e4d833981519152604482015290519081900360640190fd5b600954611399908363ffffffff6115fb16565b600981905560408051918252517f6af448a356e1211a28bdca85758a1e5df103f84609147923fef12d451bc61ab89181900360200190a1506001919050565b60006113e33361128b565b61141e5760405162461bcd60e51b8152600401808060200182810382526030815260200180611e1d6030913960400191505060405180910390fd5b611426610f54565b611465576040805162461bcd60e51b81526020600482018190526024820152600080516020611e4d833981519152604482015290519081900360640190fd5b60095461147483610d466108b2565b11156114b15760405162461bcd60e51b8152600401808060200182810382526024815260200180611ef96024913960400191505060405180910390fd5b6114bb8383610c9f565b506114c583610b0c565b50600192915050565b600a5460ff1690565b60095481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611510610f54565b61154f576040805162461bcd60e51b81526020600482018190526024820152600080516020611e4d833981519152604482015290519081900360640190fd5b61155881611763565b50565b60006114c5338484611804565b60006115758484846118f0565b6001600160a01b0384166000908152600160209081526040808320338085529252909120546115b59186916115b0908663ffffffff611a3216565b611804565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916114c59185906115b0908663ffffffff6115fb16565b600082820183811015610afc576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60006116603361128b565b61169b5760405162461bcd60e51b8152600401808060200182810382526030815260200180611e1d6030913960400191505060405180910390fd5b6114c58383611a8f565b6116af8282611b7f565b5050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916114c59185906115b0908663ffffffff611a3216565b60006114c53384846118f0565b60006001600160a01b0382166117435760405162461bcd60e51b8152600401808060200182810382526022815260200180611e6d6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b0381166117a85760405162461bcd60e51b8152600401808060200182810382526026815260200180611dd56026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166118495760405162461bcd60e51b8152600401808060200182810382526024815260200180611ed56024913960400191505060405180910390fd5b6001600160a01b03821661188e5760405162461bcd60e51b8152600401808060200182810382526022815260200180611dfb6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166119355760405162461bcd60e51b8152600401808060200182810382526025815260200180611eb06025913960400191505060405180910390fd5b6001600160a01b03821661197a5760405162461bcd60e51b8152600401808060200182810382526023815260200180611d726023913960400191505060405180910390fd5b6001600160a01b0383166000908152602081905260409020546119a3908263ffffffff611a3216565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546119d8908263ffffffff6115fb16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115611a89576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001600160a01b038216611aea576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254611afd908263ffffffff6115fb16565b6002556001600160a01b038216600090815260208190526040902054611b29908263ffffffff6115fb16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216611bc45760405162461bcd60e51b8152600401808060200182810382526021815260200180611e8f6021913960400191505060405180910390fd5b600254611bd7908263ffffffff611a3216565b6002556001600160a01b038216600090815260208190526040902054611c03908263ffffffff611a3216565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611c9957805160ff1916838001178555611cc6565b82800160010185558215611cc6579182015b82811115611cc6578251825591602001919060010190611cab565b50611cd2929150611cd6565b5090565b6108b691905b80821115611cd25760008155600101611cdc565b611cfa82826116fc565b15611d4c576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff1916600117905556fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573735265656e7472616e637947756172643a207265656e7472616e742063616c6c004d4558433a207472616e73666572206973206e6f7420616c6c6f7765640000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734d4558433a20657863656564696e6720746865206d6178537570706c7920616d6f756e74a265627a7a72305820fa54c6728fa5ad28ebddc72410101936b48f3cea45dfbcb0ded35ee5d7e9672964736f6c634300050a0032

Deployed Bytecode Sourcemap

27281:5672:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27281:5672:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27433:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;27433:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31404:180;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;31404:180:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;10573:91;;;:::i;:::-;;;;;;;;;;;;;;;;28653:126;;;:::i;28475:122::-;;;:::i;31826:220::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;31826:220:0;;;;;;;;;;;;;;;;;:::i;27519:29::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28955:131;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28955:131:0;-1:-1:-1;;;;;28955:131:0;;:::i;:::-;;32234:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;32234:210:0;;;;;;;;:::i;30035:283::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30035:283:0;;;;;;;;:::i;29538:186::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29538:186:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;29538:186:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;29538:186:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;29538:186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;29538:186:0;;;;;;;;-1:-1:-1;29538:186:0;;-1:-1:-1;;21:11;5:28;;2:2;;;46:1;43;36:12;2:2;29538:186:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;29538:186:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;29538:186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;29538:186:0;;-1:-1:-1;29538:186:0;;-1:-1:-1;;;;;29538:186:0:i;29364:99::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29364:99:0;-1:-1:-1;;;;;29364:99:0;;:::i;10727:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10727:110:0;-1:-1:-1;;;;;10727:110:0;;:::i;21079:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;21079:79:0;;;;;;;;;;;;;;21445:92;;;:::i;27479:33::-;;;:::i;30748:181::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30748:181:0;;;;;;;;:::i;32726:220::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;32726:220:0;;;;;;;;:::i;31142:188::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;31142:188:0;;;;;;;;:::i;18468:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18468:109:0;-1:-1:-1;;;;;18468:109:0;;:::i;29155:136::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29155:136:0;-1:-1:-1;;;;;29155:136:0;;:::i;29782:191::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29782:191:0;;:::i;30380:303::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30380:303:0;;;;;;;;:::i;28788:98::-;;;:::i;27555:43::-;;;:::i;11269:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11269:134:0;;;;;;;;;;:::i;22197:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22197:109:0;-1:-1:-1;;;;;22197:109:0;;:::i;27433:39::-;;;;;;;;;;;;;;;-1:-1:-1;;27433:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31404:180::-;31508:4;27847:7;:5;:7::i;:::-;-1:-1:-1;;;;;27833:21:0;:10;-1:-1:-1;;;;;27833:21:0;;27829:240;;;6146:13;:18;;6163:1;6146:18;;;;;31525:29;31539:7;31548:5;31525:13;:29::i;:::-;;31572:4;31565:11;;6258:13;;6242:12;:29;6234:73;;;;;-1:-1:-1;;;6234:73:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6234:73:0;;;;;;;;;;;;;;;27871:1;27829:240;;;27913:16;;;;27905:58;;;;;-1:-1:-1;;;27905:58:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27905:58:0;;;;;;;;;;;;;;;27993:10;27986:18;;;;:6;:18;;;;;;;;:27;27978:63;;;;;-1:-1:-1;;;27978:63:0;;;;;;;;;;;;-1:-1:-1;;;27978:63:0;;;;;;;;;;;;;;;6146:13;:18;;6163:1;6146:18;;;;;31525:29;31539:7;31548:5;31525:13;:29::i;:::-;;31572:4;31565:11;;6258:13;;6242:12;:29;6234:73;;;;;-1:-1:-1;;;6234:73:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6234:73:0;;;;;;;;;;;;;;;28056:1;27829:240;31404:180;;;;:::o;10573:91::-;10644:12;;10573:91;;:::o;28653:126::-;28708:4;21291:9;:7;:9::i;:::-;21283:54;;;;;-1:-1:-1;;;21283:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21283:54:0;;;;;;;;;;;;;;;-1:-1:-1;28725:16:0;:24;;-1:-1:-1;;28725:24:0;;;;28653:126;:::o;28475:122::-;28527:4;21291:9;:7;:9::i;:::-;21283:54;;;;;-1:-1:-1;;;21283:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21283:54:0;;;;;;;;;;;;;;;-1:-1:-1;28544:16:0;:23;;-1:-1:-1;;28544:23:0;28563:4;28544:23;;;;;;28475:122;:::o;31826:220::-;31954:4;27847:7;:5;:7::i;:::-;-1:-1:-1;;;;;27833:21:0;:10;-1:-1:-1;;;;;27833:21:0;;27829:240;;;6146:13;:18;;6163:1;6146:18;;;;;31971:45;31990:6;31998:9;32009:6;31971:18;:45::i;:::-;;32034:4;32027:11;;6258:13;;6242:12;:29;6234:73;;;;;-1:-1:-1;;;6234:73:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6234:73:0;;;;;;;;;;;;;;;27871:1;27829:240;;;27913:16;;;;27905:58;;;;;-1:-1:-1;;;27905:58:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27905:58:0;;;;;;;;;;;;;;;27993:10;27986:18;;;;:6;:18;;;;;;;;:27;27978:63;;;;;-1:-1:-1;;;27978:63:0;;;;;;;;;;;;-1:-1:-1;;;27978:63:0;;;;;;;;;;;;;;;6146:13;:18;;6163:1;6146:18;;;;;31971:45;31990:6;31998:9;32009:6;31971:18;:45::i;:::-;;32034:4;32027:11;;6258:13;;6242:12;:29;6234:73;;;;;-1:-1:-1;;;6234:73:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6234:73:0;;;;;;;;;;;;;;;28056:1;27829:240;31826:220;;;;;:::o;27519:29::-;;;;;;:::o;28955:131::-;21291:9;:7;:9::i;:::-;21283:54;;;;;-1:-1:-1;;;21283:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21283:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;29019:13:0;;;;;;:6;:13;;;;;;;;;:20;;-1:-1:-1;;29019:20:0;29035:4;29019:20;;;29055:23;;;;;;;;;;;;;;;;;28955:131;:::o;32234:210::-;32353:4;27847:7;:5;:7::i;:::-;-1:-1:-1;;;;;27833:21:0;:10;-1:-1:-1;;;;;27833:21:0;;27829:240;;;6146:13;:18;;6163:1;6146:18;;;;;32370:44;32394:7;32403:10;32370:23;:44::i;27829:240::-;27913:16;;;;27905:58;;;;;-1:-1:-1;;;27905:58:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27905:58:0;;;;;;;;;;;;;;;27993:10;27986:18;;;;:6;:18;;;;;;;;:27;27978:63;;;;;-1:-1:-1;;;27978:63:0;;;;;;;;;;;;-1:-1:-1;;;27978:63:0;;;;;;;;;;;;;;;6146:13;:18;;6163:1;6146:18;;;;;32370:44;32394:7;32403:10;32370:23;:44::i;30035:283::-;30146:4;18367:20;18376:10;18367:8;:20::i;:::-;18359:81;;;;-1:-1:-1;;;18359:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21291:9;:7;:9::i;:::-;21283:54;;;;;-1:-1:-1;;;21283:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21283:54:0;;;;;;;;;;;;;;;6146:13;:18;;6163:1;6146:18;;;;;30200:9;;30171:25;30189:6;30171:13;:11;:13::i;:::-;:17;:25;:17;:25;:::i;:::-;:38;;30163:87;;;;-1:-1:-1;;;30163:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30261:27;30272:7;30281:6;30261:10;:27::i;29538:186::-;21291:9;:7;:9::i;:::-;21283:54;;;;;-1:-1:-1;;;21283:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21283:54:0;;;;;;;;;;;;;;;29631:16;;;;:6;;:16;;;;;:::i;:::-;-1:-1:-1;29658:12:0;;;;:4;;:12;;;;;:::i;:::-;;29686:30;29701:7;29710:5;29686:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;29686:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29686:30:0;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;29686:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29538:186;;:::o;29364:99::-;-1:-1:-1;;;;;29442:13:0;29418:4;29442:13;;;:6;:13;;;;;;;;;29364:99::o;10727:110::-;-1:-1:-1;;;;;10811:18:0;10784:7;10811:18;;;;;;;;;;;;10727:110::o;21079:79::-;21144:6;;-1:-1:-1;;;;;21144:6:0;21079:79;:::o;21445:92::-;21523:6;;-1:-1:-1;;;;;21523:6:0;21509:10;:20;;21445:92::o;27479:33::-;;;;;;;;;;;;;;;-1:-1:-1;;27479:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30748:181;21291:9;:7;:9::i;:::-;21283:54;;;;;-1:-1:-1;;;21283:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21283:54:0;;;;;;;;;;;;;;;6146:13;:18;;6163:1;6146:18;;;;;30849:26;30860:7;30869:5;30849:10;:26::i;:::-;30891:30;;;-1:-1:-1;;;;;30891:30:0;;;;;;;;;;;;;;;;;;;;;;;6258:13;;6242:12;:29;6234:73;;;;;-1:-1:-1;;;6234:73:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6234:73:0;;;;;;;;;;;;;;;21348:1;30748:181;;:::o;32726:220::-;32850:4;27847:7;:5;:7::i;:::-;-1:-1:-1;;;;;27833:21:0;:10;-1:-1:-1;;;;;27833:21:0;;27829:240;;;6146:13;:18;;6163:1;6146:18;;;;;32867:49;32891:7;32900:15;32867:23;:49::i;27829:240::-;27913:16;;;;27905:58;;;;;-1:-1:-1;;;27905:58:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27905:58:0;;;;;;;;;;;;;;;27993:10;27986:18;;;;:6;:18;;;;;;;;:27;27978:63;;;;;-1:-1:-1;;;27978:63:0;;;;;;;;;;;;-1:-1:-1;;;27978:63:0;;;;;;;;;;;;;;;6146:13;:18;;6163:1;6146:18;;;;;32867:49;32891:7;32900:15;32867:23;:49::i;31142:188::-;31250:4;27847:7;:5;:7::i;:::-;-1:-1:-1;;;;;27833:21:0;:10;-1:-1:-1;;;;;27833:21:0;;27829:240;;;6146:13;:18;;6163:1;6146:18;;;;;31267:33;31282:9;31293:6;31267:14;:33::i;27829:240::-;27913:16;;;;27905:58;;;;;-1:-1:-1;;;27905:58:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;27905:58:0;;;;;;;;;;;;;;;27993:10;27986:18;;;;:6;:18;;;;;;;;:27;27978:63;;;;;-1:-1:-1;;;27978:63:0;;;;;;;;;;;;-1:-1:-1;;;27978:63:0;;;;;;;;;;;;;;;6146:13;:18;;6163:1;6146:18;;;;;31267:33;31282:9;31293:6;31267:14;:33::i;18468:109::-;18524:4;18548:21;:8;18561:7;18548:21;:12;:21;:::i;29155:136::-;21291:9;:7;:9::i;:::-;21283:54;;;;;-1:-1:-1;;;21283:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21283:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;29221:13:0;;29237:5;29221:13;;;:6;:13;;;;;;;;;:21;;-1:-1:-1;;29221:21:0;;;29258:25;;;;;;;;;;;;;;;;;29155:136;:::o;29782:191::-;29848:4;21291:9;:7;:9::i;:::-;21283:54;;;;;-1:-1:-1;;;21283:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21283:54:0;;;;;;;;;;;;;;;29877:9;;:21;;29891:6;29877:21;:13;:21;:::i;:::-;29865:9;:33;;;29914:29;;;;;;;;;;;;;;;;-1:-1:-1;29961:4:0;29782:191;;;:::o;30380:303::-;30486:4;18367:20;18376:10;18367:8;:20::i;:::-;18359:81;;;;-1:-1:-1;;;18359:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21291:9;:7;:9::i;:::-;21283:54;;;;;-1:-1:-1;;;21283:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21283:54:0;;;;;;;;;;;;;;;30540:9;;30511:25;30529:6;30511:13;:11;:13::i;:25::-;:38;;30503:87;;;;-1:-1:-1;;;30503:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30601:21;30606:7;30615:6;30601:4;:21::i;:::-;;30633:20;30645:7;30633:11;:20::i;:::-;-1:-1:-1;30671:4:0;30380:303;;;;:::o;28788:98::-;28862:16;;;;28788:98;:::o;27555:43::-;;;;:::o;11269:134::-;-1:-1:-1;;;;;11368:18:0;;;11341:7;11368:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11269:134::o;22197:109::-;21291:9;:7;:9::i;:::-;21283:54;;;;;-1:-1:-1;;;21283:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21283:54:0;;;;;;;;;;;;;;;22270:28;22289:8;22270:18;:28::i;:::-;22197:109;:::o;11550:148::-;11615:4;11632:36;11641:10;11653:7;11662:5;11632:8;:36::i;12169:256::-;12258:4;12275:36;12285:6;12293:9;12304:6;12275:9;:36::i;:::-;-1:-1:-1;;;;;12351:19:0;;;;;;:11;:19;;;;;;;;12339:10;12351:31;;;;;;;;;12322:73;;12331:6;;12351:43;;12387:6;12351:43;:35;:43;:::i;:::-;12322:8;:73::i;:::-;-1:-1:-1;12413:4:0;12169:256;;;;;:::o;12834:206::-;12940:10;12914:4;12961:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;12961:32:0;;;;;;;;;;12914:4;;12931:79;;12952:7;;12961:48;;12998:10;12961:48;:36;:48;:::i;2062:181::-;2120:7;2152:5;;;2176:6;;;;2168:46;;;;;-1:-1:-1;;;2168:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;20115:143;20189:4;18367:20;18376:10;18367:8;:20::i;:::-;18359:81;;;;-1:-1:-1;;;18359:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20206:22;20212:7;20221:6;20206:5;:22::i;19415:95::-;19480:22;19486:7;19495:6;19480:5;:22::i;:::-;19415:95;;:::o;13543:216::-;13654:10;13628:4;13675:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;13675:32:0;;;;;;;;;;13628:4;;13645:84;;13666:7;;13675:53;;13712:15;13675:53;:36;:53;:::i;11050:156::-;11119:4;11136:40;11146:10;11158:9;11169:6;11136:9;:40::i;17843:203::-;17915:4;-1:-1:-1;;;;;17940:21:0;;17932:68;;;;-1:-1:-1;;;17932:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18018:20:0;:11;:20;;;;;;;;;;;;;;;17843:203::o;22412:229::-;-1:-1:-1;;;;;22486:22:0;;22478:73;;;;-1:-1:-1;;;22478:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22588:6;;22567:38;;-1:-1:-1;;;;;22567:38:0;;;;22588:6;;22567:38;;22588:6;;22567:38;22616:6;:17;;-1:-1:-1;;;;;;22616:17:0;-1:-1:-1;;;;;22616:17:0;;;;;;;;;;22412:229::o;16345:335::-;-1:-1:-1;;;;;16438:19:0;;16430:68;;;;-1:-1:-1;;;16430:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16517:21:0;;16509:68;;;;-1:-1:-1;;;16509:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16590:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;16641:31;;;;;;;;;;;;;;;;;16345:335;;;:::o;14249:429::-;-1:-1:-1;;;;;14347:20:0;;14339:70;;;;-1:-1:-1;;;14339:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14428:23:0;;14420:71;;;;-1:-1:-1;;;14420:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14524:17:0;;:9;:17;;;;;;;;;;;:29;;14546:6;14524:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;14504:17:0;;;:9;:17;;;;;;;;;;;:49;;;;14587:20;;;;;;;:32;;14612:6;14587:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;14564:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;14635:35;;;;;;;14564:20;;14635:35;;;;;;;;;;;;;14249:429;;;:::o;2518:184::-;2576:7;2609:1;2604;:6;;2596:49;;;;;-1:-1:-1;;;2596:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2668:5:0;;;2518:184::o;14959:308::-;-1:-1:-1;;;;;15035:21:0;;15027:65;;;;;-1:-1:-1;;;15027:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15120:12;;:24;;15137:6;15120:24;:16;:24;:::i;:::-;15105:12;:39;-1:-1:-1;;;;;15176:18:0;;:9;:18;;;;;;;;;;;:30;;15199:6;15176:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;15155:18:0;;:9;:18;;;;;;;;;;;:51;;;;15222:37;;;;;;;15155:18;;:9;;15222:37;;;;;;;;;;14959:308;;:::o;15599:306::-;-1:-1:-1;;;;;15674:21:0;;15666:67;;;;-1:-1:-1;;;15666:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15761:12;;:23;;15778:5;15761:23;:16;:23;:::i;:::-;15746:12;:38;-1:-1:-1;;;;;15816:18:0;;:9;:18;;;;;;;;;;;:29;;15839:5;15816:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;15795:18:0;;:9;:18;;;;;;;;;;;:50;;;;15861:36;;;;;;;15795:9;;15861:36;;;;;;;;;;;15599:306;;:::o;27281:5672::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27281:5672:0;;;-1:-1:-1;27281:5672:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;17307:178;17385:18;17389:4;17395:7;17385:3;:18::i;:::-;17384:19;17376:63;;;;;-1:-1:-1;;;17376:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17450:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;17450:27:0;17473:4;17450:27;;;17307:178::o

Swarm Source

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