ETH Price: $2,484.87 (-0.58%)

Token

MocaCoin (MCC)
 

Overview

Max Total Supply

11,900,000,000 MCC

Holders

327

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
MocaCoin

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
istanbul EvmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-04-18
*/

// File: node_modules\@openzeppelin\contracts\GSN\Context.sol

pragma solidity ^0.5.0;

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

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

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

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

pragma solidity ^0.5.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.5.0;

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

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

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

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

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

        return c;
    }

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

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

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

pragma solidity ^0.5.0;




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

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

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

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

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

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

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

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

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

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

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}

// File: node_modules\@openzeppelin\contracts\access\Roles.sol

pragma solidity ^0.5.0;

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

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

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

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

// File: node_modules\@openzeppelin\contracts\access\roles\PauserRole.sol

pragma solidity ^0.5.0;



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

    event PauserAdded(address indexed account);
    event PauserRemoved(address indexed account);

    Roles.Role private _pausers;

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

    modifier onlyPauser() {
        require(isPauser(_msgSender()), "PauserRole: caller does not have the Pauser role");
        _;
    }

    function isPauser(address account) public view returns (bool) {
        return _pausers.has(account);
    }

    function addPauser(address account) public onlyPauser {
        _addPauser(account);
    }

    function renouncePauser() public {
        _removePauser(_msgSender());
    }

    function _addPauser(address account) internal {
        _pausers.add(account);
        emit PauserAdded(account);
    }

    function _removePauser(address account) internal {
        _pausers.remove(account);
        emit PauserRemoved(account);
    }
}

// File: node_modules\@openzeppelin\contracts\lifecycle\Pausable.sol

pragma solidity ^0.5.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.
 */
contract Pausable is Context, PauserRole {
    /**
     * @dev Emitted when the pause is triggered by a pauser (`account`).
     */
    event Paused(address account);

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

    bool private _paused;

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

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

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

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

    /**
     * @dev Called by a pauser to pause, triggers stopped state.
     */
    function pause() public onlyPauser whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Called by a pauser to unpause, returns to normal state.
     */
    function unpause() public onlyPauser whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.5.0;



/**
 * @title Pausable token
 * @dev ERC20 with pausable transfers and allowances.
 *
 * Useful if you want to stop trades until the end of a crowdsale, or have
 * an emergency switch for freezing all token transfers in the event of a large
 * bug.
 */
contract ERC20Pausable is ERC20, Pausable {
    function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transfer(to, value);
    }

    function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transferFrom(from, to, value);
    }

    function approve(address spender, uint256 value) public whenNotPaused returns (bool) {
        return super.approve(spender, value);
    }

    function increaseAllowance(address spender, uint256 addedValue) public whenNotPaused returns (bool) {
        return super.increaseAllowance(spender, addedValue);
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public whenNotPaused returns (bool) {
        return super.decreaseAllowance(spender, subtractedValue);
    }
}

// File: @openzeppelin\contracts\access\roles\WhitelistAdminRole.sol

pragma solidity ^0.5.0;



/**
 * @title WhitelistAdminRole
 * @dev WhitelistAdmins are responsible for assigning and removing Whitelisted accounts.
 */
contract WhitelistAdminRole is Context {
    using Roles for Roles.Role;

    event WhitelistAdminAdded(address indexed account);
    event WhitelistAdminRemoved(address indexed account);

    Roles.Role private _whitelistAdmins;

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

    modifier onlyWhitelistAdmin() {
        require(isWhitelistAdmin(_msgSender()), "WhitelistAdminRole: caller does not have the WhitelistAdmin role");
        _;
    }

    function isWhitelistAdmin(address account) public view returns (bool) {
        return _whitelistAdmins.has(account);
    }

    function addWhitelistAdmin(address account) public onlyWhitelistAdmin {
        _addWhitelistAdmin(account);
    }

    function renounceWhitelistAdmin() public {
        _removeWhitelistAdmin(_msgSender());
    }

    function _addWhitelistAdmin(address account) internal {
        _whitelistAdmins.add(account);
        emit WhitelistAdminAdded(account);
    }

    function _removeWhitelistAdmin(address account) internal {
        _whitelistAdmins.remove(account);
        emit WhitelistAdminRemoved(account);
    }
}

// File: contracts\IndividualLockableToken.sol

pragma solidity ^0.5.0;



contract IndividualLockableToken is ERC20Pausable, WhitelistAdminRole{
  using SafeMath for uint256;

  event LockTimeSetted(address indexed holder, uint256 old_release_time, uint256 new_release_time);
  event Locked(address indexed holder, uint256 locked_balance_change, uint256 total_locked_balance, uint256 release_time);

  struct lockState {
    uint256 locked_balance;
    uint256 release_time;
  }

  // default lock period
  uint256 public lock_period = 4 weeks;

  mapping(address => lockState) internal userLock;

  // Specify the time that a particular person's lock will be released
  function setReleaseTime(address _holder, uint256 _release_time)
    public
    onlyWhitelistAdmin
    returns (bool)
  {
    require(_holder != address(0));
    require(_release_time >= block.timestamp);

    uint256 old_release_time = userLock[_holder].release_time;

    userLock[_holder].release_time = _release_time;
    emit LockTimeSetted(_holder, old_release_time, userLock[_holder].release_time);
    return true;
  }

  // Returns the point at which token holder's lock is released
  function getReleaseTime(address _holder)
    public
    view
    returns (uint256)
  {
    require(_holder != address(0));

    return userLock[_holder].release_time;
  }

  // Unlock a specific person. Free trading even with a lock balance
  function clearReleaseTime(address _holder)
    public
    onlyWhitelistAdmin
    returns (bool)
  {
    require(_holder != address(0));
    require(userLock[_holder].release_time > 0);

    uint256 old_release_time = userLock[_holder].release_time;

    userLock[_holder].release_time = 0;
    emit LockTimeSetted(_holder, old_release_time, userLock[_holder].release_time);
    return true;
  }

  // Increase the lock balance of a specific person.
  // If you only want to increase the balance, the release_time must be specified in advance.
  function increaseLockBalance(address _holder, uint256 _value)
    public
    onlyWhitelistAdmin
    returns (bool)
  {
    require(_holder != address(0));
    require(_value > 0);
    require(getFreeBalance(_holder) >= _value);

    if (userLock[_holder].release_time <= block.timestamp) {
        userLock[_holder].release_time  = block.timestamp + lock_period;
    }

    userLock[_holder].locked_balance = (userLock[_holder].locked_balance).add(_value);
    emit Locked(_holder, _value, userLock[_holder].locked_balance, userLock[_holder].release_time);
    return true;
  }

  // Increase the lock balance and release time of a specific person.
  // If you only want to increase the balance, See increaseLockBalance function.
  function increaseLockBalanceWithReleaseTime(address _holder, uint256 _value, uint256 _release_time)
    public
    onlyWhitelistAdmin
    returns (bool)
  {
    require(_holder != address(0));
    require(_value > 0);
    require(getFreeBalance(_holder) >= _value);
    require(_release_time >= block.timestamp);

    uint256 old_release_time = userLock[_holder].release_time;

    userLock[_holder].release_time = _release_time;
    emit LockTimeSetted(_holder, old_release_time, userLock[_holder].release_time);

    userLock[_holder].locked_balance = (userLock[_holder].locked_balance).add(_value);
    emit Locked(_holder, _value, userLock[_holder].locked_balance, userLock[_holder].release_time);
    return true;
  }

  // Decrease the lock balance of a specific person.
  function decreaseLockBalance(address _holder, uint256 _value)
    public
    onlyWhitelistAdmin
    returns (bool)
  {
    require(_holder != address(0));
    require(_value > 0);
    require(userLock[_holder].locked_balance >= _value);

    userLock[_holder].locked_balance = (userLock[_holder].locked_balance).sub(_value);
    emit Locked(_holder, _value, userLock[_holder].locked_balance, userLock[_holder].release_time);
    return true;
  }

  // Clear the lock.
  function clearLock(address _holder)
    public
    onlyWhitelistAdmin
    returns (bool)
  {
    require(_holder != address(0));
    
    userLock[_holder].locked_balance = 0;
    userLock[_holder].release_time = 0;
    emit Locked(_holder, 0, userLock[_holder].locked_balance, userLock[_holder].release_time);
    return true;
  }

  // Check the amount of the lock
  function getLockedBalance(address _holder)
    public
    view
    returns (uint256)
  {
    if(block.timestamp >= userLock[_holder].release_time) return uint256(0);
    return userLock[_holder].locked_balance;
  }

  // Check your remaining balance
  function getFreeBalance(address _holder)
    public
    view
    returns (uint256)
  {
    if(block.timestamp    >= userLock[_holder].release_time  ) return balanceOf(_holder);
    if(balanceOf(_holder) <= userLock[_holder].locked_balance) return uint256(0);
    return balanceOf(_holder).sub(userLock[_holder].locked_balance);
  }

  // transfer overrride
  function transfer(
    address _to,
    uint256 _value
  )
    public
    returns (bool)
  {
    require(getFreeBalance(_msgSender()) >= _value);
    return super.transfer(_to, _value);
  }

  // transferFrom overrride
  function transferFrom(
    address _from,
    address _to,
    uint256 _value
  )
    public
    returns (bool)
  {
    require(getFreeBalance(_from) >= _value);
    return super.transferFrom(_from, _to, _value);
  }

  // approve overrride
  function approve(
    address _spender,
    uint256 _value
  )
    public
    returns (bool)
  {
    require(getFreeBalance(_msgSender()) >= _value);
    return super.approve(_spender, _value);
  }

  // increaseAllowance overrride
  function increaseAllowance(
    address _spender,
    uint _addedValue
  )
    public
    returns (bool success)
  {
    require(getFreeBalance(_msgSender()) >= allowance(_msgSender(), _spender).add(_addedValue));
    return super.increaseAllowance(_spender, _addedValue);
  }

  // decreaseAllowance overrride
  function decreaseAllowance(
    address _spender,
    uint _subtractedValue
  )
    public
    returns (bool success)
  {
    uint256 oldValue = allowance(_msgSender(), _spender);

    if (_subtractedValue < oldValue) {
      require(getFreeBalance(_msgSender()) >= oldValue.sub(_subtractedValue));
    }
    return super.decreaseAllowance(_spender, _subtractedValue);
  }
  
  function renounceWhitelistAdmin()
    public 
  {
    _removeWhitelistAdmin(_msgSender());
  }
}

// File: contracts\MocaCoin.sol

pragma solidity ^0.5.0;


contract MocaCoin is IndividualLockableToken {
	using SafeMath for uint256;

	string public constant name     = "MocaCoin";
	string public constant symbol   = "MCC";
	uint8  public constant decimals = 18;

	uint256 public constant INITIAL_SUPPLY = 11900000000 * (10 ** uint256(decimals));

	constructor()
		public
	{
		_mint(_msgSender(), INITIAL_SUPPLY);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"holder","type":"address"},{"indexed":false,"internalType":"uint256","name":"old_release_time","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"new_release_time","type":"uint256"}],"name":"LockTimeSetted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"holder","type":"address"},{"indexed":false,"internalType":"uint256","name":"locked_balance_change","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"total_locked_balance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"release_time","type":"uint256"}],"name":"Locked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminRemoved","type":"event"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addWhitelistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_holder","type":"address"}],"name":"clearLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_holder","type":"address"}],"name":"clearReleaseTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_holder","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"decreaseLockBalance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_holder","type":"address"}],"name":"getFreeBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_holder","type":"address"}],"name":"getLockedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_holder","type":"address"}],"name":"getReleaseTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_holder","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"increaseLockBalance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_holder","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"uint256","name":"_release_time","type":"uint256"}],"name":"increaseLockBalanceWithReleaseTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelistAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lock_period","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceWhitelistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_holder","type":"address"},{"internalType":"uint256","name":"_release_time","type":"uint256"}],"name":"setReleaseTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040526224ea006006553480156200001857600080fd5b506200003f620000306001600160e01b03620000a816565b6001600160e01b03620000ac16565b6004805460ff191690556200006f620000606001600160e01b03620000a816565b6001600160e01b03620000fe16565b620000a2620000866001600160e01b03620000a816565b6b26737304a0fdf607fc0000006001600160e01b036200015016565b620003a9565b3390565b620000c78160036200025160201b620017981790919060201c565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b620001198160056200025160201b620017981790919060201c565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b6001600160a01b038216620001ac576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620001c881600254620002de60201b620012711790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620001fb91839062001271620002de821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6200026682826001600160e01b036200034016565b15620002b9576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60008282018381101562000339576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006001600160a01b038216620003895760405162461bcd60e51b8152600401808060200182810382526022815260200180620020856022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b611ccc80620003b96000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063a31052e8116100a2578063c408689311610071578063c4086893146105b3578063dd62ed3e146105d9578063e6108fc914610607578063f83e9a2014610633576101e5565b8063a31052e81461050f578063a457c2d714610535578063a9059cbb14610561578063bb5f747b1461058d576101e5565b80638870985b116100de5780638870985b146104895780638dc73521146104af57806395d89b41146104d55780639e20749a146104dd576101e5565b806370a082311461040f5780637362d9c81461043557806382dc1ec41461045b5780638456cb5914610481576101e5565b806339509351116101875780634c5a628c116101565780634c5a628c146103cb5780635c975abb146103d35780636c4e5c86146103db5780636ef8d66d14610407576101e5565b806339509351146103435780633f4ba83a1461036f57806346fbf68e14610379578063476fe9191461039f576101e5565b806318160ddd116101c357806318160ddd146102df57806323b872dd146102e75780632ff2e9dc1461031d578063313ce56714610325576101e5565b806306fdde03146101ea578063095ea7b3146102675780630cb7eb4c146102a7575b600080fd5b6101f261063b565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022c578181015183820152602001610214565b50505050905090810190601f1680156102595780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102936004803603604081101561027d57600080fd5b506001600160a01b03813516906020013561065f565b604080519115158252519081900360200190f35b6102cd600480360360208110156102bd57600080fd5b50356001600160a01b031661068e565b60408051918252519081900360200190f35b6102cd6106c6565b610293600480360360608110156102fd57600080fd5b506001600160a01b038135811691602081013590911690604001356106cc565b6102cd6106f6565b61032d610706565b6040805160ff9092168252519081900360200190f35b6102936004803603604081101561035957600080fd5b506001600160a01b03813516906020013561070b565b61037761074e565b005b6102936004803603602081101561038f57600080fd5b50356001600160a01b0316610837565b610293600480360360408110156103b557600080fd5b506001600160a01b038135169060200135610850565b610377610924565b610293610936565b610293600480360360408110156103f157600080fd5b506001600160a01b03813516906020013561093f565b610377610a62565b6102cd6004803603602081101561042557600080fd5b50356001600160a01b0316610a72565b6103776004803603602081101561044b57600080fd5b50356001600160a01b0316610a8d565b6103776004803603602081101561047157600080fd5b50356001600160a01b0316610adf565b610377610b2e565b6102cd6004803603602081101561049f57600080fd5b50356001600160a01b0316610bf5565b610293600480360360208110156104c557600080fd5b50356001600160a01b0316610c88565b6101f2610d4d565b610293600480360360608110156104f357600080fd5b506001600160a01b038135169060208101359060400135610d6c565b6102936004803603602081101561052557600080fd5b50356001600160a01b0316610eeb565b6102936004803603604081101561054b57600080fd5b506001600160a01b038135169060200135610fd3565b6102936004803603604081101561057757600080fd5b506001600160a01b038135169060200135611021565b610293600480360360208110156105a357600080fd5b50356001600160a01b0316611044565b6102cd600480360360208110156105c957600080fd5b50356001600160a01b0316611057565b6102cd600480360360408110156105ef57600080fd5b506001600160a01b038135811691602001351661109d565b6102936004803603604081101561061d57600080fd5b506001600160a01b0381351690602001356110c8565b6102cd6111b6565b6040518060400160405280600881526020016726b7b1b0a1b7b4b760c11b81525081565b60008161067261066d6111bc565b610bf5565b101561067d57600080fd5b61068783836111c0565b9392505050565b60006001600160a01b0382166106a357600080fd5b506001600160a01b0381166000908152600760205260409020600101545b919050565b60025490565b6000816106d885610bf5565b10156106e357600080fd5b6106ee848484611218565b949350505050565b6b26737304a0fdf607fc00000081565b601281565b600061072e8261072261071c6111bc565b8661109d565b9063ffffffff61127116565b61073961066d6111bc565b101561074457600080fd5b61068783836112cb565b61075e6107596111bc565b610837565b6107995760405162461bcd60e51b8152600401808060200182810382526030815260200180611b076030913960400191505060405180910390fd5b60045460ff166107e7576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6004805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61081a6111bc565b604080516001600160a01b039092168252519081900360200190a1565b600061084a60038363ffffffff61132316565b92915050565b600061086261085d6111bc565b611044565b61089d5760405162461bcd60e51b8152600401808060200182810382526040815260200180611bea6040913960400191505060405180910390fd5b6001600160a01b0383166108b057600080fd5b428210156108bd57600080fd5b6001600160a01b038316600081815260076020908152604091829020600101805490869055825181815291820186905282519093927f014515183d12c0df4c26d74864371ebfe412e000f1f0a252af66950035ff42fe928290030190a25060019392505050565b61093461092f6111bc565b61138a565b565b60045460ff1690565b600061094c61085d6111bc565b6109875760405162461bcd60e51b8152600401808060200182810382526040815260200180611bea6040913960400191505060405180910390fd5b6001600160a01b03831661099a57600080fd5b600082116109a757600080fd5b6001600160a01b0383166000908152600760205260409020548211156109cc57600080fd5b6001600160a01b0383166000908152600760205260409020546109f5908363ffffffff6113d216565b6001600160a01b03841660008181526007602090815260409182902084815560010154825187815291820194909452808201939093525190917f44cebfefa4561bee5b61d675ccfd8dc9969fff9cc15e7a4eccccd62af94f9c11919081900360600190a250600192915050565b610934610a6d6111bc565b611414565b6001600160a01b031660009081526020819052604090205490565b610a9861085d6111bc565b610ad35760405162461bcd60e51b8152600401808060200182810382526040815260200180611bea6040913960400191505060405180910390fd5b610adc8161145c565b50565b610aea6107596111bc565b610b255760405162461bcd60e51b8152600401808060200182810382526030815260200180611b076030913960400191505060405180910390fd5b610adc816114a4565b610b396107596111bc565b610b745760405162461bcd60e51b8152600401808060200182810382526030815260200180611b076030913960400191505060405180910390fd5b60045460ff1615610bbf576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6004805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861081a6111bc565b6001600160a01b0381166000908152600760205260408120600101544210610c2757610c2082610a72565b90506106c1565b6001600160a01b038216600090815260076020526040902054610c4983610a72565b11610c56575060006106c1565b6001600160a01b03821660009081526007602052604090205461084a90610c7c84610a72565b9063ffffffff6113d216565b6000610c9561085d6111bc565b610cd05760405162461bcd60e51b8152600401808060200182810382526040815260200180611bea6040913960400191505060405180910390fd5b6001600160a01b038216610ce357600080fd5b6001600160a01b038216600081815260076020908152604080832083815560010183905580518381529182018390528181019290925290517f44cebfefa4561bee5b61d675ccfd8dc9969fff9cc15e7a4eccccd62af94f9c119181900360600190a2506001919050565b604051806040016040528060038152602001624d434360e81b81525081565b6000610d7961085d6111bc565b610db45760405162461bcd60e51b8152600401808060200182810382526040815260200180611bea6040913960400191505060405180910390fd5b6001600160a01b038416610dc757600080fd5b60008311610dd457600080fd5b82610dde85610bf5565b1015610de957600080fd5b42821015610df657600080fd5b6001600160a01b038416600081815260076020908152604091829020600101805490869055825181815291820186905282519093927f014515183d12c0df4c26d74864371ebfe412e000f1f0a252af66950035ff42fe928290030190a26001600160a01b038516600090815260076020526040902054610e7c908563ffffffff61127116565b6001600160a01b03861660008181526007602090815260409182902084815560010154825189815291820194909452808201939093525190917f44cebfefa4561bee5b61d675ccfd8dc9969fff9cc15e7a4eccccd62af94f9c11919081900360600190a2506001949350505050565b6000610ef861085d6111bc565b610f335760405162461bcd60e51b8152600401808060200182810382526040815260200180611bea6040913960400191505060405180910390fd5b6001600160a01b038216610f4657600080fd5b6001600160a01b038216600090815260076020526040902060010154610f6b57600080fd5b6001600160a01b038216600081815260076020908152604080832060010180549084905581518181529283019390935280519293927f014515183d12c0df4c26d74864371ebfe412e000f1f0a252af66950035ff42fe9281900390910190a250600192915050565b600080610fe7610fe16111bc565b8561109d565b90508083101561101757611001818463ffffffff6113d216565b61100c61066d6111bc565b101561101757600080fd5b6106ee84846114ec565b60008161102f61066d6111bc565b101561103a57600080fd5b6106878383611544565b600061084a60058363ffffffff61132316565b6001600160a01b0381166000908152600760205260408120600101544210611081575060006106c1565b506001600160a01b031660009081526007602052604090205490565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006110d561085d6111bc565b6111105760405162461bcd60e51b8152600401808060200182810382526040815260200180611bea6040913960400191505060405180910390fd5b6001600160a01b03831661112357600080fd5b6000821161113057600080fd5b8161113a84610bf5565b101561114557600080fd5b6001600160a01b038316600090815260076020526040902060010154421061118d576006546001600160a01b0384166000908152600760205260409020429091016001909101555b6001600160a01b0383166000908152600760205260409020546109f5908363ffffffff61127116565b60065481565b3390565b60045460009060ff161561120e576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610687838361159c565b60045460009060ff1615611266576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6106ee8484846115b9565b600082820183811015610687576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60045460009060ff1615611319576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6106878383611646565b60006001600160a01b03821661136a5760405162461bcd60e51b8152600401808060200182810382526022815260200180611bc86022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b61139b60058263ffffffff61169a16565b6040516001600160a01b038216907f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16590600090a250565b600061068783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611701565b61142560038263ffffffff61169a16565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b61146d60058263ffffffff61179816565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b6114b560038263ffffffff61179816565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b60045460009060ff161561153a576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6106878383611819565b60045460009060ff1615611592576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6106878383611887565b60006115b06115a96111bc565b848461189b565b50600192915050565b60006115c6848484611987565b61163c846115d26111bc565b61163785604051806060016040528060288152602001611ba0602891396001600160a01b038a166000908152600160205260408120906116106111bc565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61170116565b61189b565b5060019392505050565b60006115b06116536111bc565b8461163785600160006116646111bc565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61127116565b6116a48282611323565b6116df5760405162461bcd60e51b8152600401808060200182810382526021815260200180611b7f6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b600081848411156117905760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561175557818101518382015260200161173d565b50505050905090810190601f1680156117825780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6117a28282611323565b156117f4576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006115b06118266111bc565b8461163785604051806060016040528060258152602001611c7360259139600160006118506111bc565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61170116565b60006115b06118946111bc565b8484611987565b6001600160a01b0383166118e05760405162461bcd60e51b8152600401808060200182810382526024815260200180611c4f6024913960400191505060405180910390fd5b6001600160a01b0382166119255760405162461bcd60e51b8152600401808060200182810382526022815260200180611b376022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166119cc5760405162461bcd60e51b8152600401808060200182810382526025815260200180611c2a6025913960400191505060405180910390fd5b6001600160a01b038216611a115760405162461bcd60e51b8152600401808060200182810382526023815260200180611ae46023913960400191505060405180910390fd5b611a5481604051806060016040528060268152602001611b59602691396001600160a01b038616600090815260208190526040902054919063ffffffff61170116565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611a89908263ffffffff61127116565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737357686974656c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652057686974656c69737441646d696e20726f6c6545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158206356e79ef97577727e22b08f640d8c7694b6af31bbe815519d758bbdc20fc85e64736f6c63430005110032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063a31052e8116100a2578063c408689311610071578063c4086893146105b3578063dd62ed3e146105d9578063e6108fc914610607578063f83e9a2014610633576101e5565b8063a31052e81461050f578063a457c2d714610535578063a9059cbb14610561578063bb5f747b1461058d576101e5565b80638870985b116100de5780638870985b146104895780638dc73521146104af57806395d89b41146104d55780639e20749a146104dd576101e5565b806370a082311461040f5780637362d9c81461043557806382dc1ec41461045b5780638456cb5914610481576101e5565b806339509351116101875780634c5a628c116101565780634c5a628c146103cb5780635c975abb146103d35780636c4e5c86146103db5780636ef8d66d14610407576101e5565b806339509351146103435780633f4ba83a1461036f57806346fbf68e14610379578063476fe9191461039f576101e5565b806318160ddd116101c357806318160ddd146102df57806323b872dd146102e75780632ff2e9dc1461031d578063313ce56714610325576101e5565b806306fdde03146101ea578063095ea7b3146102675780630cb7eb4c146102a7575b600080fd5b6101f261063b565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022c578181015183820152602001610214565b50505050905090810190601f1680156102595780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102936004803603604081101561027d57600080fd5b506001600160a01b03813516906020013561065f565b604080519115158252519081900360200190f35b6102cd600480360360208110156102bd57600080fd5b50356001600160a01b031661068e565b60408051918252519081900360200190f35b6102cd6106c6565b610293600480360360608110156102fd57600080fd5b506001600160a01b038135811691602081013590911690604001356106cc565b6102cd6106f6565b61032d610706565b6040805160ff9092168252519081900360200190f35b6102936004803603604081101561035957600080fd5b506001600160a01b03813516906020013561070b565b61037761074e565b005b6102936004803603602081101561038f57600080fd5b50356001600160a01b0316610837565b610293600480360360408110156103b557600080fd5b506001600160a01b038135169060200135610850565b610377610924565b610293610936565b610293600480360360408110156103f157600080fd5b506001600160a01b03813516906020013561093f565b610377610a62565b6102cd6004803603602081101561042557600080fd5b50356001600160a01b0316610a72565b6103776004803603602081101561044b57600080fd5b50356001600160a01b0316610a8d565b6103776004803603602081101561047157600080fd5b50356001600160a01b0316610adf565b610377610b2e565b6102cd6004803603602081101561049f57600080fd5b50356001600160a01b0316610bf5565b610293600480360360208110156104c557600080fd5b50356001600160a01b0316610c88565b6101f2610d4d565b610293600480360360608110156104f357600080fd5b506001600160a01b038135169060208101359060400135610d6c565b6102936004803603602081101561052557600080fd5b50356001600160a01b0316610eeb565b6102936004803603604081101561054b57600080fd5b506001600160a01b038135169060200135610fd3565b6102936004803603604081101561057757600080fd5b506001600160a01b038135169060200135611021565b610293600480360360208110156105a357600080fd5b50356001600160a01b0316611044565b6102cd600480360360208110156105c957600080fd5b50356001600160a01b0316611057565b6102cd600480360360408110156105ef57600080fd5b506001600160a01b038135811691602001351661109d565b6102936004803603604081101561061d57600080fd5b506001600160a01b0381351690602001356110c8565b6102cd6111b6565b6040518060400160405280600881526020016726b7b1b0a1b7b4b760c11b81525081565b60008161067261066d6111bc565b610bf5565b101561067d57600080fd5b61068783836111c0565b9392505050565b60006001600160a01b0382166106a357600080fd5b506001600160a01b0381166000908152600760205260409020600101545b919050565b60025490565b6000816106d885610bf5565b10156106e357600080fd5b6106ee848484611218565b949350505050565b6b26737304a0fdf607fc00000081565b601281565b600061072e8261072261071c6111bc565b8661109d565b9063ffffffff61127116565b61073961066d6111bc565b101561074457600080fd5b61068783836112cb565b61075e6107596111bc565b610837565b6107995760405162461bcd60e51b8152600401808060200182810382526030815260200180611b076030913960400191505060405180910390fd5b60045460ff166107e7576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6004805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61081a6111bc565b604080516001600160a01b039092168252519081900360200190a1565b600061084a60038363ffffffff61132316565b92915050565b600061086261085d6111bc565b611044565b61089d5760405162461bcd60e51b8152600401808060200182810382526040815260200180611bea6040913960400191505060405180910390fd5b6001600160a01b0383166108b057600080fd5b428210156108bd57600080fd5b6001600160a01b038316600081815260076020908152604091829020600101805490869055825181815291820186905282519093927f014515183d12c0df4c26d74864371ebfe412e000f1f0a252af66950035ff42fe928290030190a25060019392505050565b61093461092f6111bc565b61138a565b565b60045460ff1690565b600061094c61085d6111bc565b6109875760405162461bcd60e51b8152600401808060200182810382526040815260200180611bea6040913960400191505060405180910390fd5b6001600160a01b03831661099a57600080fd5b600082116109a757600080fd5b6001600160a01b0383166000908152600760205260409020548211156109cc57600080fd5b6001600160a01b0383166000908152600760205260409020546109f5908363ffffffff6113d216565b6001600160a01b03841660008181526007602090815260409182902084815560010154825187815291820194909452808201939093525190917f44cebfefa4561bee5b61d675ccfd8dc9969fff9cc15e7a4eccccd62af94f9c11919081900360600190a250600192915050565b610934610a6d6111bc565b611414565b6001600160a01b031660009081526020819052604090205490565b610a9861085d6111bc565b610ad35760405162461bcd60e51b8152600401808060200182810382526040815260200180611bea6040913960400191505060405180910390fd5b610adc8161145c565b50565b610aea6107596111bc565b610b255760405162461bcd60e51b8152600401808060200182810382526030815260200180611b076030913960400191505060405180910390fd5b610adc816114a4565b610b396107596111bc565b610b745760405162461bcd60e51b8152600401808060200182810382526030815260200180611b076030913960400191505060405180910390fd5b60045460ff1615610bbf576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6004805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861081a6111bc565b6001600160a01b0381166000908152600760205260408120600101544210610c2757610c2082610a72565b90506106c1565b6001600160a01b038216600090815260076020526040902054610c4983610a72565b11610c56575060006106c1565b6001600160a01b03821660009081526007602052604090205461084a90610c7c84610a72565b9063ffffffff6113d216565b6000610c9561085d6111bc565b610cd05760405162461bcd60e51b8152600401808060200182810382526040815260200180611bea6040913960400191505060405180910390fd5b6001600160a01b038216610ce357600080fd5b6001600160a01b038216600081815260076020908152604080832083815560010183905580518381529182018390528181019290925290517f44cebfefa4561bee5b61d675ccfd8dc9969fff9cc15e7a4eccccd62af94f9c119181900360600190a2506001919050565b604051806040016040528060038152602001624d434360e81b81525081565b6000610d7961085d6111bc565b610db45760405162461bcd60e51b8152600401808060200182810382526040815260200180611bea6040913960400191505060405180910390fd5b6001600160a01b038416610dc757600080fd5b60008311610dd457600080fd5b82610dde85610bf5565b1015610de957600080fd5b42821015610df657600080fd5b6001600160a01b038416600081815260076020908152604091829020600101805490869055825181815291820186905282519093927f014515183d12c0df4c26d74864371ebfe412e000f1f0a252af66950035ff42fe928290030190a26001600160a01b038516600090815260076020526040902054610e7c908563ffffffff61127116565b6001600160a01b03861660008181526007602090815260409182902084815560010154825189815291820194909452808201939093525190917f44cebfefa4561bee5b61d675ccfd8dc9969fff9cc15e7a4eccccd62af94f9c11919081900360600190a2506001949350505050565b6000610ef861085d6111bc565b610f335760405162461bcd60e51b8152600401808060200182810382526040815260200180611bea6040913960400191505060405180910390fd5b6001600160a01b038216610f4657600080fd5b6001600160a01b038216600090815260076020526040902060010154610f6b57600080fd5b6001600160a01b038216600081815260076020908152604080832060010180549084905581518181529283019390935280519293927f014515183d12c0df4c26d74864371ebfe412e000f1f0a252af66950035ff42fe9281900390910190a250600192915050565b600080610fe7610fe16111bc565b8561109d565b90508083101561101757611001818463ffffffff6113d216565b61100c61066d6111bc565b101561101757600080fd5b6106ee84846114ec565b60008161102f61066d6111bc565b101561103a57600080fd5b6106878383611544565b600061084a60058363ffffffff61132316565b6001600160a01b0381166000908152600760205260408120600101544210611081575060006106c1565b506001600160a01b031660009081526007602052604090205490565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006110d561085d6111bc565b6111105760405162461bcd60e51b8152600401808060200182810382526040815260200180611bea6040913960400191505060405180910390fd5b6001600160a01b03831661112357600080fd5b6000821161113057600080fd5b8161113a84610bf5565b101561114557600080fd5b6001600160a01b038316600090815260076020526040902060010154421061118d576006546001600160a01b0384166000908152600760205260409020429091016001909101555b6001600160a01b0383166000908152600760205260409020546109f5908363ffffffff61127116565b60065481565b3390565b60045460009060ff161561120e576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610687838361159c565b60045460009060ff1615611266576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6106ee8484846115b9565b600082820183811015610687576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60045460009060ff1615611319576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6106878383611646565b60006001600160a01b03821661136a5760405162461bcd60e51b8152600401808060200182810382526022815260200180611bc86022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b61139b60058263ffffffff61169a16565b6040516001600160a01b038216907f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16590600090a250565b600061068783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611701565b61142560038263ffffffff61169a16565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b61146d60058263ffffffff61179816565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b6114b560038263ffffffff61179816565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b60045460009060ff161561153a576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6106878383611819565b60045460009060ff1615611592576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6106878383611887565b60006115b06115a96111bc565b848461189b565b50600192915050565b60006115c6848484611987565b61163c846115d26111bc565b61163785604051806060016040528060288152602001611ba0602891396001600160a01b038a166000908152600160205260408120906116106111bc565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61170116565b61189b565b5060019392505050565b60006115b06116536111bc565b8461163785600160006116646111bc565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61127116565b6116a48282611323565b6116df5760405162461bcd60e51b8152600401808060200182810382526021815260200180611b7f6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b600081848411156117905760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561175557818101518382015260200161173d565b50505050905090810190601f1680156117825780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6117a28282611323565b156117f4576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006115b06118266111bc565b8461163785604051806060016040528060258152602001611c7360259139600160006118506111bc565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61170116565b60006115b06118946111bc565b8484611987565b6001600160a01b0383166118e05760405162461bcd60e51b8152600401808060200182810382526024815260200180611c4f6024913960400191505060405180910390fd5b6001600160a01b0382166119255760405162461bcd60e51b8152600401808060200182810382526022815260200180611b376022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166119cc5760405162461bcd60e51b8152600401808060200182810382526025815260200180611c2a6025913960400191505060405180910390fd5b6001600160a01b038216611a115760405162461bcd60e51b8152600401808060200182810382526023815260200180611ae46023913960400191505060405180910390fd5b611a5481604051806060016040528060268152602001611b59602691396001600160a01b038616600090815260208190526040902054919063ffffffff61170116565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611a89908263ffffffff61127116565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737357686974656c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652057686974656c69737441646d696e20726f6c6545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158206356e79ef97577727e22b08f640d8c7694b6af31bbe815519d758bbdc20fc85e64736f6c63430005110032

Deployed Bytecode Sourcemap

31549:374:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31549:374:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31630:44;;;:::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;31630:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30416:206;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30416:206:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;26059:178;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26059:178:0;-1:-1:-1;;;;;26059:178:0;;:::i;:::-;;;;;;;;;;;;;;;;11209:91;;;:::i;30160:226::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30160:226:0;;;;;;;;;;;;;;;;;:::i;31763:80::-;;;:::i;31721:36::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30662:285;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30662:285:0;;;;;;;;:::i;22090:120::-;;;:::i;:::-;;19556:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19556:109:0;-1:-1:-1;;;;;19556:109:0;;:::i;25550:438::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;25550:438:0;;;;;;;;:::i;31380:98::-;;;:::i;21297:78::-;;;:::i;28427:457::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;28427:457:0;;;;;;;;:::i;19773:79::-;;;:::i;11363:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11363:110:0;-1:-1:-1;;;;;11363:110:0;;:::i;24313:116::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24313:116:0;-1:-1:-1;;;;;24313:116:0;;:::i;19673:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19673:92:0;-1:-1:-1;;;;;19673:92:0;;:::i;21877:118::-;;;:::i;29557:339::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29557:339:0;-1:-1:-1;;;;;29557:339:0;;:::i;28912:342::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28912:342:0;-1:-1:-1;;;;;28912:342:0;;:::i;31678:39::-;;;:::i;27627:740::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27627:740:0;;;;;;;;;;;;;:::i;26313:407::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26313:407:0;-1:-1:-1;;;;;26313:407:0;;:::i;30987:385::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30987:385:0;;;;;;;;:::i;29927:198::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;29927:198:0;;;;;;;;:::i;24180:125::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24180:125:0;-1:-1:-1;;;;;24180:125:0;;:::i;29295:221::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29295:221:0;-1:-1:-1;;;;;29295:221:0;;:::i;11907:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11907:134:0;;;;;;;;;;:::i;26875:593::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26875:593:0;;;;;;;;:::i;25381:36::-;;;:::i;31630:44::-;;;;;;;;;;;;;;-1:-1:-1;;;31630:44:0;;;;:::o;30416:206::-;30508:4;30564:6;30532:28;30547:12;:10;:12::i;:::-;30532:14;:28::i;:::-;:38;;30524:47;;;;;;30585:31;30599:8;30609:6;30585:13;:31::i;:::-;30578:38;30416:206;-1:-1:-1;;;30416:206:0:o;26059:178::-;26136:7;-1:-1:-1;;;;;26163:21:0;;26155:30;;;;;;-1:-1:-1;;;;;;26201:17:0;;;;;;:8;:17;;;;;:30;;;26059:178;;;;:::o;11209:91::-;11280:12;;11209:91;:::o;30160:226::-;30272:4;30321:6;30296:21;30311:5;30296:14;:21::i;:::-;:31;;30288:40;;;;;;30342:38;30361:5;30368:3;30373:6;30342:18;:38::i;:::-;30335:45;30160:226;-1:-1:-1;;;;30160:226:0:o;31763:80::-;31804:39;31763:80;:::o;31721:36::-;31755:2;31721:36;:::o;30662:285::-;30766:12;30830:50;30868:11;30830:33;30840:12;:10;:12::i;:::-;30854:8;30830:9;:33::i;:::-;:37;:50;:37;:50;:::i;:::-;30798:28;30813:12;:10;:12::i;30798:28::-;:82;;30790:91;;;;;;30895:46;30919:8;30929:11;30895:23;:46::i;22090:120::-;19453:22;19462:12;:10;:12::i;:::-;19453:8;:22::i;:::-;19445:83;;;;-1:-1:-1;;;19445:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21733:7;;;;21725:40;;;;;-1:-1:-1;;;21725:40:0;;;;;;;;;;;;-1:-1:-1;;;21725:40:0;;;;;;;;;;;;;;;22149:7;:15;;-1:-1:-1;;22149:15:0;;;22180:22;22189:12;:10;:12::i;:::-;22180:22;;;-1:-1:-1;;;;;22180:22:0;;;;;;;;;;;;;;22090:120::o;19556:109::-;19612:4;19636:21;:8;19649:7;19636:21;:12;:21;:::i;:::-;19629:28;19556:109;-1:-1:-1;;19556:109:0:o;25550:438::-;25664:4;24053:30;24070:12;:10;:12::i;:::-;24053:16;:30::i;:::-;24045:107;;;;-1:-1:-1;;;24045:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25688:21:0;;25680:30;;;;;;25742:15;25725:13;:32;;25717:41;;;;;;-1:-1:-1;;;;;25794:17:0;;25767:24;25794:17;;;:8;:17;;;;;;;;;:30;;;;25833:46;;;;25891:73;;;;;;;;;;;;;25794:30;;:17;25891:73;;;;;;;;-1:-1:-1;25978:4:0;;25550:438;-1:-1:-1;;;25550:438:0:o;31380:98::-;31437:35;31459:12;:10;:12::i;:::-;31437:21;:35::i;:::-;31380:98::o;21297:78::-;21360:7;;;;21297:78;:::o;28427:457::-;28539:4;24053:30;24070:12;:10;:12::i;24053:30::-;24045:107;;;;-1:-1:-1;;;24045:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28563:21:0;;28555:30;;;;;;28609:1;28600:6;:10;28592:19;;;;;;-1:-1:-1;;;;;28626:17:0;;;;;;:8;:17;;;;;:32;:42;-1:-1:-1;28626:42:0;28618:51;;;;;;-1:-1:-1;;;;;28714:17:0;;;;;;:8;:17;;;;;:32;28713:46;;28752:6;28713:46;:38;:46;:::i;:::-;-1:-1:-1;;;;;28678:17:0;;;;;;:8;:17;;;;;;;;;:81;;;28829:30;;;28771:89;;;;;;;;;;;;;;;;;;;;28678:17;;28771:89;;;;;;;;;;-1:-1:-1;28874:4:0;28427:457;;;;:::o;19773:79::-;19817:27;19831:12;:10;:12::i;:::-;19817:13;:27::i;11363:110::-;-1:-1:-1;;;;;11447:18:0;11420:7;11447:18;;;;;;;;;;;;11363:110::o;24313:116::-;24053:30;24070:12;:10;:12::i;24053:30::-;24045:107;;;;-1:-1:-1;;;24045:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24394:27;24413:7;24394:18;:27::i;:::-;24313:116;:::o;19673:92::-;19453:22;19462:12;:10;:12::i;19453:22::-;19445:83;;;;-1:-1:-1;;;19445:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19738:19;19749:7;19738:10;:19::i;21877:118::-;19453:22;19462:12;:10;:12::i;19453:22::-;19445:83;;;;-1:-1:-1;;;19445:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21534:7;;;;21533:8;21525:37;;;;;-1:-1:-1;;;21525:37:0;;;;;;;;;;;;-1:-1:-1;;;21525:37:0;;;;;;;;;;;;;;;21937:7;:14;;-1:-1:-1;;21937:14:0;21947:4;21937:14;;;21967:20;21974:12;:10;:12::i;29557:339::-;-1:-1:-1;;;;;29678:17:0;;29634:7;29678:17;;;:8;:17;;;;;:30;;;29656:15;:52;29653:84;;29719:18;29729:7;29719:9;:18::i;:::-;29712:25;;;;29653:84;-1:-1:-1;;;;;29769:17:0;;;;;;:8;:17;;;;;:32;29747:18;29778:7;29747:9;:18::i;:::-;:54;29744:76;;-1:-1:-1;29818:1:0;29803:17;;29744:76;-1:-1:-1;;;;;29857:17:0;;;;;;:8;:17;;;;;:32;29834:56;;:18;29866:7;29834:9;:18::i;:::-;:22;:56;:22;:56;:::i;28912:342::-;28998:4;24053:30;24070:12;:10;:12::i;24053:30::-;24045:107;;;;-1:-1:-1;;;24045:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29022:21:0;;29014:30;;;;;;-1:-1:-1;;;;;29057:17:0;;29092:1;29057:17;;;:8;:17;;;;;;;;:36;;;29100:30;;:34;;;29146:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29244:4:0;28912:342;;;:::o;31678:39::-;;;;;;;;;;;;;;-1:-1:-1;;;31678:39:0;;;;:::o;27627:740::-;27777:4;24053:30;24070:12;:10;:12::i;24053:30::-;24045:107;;;;-1:-1:-1;;;24045:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27801:21:0;;27793:30;;;;;;27847:1;27838:6;:10;27830:19;;;;;;27891:6;27864:23;27879:7;27864:14;:23::i;:::-;:33;;27856:42;;;;;;27930:15;27913:13;:32;;27905:41;;;;;;-1:-1:-1;;;;;27982:17:0;;27955:24;27982:17;;;:8;:17;;;;;;;;;:30;;;;28021:46;;;;28079:73;;;;;;;;;;;;;27982:30;;:17;28079:73;;;;;;;;-1:-1:-1;;;;;28197:17:0;;;;;;:8;:17;;;;;:32;28196:46;;28235:6;28196:46;:38;:46;:::i;:::-;-1:-1:-1;;;;;28161:17:0;;;;;;:8;:17;;;;;;;;;:81;;;28312:30;;;28254:89;;;;;;;;;;;;;;;;;;;;28161:17;;28254:89;;;;;;;;;;-1:-1:-1;28357:4:0;;27627:740;-1:-1:-1;;;;27627:740:0:o;26313:407::-;26406:4;24053:30;24070:12;:10;:12::i;24053:30::-;24045:107;;;;-1:-1:-1;;;24045:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26430:21:0;;26422:30;;;;;;-1:-1:-1;;;;;26467:17:0;;26500:1;26467:17;;;:8;:17;;;;;:30;;;26459:43;;;;;;-1:-1:-1;;;;;26538:17:0;;26511:24;26538:17;;;:8;:17;;;;;;;;:30;;;;26577:34;;;;26623:73;;;;;;;;;;;;;;26538:30;;:17;26623:73;;;;;;;;;;-1:-1:-1;26710:4:0;;26313:407;-1:-1:-1;;26313:407:0:o;30987:385::-;31096:12;31120:16;31139:33;31149:12;:10;:12::i;:::-;31163:8;31139:9;:33::i;:::-;31120:52;;31204:8;31185:16;:27;31181:121;;;31263:30;:8;31276:16;31263:30;:12;:30;:::i;:::-;31231:28;31246:12;:10;:12::i;31231:28::-;:62;;31223:71;;;;;;31315:51;31339:8;31349:16;31315:23;:51::i;29927:198::-;30015:4;30071:6;30039:28;30054:12;:10;:12::i;30039:28::-;:38;;30031:47;;;;;;30092:27;30107:3;30112:6;30092:14;:27::i;24180:125::-;24244:4;24268:29;:16;24289:7;24268:29;:20;:29;:::i;29295:221::-;-1:-1:-1;;;;;29415:17:0;;29374:7;29415:17;;;:8;:17;;;;;:30;;;29396:15;:49;29393:71;;-1:-1:-1;29462:1:0;29447:17;;29393:71;-1:-1:-1;;;;;;29478:17:0;;;;;:8;:17;;;;;:32;;29295:221::o;11907:134::-;-1:-1:-1;;;;;12006:18:0;;;11979:7;12006:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11907:134::o;26875:593::-;26987:4;24053:30;24070:12;:10;:12::i;24053:30::-;24045:107;;;;-1:-1:-1;;;24045:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27011:21:0;;27003:30;;;;;;27057:1;27048:6;:10;27040:19;;;;;;27101:6;27074:23;27089:7;27074:14;:23::i;:::-;:33;;27066:42;;;;;;-1:-1:-1;;;;;27121:17:0;;;;;;:8;:17;;;;;:30;;;27155:15;-1:-1:-1;27117:137:0;;27235:11;;-1:-1:-1;;;;;27183:17:0;;;;;;:8;:17;;;;;27217:15;:29;;;27183:30;;;;:63;27117:137;-1:-1:-1;;;;;27298:17:0;;;;;;:8;:17;;;;;:32;27297:46;;27336:6;27297:46;:38;:46;:::i;25381:36::-;;;;:::o;871:98::-;951:10;871:98;:::o;22932:140::-;21534:7;;23011:4;;21534:7;;21533:8;21525:37;;;;;-1:-1:-1;;;21525:37:0;;;;;;;;;;;;-1:-1:-1;;;21525:37:0;;;;;;;;;;;;;;;23035:29;23049:7;23058:5;23035:13;:29::i;22764:160::-;21534:7;;22857:4;;21534:7;;21533:8;21525:37;;;;;-1:-1:-1;;;21525:37:0;;;;;;;;;;;;-1:-1:-1;;;21525:37:0;;;;;;;;;;;;;;;22881:35;22900:4;22906:2;22910:5;22881:18;:35::i;5028:181::-;5086:7;5118:5;;;5142:6;;;;5134:46;;;;;-1:-1:-1;;;5134:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;23080:170;21534:7;;23174:4;;21534:7;;21533:8;21525:37;;;;;-1:-1:-1;;;21525:37:0;;;;;;;;;;;;-1:-1:-1;;;21525:37:0;;;;;;;;;;;;;;;23198:44;23222:7;23231:10;23198:23;:44::i;18808:203::-;18880:4;-1:-1:-1;;;;;18905:21:0;;18897:68;;;;-1:-1:-1;;;18897:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18983:20:0;:11;:20;;;;;;;;;;;;;;;18808:203::o;24694:154::-;24762:32;:16;24786:7;24762:32;:23;:32;:::i;:::-;24810:30;;-1:-1:-1;;;;;24810:30:0;;;;;;;;24694:154;:::o;5484:136::-;5542:7;5569:43;5573:1;5576;5569:43;;;;;;;;;;;;;;;;;:3;:43::i;19990:130::-;20050:24;:8;20066:7;20050:24;:15;:24;:::i;:::-;20090:22;;-1:-1:-1;;;;;20090:22:0;;;;;;;;19990:130;:::o;24540:146::-;24605:29;:16;24626:7;24605:29;:20;:29;:::i;:::-;24650:28;;-1:-1:-1;;;;;24650:28:0;;;;;;;;24540:146;:::o;19860:122::-;19917:21;:8;19930:7;19917:21;:12;:21;:::i;:::-;19954:20;;-1:-1:-1;;;;;19954:20:0;;;;;;;;19860:122;:::o;23258:180::-;21534:7;;23357:4;;21534:7;;21533:8;21525:37;;;;;-1:-1:-1;;;21525:37:0;;;;;;;;;;;;-1:-1:-1;;;21525:37:0;;;;;;;;;;;;;;;23381:49;23405:7;23414:15;23381:23;:49::i;22624:132::-;21534:7;;22699:4;;21534:7;;21533:8;21525:37;;;;;-1:-1:-1;;;21525:37:0;;;;;;;;;;;;-1:-1:-1;;;21525:37:0;;;;;;;;;;;;;;;22723:25;22738:2;22742:5;22723:14;:25::i;12188:152::-;12254:4;12271:39;12280:12;:10;:12::i;:::-;12294:7;12303:6;12271:8;:39::i;:::-;-1:-1:-1;12328:4:0;12188:152;;;;:::o;12812:304::-;12901:4;12918:36;12928:6;12936:9;12947:6;12918:9;:36::i;:::-;12965:121;12974:6;12982:12;:10;:12::i;:::-;12996:89;13034:6;12996:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12996:19:0;;;;;;:11;:19;;;;;;13016:12;:10;:12::i;:::-;-1:-1:-1;;;;;12996:33:0;;;;;;;;;;;;-1:-1:-1;12996:33:0;;;:89;;:37;:89;:::i;:::-;12965:8;:121::i;:::-;-1:-1:-1;13104:4:0;12812:304;;;;;:::o;13525:210::-;13605:4;13622:83;13631:12;:10;:12::i;:::-;13645:7;13654:50;13693:10;13654:11;:25;13666:12;:10;:12::i;:::-;-1:-1:-1;;;;;13654:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13654:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;18530:183::-;18610:18;18614:4;18620:7;18610:3;:18::i;:::-;18602:64;;;;-1:-1:-1;;;18602:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18677:20:0;18700:5;18677:20;;;;;;;;;;;:28;;-1:-1:-1;;18677:28:0;;;18530:183::o;5957:192::-;6043:7;6079:12;6071:6;;;;6063:29;;;;-1:-1:-1;;;6063:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;6063:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6115:5:0;;;5957:192::o;18272:178::-;18350:18;18354:4;18360:7;18350:3;:18::i;:::-;18349:19;18341:63;;;;;-1:-1:-1;;;18341:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18415:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;18415:27:0;18438:4;18415:27;;;18272:178::o;14238:261::-;14323:4;14340:129;14349:12;:10;:12::i;:::-;14363:7;14372:96;14411:15;14372:96;;;;;;;;;;;;;;;;;:11;:25;14384:12;:10;:12::i;:::-;-1:-1:-1;;;;;14372:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14372:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;11686:158::-;11755:4;11772:42;11782:12;:10;:12::i;:::-;11796:9;11807:6;11772:9;:42::i;17169:338::-;-1:-1:-1;;;;;17263:19:0;;17255:68;;;;-1:-1:-1;;;17255:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17342:21:0;;17334:68;;;;-1:-1:-1;;;17334:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17415:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17467:32;;;;;;;;;;;;;;;;;17169:338;;;:::o;14989:471::-;-1:-1:-1;;;;;15087:20:0;;15079:70;;;;-1:-1:-1;;;15079:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15168:23:0;;15160:71;;;;-1:-1:-1;;;15160:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15264;15286:6;15264:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15264:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;15244:17:0;;;:9;:17;;;;;;;;;;;:91;;;;15369:20;;;;;;;:32;;15394:6;15369:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;15346:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;15417:35;;;;;;;15346:20;;15417:35;;;;;;;;;;;;;14989:471;;;:::o

Swarm Source

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