ETH Price: $2,276.65 (-2.87%)

Token

GoldenPi (GOPI)
 

Overview

Max Total Supply

979,853,562,951,413 GOPI

Holders

27

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,033,898,607,517.830360374841931684 GOPI

Value
$0.00
0x16277125ccc25082d8856e3c94f0ee81b1dc2350
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
GoldenPiToken

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-14
*/

// Twitter: https://twitter.com/goldenpi314159
// Telegram: https://t.me/goldenpi_314159
// Web: https://gopi.pro

// 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/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/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/token/ERC20/ERC20.sol


// 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: @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: goldenpi-template.sol


pragma solidity ^0.8.9;


contract GoldenPiToken is Ownable, ERC20 {
    bool public limited;
    uint256 public minHolding;
    uint256 public maxHolding;
    address public uniswapV2;

    constructor() ERC20("GoldenPi", "GOPI") {
        _mint(msg.sender, 979853562951413 * 10 ** decimals());
    }


    function setUniswapRule(bool _limited, address _uniswapV2, uint256 _minHolding, uint256 _maxHolding) external onlyOwner {
        limited = _limited;
        uniswapV2 = _uniswapV2;
        minHolding = _minHolding;
        maxHolding = _maxHolding;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        if (uniswapV2 == address(0)) {
            require(from == owner() || to == owner(), "Trading is not started");
            return;
        }

        if (limited && from == uniswapV2) {
            require(super.balanceOf(to) + amount <= maxHolding && super.balanceOf(to) + amount >= minHolding, "Forbid");
        }
    }
}

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":"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":"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHolding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHolding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2","type":"address"},{"internalType":"uint256","name":"_minHolding","type":"uint256"},{"internalType":"uint256","name":"_maxHolding","type":"uint256"}],"name":"setUniswapRule","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"},{"inputs":[],"name":"uniswapV2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405180604001604052806008815260200167476f6c64656e506960c01b81525060405180604001604052806004815260200163474f504960e01b8152506200006a62000064620000d960201b60201c565b620000dd565b81516200007f90600490602085019062000368565b5080516200009590600590602084019062000368565b505050620000d333620000ad6200012d60201b60201c565b620000ba90600a62000523565b620000cd9066037b2bef8d36f56200053b565b62000132565b620005b5565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601290565b6001600160a01b0382166200018e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200019c6000838362000209565b8060036000828254620001b091906200055d565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6009546001600160a01b031662000297576000546001600160a01b03848116911614806200024457506000546001600160a01b038381169116145b620002925760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74207374617274656400000000000000000000604482015260640162000185565b505050565b60065460ff168015620002b757506009546001600160a01b038481169116145b15620002925760085481620002d7846200034d60201b620003c01760201c565b620002e391906200055d565b111580156200031657506007548162000307846200034d60201b620003c01760201c565b6200031391906200055d565b10155b620002925760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b604482015260640162000185565b6001600160a01b031660009081526001602052604090205490565b828054620003769062000578565b90600052602060002090601f0160209004810192826200039a5760008555620003e5565b82601f10620003b557805160ff1916838001178555620003e5565b82800160010185558215620003e5579182015b82811115620003e5578251825591602001919060010190620003c8565b50620003f3929150620003f7565b5090565b5b80821115620003f35760008155600101620003f8565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004655781600019048211156200044957620004496200040e565b808516156200045757918102915b93841c939080029062000429565b509250929050565b6000826200047e575060016200051d565b816200048d575060006200051d565b8160018114620004a65760028114620004b157620004d1565b60019150506200051d565b60ff841115620004c557620004c56200040e565b50506001821b6200051d565b5060208310610133831016604e8410600b8410161715620004f6575081810a6200051d565b62000502838362000424565b80600019048211156200051957620005196200040e565b0290505b92915050565b60006200053460ff8416836200046d565b9392505050565b60008160001904831182151516156200055857620005586200040e565b500290565b600082198211156200057357620005736200040e565b500190565b600181811c908216806200058d57607f821691505b60208210811415620005af57634e487b7160e01b600052602260045260246000fd5b50919050565b610c5080620005c56000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d714610238578063a9059cbb1461024b578063bbed0e841461025e578063dd62ed3e14610267578063f2fde38b1461027a57600080fd5b806370a08231146101f7578063715018a61461020a578063860a32ec146102125780638da5cb5b1461021f57806395d89b411461023057600080fd5b8063313ce567116100f4578063313ce5671461018c578063333e6f061461019b57806339509351146101a45780635187c091146101b757806352e2f965146101e257600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e61028d565b60405161013b9190610a44565b60405180910390f35b610157610152366004610ab5565b61031f565b604051901515815260200161013b565b6003545b60405190815260200161013b565b610157610187366004610adf565b610337565b6040516012815260200161013b565b61016b60085481565b6101576101b2366004610ab5565b61035b565b6009546101ca906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b6101f56101f0366004610b1b565b61037d565b005b61016b610205366004610b64565b6103c0565b6101f56103db565b6006546101579060ff1681565b6000546001600160a01b03166101ca565b61012e6103ef565b610157610246366004610ab5565b6103fe565b610157610259366004610ab5565b61047e565b61016b60075481565b61016b610275366004610b86565b61048c565b6101f5610288366004610b64565b6104b7565b60606004805461029c90610bb9565b80601f01602080910402602001604051908101604052809291908181526020018280546102c890610bb9565b80156103155780601f106102ea57610100808354040283529160200191610315565b820191906000526020600020905b8154815290600101906020018083116102f857829003601f168201915b5050505050905090565b60003361032d818585610530565b5060019392505050565b600033610345858285610654565b6103508585856106ce565b506001949350505050565b60003361032d81858561036e838361048c565b6103789190610bf4565b610530565b610385610884565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b6001600160a01b031660009081526001602052604090205490565b6103e3610884565b6103ed60006108de565b565b60606005805461029c90610bb9565b6000338161040c828661048c565b9050838110156104715760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103508286868403610530565b60003361032d8185856106ce565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6104bf610884565b6001600160a01b0381166105245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610468565b61052d816108de565b50565b6001600160a01b0383166105925760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610468565b6001600160a01b0382166105f35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610468565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610660848461048c565b905060001981146106c857818110156106bb5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610468565b6106c88484848403610530565b50505050565b6001600160a01b0383166107325760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610468565b6001600160a01b0382166107945760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610468565b61079f83838361092e565b6001600160a01b038316600090815260016020526040902054818110156108175760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610468565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108779086815260200190565b60405180910390a36106c8565b6000546001600160a01b031633146103ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610468565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009546001600160a01b03166109b1576000546001600160a01b038481169116148061096757506000546001600160a01b038381169116145b6109ac5760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610468565b505050565b60065460ff1680156109d057506009546001600160a01b038481169116145b156109ac57600854816109e2846103c0565b6109ec9190610bf4565b11158015610a0f575060075481610a02846103c0565b610a0c9190610bf4565b10155b6109ac5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610468565b600060208083528351808285015260005b81811015610a7157858101830151858201604001528201610a55565b81811115610a83576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610ab057600080fd5b919050565b60008060408385031215610ac857600080fd5b610ad183610a99565b946020939093013593505050565b600080600060608486031215610af457600080fd5b610afd84610a99565b9250610b0b60208501610a99565b9150604084013590509250925092565b60008060008060808587031215610b3157600080fd5b84358015158114610b4157600080fd5b9350610b4f60208601610a99565b93969395505050506040820135916060013590565b600060208284031215610b7657600080fd5b610b7f82610a99565b9392505050565b60008060408385031215610b9957600080fd5b610ba283610a99565b9150610bb060208401610a99565b90509250929050565b600181811c90821680610bcd57607f821691505b60208210811415610bee57634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610c1557634e487b7160e01b600052601160045260246000fd5b50019056fea264697066735822122007abc5aef0861239046afdf80fd9def443333e74c46739f2423c4f9d6086e26a64736f6c634300080c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d714610238578063a9059cbb1461024b578063bbed0e841461025e578063dd62ed3e14610267578063f2fde38b1461027a57600080fd5b806370a08231146101f7578063715018a61461020a578063860a32ec146102125780638da5cb5b1461021f57806395d89b411461023057600080fd5b8063313ce567116100f4578063313ce5671461018c578063333e6f061461019b57806339509351146101a45780635187c091146101b757806352e2f965146101e257600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e61028d565b60405161013b9190610a44565b60405180910390f35b610157610152366004610ab5565b61031f565b604051901515815260200161013b565b6003545b60405190815260200161013b565b610157610187366004610adf565b610337565b6040516012815260200161013b565b61016b60085481565b6101576101b2366004610ab5565b61035b565b6009546101ca906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b6101f56101f0366004610b1b565b61037d565b005b61016b610205366004610b64565b6103c0565b6101f56103db565b6006546101579060ff1681565b6000546001600160a01b03166101ca565b61012e6103ef565b610157610246366004610ab5565b6103fe565b610157610259366004610ab5565b61047e565b61016b60075481565b61016b610275366004610b86565b61048c565b6101f5610288366004610b64565b6104b7565b60606004805461029c90610bb9565b80601f01602080910402602001604051908101604052809291908181526020018280546102c890610bb9565b80156103155780601f106102ea57610100808354040283529160200191610315565b820191906000526020600020905b8154815290600101906020018083116102f857829003601f168201915b5050505050905090565b60003361032d818585610530565b5060019392505050565b600033610345858285610654565b6103508585856106ce565b506001949350505050565b60003361032d81858561036e838361048c565b6103789190610bf4565b610530565b610385610884565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b6001600160a01b031660009081526001602052604090205490565b6103e3610884565b6103ed60006108de565b565b60606005805461029c90610bb9565b6000338161040c828661048c565b9050838110156104715760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103508286868403610530565b60003361032d8185856106ce565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6104bf610884565b6001600160a01b0381166105245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610468565b61052d816108de565b50565b6001600160a01b0383166105925760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610468565b6001600160a01b0382166105f35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610468565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610660848461048c565b905060001981146106c857818110156106bb5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610468565b6106c88484848403610530565b50505050565b6001600160a01b0383166107325760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610468565b6001600160a01b0382166107945760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610468565b61079f83838361092e565b6001600160a01b038316600090815260016020526040902054818110156108175760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610468565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108779086815260200190565b60405180910390a36106c8565b6000546001600160a01b031633146103ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610468565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009546001600160a01b03166109b1576000546001600160a01b038481169116148061096757506000546001600160a01b038381169116145b6109ac5760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610468565b505050565b60065460ff1680156109d057506009546001600160a01b038481169116145b156109ac57600854816109e2846103c0565b6109ec9190610bf4565b11158015610a0f575060075481610a02846103c0565b610a0c9190610bf4565b10155b6109ac5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610468565b600060208083528351808285015260005b81811015610a7157858101830151858201604001528201610a55565b81811115610a83576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610ab057600080fd5b919050565b60008060408385031215610ac857600080fd5b610ad183610a99565b946020939093013593505050565b600080600060608486031215610af457600080fd5b610afd84610a99565b9250610b0b60208501610a99565b9150604084013590509250925092565b60008060008060808587031215610b3157600080fd5b84358015158114610b4157600080fd5b9350610b4f60208601610a99565b93969395505050506040820135916060013590565b600060208284031215610b7657600080fd5b610b7f82610a99565b9392505050565b60008060408385031215610b9957600080fd5b610ba283610a99565b9150610bb060208401610a99565b90509250929050565b600181811c90821680610bcd57607f821691505b60208210811415610bee57634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610c1557634e487b7160e01b600052601160045260246000fd5b50019056fea264697066735822122007abc5aef0861239046afdf80fd9def443333e74c46739f2423c4f9d6086e26a64736f6c634300080c0033

Deployed Bytecode Sourcemap

20689:1038:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6738:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9089:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;9089:201:0;1053:187:1;7858:108:0;7946:12;;7858:108;;;1391:25:1;;;1379:2;1364:18;7858:108:0;1245:177:1;9870:295:0;;;;;;:::i;:::-;;:::i;7700:93::-;;;7783:2;1902:36:1;;1890:2;1875:18;7700:93:0;1760:184:1;20795:25:0;;;;;;10574:238;;;;;;:::i;:::-;;:::i;20827:24::-;;;;;-1:-1:-1;;;;;20827:24:0;;;;;;-1:-1:-1;;;;;2113:32:1;;;2095:51;;2083:2;2068:18;20827:24:0;1949:203:1;20982:260:0;;;;;;:::i;:::-;;:::i;:::-;;8029:127;;;;;;:::i;:::-;;:::i;19807:103::-;;;:::i;20737:19::-;;;;;;;;;19159:87;19205:7;19232:6;-1:-1:-1;;;;;19232:6:0;19159:87;;6957:104;;;:::i;11315:436::-;;;;;;:::i;:::-;;:::i;8362:193::-;;;;;;:::i;:::-;;:::i;20763:25::-;;;;;;8618:151;;;;;;:::i;:::-;;:::i;20065:201::-;;;;;;:::i;:::-;;:::i;6738:100::-;6792:13;6825:5;6818:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6738:100;:::o;9089:201::-;9172:4;4462:10;9228:32;4462:10;9244:7;9253:6;9228:8;:32::i;:::-;-1:-1:-1;9278:4:0;;9089:201;-1:-1:-1;;;9089:201:0:o;9870:295::-;10001:4;4462:10;10059:38;10075:4;4462:10;10090:6;10059:15;:38::i;:::-;10108:27;10118:4;10124:2;10128:6;10108:9;:27::i;:::-;-1:-1:-1;10153:4:0;;9870:295;-1:-1:-1;;;;9870:295:0:o;10574:238::-;10662:4;4462:10;10718:64;4462:10;10734:7;10771:10;10743:25;4462:10;10734:7;10743:9;:25::i;:::-;:38;;;;:::i;:::-;10718:8;:64::i;20982:260::-;19045:13;:11;:13::i;:::-;21113:7:::1;:18:::0;;-1:-1:-1;;21113:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;21142:9:::1;:22:::0;;-1:-1:-1;;;;;;21142:22:0::1;-1:-1:-1::0;;;;;21142:22:0;;;::::1;::::0;;;::::1;::::0;;;21175:10:::1;:24:::0;21210:10:::1;:24:::0;20982:260::o;8029:127::-;-1:-1:-1;;;;;8130:18:0;8103:7;8130:18;;;:9;:18;;;;;;;8029:127::o;19807:103::-;19045:13;:11;:13::i;:::-;19872:30:::1;19899:1;19872:18;:30::i;:::-;19807:103::o:0;6957:104::-;7013:13;7046:7;7039:14;;;;;:::i;11315:436::-;11408:4;4462:10;11408:4;11491:25;4462:10;11508:7;11491:9;:25::i;:::-;11464:52;;11555:15;11535:16;:35;;11527:85;;;;-1:-1:-1;;;11527:85:0;;3919:2:1;11527:85:0;;;3901:21:1;3958:2;3938:18;;;3931:30;3997:34;3977:18;;;3970:62;-1:-1:-1;;;4048:18:1;;;4041:35;4093:19;;11527:85:0;;;;;;;;;11648:60;11657:5;11664:7;11692:15;11673:16;:34;11648:8;:60::i;8362:193::-;8441:4;4462:10;8497:28;4462:10;8514:2;8518:6;8497:9;:28::i;8618:151::-;-1:-1:-1;;;;;8734:18:0;;;8707:7;8734:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8618:151::o;20065:201::-;19045:13;:11;:13::i;:::-;-1:-1:-1;;;;;20154:22:0;::::1;20146:73;;;::::0;-1:-1:-1;;;20146:73:0;;4325:2:1;20146:73:0::1;::::0;::::1;4307:21:1::0;4364:2;4344:18;;;4337:30;4403:34;4383:18;;;4376:62;-1:-1:-1;;;4454:18:1;;;4447:36;4500:19;;20146:73:0::1;4123:402:1::0;20146:73:0::1;20230:28;20249:8;20230:18;:28::i;:::-;20065:201:::0;:::o;15342:380::-;-1:-1:-1;;;;;15478:19:0;;15470:68;;;;-1:-1:-1;;;15470:68:0;;4732:2:1;15470:68:0;;;4714:21:1;4771:2;4751:18;;;4744:30;4810:34;4790:18;;;4783:62;-1:-1:-1;;;4861:18:1;;;4854:34;4905:19;;15470:68:0;4530:400:1;15470:68:0;-1:-1:-1;;;;;15557:21:0;;15549:68;;;;-1:-1:-1;;;15549:68:0;;5137:2:1;15549:68:0;;;5119:21:1;5176:2;5156:18;;;5149:30;5215:34;5195:18;;;5188:62;-1:-1:-1;;;5266:18:1;;;5259:32;5308:19;;15549:68:0;4935:398:1;15549:68:0;-1:-1:-1;;;;;15630:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15682:32;;1391:25:1;;;15682:32:0;;1364:18:1;15682:32:0;;;;;;;15342:380;;;:::o;16013:453::-;16148:24;16175:25;16185:5;16192:7;16175:9;:25::i;:::-;16148:52;;-1:-1:-1;;16215:16:0;:37;16211:248;;16297:6;16277:16;:26;;16269:68;;;;-1:-1:-1;;;16269:68:0;;5540:2:1;16269:68:0;;;5522:21:1;5579:2;5559:18;;;5552:30;5618:31;5598:18;;;5591:59;5667:18;;16269:68:0;5338:353:1;16269:68:0;16381:51;16390:5;16397:7;16425:6;16406:16;:25;16381:8;:51::i;:::-;16137:329;16013:453;;;:::o;12221:840::-;-1:-1:-1;;;;;12352:18:0;;12344:68;;;;-1:-1:-1;;;12344:68:0;;5898:2:1;12344:68:0;;;5880:21:1;5937:2;5917:18;;;5910:30;5976:34;5956:18;;;5949:62;-1:-1:-1;;;6027:18:1;;;6020:35;6072:19;;12344:68:0;5696:401:1;12344:68:0;-1:-1:-1;;;;;12431:16:0;;12423:64;;;;-1:-1:-1;;;12423:64:0;;6304:2:1;12423:64:0;;;6286:21:1;6343:2;6323:18;;;6316:30;6382:34;6362:18;;;6355:62;-1:-1:-1;;;6433:18:1;;;6426:33;6476:19;;12423:64:0;6102:399:1;12423:64:0;12500:38;12521:4;12527:2;12531:6;12500:20;:38::i;:::-;-1:-1:-1;;;;;12573:15:0;;12551:19;12573:15;;;:9;:15;;;;;;12607:21;;;;12599:72;;;;-1:-1:-1;;;12599:72:0;;6708:2:1;12599:72:0;;;6690:21:1;6747:2;6727:18;;;6720:30;6786:34;6766:18;;;6759:62;-1:-1:-1;;;6837:18:1;;;6830:36;6883:19;;12599:72:0;6506:402:1;12599:72:0;-1:-1:-1;;;;;12707:15:0;;;;;;;:9;:15;;;;;;12725:20;;;12707:38;;12925:13;;;;;;;;;;:23;;;;;;12977:26;;;;;;12739:6;1391:25:1;;1379:2;1364:18;;1245:177;12977:26:0;;;;;;;;13016:37;21250:474;19324:132;19205:7;19232:6;-1:-1:-1;;;;;19232:6:0;4462:10;19388:23;19380:68;;;;-1:-1:-1;;;19380:68:0;;7115:2:1;19380:68:0;;;7097:21:1;;;7134:18;;;7127:30;7193:34;7173:18;;;7166:62;7245:18;;19380:68:0;6913:356:1;20426:191:0;20500:16;20519:6;;-1:-1:-1;;;;;20536:17:0;;;-1:-1:-1;;;;;;20536:17:0;;;;;;20569:40;;20519:6;;;;;;;20569:40;;20500:16;20569:40;20489:128;20426:191;:::o;21250:474::-;21397:9;;-1:-1:-1;;;;;21397:9:0;21393:144;;19205:7;19232:6;-1:-1:-1;;;;;21445:15:0;;;19232:6;;21445:15;;:32;;-1:-1:-1;19205:7:0;19232:6;-1:-1:-1;;;;;21464:13:0;;;19232:6;;21464:13;21445:32;21437:67;;;;-1:-1:-1;;;21437:67:0;;7476:2:1;21437:67:0;;;7458:21:1;7515:2;7495:18;;;7488:30;-1:-1:-1;;;7534:18:1;;;7527:52;7596:18;;21437:67:0;7274:346:1;21437:67:0;21250:474;;;:::o;21393:144::-;21553:7;;;;:28;;;;-1:-1:-1;21572:9:0;;-1:-1:-1;;;;;21564:17:0;;;21572:9;;21564:17;21553:28;21549:168;;;21638:10;;21628:6;21606:19;21622:2;21606:15;:19::i;:::-;:28;;;;:::i;:::-;:42;;:88;;;;;21684:10;;21674:6;21652:19;21668:2;21652:15;:19::i;:::-;:28;;;;:::i;:::-;:42;;21606:88;21598:107;;;;-1:-1:-1;;;21598:107:0;;7827:2:1;21598:107:0;;;7809:21:1;7866:1;7846:18;;;7839:29;-1:-1:-1;;;7884:18:1;;;7877:36;7930:18;;21598:107:0;7625:329:1;14:597;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;2157:484::-;2240:6;2248;2256;2264;2317:3;2305:9;2296:7;2292:23;2288:33;2285:53;;;2334:1;2331;2324:12;2285:53;2373:9;2360:23;2426:5;2419:13;2412:21;2405:5;2402:32;2392:60;;2448:1;2445;2438:12;2392:60;2471:5;-1:-1:-1;2495:38:1;2529:2;2514:18;;2495:38;:::i;:::-;2157:484;;2485:48;;-1:-1:-1;;;;2580:2:1;2565:18;;2552:32;;2631:2;2616:18;2603:32;;2157:484::o;2646:186::-;2705:6;2758:2;2746:9;2737:7;2733:23;2729:32;2726:52;;;2774:1;2771;2764:12;2726:52;2797:29;2816:9;2797:29;:::i;:::-;2787:39;2646:186;-1:-1:-1;;;2646:186:1:o;2837:260::-;2905:6;2913;2966:2;2954:9;2945:7;2941:23;2937:32;2934:52;;;2982:1;2979;2972:12;2934:52;3005:29;3024:9;3005:29;:::i;:::-;2995:39;;3053:38;3087:2;3076:9;3072:18;3053:38;:::i;:::-;3043:48;;2837:260;;;;;:::o;3102:380::-;3181:1;3177:12;;;;3224;;;3245:61;;3299:4;3291:6;3287:17;3277:27;;3245:61;3352:2;3344:6;3341:14;3321:18;3318:38;3315:161;;;3398:10;3393:3;3389:20;3386:1;3379:31;3433:4;3430:1;3423:15;3461:4;3458:1;3451:15;3315:161;;3102:380;;;:::o;3487:225::-;3527:3;3558:1;3554:6;3551:1;3548:13;3545:136;;;3603:10;3598:3;3594:20;3591:1;3584:31;3638:4;3635:1;3628:15;3666:4;3663:1;3656:15;3545:136;-1:-1:-1;3697:9:1;;3487:225::o

Swarm Source

ipfs://07abc5aef0861239046afdf80fd9def443333e74c46739f2423c4f9d6086e26a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.