ETH Price: $3,110.47 (+4.19%)
Gas: 10 Gwei

Token

GroveC (GRV)
 

Overview

Max Total Supply

100,000,000 GRV

Holders

1,408

Total Transfers

-

Market

Price

$0.06 @ 0.000018 ETH (+0.53%)

Onchain Market Cap

$5,612,900.00

Circulating Supply Market Cap

$4,227,775.00

Other Info

Token Contract (WITH 8 Decimals)

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

OVERVIEW

Our Mission is to Create wealth, for all Grovers, by harnessing the opportunities of a secure, decentralized digital currency in an environmentally conscious way. By compensating nature for years of abuse, Grove will create a healthier, wealthier future for all.

Market

Volume (24H):$1,583,829.00
Market Capitalization:$4,227,775.00
Circulating Supply:74,565,332.00 GRV
Market Data Source: Coinmarketcap

 


# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-18
*/

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


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

    /**
     * @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 a - b;
    }

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the 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 virtual onlyOwner {
        _transferOwnership(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 virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead 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, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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 virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

// File: Token.sol

//SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;





contract Token is Context, ERC20, Ownable {
    using SafeMath for uint256;

    uint8 private _decimals = 8;
    mapping (address => bool) private _isBlackList;


    uint256 private _tax = 0;
    address private _taxAccount;

    struct Restriction{
        uint256 delay;
        uint256 amount;
    }

    mapping (address => Restriction) private _Restrictions;
    mapping (address => uint256) private _UserRestrictions;

    constructor(string memory name, string memory symbol, uint256 initialSupply, uint8 decimals, address owner)ERC20(name, symbol){
        _decimals = decimals;
        transferOwnership(owner);
        _mint(owner, initialSupply);
    }

    function decimals() public view override returns (uint8) {
        return _decimals;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public override returns (bool) {

        require(!_isBlackList[from], "Sender in Black List");
        // require(!_isBlackList[to], "Receiver in Black List");

        address spender = _msgSender();
        _spendAllowance(from, spender, amount);

        require(checkRestriction(from, to, amount), "Restriction (amount/delay) error");

        uint256 tax = calculateTaxFee(amount);
        if(tax > 0){
            amount = amount - tax;
            _transfer(from, _taxAccount, tax);
        }

        _transfer(from, to, amount);
        return true;
    }


    function transfer(address to, uint256 amount) public override returns (bool) {
        address owner = _msgSender();

        require(!_isBlackList[owner], "Sender in Black List");
        // require(!_isBlackList[to], "Receiver in Black List");

        require(checkRestriction(owner, to, amount), "Restriction (amount/delay) error");

        uint256 tax = calculateTaxFee(amount);
        if(tax > 0){
            amount = amount - tax;
            _transfer(owner, _taxAccount, tax);
        }

        _transfer(owner, to, amount);
        return true;
    }

    function ExcludeFromBlackList(address account) public onlyOwner() {
        _isBlackList[account] = false;
    }

    function IncludeInBlackList(address account) public onlyOwner() {
        _isBlackList[account] = true;
    }

    function getRestriction(address account) public view onlyOwner() returns (Restriction memory) {
        return _Restrictions[account];
    }

    function deleteRestriction(address account) public onlyOwner() {
        delete _Restrictions[account];
    }

    function addRestriction(address account, uint256 delay, uint256 amount) public onlyOwner() {
        _Restrictions[account].amount = amount;
        _Restrictions[account].delay = delay;
    }

    function checkRestriction(address from, address to, uint256 amount) private returns (bool) {

        if(!(_Restrictions[to].delay > 0) && !(_Restrictions[to].amount > 0))
            return true;

        if(_Restrictions[to].amount > 0 && amount > _Restrictions[to].amount)
            return false;

        if(_Restrictions[to].delay > 0 && _UserRestrictions[from] >  block.timestamp - _Restrictions[to].delay)
            return false;

        if(_Restrictions[to].delay > 0)
            _UserRestrictions[from] =  block.timestamp;

        return true;

    }

    function setTax(address account, uint256 tax) public onlyOwner() {
        _tax = tax;
        _taxAccount = account;
    }

    function getTax() public view onlyOwner() returns (address account, uint256 tax){
        return (_taxAccount, _tax);
    }

    function deleteTax() public onlyOwner() {
        _tax = 0;
    }

    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        if(_tax > 0)
            return _amount.mul(_tax).div(10**2);
        else
            return 0;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"ExcludeFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"IncludeInBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"delay","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addRestriction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"deleteRestriction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deleteTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getRestriction","outputs":[{"components":[{"internalType":"uint256","name":"delay","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct Token.Restriction","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTax","outputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"tax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"tax","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526008600560146101000a81548160ff021916908360ff16021790555060006007553480156200003257600080fd5b5060405162002dc738038062002dc78339818101604052810190620000589190620007c5565b84848160039080519060200190620000729291906200049a565b5080600490805190602001906200008b9291906200049a565b505050620000ae620000a2620000f760201b60201c565b620000ff60201b60201c565b81600560146101000a81548160ff021916908360ff160217905550620000da81620001c560201b60201c565b620000ec81846200025c60201b60201c565b505050505062000b37565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001d5620003d560201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000248576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200023f9062000912565b60405180910390fd5b6200025981620000ff60201b60201c565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c69062000984565b60405180910390fd5b620002e3600083836200046660201b60201c565b8060026000828254620002f79190620009d5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200034e9190620009d5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003b5919062000a43565b60405180910390a3620003d1600083836200046b60201b60201c565b5050565b620003e5620000f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200040b6200047060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000464576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200045b9062000ab0565b60405180910390fd5b565b505050565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620004a89062000b01565b90600052602060002090601f016020900481019282620004cc576000855562000518565b82601f10620004e757805160ff191683800117855562000518565b8280016001018555821562000518579182015b8281111562000517578251825591602001919060010190620004fa565b5b5090506200052791906200052b565b5090565b5b80821115620005465760008160009055506001016200052c565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620005b38262000568565b810181811067ffffffffffffffff82111715620005d557620005d462000579565b5b80604052505050565b6000620005ea6200054a565b9050620005f88282620005a8565b919050565b600067ffffffffffffffff8211156200061b576200061a62000579565b5b620006268262000568565b9050602081019050919050565b60005b838110156200065357808201518184015260208101905062000636565b8381111562000663576000848401525b50505050565b6000620006806200067a84620005fd565b620005de565b9050828152602081018484840111156200069f576200069e62000563565b5b620006ac84828562000633565b509392505050565b600082601f830112620006cc57620006cb6200055e565b5b8151620006de84826020860162000669565b91505092915050565b6000819050919050565b620006fc81620006e7565b81146200070857600080fd5b50565b6000815190506200071c81620006f1565b92915050565b600060ff82169050919050565b6200073a8162000722565b81146200074657600080fd5b50565b6000815190506200075a816200072f565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200078d8262000760565b9050919050565b6200079f8162000780565b8114620007ab57600080fd5b50565b600081519050620007bf8162000794565b92915050565b600080600080600060a08688031215620007e457620007e362000554565b5b600086015167ffffffffffffffff81111562000805576200080462000559565b5b6200081388828901620006b4565b955050602086015167ffffffffffffffff81111562000837576200083662000559565b5b6200084588828901620006b4565b945050604062000858888289016200070b565b93505060606200086b8882890162000749565b92505060806200087e88828901620007ae565b9150509295509295909350565b600082825260208201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000620008fa6026836200088b565b915062000907826200089c565b604082019050919050565b600060208201905081810360008301526200092d81620008eb565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200096c601f836200088b565b9150620009798262000934565b602082019050919050565b600060208201905081810360008301526200099f816200095d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620009e282620006e7565b9150620009ef83620006e7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a275762000a26620009a6565b5b828201905092915050565b62000a3d81620006e7565b82525050565b600060208201905062000a5a600083018462000a32565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000a986020836200088b565b915062000aa58262000a60565b602082019050919050565b6000602082019050818103600083015262000acb8162000a89565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b1a57607f821691505b6020821081141562000b315762000b3062000ad2565b5b50919050565b6122808062000b476000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b85780638da5cb5b1161007c5780638da5cb5b1461035057806395d89b411461036e578063a457c2d71461038c578063a9059cbb146103bc578063dd62ed3e146103ec578063f2fde38b1461041c57610142565b806370a08231146102d4578063715018a614610304578063798c2c101461030e57806383e6ab041461032a578063850c72261461033457610142565b8063313ce5671161010a578063313ce567146101ff578063395093511461021d5780633d7457261461024d578063424e7b3d146102695780634a57a6b21461028557806354b762a6146102b557610142565b806306fdde0314610147578063095ea7b31461016557806311c28b591461019557806318160ddd146101b157806323b872dd146101cf575b600080fd5b61014f610438565b60405161015c9190611777565b60405180910390f35b61017f600480360381019061017a9190611832565b6104ca565b60405161018c919061188d565b60405180910390f35b6101af60048036038101906101aa91906118a8565b6104ed565b005b6101b9610588565b6040516101c6919061190a565b60405180910390f35b6101e960048036038101906101e49190611925565b610592565b6040516101f6919061188d565b60405180910390f35b6102076106ec565b6040516102149190611994565b60405180910390f35b61023760048036038101906102329190611832565b610703565b604051610244919061188d565b60405180910390f35b61026760048036038101906102629190611832565b61073a565b005b610283600480360381019061027e91906119af565b61078e565b005b61029f600480360381019061029a91906119af565b6107eb565b6040516102ac9190611a1a565b60405180910390f35b6102bd610860565b6040516102cb929190611a44565b60405180910390f35b6102ee60048036038101906102e991906119af565b610899565b6040516102fb919061190a565b60405180910390f35b61030c6108e1565b005b610328600480360381019061032391906119af565b6108f5565b005b610332610958565b005b61034e600480360381019061034991906119af565b61096a565b005b6103586109cd565b6040516103659190611a6d565b60405180910390f35b6103766109f7565b6040516103839190611777565b60405180910390f35b6103a660048036038101906103a19190611832565b610a89565b6040516103b3919061188d565b60405180910390f35b6103d660048036038101906103d19190611832565b610b00565b6040516103e3919061188d565b60405180910390f35b61040660048036038101906104019190611a88565b610c4d565b604051610413919061190a565b60405180910390f35b610436600480360381019061043191906119af565b610cd4565b005b60606003805461044790611af7565b80601f016020809104026020016040519081016040528092919081815260200182805461047390611af7565b80156104c05780601f10610495576101008083540402835291602001916104c0565b820191906000526020600020905b8154815290600101906020018083116104a357829003601f168201915b5050505050905090565b6000806104d5610d58565b90506104e2818585610d60565b600191505092915050565b6104f5610f2b565b80600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555081600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000181905550505050565b6000600254905090565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061890611b75565b60405180910390fd5b600061062b610d58565b9050610638858285610fa9565b610643858585611035565b610682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067990611be1565b60405180910390fd5b600061068d84611302565b905060008111156106d45780846106a49190611c30565b93506106d386600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611347565b5b6106df868686611347565b6001925050509392505050565b6000600560149054906101000a900460ff16905090565b60008061070e610d58565b905061072f8185856107208589610c4d565b61072a9190611c64565b610d60565b600191505092915050565b610742610f2b565b8060078190555081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b610796610f2b565b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000808201600090556001820160009055505050565b6107f36116c4565b6107fb610f2b565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806040016040529081600082015481526020016001820154815250509050919050565b60008061086b610f2b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600754915091509091565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108e9610f2b565b6108f360006115c8565b565b6108fd610f2b565b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610960610f2b565b6000600781905550565b610972610f2b565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a0690611af7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3290611af7565b8015610a7f5780601f10610a5457610100808354040283529160200191610a7f565b820191906000526020600020905b815481529060010190602001808311610a6257829003601f168201915b5050505050905090565b600080610a94610d58565b90506000610aa28286610c4d565b905083811015610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade90611d2c565b60405180910390fd5b610af48286868403610d60565b60019250505092915050565b600080610b0b610d58565b9050600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9190611b75565b60405180910390fd5b610ba5818585611035565b610be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdb90611be1565b60405180910390fd5b6000610bef84611302565b90506000811115610c36578084610c069190611c30565b9350610c3582600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611347565b5b610c41828686611347565b60019250505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cdc610f2b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4390611dbe565b60405180910390fd5b610d55816115c8565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790611e50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790611ee2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f1e919061190a565b60405180910390a3505050565b610f33610d58565b73ffffffffffffffffffffffffffffffffffffffff16610f516109cd565b73ffffffffffffffffffffffffffffffffffffffff1614610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90611f4e565b60405180910390fd5b565b6000610fb58484610c4d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461102f5781811015611021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101890611fba565b60405180910390fd5b61102e8484848403610d60565b5b50505050565b600080600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154111580156110cc57506000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015411155b156110da57600190506112fb565b6000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015411801561116d5750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015482115b1561117b57600090506112fb565b6000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001541180156112585750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154426112169190611c30565b600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561126657600090506112fb565b6000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015411156112f65742600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600190505b9392505050565b600080600754111561133d5761133660646113286007548561168e90919063ffffffff16565b6116a490919063ffffffff16565b9050611342565b600090505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae9061204c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e906120de565b60405180910390fd5b6114328383836116ba565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af90612170565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461154b9190611c64565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115af919061190a565b60405180910390a36115c28484846116bf565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818361169c9190612190565b905092915050565b600081836116b29190612219565b905092915050565b505050565b505050565b604051806040016040528060008152602001600081525090565b600081519050919050565b600082825260208201905092915050565b60005b838110156117185780820151818401526020810190506116fd565b83811115611727576000848401525b50505050565b6000601f19601f8301169050919050565b6000611749826116de565b61175381856116e9565b93506117638185602086016116fa565b61176c8161172d565b840191505092915050565b60006020820190508181036000830152611791818461173e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117c98261179e565b9050919050565b6117d9816117be565b81146117e457600080fd5b50565b6000813590506117f6816117d0565b92915050565b6000819050919050565b61180f816117fc565b811461181a57600080fd5b50565b60008135905061182c81611806565b92915050565b6000806040838503121561184957611848611799565b5b6000611857858286016117e7565b92505060206118688582860161181d565b9150509250929050565b60008115159050919050565b61188781611872565b82525050565b60006020820190506118a2600083018461187e565b92915050565b6000806000606084860312156118c1576118c0611799565b5b60006118cf868287016117e7565b93505060206118e08682870161181d565b92505060406118f18682870161181d565b9150509250925092565b611904816117fc565b82525050565b600060208201905061191f60008301846118fb565b92915050565b60008060006060848603121561193e5761193d611799565b5b600061194c868287016117e7565b935050602061195d868287016117e7565b925050604061196e8682870161181d565b9150509250925092565b600060ff82169050919050565b61198e81611978565b82525050565b60006020820190506119a96000830184611985565b92915050565b6000602082840312156119c5576119c4611799565b5b60006119d3848285016117e7565b91505092915050565b6119e5816117fc565b82525050565b604082016000820151611a0160008501826119dc565b506020820151611a1460208501826119dc565b50505050565b6000604082019050611a2f60008301846119eb565b92915050565b611a3e816117be565b82525050565b6000604082019050611a596000830185611a35565b611a6660208301846118fb565b9392505050565b6000602082019050611a826000830184611a35565b92915050565b60008060408385031215611a9f57611a9e611799565b5b6000611aad858286016117e7565b9250506020611abe858286016117e7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b0f57607f821691505b60208210811415611b2357611b22611ac8565b5b50919050565b7f53656e64657220696e20426c61636b204c697374000000000000000000000000600082015250565b6000611b5f6014836116e9565b9150611b6a82611b29565b602082019050919050565b60006020820190508181036000830152611b8e81611b52565b9050919050565b7f5265737472696374696f6e2028616d6f756e742f64656c617929206572726f72600082015250565b6000611bcb6020836116e9565b9150611bd682611b95565b602082019050919050565b60006020820190508181036000830152611bfa81611bbe565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611c3b826117fc565b9150611c46836117fc565b925082821015611c5957611c58611c01565b5b828203905092915050565b6000611c6f826117fc565b9150611c7a836117fc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611caf57611cae611c01565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d166025836116e9565b9150611d2182611cba565b604082019050919050565b60006020820190508181036000830152611d4581611d09565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611da86026836116e9565b9150611db382611d4c565b604082019050919050565b60006020820190508181036000830152611dd781611d9b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611e3a6024836116e9565b9150611e4582611dde565b604082019050919050565b60006020820190508181036000830152611e6981611e2d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ecc6022836116e9565b9150611ed782611e70565b604082019050919050565b60006020820190508181036000830152611efb81611ebf565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611f386020836116e9565b9150611f4382611f02565b602082019050919050565b60006020820190508181036000830152611f6781611f2b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611fa4601d836116e9565b9150611faf82611f6e565b602082019050919050565b60006020820190508181036000830152611fd381611f97565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006120366025836116e9565b915061204182611fda565b604082019050919050565b6000602082019050818103600083015261206581612029565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120c86023836116e9565b91506120d38261206c565b604082019050919050565b600060208201905081810360008301526120f7816120bb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061215a6026836116e9565b9150612165826120fe565b604082019050919050565b600060208201905081810360008301526121898161214d565b9050919050565b600061219b826117fc565b91506121a6836117fc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156121df576121de611c01565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612224826117fc565b915061222f836117fc565b92508261223f5761223e6121ea565b5b82820490509291505056fea2646970667358221220965550039af5692c80ec16b46dc19b38e3fe9ba44833d5bdf15d823c0c5c681764736f6c634300080b003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000dbc0eef081dec6630be67989009e0ade58274477000000000000000000000000000000000000000000000000000000000000000647726f766543000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034752560000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b85780638da5cb5b1161007c5780638da5cb5b1461035057806395d89b411461036e578063a457c2d71461038c578063a9059cbb146103bc578063dd62ed3e146103ec578063f2fde38b1461041c57610142565b806370a08231146102d4578063715018a614610304578063798c2c101461030e57806383e6ab041461032a578063850c72261461033457610142565b8063313ce5671161010a578063313ce567146101ff578063395093511461021d5780633d7457261461024d578063424e7b3d146102695780634a57a6b21461028557806354b762a6146102b557610142565b806306fdde0314610147578063095ea7b31461016557806311c28b591461019557806318160ddd146101b157806323b872dd146101cf575b600080fd5b61014f610438565b60405161015c9190611777565b60405180910390f35b61017f600480360381019061017a9190611832565b6104ca565b60405161018c919061188d565b60405180910390f35b6101af60048036038101906101aa91906118a8565b6104ed565b005b6101b9610588565b6040516101c6919061190a565b60405180910390f35b6101e960048036038101906101e49190611925565b610592565b6040516101f6919061188d565b60405180910390f35b6102076106ec565b6040516102149190611994565b60405180910390f35b61023760048036038101906102329190611832565b610703565b604051610244919061188d565b60405180910390f35b61026760048036038101906102629190611832565b61073a565b005b610283600480360381019061027e91906119af565b61078e565b005b61029f600480360381019061029a91906119af565b6107eb565b6040516102ac9190611a1a565b60405180910390f35b6102bd610860565b6040516102cb929190611a44565b60405180910390f35b6102ee60048036038101906102e991906119af565b610899565b6040516102fb919061190a565b60405180910390f35b61030c6108e1565b005b610328600480360381019061032391906119af565b6108f5565b005b610332610958565b005b61034e600480360381019061034991906119af565b61096a565b005b6103586109cd565b6040516103659190611a6d565b60405180910390f35b6103766109f7565b6040516103839190611777565b60405180910390f35b6103a660048036038101906103a19190611832565b610a89565b6040516103b3919061188d565b60405180910390f35b6103d660048036038101906103d19190611832565b610b00565b6040516103e3919061188d565b60405180910390f35b61040660048036038101906104019190611a88565b610c4d565b604051610413919061190a565b60405180910390f35b610436600480360381019061043191906119af565b610cd4565b005b60606003805461044790611af7565b80601f016020809104026020016040519081016040528092919081815260200182805461047390611af7565b80156104c05780601f10610495576101008083540402835291602001916104c0565b820191906000526020600020905b8154815290600101906020018083116104a357829003601f168201915b5050505050905090565b6000806104d5610d58565b90506104e2818585610d60565b600191505092915050565b6104f5610f2b565b80600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555081600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000181905550505050565b6000600254905090565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061890611b75565b60405180910390fd5b600061062b610d58565b9050610638858285610fa9565b610643858585611035565b610682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067990611be1565b60405180910390fd5b600061068d84611302565b905060008111156106d45780846106a49190611c30565b93506106d386600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611347565b5b6106df868686611347565b6001925050509392505050565b6000600560149054906101000a900460ff16905090565b60008061070e610d58565b905061072f8185856107208589610c4d565b61072a9190611c64565b610d60565b600191505092915050565b610742610f2b565b8060078190555081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b610796610f2b565b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000808201600090556001820160009055505050565b6107f36116c4565b6107fb610f2b565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806040016040529081600082015481526020016001820154815250509050919050565b60008061086b610f2b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600754915091509091565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108e9610f2b565b6108f360006115c8565b565b6108fd610f2b565b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610960610f2b565b6000600781905550565b610972610f2b565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a0690611af7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3290611af7565b8015610a7f5780601f10610a5457610100808354040283529160200191610a7f565b820191906000526020600020905b815481529060010190602001808311610a6257829003601f168201915b5050505050905090565b600080610a94610d58565b90506000610aa28286610c4d565b905083811015610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade90611d2c565b60405180910390fd5b610af48286868403610d60565b60019250505092915050565b600080610b0b610d58565b9050600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9190611b75565b60405180910390fd5b610ba5818585611035565b610be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdb90611be1565b60405180910390fd5b6000610bef84611302565b90506000811115610c36578084610c069190611c30565b9350610c3582600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611347565b5b610c41828686611347565b60019250505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cdc610f2b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4390611dbe565b60405180910390fd5b610d55816115c8565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790611e50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790611ee2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f1e919061190a565b60405180910390a3505050565b610f33610d58565b73ffffffffffffffffffffffffffffffffffffffff16610f516109cd565b73ffffffffffffffffffffffffffffffffffffffff1614610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90611f4e565b60405180910390fd5b565b6000610fb58484610c4d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461102f5781811015611021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101890611fba565b60405180910390fd5b61102e8484848403610d60565b5b50505050565b600080600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154111580156110cc57506000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015411155b156110da57600190506112fb565b6000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015411801561116d5750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015482115b1561117b57600090506112fb565b6000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001541180156112585750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154426112169190611c30565b600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561126657600090506112fb565b6000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015411156112f65742600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600190505b9392505050565b600080600754111561133d5761133660646113286007548561168e90919063ffffffff16565b6116a490919063ffffffff16565b9050611342565b600090505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae9061204c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e906120de565b60405180910390fd5b6114328383836116ba565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af90612170565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461154b9190611c64565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115af919061190a565b60405180910390a36115c28484846116bf565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818361169c9190612190565b905092915050565b600081836116b29190612219565b905092915050565b505050565b505050565b604051806040016040528060008152602001600081525090565b600081519050919050565b600082825260208201905092915050565b60005b838110156117185780820151818401526020810190506116fd565b83811115611727576000848401525b50505050565b6000601f19601f8301169050919050565b6000611749826116de565b61175381856116e9565b93506117638185602086016116fa565b61176c8161172d565b840191505092915050565b60006020820190508181036000830152611791818461173e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117c98261179e565b9050919050565b6117d9816117be565b81146117e457600080fd5b50565b6000813590506117f6816117d0565b92915050565b6000819050919050565b61180f816117fc565b811461181a57600080fd5b50565b60008135905061182c81611806565b92915050565b6000806040838503121561184957611848611799565b5b6000611857858286016117e7565b92505060206118688582860161181d565b9150509250929050565b60008115159050919050565b61188781611872565b82525050565b60006020820190506118a2600083018461187e565b92915050565b6000806000606084860312156118c1576118c0611799565b5b60006118cf868287016117e7565b93505060206118e08682870161181d565b92505060406118f18682870161181d565b9150509250925092565b611904816117fc565b82525050565b600060208201905061191f60008301846118fb565b92915050565b60008060006060848603121561193e5761193d611799565b5b600061194c868287016117e7565b935050602061195d868287016117e7565b925050604061196e8682870161181d565b9150509250925092565b600060ff82169050919050565b61198e81611978565b82525050565b60006020820190506119a96000830184611985565b92915050565b6000602082840312156119c5576119c4611799565b5b60006119d3848285016117e7565b91505092915050565b6119e5816117fc565b82525050565b604082016000820151611a0160008501826119dc565b506020820151611a1460208501826119dc565b50505050565b6000604082019050611a2f60008301846119eb565b92915050565b611a3e816117be565b82525050565b6000604082019050611a596000830185611a35565b611a6660208301846118fb565b9392505050565b6000602082019050611a826000830184611a35565b92915050565b60008060408385031215611a9f57611a9e611799565b5b6000611aad858286016117e7565b9250506020611abe858286016117e7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b0f57607f821691505b60208210811415611b2357611b22611ac8565b5b50919050565b7f53656e64657220696e20426c61636b204c697374000000000000000000000000600082015250565b6000611b5f6014836116e9565b9150611b6a82611b29565b602082019050919050565b60006020820190508181036000830152611b8e81611b52565b9050919050565b7f5265737472696374696f6e2028616d6f756e742f64656c617929206572726f72600082015250565b6000611bcb6020836116e9565b9150611bd682611b95565b602082019050919050565b60006020820190508181036000830152611bfa81611bbe565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611c3b826117fc565b9150611c46836117fc565b925082821015611c5957611c58611c01565b5b828203905092915050565b6000611c6f826117fc565b9150611c7a836117fc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611caf57611cae611c01565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d166025836116e9565b9150611d2182611cba565b604082019050919050565b60006020820190508181036000830152611d4581611d09565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611da86026836116e9565b9150611db382611d4c565b604082019050919050565b60006020820190508181036000830152611dd781611d9b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611e3a6024836116e9565b9150611e4582611dde565b604082019050919050565b60006020820190508181036000830152611e6981611e2d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ecc6022836116e9565b9150611ed782611e70565b604082019050919050565b60006020820190508181036000830152611efb81611ebf565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611f386020836116e9565b9150611f4382611f02565b602082019050919050565b60006020820190508181036000830152611f6781611f2b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611fa4601d836116e9565b9150611faf82611f6e565b602082019050919050565b60006020820190508181036000830152611fd381611f97565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006120366025836116e9565b915061204182611fda565b604082019050919050565b6000602082019050818103600083015261206581612029565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120c86023836116e9565b91506120d38261206c565b604082019050919050565b600060208201905081810360008301526120f7816120bb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061215a6026836116e9565b9150612165826120fe565b604082019050919050565b600060208201905081810360008301526121898161214d565b9050919050565b600061219b826117fc565b91506121a6836117fc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156121df576121de611c01565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612224826117fc565b915061222f836117fc565b92508261223f5761223e6121ea565b5b82820490509291505056fea2646970667358221220965550039af5692c80ec16b46dc19b38e3fe9ba44833d5bdf15d823c0c5c681764736f6c634300080b0033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000dbc0eef081dec6630be67989009e0ade58274477000000000000000000000000000000000000000000000000000000000000000647726f766543000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034752560000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): GroveC
Arg [1] : symbol (string): GRV
Arg [2] : initialSupply (uint256): 10000000000000000
Arg [3] : decimals (uint8): 8
Arg [4] : owner (address): 0xDbc0EEF081dEC6630Be67989009E0adE58274477

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 000000000000000000000000dbc0eef081dec6630be67989009e0ade58274477
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 47726f7665430000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 4752560000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

27270:3914:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16394:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18745:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29854:195;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17514:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28065:681;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27965:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20230:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30647:126;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29735:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29585:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30781:125;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;17685:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9817:103;;;:::i;:::-;;29466:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30914:67;;;:::i;:::-;;29344:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9169:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16613:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20971:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28756:580;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18274:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10075:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16394:100;16448:13;16481:5;16474:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16394:100;:::o;18745:201::-;18828:4;18845:13;18861:12;:10;:12::i;:::-;18845:28;;18884:32;18893:5;18900:7;18909:6;18884:8;:32::i;:::-;18934:4;18927:11;;;18745:201;;;;:::o;29854:195::-;9055:13;:11;:13::i;:::-;29988:6:::1;29956:13;:22;29970:7;29956:22;;;;;;;;;;;;;;;:29;;:38;;;;30036:5;30005:13;:22;30019:7;30005:22;;;;;;;;;;;;;;;:28;;:36;;;;29854:195:::0;;;:::o;17514:108::-;17575:7;17602:12;;17595:19;;17514:108;:::o;28065:681::-;28188:4;28216:12;:18;28229:4;28216:18;;;;;;;;;;;;;;;;;;;;;;;;;28215:19;28207:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;28338:15;28356:12;:10;:12::i;:::-;28338:30;;28379:38;28395:4;28401:7;28410:6;28379:15;:38::i;:::-;28438:34;28455:4;28461:2;28465:6;28438:16;:34::i;:::-;28430:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;28522:11;28536:23;28552:6;28536:15;:23::i;:::-;28522:37;;28579:1;28573:3;:7;28570:107;;;28614:3;28605:6;:12;;;;:::i;:::-;28596:21;;28632:33;28642:4;28648:11;;;;;;;;;;;28661:3;28632:9;:33::i;:::-;28570:107;28689:27;28699:4;28705:2;28709:6;28689:9;:27::i;:::-;28734:4;28727:11;;;;28065:681;;;;;:::o;27965:92::-;28015:5;28040:9;;;;;;;;;;;28033:16;;27965:92;:::o;20230:238::-;20318:4;20335:13;20351:12;:10;:12::i;:::-;20335:28;;20374:64;20383:5;20390:7;20427:10;20399:25;20409:5;20416:7;20399:9;:25::i;:::-;:38;;;;:::i;:::-;20374:8;:64::i;:::-;20456:4;20449:11;;;20230:238;;;;:::o;30647:126::-;9055:13;:11;:13::i;:::-;30730:3:::1;30723:4;:10;;;;30758:7;30744:11;;:21;;;;;;;;;;;;;;;;;;30647:126:::0;;:::o;29735:111::-;9055:13;:11;:13::i;:::-;29816::::1;:22;29830:7;29816:22;;;;;;;;;;;;;;;;29809:29:::0;::::1;;;;;;;;;;;;;29735:111:::0;:::o;29585:142::-;29659:18;;:::i;:::-;9055:13;:11;:13::i;:::-;29697::::1;:22;29711:7;29697:22;;;;;;;;;;;;;;;29690:29;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;29585:142:::0;;;:::o;30781:125::-;30832:15;30849:11;9055:13;:11;:13::i;:::-;30880:11:::1;;;;;;;;;;;30893:4;;30872:26;;;;30781:125:::0;;:::o;17685:127::-;17759:7;17786:9;:18;17796:7;17786:18;;;;;;;;;;;;;;;;17779:25;;17685:127;;;:::o;9817:103::-;9055:13;:11;:13::i;:::-;9882:30:::1;9909:1;9882:18;:30::i;:::-;9817:103::o:0;29466:111::-;9055:13;:11;:13::i;:::-;29565:4:::1;29541:12;:21;29554:7;29541:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;29466:111:::0;:::o;30914:67::-;9055:13;:11;:13::i;:::-;30972:1:::1;30965:4;:8;;;;30914:67::o:0;29344:114::-;9055:13;:11;:13::i;:::-;29445:5:::1;29421:12;:21;29434:7;29421:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;29344:114:::0;:::o;9169:87::-;9215:7;9242:6;;;;;;;;;;;9235:13;;9169:87;:::o;16613:104::-;16669:13;16702:7;16695:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16613:104;:::o;20971:436::-;21064:4;21081:13;21097:12;:10;:12::i;:::-;21081:28;;21120:24;21147:25;21157:5;21164:7;21147:9;:25::i;:::-;21120:52;;21211:15;21191:16;:35;;21183:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;21304:60;21313:5;21320:7;21348:15;21329:16;:34;21304:8;:60::i;:::-;21395:4;21388:11;;;;20971:436;;;;:::o;28756:580::-;28827:4;28844:13;28860:12;:10;:12::i;:::-;28844:28;;28894:12;:19;28907:5;28894:19;;;;;;;;;;;;;;;;;;;;;;;;;28893:20;28885:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;29025:35;29042:5;29049:2;29053:6;29025:16;:35::i;:::-;29017:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;29110:11;29124:23;29140:6;29124:15;:23::i;:::-;29110:37;;29167:1;29161:3;:7;29158:108;;;29202:3;29193:6;:12;;;;:::i;:::-;29184:21;;29220:34;29230:5;29237:11;;;;;;;;;;;29250:3;29220:9;:34::i;:::-;29158:108;29278:28;29288:5;29295:2;29299:6;29278:9;:28::i;:::-;29324:4;29317:11;;;;28756:580;;;;:::o;18274:151::-;18363:7;18390:11;:18;18402:5;18390:18;;;;;;;;;;;;;;;:27;18409:7;18390:27;;;;;;;;;;;;;;;;18383:34;;18274:151;;;;:::o;10075:201::-;9055:13;:11;:13::i;:::-;10184:1:::1;10164:22;;:8;:22;;;;10156:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10240:28;10259:8;10240:18;:28::i;:::-;10075:201:::0;:::o;7720:98::-;7773:7;7800:10;7793:17;;7720:98;:::o;24596:380::-;24749:1;24732:19;;:5;:19;;;;24724:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24830:1;24811:21;;:7;:21;;;;24803:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24914:6;24884:11;:18;24896:5;24884:18;;;;;;;;;;;;;;;:27;24903:7;24884:27;;;;;;;;;;;;;;;:36;;;;24952:7;24936:32;;24945:5;24936:32;;;24961:6;24936:32;;;;;;:::i;:::-;;;;;;;;24596:380;;;:::o;9334:132::-;9409:12;:10;:12::i;:::-;9398:23;;:7;:5;:7::i;:::-;:23;;;9390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9334:132::o;25267:453::-;25402:24;25429:25;25439:5;25446:7;25429:9;:25::i;:::-;25402:52;;25489:17;25469:16;:37;25465:248;;25551:6;25531:16;:26;;25523:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25635:51;25644:5;25651:7;25679:6;25660:16;:25;25635:8;:51::i;:::-;25465:248;25391:329;25267:453;;;:::o;30057:582::-;30142:4;30192:1;30166:13;:17;30180:2;30166:17;;;;;;;;;;;;;;;:23;;;:27;30164:30;:65;;;;;30227:1;30200:13;:17;30214:2;30200:17;;;;;;;;;;;;;;;:24;;;:28;30198:31;30164:65;30161:94;;;30251:4;30244:11;;;;30161:94;30298:1;30271:13;:17;30285:2;30271:17;;;;;;;;;;;;;;;:24;;;:28;:65;;;;;30312:13;:17;30326:2;30312:17;;;;;;;;;;;;;;;:24;;;30303:6;:33;30271:65;30268:95;;;30358:5;30351:12;;;;30268:95;30405:1;30379:13;:17;30393:2;30379:17;;;;;;;;;;;;;;;:23;;;:27;:99;;;;;30455:13;:17;30469:2;30455:17;;;;;;;;;;;;;;;:23;;;30437:15;:41;;;;:::i;:::-;30410:17;:23;30428:4;30410:23;;;;;;;;;;;;;;;;:68;30379:99;30376:129;;;30500:5;30493:12;;;;30376:129;30547:1;30521:13;:17;30535:2;30521:17;;;;;;;;;;;;;;;:23;;;:27;30518:87;;;30590:15;30563:17;:23;30581:4;30563:23;;;;;;;;;;;;;;;:42;;;;30518:87;30625:4;30618:11;;30057:582;;;;;;:::o;30989:190::-;31053:7;31083:1;31076:4;;:8;31073:98;;;31106:28;31128:5;31106:17;31118:4;;31106:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;31099:35;;;;31073:98;31170:1;31163:8;;30989:190;;;;:::o;21877:671::-;22024:1;22008:18;;:4;:18;;;;22000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22101:1;22087:16;;:2;:16;;;;22079:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;22156:38;22177:4;22183:2;22187:6;22156:20;:38::i;:::-;22207:19;22229:9;:15;22239:4;22229:15;;;;;;;;;;;;;;;;22207:37;;22278:6;22263:11;:21;;22255:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;22395:6;22381:11;:20;22363:9;:15;22373:4;22363:15;;;;;;;;;;;;;;;:38;;;;22440:6;22423:9;:13;22433:2;22423:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;22479:2;22464:26;;22473:4;22464:26;;;22483:6;22464:26;;;;;;:::i;:::-;;;;;;;;22503:37;22523:4;22529:2;22533:6;22503:19;:37::i;:::-;21989:559;21877:671;;;:::o;10436:191::-;10510:16;10529:6;;;;;;;;;;;10510:25;;10555:8;10546:6;;:17;;;;;;;;;;;;;;;;;;10610:8;10579:40;;10600:8;10579:40;;;;;;;;;;;;10499:128;10436:191;:::o;3614:98::-;3672:7;3703:1;3699;:5;;;;:::i;:::-;3692:12;;3614:98;;;;:::o;4013:::-;4071:7;4102:1;4098;:5;;;;:::i;:::-;4091:12;;4013:98;;;;:::o;26320:125::-;;;;:::o;27049:124::-;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:619::-;3571:6;3579;3587;3636:2;3624:9;3615:7;3611:23;3607:32;3604:119;;;3642:79;;:::i;:::-;3604:119;3762:1;3787:53;3832:7;3823:6;3812:9;3808:22;3787:53;:::i;:::-;3777:63;;3733:117;3889:2;3915:53;3960:7;3951:6;3940:9;3936:22;3915:53;:::i;:::-;3905:63;;3860:118;4017:2;4043:53;4088:7;4079:6;4068:9;4064:22;4043:53;:::i;:::-;4033:63;;3988:118;3494:619;;;;;:::o;4119:118::-;4206:24;4224:5;4206:24;:::i;:::-;4201:3;4194:37;4119:118;;:::o;4243:222::-;4336:4;4374:2;4363:9;4359:18;4351:26;;4387:71;4455:1;4444:9;4440:17;4431:6;4387:71;:::i;:::-;4243:222;;;;:::o;4471:619::-;4548:6;4556;4564;4613:2;4601:9;4592:7;4588:23;4584:32;4581:119;;;4619:79;;:::i;:::-;4581:119;4739:1;4764:53;4809:7;4800:6;4789:9;4785:22;4764:53;:::i;:::-;4754:63;;4710:117;4866:2;4892:53;4937:7;4928:6;4917:9;4913:22;4892:53;:::i;:::-;4882:63;;4837:118;4994:2;5020:53;5065:7;5056:6;5045:9;5041:22;5020:53;:::i;:::-;5010:63;;4965:118;4471:619;;;;;:::o;5096:86::-;5131:7;5171:4;5164:5;5160:16;5149:27;;5096:86;;;:::o;5188:112::-;5271:22;5287:5;5271:22;:::i;:::-;5266:3;5259:35;5188:112;;:::o;5306:214::-;5395:4;5433:2;5422:9;5418:18;5410:26;;5446:67;5510:1;5499:9;5495:17;5486:6;5446:67;:::i;:::-;5306:214;;;;:::o;5526:329::-;5585:6;5634:2;5622:9;5613:7;5609:23;5605:32;5602:119;;;5640:79;;:::i;:::-;5602:119;5760:1;5785:53;5830:7;5821:6;5810:9;5806:22;5785:53;:::i;:::-;5775:63;;5731:117;5526:329;;;;:::o;5861:108::-;5938:24;5956:5;5938:24;:::i;:::-;5933:3;5926:37;5861:108;;:::o;6035:518::-;6190:4;6185:3;6181:14;6278:4;6271:5;6267:16;6261:23;6297:63;6354:4;6349:3;6345:14;6331:12;6297:63;:::i;:::-;6205:165;6454:4;6447:5;6443:16;6437:23;6473:63;6530:4;6525:3;6521:14;6507:12;6473:63;:::i;:::-;6380:166;6159:394;6035:518;;:::o;6559:338::-;6710:4;6748:2;6737:9;6733:18;6725:26;;6761:129;6887:1;6876:9;6872:17;6863:6;6761:129;:::i;:::-;6559:338;;;;:::o;6903:118::-;6990:24;7008:5;6990:24;:::i;:::-;6985:3;6978:37;6903:118;;:::o;7027:332::-;7148:4;7186:2;7175:9;7171:18;7163:26;;7199:71;7267:1;7256:9;7252:17;7243:6;7199:71;:::i;:::-;7280:72;7348:2;7337:9;7333:18;7324:6;7280:72;:::i;:::-;7027:332;;;;;:::o;7365:222::-;7458:4;7496:2;7485:9;7481:18;7473:26;;7509:71;7577:1;7566:9;7562:17;7553:6;7509:71;:::i;:::-;7365:222;;;;:::o;7593:474::-;7661:6;7669;7718:2;7706:9;7697:7;7693:23;7689:32;7686:119;;;7724:79;;:::i;:::-;7686:119;7844:1;7869:53;7914:7;7905:6;7894:9;7890:22;7869:53;:::i;:::-;7859:63;;7815:117;7971:2;7997:53;8042:7;8033:6;8022:9;8018:22;7997:53;:::i;:::-;7987:63;;7942:118;7593:474;;;;;:::o;8073:180::-;8121:77;8118:1;8111:88;8218:4;8215:1;8208:15;8242:4;8239:1;8232:15;8259:320;8303:6;8340:1;8334:4;8330:12;8320:22;;8387:1;8381:4;8377:12;8408:18;8398:81;;8464:4;8456:6;8452:17;8442:27;;8398:81;8526:2;8518:6;8515:14;8495:18;8492:38;8489:84;;;8545:18;;:::i;:::-;8489:84;8310:269;8259:320;;;:::o;8585:170::-;8725:22;8721:1;8713:6;8709:14;8702:46;8585:170;:::o;8761:366::-;8903:3;8924:67;8988:2;8983:3;8924:67;:::i;:::-;8917:74;;9000:93;9089:3;9000:93;:::i;:::-;9118:2;9113:3;9109:12;9102:19;;8761:366;;;:::o;9133:419::-;9299:4;9337:2;9326:9;9322:18;9314:26;;9386:9;9380:4;9376:20;9372:1;9361:9;9357:17;9350:47;9414:131;9540:4;9414:131;:::i;:::-;9406:139;;9133:419;;;:::o;9558:182::-;9698:34;9694:1;9686:6;9682:14;9675:58;9558:182;:::o;9746:366::-;9888:3;9909:67;9973:2;9968:3;9909:67;:::i;:::-;9902:74;;9985:93;10074:3;9985:93;:::i;:::-;10103:2;10098:3;10094:12;10087:19;;9746:366;;;:::o;10118:419::-;10284:4;10322:2;10311:9;10307:18;10299:26;;10371:9;10365:4;10361:20;10357:1;10346:9;10342:17;10335:47;10399:131;10525:4;10399:131;:::i;:::-;10391:139;;10118:419;;;:::o;10543:180::-;10591:77;10588:1;10581:88;10688:4;10685:1;10678:15;10712:4;10709:1;10702:15;10729:191;10769:4;10789:20;10807:1;10789:20;:::i;:::-;10784:25;;10823:20;10841:1;10823:20;:::i;:::-;10818:25;;10862:1;10859;10856:8;10853:34;;;10867:18;;:::i;:::-;10853:34;10912:1;10909;10905:9;10897:17;;10729:191;;;;:::o;10926:305::-;10966:3;10985:20;11003:1;10985:20;:::i;:::-;10980:25;;11019:20;11037:1;11019:20;:::i;:::-;11014:25;;11173:1;11105:66;11101:74;11098:1;11095:81;11092:107;;;11179:18;;:::i;:::-;11092:107;11223:1;11220;11216:9;11209:16;;10926:305;;;;:::o;11237:224::-;11377:34;11373:1;11365:6;11361:14;11354:58;11446:7;11441:2;11433:6;11429:15;11422:32;11237:224;:::o;11467:366::-;11609:3;11630:67;11694:2;11689:3;11630:67;:::i;:::-;11623:74;;11706:93;11795:3;11706:93;:::i;:::-;11824:2;11819:3;11815:12;11808:19;;11467:366;;;:::o;11839:419::-;12005:4;12043:2;12032:9;12028:18;12020:26;;12092:9;12086:4;12082:20;12078:1;12067:9;12063:17;12056:47;12120:131;12246:4;12120:131;:::i;:::-;12112:139;;11839:419;;;:::o;12264:225::-;12404:34;12400:1;12392:6;12388:14;12381:58;12473:8;12468:2;12460:6;12456:15;12449:33;12264:225;:::o;12495:366::-;12637:3;12658:67;12722:2;12717:3;12658:67;:::i;:::-;12651:74;;12734:93;12823:3;12734:93;:::i;:::-;12852:2;12847:3;12843:12;12836:19;;12495:366;;;:::o;12867:419::-;13033:4;13071:2;13060:9;13056:18;13048:26;;13120:9;13114:4;13110:20;13106:1;13095:9;13091:17;13084:47;13148:131;13274:4;13148:131;:::i;:::-;13140:139;;12867:419;;;:::o;13292:223::-;13432:34;13428:1;13420:6;13416:14;13409:58;13501:6;13496:2;13488:6;13484:15;13477:31;13292:223;:::o;13521:366::-;13663:3;13684:67;13748:2;13743:3;13684:67;:::i;:::-;13677:74;;13760:93;13849:3;13760:93;:::i;:::-;13878:2;13873:3;13869:12;13862:19;;13521:366;;;:::o;13893:419::-;14059:4;14097:2;14086:9;14082:18;14074:26;;14146:9;14140:4;14136:20;14132:1;14121:9;14117:17;14110:47;14174:131;14300:4;14174:131;:::i;:::-;14166:139;;13893:419;;;:::o;14318:221::-;14458:34;14454:1;14446:6;14442:14;14435:58;14527:4;14522:2;14514:6;14510:15;14503:29;14318:221;:::o;14545:366::-;14687:3;14708:67;14772:2;14767:3;14708:67;:::i;:::-;14701:74;;14784:93;14873:3;14784:93;:::i;:::-;14902:2;14897:3;14893:12;14886:19;;14545:366;;;:::o;14917:419::-;15083:4;15121:2;15110:9;15106:18;15098:26;;15170:9;15164:4;15160:20;15156:1;15145:9;15141:17;15134:47;15198:131;15324:4;15198:131;:::i;:::-;15190:139;;14917:419;;;:::o;15342:182::-;15482:34;15478:1;15470:6;15466:14;15459:58;15342:182;:::o;15530:366::-;15672:3;15693:67;15757:2;15752:3;15693:67;:::i;:::-;15686:74;;15769:93;15858:3;15769:93;:::i;:::-;15887:2;15882:3;15878:12;15871:19;;15530:366;;;:::o;15902:419::-;16068:4;16106:2;16095:9;16091:18;16083:26;;16155:9;16149:4;16145:20;16141:1;16130:9;16126:17;16119:47;16183:131;16309:4;16183:131;:::i;:::-;16175:139;;15902:419;;;:::o;16327:179::-;16467:31;16463:1;16455:6;16451:14;16444:55;16327:179;:::o;16512:366::-;16654:3;16675:67;16739:2;16734:3;16675:67;:::i;:::-;16668:74;;16751:93;16840:3;16751:93;:::i;:::-;16869:2;16864:3;16860:12;16853:19;;16512:366;;;:::o;16884:419::-;17050:4;17088:2;17077:9;17073:18;17065:26;;17137:9;17131:4;17127:20;17123:1;17112:9;17108:17;17101:47;17165:131;17291:4;17165:131;:::i;:::-;17157:139;;16884:419;;;:::o;17309:224::-;17449:34;17445:1;17437:6;17433:14;17426:58;17518:7;17513:2;17505:6;17501:15;17494:32;17309:224;:::o;17539:366::-;17681:3;17702:67;17766:2;17761:3;17702:67;:::i;:::-;17695:74;;17778:93;17867:3;17778:93;:::i;:::-;17896:2;17891:3;17887:12;17880:19;;17539:366;;;:::o;17911:419::-;18077:4;18115:2;18104:9;18100:18;18092:26;;18164:9;18158:4;18154:20;18150:1;18139:9;18135:17;18128:47;18192:131;18318:4;18192:131;:::i;:::-;18184:139;;17911:419;;;:::o;18336:222::-;18476:34;18472:1;18464:6;18460:14;18453:58;18545:5;18540:2;18532:6;18528:15;18521:30;18336:222;:::o;18564:366::-;18706:3;18727:67;18791:2;18786:3;18727:67;:::i;:::-;18720:74;;18803:93;18892:3;18803:93;:::i;:::-;18921:2;18916:3;18912:12;18905:19;;18564:366;;;:::o;18936:419::-;19102:4;19140:2;19129:9;19125:18;19117:26;;19189:9;19183:4;19179:20;19175:1;19164:9;19160:17;19153:47;19217:131;19343:4;19217:131;:::i;:::-;19209:139;;18936:419;;;:::o;19361:225::-;19501:34;19497:1;19489:6;19485:14;19478:58;19570:8;19565:2;19557:6;19553:15;19546:33;19361:225;:::o;19592:366::-;19734:3;19755:67;19819:2;19814:3;19755:67;:::i;:::-;19748:74;;19831:93;19920:3;19831:93;:::i;:::-;19949:2;19944:3;19940:12;19933:19;;19592:366;;;:::o;19964:419::-;20130:4;20168:2;20157:9;20153:18;20145:26;;20217:9;20211:4;20207:20;20203:1;20192:9;20188:17;20181:47;20245:131;20371:4;20245:131;:::i;:::-;20237:139;;19964:419;;;:::o;20389:348::-;20429:7;20452:20;20470:1;20452:20;:::i;:::-;20447:25;;20486:20;20504:1;20486:20;:::i;:::-;20481:25;;20674:1;20606:66;20602:74;20599:1;20596:81;20591:1;20584:9;20577:17;20573:105;20570:131;;;20681:18;;:::i;:::-;20570:131;20729:1;20726;20722:9;20711:20;;20389:348;;;;:::o;20743:180::-;20791:77;20788:1;20781:88;20888:4;20885:1;20878:15;20912:4;20909:1;20902:15;20929:185;20969:1;20986:20;21004:1;20986:20;:::i;:::-;20981:25;;21020:20;21038:1;21020:20;:::i;:::-;21015:25;;21059:1;21049:35;;21064:18;;:::i;:::-;21049:35;21106:1;21103;21099:9;21094:14;;20929:185;;;;:::o

Swarm Source

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