ETH Price: $3,266.70 (-0.32%)

Token

Neutra Token (NEU)

Overview

Max Total Supply

26,278.14053353370539812 NEU

Holders

74

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
NEU

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 1 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Arbiscan.io on 2023-01-16
*/

// Sources flattened with hardhat v2.12.2 https://hardhat.org

// File @openzeppelin/contracts/token/ERC20/[email protected]

// SPDX-License-Identifier: MIT
// 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/[email protected]

// 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/utils/[email protected]

// 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/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.8.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.openzeppelin.com/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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 contracts/token/base/MintableERC20.sol

pragma solidity ^0.8.0;

abstract contract MintableERC20 is ERC20 {
    address gov;

    bool public inPrivateTransferMode;

    mapping (address => bool) public isMinter;
    mapping (address => bool) public isHandler;

    modifier onlyGov() {
        require(gov == _msgSender(), "MintableErc20: forbidden");
        _;
    }
    
    modifier onlyMinter() {
        require(isMinter[msg.sender], "MintalbeERC20: forbidden");
        _;
    }

    constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {
        gov = _msgSender();
    }

    function setMinter(address _minter, bool _isActive) external onlyGov {
        isMinter[_minter] = _isActive;
    }

    function setHandler(address _handler, bool _isActive) external onlyGov {
        isHandler[_handler] = _isActive;
    }

    function setHandlers(address[] memory _handler, bool[] memory _isActive) external onlyGov {
        for(uint256 i = 0; i < _handler.length; i++){
            isHandler[_handler[i]] = _isActive[i];
        }
    }

    function setInPrivateTransferMode(bool _inPrivateTransferMode) external onlyGov {
        inPrivateTransferMode = _inPrivateTransferMode;
    }

    function mint(address _account, uint256 _amount) external onlyMinter {
        _mint(_account, _amount);
    }

    function burn(address _account, uint256 _amount) external onlyMinter {
        _burn(_account, _amount);
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();

        if (isHandler[spender]) {
            _transfer(from, to, amount);
            return true;
        }

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

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

        if(inPrivateTransferMode) {
            require(isHandler[msg.sender], "BaseToken: msg.sender not whitelisted");
        }

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


// File contracts/token/NEU.sol
pragma solidity 0.8.11;

contract NEU is MintableERC20 {
    constructor() MintableERC20("Neutra Token", "NEU") {}

    // no need to correspond with want decimals
    function decimals() public pure override returns (uint8) {
        return 18;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"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":"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":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":[],"name":"inPrivateTransferMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isHandler","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_handler","type":"address"},{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setHandler","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_handler","type":"address[]"},{"internalType":"bool[]","name":"_isActive","type":"bool[]"}],"name":"setHandlers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_inPrivateTransferMode","type":"bool"}],"name":"setInPrivateTransferMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"},{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setMinter","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600c81526020016b2732baba3930902a37b5b2b760a11b815250604051806040016040528060038152602001624e455560e81b815250818181600390805190602001906200006d929190620000b8565b50805162000083906004906020840190620000b8565b506200008f9150503390565b600580546001600160a01b0319166001600160a01b0392909216919091179055506200019b9050565b828054620000c6906200015e565b90600052602060002090601f016020900481019282620000ea576000855562000135565b82601f106200010557805160ff191683800117855562000135565b8280016001018555821562000135579182015b828111156200013557825182559160200191906001019062000118565b506200014392915062000147565b5090565b5b8082111562000143576000815560010162000148565b600181811c908216806200017357607f821691505b602082108114156200019557634e487b7160e01b600052602260045260246000fd5b50919050565b6110b080620001ab6000396000f3fe608060405234801561001057600080fd5b50600436106100fc5760003560e01c806306fdde0314610101578063095ea7b31461011f57806318160ddd1461014257806323b872dd14610154578063313ce56714610167578063395093511461017657806340c10f191461018957806346ea87af1461019e5780635a47a1a7146101c157806370a08231146101d457806395d89b41146101fd5780639cb7de4b146102055780639dc29fac14610218578063a457c2d71461022b578063a9059cbb1461023e578063aa271e1a14610251578063cf456ae714610274578063dd4ff47b14610287578063dd62ed3e1461029a578063dfbaefb1146102ad575b600080fd5b6101096102c1565b6040516101169190610c48565b60405180910390f35b61013261012d366004610cb9565b610353565b6040519015158152602001610116565b6002545b604051908152602001610116565b610132610162366004610ce3565b61036b565b60405160128152602001610116565b610132610184366004610cb9565b6103be565b61019c610197366004610cb9565b6103e0565b005b6101326101ac366004610d1f565b60076020526000908152604090205460ff1681565b61019c6101cf366004610d4a565b610426565b6101466101e2366004610d1f565b6001600160a01b031660009081526020819052604090205490565b61010961046e565b61019c610213366004610d65565b61047d565b61019c610226366004610cb9565b6104d2565b610132610239366004610cb9565b61050b565b61013261024c366004610cb9565b610591565b61013261025f366004610d1f565b60066020526000908152604090205460ff1681565b61019c610282366004610d65565b610620565b61019c610295366004610e73565b610675565b6101466102a8366004610f32565b610724565b60055461013290600160a01b900460ff1681565b6060600380546102d090610f5c565b80601f01602080910402602001604051908101604052809291908181526020018280546102fc90610f5c565b80156103495780601f1061031e57610100808354040283529160200191610349565b820191906000526020600020905b81548152906001019060200180831161032c57829003601f168201915b5050505050905090565b60003361036181858561074f565b5060019392505050565b3360008181526007602052604081205490919060ff161561039b57610391858585610873565b60019150506103b7565b6103a6858285610a07565b6103b1858585610873565b60019150505b9392505050565b6000336103618185856103d18383610724565b6103db9190610fad565b61074f565b3360009081526006602052604090205460ff166104185760405162461bcd60e51b815260040161040f90610fc5565b60405180910390fd5b6104228282610a7b565b5050565b6005546001600160a01b031633146104505760405162461bcd60e51b815260040161040f90610ff7565b60058054911515600160a01b0260ff60a01b19909216919091179055565b6060600480546102d090610f5c565b6005546001600160a01b031633146104a75760405162461bcd60e51b815260040161040f90610ff7565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b3360009081526006602052604090205460ff166105015760405162461bcd60e51b815260040161040f90610fc5565b6104228282610b28565b600033816105198286610724565b9050838110156105795760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161040f565b610586828686840361074f565b506001949350505050565b6005546000903390600160a01b900460ff1615610615573360009081526007602052604090205460ff166106155760405162461bcd60e51b815260206004820152602560248201527f42617365546f6b656e3a206d73672e73656e646572206e6f742077686974656c6044820152641a5cdd195960da1b606482015260840161040f565b610361818585610873565b6005546001600160a01b0316331461064a5760405162461bcd60e51b815260040161040f90610ff7565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461069f5760405162461bcd60e51b815260040161040f90610ff7565b60005b825181101561071f578181815181106106bd576106bd611029565b6020026020010151600760008584815181106106db576106db611029565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806107178161103f565b9150506106a2565b505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166107b15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161040f565b6001600160a01b0382166108125760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161040f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108d75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161040f565b6001600160a01b0382166109395760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161040f565b6001600160a01b038316600090815260208190526040902054818110156109b15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161040f565b6001600160a01b038481166000818152602081815260408083208787039055938716808352918490208054870190559251858152909260008051602061105b833981519152910160405180910390a35b50505050565b6000610a138484610724565b90506000198114610a015781811015610a6e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161040f565b610a01848484840361074f565b6001600160a01b038216610ad15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161040f565b8060026000828254610ae39190610fad565b90915550506001600160a01b0382166000818152602081815260408083208054860190555184815260008051602061105b833981519152910160405180910390a35050565b6001600160a01b038216610b885760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161040f565b6001600160a01b03821660009081526020819052604090205481811015610bfc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161040f565b6001600160a01b03831660008181526020818152604080832086860390556002805487900390555185815291929160008051602061105b833981519152910160405180910390a3505050565b600060208083528351808285015260005b81811015610c7557858101830151858201604001528201610c59565b81811115610c87576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610cb457600080fd5b919050565b60008060408385031215610ccc57600080fd5b610cd583610c9d565b946020939093013593505050565b600080600060608486031215610cf857600080fd5b610d0184610c9d565b9250610d0f60208501610c9d565b9150604084013590509250925092565b600060208284031215610d3157600080fd5b6103b782610c9d565b80358015158114610cb457600080fd5b600060208284031215610d5c57600080fd5b6103b782610d3a565b60008060408385031215610d7857600080fd5b610d8183610c9d565b9150610d8f60208401610d3a565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715610dd657610dd6610d98565b604052919050565b60006001600160401b03821115610df757610df7610d98565b5060051b60200190565b600082601f830112610e1257600080fd5b81356020610e27610e2283610dde565b610dae565b82815260059290921b84018101918181019086841115610e4657600080fd5b8286015b84811015610e6857610e5b81610d3a565b8352918301918301610e4a565b509695505050505050565b60008060408385031215610e8657600080fd5b82356001600160401b0380821115610e9d57600080fd5b818501915085601f830112610eb157600080fd5b81356020610ec1610e2283610dde565b82815260059290921b84018101918181019089841115610ee057600080fd5b948201945b83861015610f0557610ef686610c9d565b82529482019490820190610ee5565b96505086013592505080821115610f1b57600080fd5b50610f2885828601610e01565b9150509250929050565b60008060408385031215610f4557600080fd5b610f4e83610c9d565b9150610d8f60208401610c9d565b600181811c90821680610f7057607f821691505b60208210811415610f9157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610fc057610fc0610f97565b500190565b60208082526018908201527726b4b73a30b63132a2a92199181d103337b93134b23232b760411b604082015260600190565b60208082526018908201527726b4b73a30b13632a2b93199181d103337b93134b23232b760411b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561105357611053610f97565b506001019056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212203dc5a98f323924d0882ba9b3ed40ddb2d0e557601b54353be4c4d6fe8584ed2264736f6c634300080b0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100fc5760003560e01c806306fdde0314610101578063095ea7b31461011f57806318160ddd1461014257806323b872dd14610154578063313ce56714610167578063395093511461017657806340c10f191461018957806346ea87af1461019e5780635a47a1a7146101c157806370a08231146101d457806395d89b41146101fd5780639cb7de4b146102055780639dc29fac14610218578063a457c2d71461022b578063a9059cbb1461023e578063aa271e1a14610251578063cf456ae714610274578063dd4ff47b14610287578063dd62ed3e1461029a578063dfbaefb1146102ad575b600080fd5b6101096102c1565b6040516101169190610c48565b60405180910390f35b61013261012d366004610cb9565b610353565b6040519015158152602001610116565b6002545b604051908152602001610116565b610132610162366004610ce3565b61036b565b60405160128152602001610116565b610132610184366004610cb9565b6103be565b61019c610197366004610cb9565b6103e0565b005b6101326101ac366004610d1f565b60076020526000908152604090205460ff1681565b61019c6101cf366004610d4a565b610426565b6101466101e2366004610d1f565b6001600160a01b031660009081526020819052604090205490565b61010961046e565b61019c610213366004610d65565b61047d565b61019c610226366004610cb9565b6104d2565b610132610239366004610cb9565b61050b565b61013261024c366004610cb9565b610591565b61013261025f366004610d1f565b60066020526000908152604090205460ff1681565b61019c610282366004610d65565b610620565b61019c610295366004610e73565b610675565b6101466102a8366004610f32565b610724565b60055461013290600160a01b900460ff1681565b6060600380546102d090610f5c565b80601f01602080910402602001604051908101604052809291908181526020018280546102fc90610f5c565b80156103495780601f1061031e57610100808354040283529160200191610349565b820191906000526020600020905b81548152906001019060200180831161032c57829003601f168201915b5050505050905090565b60003361036181858561074f565b5060019392505050565b3360008181526007602052604081205490919060ff161561039b57610391858585610873565b60019150506103b7565b6103a6858285610a07565b6103b1858585610873565b60019150505b9392505050565b6000336103618185856103d18383610724565b6103db9190610fad565b61074f565b3360009081526006602052604090205460ff166104185760405162461bcd60e51b815260040161040f90610fc5565b60405180910390fd5b6104228282610a7b565b5050565b6005546001600160a01b031633146104505760405162461bcd60e51b815260040161040f90610ff7565b60058054911515600160a01b0260ff60a01b19909216919091179055565b6060600480546102d090610f5c565b6005546001600160a01b031633146104a75760405162461bcd60e51b815260040161040f90610ff7565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b3360009081526006602052604090205460ff166105015760405162461bcd60e51b815260040161040f90610fc5565b6104228282610b28565b600033816105198286610724565b9050838110156105795760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161040f565b610586828686840361074f565b506001949350505050565b6005546000903390600160a01b900460ff1615610615573360009081526007602052604090205460ff166106155760405162461bcd60e51b815260206004820152602560248201527f42617365546f6b656e3a206d73672e73656e646572206e6f742077686974656c6044820152641a5cdd195960da1b606482015260840161040f565b610361818585610873565b6005546001600160a01b0316331461064a5760405162461bcd60e51b815260040161040f90610ff7565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461069f5760405162461bcd60e51b815260040161040f90610ff7565b60005b825181101561071f578181815181106106bd576106bd611029565b6020026020010151600760008584815181106106db576106db611029565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806107178161103f565b9150506106a2565b505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166107b15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161040f565b6001600160a01b0382166108125760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161040f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108d75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161040f565b6001600160a01b0382166109395760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161040f565b6001600160a01b038316600090815260208190526040902054818110156109b15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161040f565b6001600160a01b038481166000818152602081815260408083208787039055938716808352918490208054870190559251858152909260008051602061105b833981519152910160405180910390a35b50505050565b6000610a138484610724565b90506000198114610a015781811015610a6e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161040f565b610a01848484840361074f565b6001600160a01b038216610ad15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161040f565b8060026000828254610ae39190610fad565b90915550506001600160a01b0382166000818152602081815260408083208054860190555184815260008051602061105b833981519152910160405180910390a35050565b6001600160a01b038216610b885760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161040f565b6001600160a01b03821660009081526020819052604090205481811015610bfc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161040f565b6001600160a01b03831660008181526020818152604080832086860390556002805487900390555185815291929160008051602061105b833981519152910160405180910390a3505050565b600060208083528351808285015260005b81811015610c7557858101830151858201604001528201610c59565b81811115610c87576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610cb457600080fd5b919050565b60008060408385031215610ccc57600080fd5b610cd583610c9d565b946020939093013593505050565b600080600060608486031215610cf857600080fd5b610d0184610c9d565b9250610d0f60208501610c9d565b9150604084013590509250925092565b600060208284031215610d3157600080fd5b6103b782610c9d565b80358015158114610cb457600080fd5b600060208284031215610d5c57600080fd5b6103b782610d3a565b60008060408385031215610d7857600080fd5b610d8183610c9d565b9150610d8f60208401610d3a565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715610dd657610dd6610d98565b604052919050565b60006001600160401b03821115610df757610df7610d98565b5060051b60200190565b600082601f830112610e1257600080fd5b81356020610e27610e2283610dde565b610dae565b82815260059290921b84018101918181019086841115610e4657600080fd5b8286015b84811015610e6857610e5b81610d3a565b8352918301918301610e4a565b509695505050505050565b60008060408385031215610e8657600080fd5b82356001600160401b0380821115610e9d57600080fd5b818501915085601f830112610eb157600080fd5b81356020610ec1610e2283610dde565b82815260059290921b84018101918181019089841115610ee057600080fd5b948201945b83861015610f0557610ef686610c9d565b82529482019490820190610ee5565b96505086013592505080821115610f1b57600080fd5b50610f2885828601610e01565b9150509250929050565b60008060408385031215610f4557600080fd5b610f4e83610c9d565b9150610d8f60208401610c9d565b600181811c90821680610f7057607f821691505b60208210811415610f9157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610fc057610fc0610f97565b500190565b60208082526018908201527726b4b73a30b63132a2a92199181d103337b93134b23232b760411b604082015260600190565b60208082526018908201527726b4b73a30b13632a2b93199181d103337b93134b23232b760411b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561105357611053610f97565b506001019056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212203dc5a98f323924d0882ba9b3ed40ddb2d0e557601b54353be4c4d6fe8584ed2264736f6c634300080b0033

Deployed Bytecode Sourcemap

20294:235:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6767:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9118:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;9118:201:0;1053:187:1;7887:108:0;7975:12;;7887:108;;;1391:25:1;;;1379:2;1364:18;7887:108:0;1245:177:1;19473:413:0;;;;;;:::i;:::-;;:::i;20441:85::-;;;20516:2;1902:36:1;;1890:2;1875:18;20441:85:0;1760:184:1;10603:238:0;;;;;;:::i;:::-;;:::i;19233:112::-;;;;;;:::i;:::-;;:::i;:::-;;18192:42;;;;;;:::i;:::-;;;;;;;;;;;;;;;;19080:145;;;;;;:::i;:::-;;:::i;8058:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8159:18:0;8132:7;8159:18;;;;;;;;;;;;8058:127;6986:104;;;:::i;18727:121::-;;;;;;:::i;:::-;;:::i;19353:112::-;;;;;;:::i;:::-;;:::i;11344:436::-;;;;;;:::i;:::-;;:::i;19894:331::-;;;;;;:::i;:::-;;:::i;18144:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;18602:117;;;;;;:::i;:::-;;:::i;18856:216::-;;;;;;:::i;:::-;;:::i;8647:151::-;;;;;;:::i;:::-;;:::i;18102:33::-;;;;;-1:-1:-1;;;18102:33:0;;;;;;6767:100;6821:13;6854:5;6847:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6767:100;:::o;9118:201::-;9201:4;4485:10;9257:32;4485:10;9273:7;9282:6;9257:8;:32::i;:::-;-1:-1:-1;9307:4:0;;9118:201;-1:-1:-1;;;9118:201:0:o;19473:413::-;4485:10;19604:4;19668:18;;;:9;:18;;;;;;19604:4;;4485:10;19668:18;;19664:104;;;19703:27;19713:4;19719:2;19723:6;19703:9;:27::i;:::-;19752:4;19745:11;;;;;19664:104;19780:38;19796:4;19802:7;19811:6;19780:15;:38::i;:::-;19829:27;19839:4;19845:2;19849:6;19829:9;:27::i;:::-;19874:4;19867:11;;;19473:413;;;;;;:::o;10603:238::-;10691:4;4485:10;10747:64;4485:10;10763:7;10800:10;10772:25;4485:10;10763:7;10772:9;:25::i;:::-;:38;;;;:::i;:::-;10747:8;:64::i;19233:112::-;18411:10;18402:20;;;;:8;:20;;;;;;;;18394:57;;;;-1:-1:-1;;;18394:57:0;;;;;;;:::i;:::-;;;;;;;;;19313:24:::1;19319:8;19329:7;19313:5;:24::i;:::-;19233:112:::0;;:::o;19080:145::-;18281:3;;-1:-1:-1;;;;;18281:3:0;4485:10;18281:19;18273:56;;;;-1:-1:-1;;;18273:56:0;;;;;;;:::i;:::-;19171:21:::1;:46:::0;;;::::1;;-1:-1:-1::0;;;19171:46:0::1;-1:-1:-1::0;;;;19171:46:0;;::::1;::::0;;;::::1;::::0;;19080:145::o;6986:104::-;7042:13;7075:7;7068:14;;;;;:::i;18727:121::-;18281:3;;-1:-1:-1;;;;;18281:3:0;4485:10;18281:19;18273:56;;;;-1:-1:-1;;;18273:56:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18809:19:0;;;::::1;;::::0;;;:9:::1;:19;::::0;;;;:31;;-1:-1:-1;;18809:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;18727:121::o;19353:112::-;18411:10;18402:20;;;;:8;:20;;;;;;;;18394:57;;;;-1:-1:-1;;;18394:57:0;;;;;;;:::i;:::-;19433:24:::1;19439:8;19449:7;19433:5;:24::i;11344:436::-:0;11437:4;4485:10;11437:4;11520:25;4485:10;11537:7;11520:9;:25::i;:::-;11493:52;;11584:15;11564:16;:35;;11556:85;;;;-1:-1:-1;;;11556:85:0;;6984:2:1;11556:85:0;;;6966:21:1;7023:2;7003:18;;;6996:30;7062:34;7042:18;;;7035:62;-1:-1:-1;;;7113:18:1;;;7106:35;7158:19;;11556:85:0;6782:401:1;11556:85:0;11677:60;11686:5;11693:7;11721:15;11702:16;:34;11677:8;:60::i;:::-;-1:-1:-1;11768:4:0;;11344:436;-1:-1:-1;;;;11344:436:0:o;19894:331::-;20034:21;;19973:4;;4485:10;;-1:-1:-1;;;20034:21:0;;;;20031:124;;;20090:10;20080:21;;;;:9;:21;;;;;;;;20072:71;;;;-1:-1:-1;;;20072:71:0;;7390:2:1;20072:71:0;;;7372:21:1;7429:2;7409:18;;;7402:30;7468:34;7448:18;;;7441:62;-1:-1:-1;;;7519:18:1;;;7512:35;7564:19;;20072:71:0;7188:401:1;20072:71:0;20167:28;20177:5;20184:2;20188:6;20167:9;:28::i;18602:117::-;18281:3;;-1:-1:-1;;;;;18281:3:0;4485:10;18281:19;18273:56;;;;-1:-1:-1;;;18273:56:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18682:17:0;;;::::1;;::::0;;;:8:::1;:17;::::0;;;;:29;;-1:-1:-1;;18682:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;18602:117::o;18856:216::-;18281:3;;-1:-1:-1;;;;;18281:3:0;4485:10;18281:19;18273:56;;;;-1:-1:-1;;;18273:56:0;;;;;;;:::i;:::-;18961:9:::1;18957:108;18980:8;:15;18976:1;:19;18957:108;;;19041:9;19051:1;19041:12;;;;;;;;:::i;:::-;;;;;;;19016:9;:22;19026:8;19035:1;19026:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;19016:22:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;19016:22:0;:37;;-1:-1:-1;;19016:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;18997:3;::::1;::::0;::::1;:::i;:::-;;;;18957:108;;;;18856:216:::0;;:::o;8647:151::-;-1:-1:-1;;;;;8763:18:0;;;8736:7;8763:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8647:151::o;15371:380::-;-1:-1:-1;;;;;15507:19:0;;15499:68;;;;-1:-1:-1;;;15499:68:0;;8068:2:1;15499:68:0;;;8050:21:1;8107:2;8087:18;;;8080:30;8146:34;8126:18;;;8119:62;-1:-1:-1;;;8197:18:1;;;8190:34;8241:19;;15499:68:0;7866:400:1;15499:68:0;-1:-1:-1;;;;;15586:21:0;;15578:68;;;;-1:-1:-1;;;15578:68:0;;8473:2:1;15578:68:0;;;8455:21:1;8512:2;8492:18;;;8485:30;8551:34;8531:18;;;8524:62;-1:-1:-1;;;8602:18:1;;;8595:32;8644:19;;15578:68:0;8271:398:1;15578:68:0;-1:-1:-1;;;;;15659:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15711:32;;1391:25:1;;;15711:32:0;;1364:18:1;15711:32:0;;;;;;;15371:380;;;:::o;12250:840::-;-1:-1:-1;;;;;12381:18:0;;12373:68;;;;-1:-1:-1;;;12373:68:0;;8876:2:1;12373:68:0;;;8858:21:1;8915:2;8895:18;;;8888:30;8954:34;8934:18;;;8927:62;-1:-1:-1;;;9005:18:1;;;8998:35;9050:19;;12373:68:0;8674:401:1;12373:68:0;-1:-1:-1;;;;;12460:16:0;;12452:64;;;;-1:-1:-1;;;12452:64:0;;9282:2:1;12452:64:0;;;9264:21:1;9321:2;9301:18;;;9294:30;9360:34;9340:18;;;9333:62;-1:-1:-1;;;9411:18:1;;;9404:33;9454:19;;12452:64:0;9080:399:1;12452:64:0;-1:-1:-1;;;;;12602:15:0;;12580:19;12602:15;;;;;;;;;;;12636:21;;;;12628:72;;;;-1:-1:-1;;;12628:72:0;;9686:2:1;12628:72:0;;;9668:21:1;9725:2;9705:18;;;9698:30;9764:34;9744:18;;;9737:62;-1:-1:-1;;;9815:18:1;;;9808:36;9861:19;;12628:72:0;9484:402:1;12628:72:0;-1:-1:-1;;;;;12736:15:0;;;:9;:15;;;;;;;;;;;12754:20;;;12736:38;;12954:13;;;;;;;;;;:23;;;;;;13006:26;;1391:25:1;;;12954:13:0;;-1:-1:-1;;;;;;;;;;;13006:26:0;1364:18:1;13006:26:0;;;;;;;13045:37;12362:728;12250:840;;;:::o;16042:453::-;16177:24;16204:25;16214:5;16221:7;16204:9;:25::i;:::-;16177:52;;-1:-1:-1;;16244:16:0;:37;16240:248;;16326:6;16306:16;:26;;16298:68;;;;-1:-1:-1;;;16298:68:0;;10093:2:1;16298:68:0;;;10075:21:1;10132:2;10112:18;;;10105:30;10171:31;10151:18;;;10144:59;10220:18;;16298:68:0;9891:353:1;16298:68:0;16410:51;16419:5;16426:7;16454:6;16435:16;:25;16410:8;:51::i;13377:548::-;-1:-1:-1;;;;;13461:21:0;;13453:65;;;;-1:-1:-1;;;13453:65:0;;10451:2:1;13453:65:0;;;10433:21:1;10490:2;10470:18;;;10463:30;10529:33;10509:18;;;10502:61;10580:18;;13453:65:0;10249:355:1;13453:65:0;13609:6;13593:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13764:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;13819:37;1391:25:1;;;-1:-1:-1;;;;;;;;;;;13819:37:0;1364:18:1;13819:37:0;;;;;;;19233:112;;:::o;14258:675::-;-1:-1:-1;;;;;14342:21:0;;14334:67;;;;-1:-1:-1;;;14334:67:0;;10811:2:1;14334:67:0;;;10793:21:1;10850:2;10830:18;;;10823:30;10889:34;10869:18;;;10862:62;-1:-1:-1;;;10940:18:1;;;10933:31;10981:19;;14334:67:0;10609:397:1;14334:67:0;-1:-1:-1;;;;;14501:18:0;;14476:22;14501:18;;;;;;;;;;;14538:24;;;;14530:71;;;;-1:-1:-1;;;14530:71:0;;11213:2:1;14530:71:0;;;11195:21:1;11252:2;11232:18;;;11225:30;11291:34;11271:18;;;11264:62;-1:-1:-1;;;11342:18:1;;;11335:32;11384:19;;14530:71:0;11011:398:1;14530:71:0;-1:-1:-1;;;;;14637:18:0;;:9;:18;;;;;;;;;;;14658:23;;;14637:44;;14776:12;:22;;;;;;;14827:37;1391:25:1;;;14637:9:0;;:18;-1:-1:-1;;;;;;;;;;;14827:37:0;1364:18:1;14827:37:0;;;;;;;18957:108:::1;18856:216:::0;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;2140:160::-;2205:20;;2261:13;;2254:21;2244:32;;2234:60;;2290:1;2287;2280:12;2305:180;2361:6;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:26;2469:9;2453:26;:::i;2490:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;;2703:35;2734:2;2723:9;2719:18;2703:35;:::i;:::-;2693:45;;2490:254;;;;;:::o;2749:127::-;2810:10;2805:3;2801:20;2798:1;2791:31;2841:4;2838:1;2831:15;2865:4;2862:1;2855:15;2881:275;2952:2;2946:9;3017:2;2998:13;;-1:-1:-1;;2994:27:1;2982:40;;-1:-1:-1;;;;;3037:34:1;;3073:22;;;3034:62;3031:88;;;3099:18;;:::i;:::-;3135:2;3128:22;2881:275;;-1:-1:-1;2881:275:1:o;3161:183::-;3221:4;-1:-1:-1;;;;;3243:30:1;;3240:56;;;3276:18;;:::i;:::-;-1:-1:-1;3321:1:1;3317:14;3333:4;3313:25;;3161:183::o;3349:662::-;3400:5;3453:3;3446:4;3438:6;3434:17;3430:27;3420:55;;3471:1;3468;3461:12;3420:55;3507:6;3494:20;3533:4;3557:60;3573:43;3613:2;3573:43;:::i;:::-;3557:60;:::i;:::-;3651:15;;;3737:1;3733:10;;;;3721:23;;3717:32;;;3682:12;;;;3761:15;;;3758:35;;;3789:1;3786;3779:12;3758:35;3825:2;3817:6;3813:15;3837:145;3853:6;3848:3;3845:15;3837:145;;;3919:20;3935:3;3919:20;:::i;:::-;3907:33;;3960:12;;;;3870;;3837:145;;;-1:-1:-1;4000:5:1;3349:662;-1:-1:-1;;;;;;3349:662:1:o;4016:1140::-;4131:6;4139;4192:2;4180:9;4171:7;4167:23;4163:32;4160:52;;;4208:1;4205;4198:12;4160:52;4235:23;;-1:-1:-1;;;;;4307:14:1;;;4304:34;;;4334:1;4331;4324:12;4304:34;4372:6;4361:9;4357:22;4347:32;;4417:7;4410:4;4406:2;4402:13;4398:27;4388:55;;4439:1;4436;4429:12;4388:55;4475:2;4462:16;4497:4;4521:60;4537:43;4577:2;4537:43;:::i;4521:60::-;4615:15;;;4697:1;4693:10;;;;4685:19;;4681:28;;;4646:12;;;;4721:19;;;4718:39;;;4753:1;4750;4743:12;4718:39;4777:11;;;;4797:148;4813:6;4808:3;4805:15;4797:148;;;4879:23;4898:3;4879:23;:::i;:::-;4867:36;;4830:12;;;;4923;;;;4797:148;;;4964:5;-1:-1:-1;;5007:18:1;;4994:32;;-1:-1:-1;;5038:16:1;;;5035:36;;;5067:1;5064;5057:12;5035:36;;5090:60;5142:7;5131:8;5120:9;5116:24;5090:60;:::i;:::-;5080:70;;;4016:1140;;;;;:::o;5161:260::-;5229:6;5237;5290:2;5278:9;5269:7;5265:23;5261:32;5258:52;;;5306:1;5303;5296:12;5258:52;5329:29;5348:9;5329:29;:::i;:::-;5319:39;;5377:38;5411:2;5400:9;5396:18;5377:38;:::i;5426:380::-;5505:1;5501:12;;;;5548;;;5569:61;;5623:4;5615:6;5611:17;5601:27;;5569:61;5676:2;5668:6;5665:14;5645:18;5642:38;5639:161;;;5722:10;5717:3;5713:20;5710:1;5703:31;5757:4;5754:1;5747:15;5785:4;5782:1;5775:15;5639:161;;5426:380;;;:::o;5811:127::-;5872:10;5867:3;5863:20;5860:1;5853:31;5903:4;5900:1;5893:15;5927:4;5924:1;5917:15;5943:128;5983:3;6014:1;6010:6;6007:1;6004:13;6001:39;;;6020:18;;:::i;:::-;-1:-1:-1;6056:9:1;;5943:128::o;6076:348::-;6278:2;6260:21;;;6317:2;6297:18;;;6290:30;-1:-1:-1;;;6351:2:1;6336:18;;6329:54;6415:2;6400:18;;6076:348::o;6429:::-;6631:2;6613:21;;;6670:2;6650:18;;;6643:30;-1:-1:-1;;;6704:2:1;6689:18;;6682:54;6768:2;6753:18;;6429:348::o;7594:127::-;7655:10;7650:3;7646:20;7643:1;7636:31;7686:4;7683:1;7676:15;7710:4;7707:1;7700:15;7726:135;7765:3;-1:-1:-1;;7786:17:1;;7783:43;;;7806:18;;:::i;:::-;-1:-1:-1;7853:1:1;7842:13;;7726:135::o

Swarm Source

ipfs://3dc5a98f323924d0882ba9b3ed40ddb2d0e557601b54353be4c4d6fe8584ed22
[ 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.