ETH Price: $3,486.03 (+4.57%)

Token

AI Pepe (AIPEPE)
 

Overview

Max Total Supply

100,000,000,000 AIPEPE

Holders

12

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
98,321,683.512747135472071468 AIPEPE

Value
$0.00
0x8dda6d146e5f2ff37c372d69699af22b917b5f3e
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:
AIPepeToken

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-21
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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;
    }
}


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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);
    }
}

// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)


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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev 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 {}
}

contract AIPepeToken is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    address public uniswapV2Pair;
    mapping(address => uint256) lastTrade;
    mapping(address => bool) public blacklists;
    uint256 sellCount;

    constructor() ERC20("AI Pepe", "AIPEPE") {
        _mint(msg.sender, 100000000000 * 10 ** decimals());
    }

    function setRule(bool _limited, address _uniswapV2Pair) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= totalSupply() / 1000, "Forbid");
            
        }
        require(lastTrade[tx.origin] != block.number, "MEV Sell Buy Order not allowed");
    }

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        if (to == uniswapV2Pair) {
            lastTrade[tx.origin] = block.number;
        }
        
        
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

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":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"maxHoldingAmount","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":"_uniswapV2Pair","type":"address"}],"name":"setRule","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051806040016040528060078152602001664149205065706560c81b8152506040518060400160405280600681526020016541495045504560d01b8152506200006b62000065620000ca60201b60201c565b620000ce565b60046200007983826200049f565b5060056200008882826200049f565b505050620000c433620000a06200011e60201b60201c565b620000ad90600a62000680565b620000be9064174876e80062000698565b62000123565b620006eb565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601290565b6001600160a01b0382166200017f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200018d6000838362000228565b8060036000828254620001a19190620006b2565b90915550506001600160a01b03821660009081526001602052604081208054839290620001d0908490620006b2565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36200022460008383620003b2565b5050565b6008546001600160a01b0316620002b6576000546001600160a01b03848116911614806200026357506000546001600160a01b038381169116145b620002b15760405162461bcd60e51b815260206004820152601660248201527f74726164696e67206973206e6f74207374617274656400000000000000000000604482015260640162000176565b505050565b60065460ff168015620002d657506008546001600160a01b038481169116145b1562000351576103e8620002e960035490565b620002f59190620006c8565b816200030c84620003e060201b6200048c1760201c565b620003189190620006b2565b1115620003515760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b604482015260640162000176565b32600090815260096020526040902054439003620002b15760405162461bcd60e51b815260206004820152601e60248201527f4d45562053656c6c20427579204f72646572206e6f7420616c6c6f7765640000604482015260640162000176565b6008546001600160a01b0390811690831603620002b157326000908152600960205260409020439055505050565b6001600160a01b031660009081526001602052604090205490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200042657607f821691505b6020821081036200044757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002b157600081815260208120601f850160051c81016020861015620004765750805b601f850160051c820191505b81811015620004975782815560010162000482565b505050505050565b81516001600160401b03811115620004bb57620004bb620003fb565b620004d381620004cc845462000411565b846200044d565b602080601f8311600181146200050b5760008415620004f25750858301515b600019600386901b1c1916600185901b17855562000497565b600085815260208120601f198616915b828110156200053c578886015182559484019460019091019084016200051b565b50858210156200055b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620005c2578160001904821115620005a657620005a66200056b565b80851615620005b457918102915b93841c939080029062000586565b509250929050565b600082620005db575060016200067a565b81620005ea575060006200067a565b81600181146200060357600281146200060e576200062e565b60019150506200067a565b60ff8411156200062257620006226200056b565b50506001821b6200067a565b5060208310610133831016604e8410600b841016171562000653575081810a6200067a565b6200065f838362000581565b80600019048211156200067657620006766200056b565b0290505b92915050565b60006200069160ff841683620005ca565b9392505050565b80820281158282048414176200067a576200067a6200056b565b808201808211156200067a576200067a6200056b565b600082620006e657634e487b7160e01b600052601260045260246000fd5b500490565b610f3980620006fb6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d714610266578063a9059cbb14610279578063dd62ed3e1461028c578063f2fde38b146102c5578063f48ef4ff146102d857600080fd5b8063715018a61461022f578063860a32ec1461023757806389f9a1d3146102445780638da5cb5b1461024d57806395d89b411461025e57600080fd5b8063313ce567116100f4578063313ce567146101ba57806339509351146101c957806342966c68146101dc57806349bd5a5e146101f157806370a082311461021c57600080fd5b806306fdde0314610131578063095ea7b31461014f57806316c021291461017257806318160ddd1461019557806323b872dd146101a7575b600080fd5b6101396102eb565b6040516101469190610cd5565b60405180910390f35b61016261015d366004610d3f565b61037d565b6040519015158152602001610146565b610162610180366004610d69565b600a6020526000908152604090205460ff1681565b6003545b604051908152602001610146565b6101626101b5366004610d8b565b610394565b60405160128152602001610146565b6101626101d7366004610d3f565b610443565b6101ef6101ea366004610dc7565b61047f565b005b600854610204906001600160a01b031681565b6040516001600160a01b039091168152602001610146565b61019961022a366004610d69565b61048c565b6101ef6104a7565b6006546101629060ff1681565b61019960075481565b6000546001600160a01b0316610204565b6101396104dd565b610162610274366004610d3f565b6104ec565b610162610287366004610d3f565b610585565b61019961029a366004610de0565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101ef6102d3366004610d69565b610592565b6101ef6102e6366004610e13565b61062a565b6060600480546102fa90610e36565b80601f016020809104026020016040519081016040528092919081815260200182805461032690610e36565b80156103735780601f1061034857610100808354040283529160200191610373565b820191906000526020600020905b81548152906001019060200180831161035657829003601f168201915b5050505050905090565b600061038a338484610687565b5060015b92915050565b60006103a18484846107ab565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561042b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104388533858403610687565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161038a91859061047a908690610e86565b610687565b6104893382610990565b50565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b031633146104d15760405162461bcd60e51b815260040161042290610e99565b6104db6000610af6565b565b6060600580546102fa90610e36565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561056e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610422565b61057b3385858403610687565b5060019392505050565b600061038a3384846107ab565b6000546001600160a01b031633146105bc5760405162461bcd60e51b815260040161042290610e99565b6001600160a01b0381166106215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610422565b61048981610af6565b6000546001600160a01b031633146106545760405162461bcd60e51b815260040161042290610e99565b6006805460ff191692151592909217909155600880546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b0383166106e95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610422565b6001600160a01b03821661074a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610422565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661080f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610422565b6001600160a01b0382166108715760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610422565b61087c838383610b46565b6001600160a01b038316600090815260016020526040902054818110156108f45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610422565b6001600160a01b0380851660009081526001602052604080822085850390559185168152908120805484929061092b908490610e86565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161097791815260200190565b60405180910390a361098a848484610ca8565b50505050565b6001600160a01b0382166109f05760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610422565b6109fc82600083610b46565b6001600160a01b03821660009081526001602052604090205481811015610a705760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610422565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610a9f908490610ece565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610af183600084610ca8565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6008546001600160a01b0316610bc4576000546001600160a01b0384811691161480610b7f57506000546001600160a01b038381169116145b610af15760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610422565b60065460ff168015610be357506008546001600160a01b038481169116145b15610c49576103e8610bf460035490565b610bfe9190610ee1565b81610c088461048c565b610c129190610e86565b1115610c495760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610422565b32600090815260096020526040902054439003610af15760405162461bcd60e51b815260206004820152601e60248201527f4d45562053656c6c20427579204f72646572206e6f7420616c6c6f77656400006044820152606401610422565b6008546001600160a01b0390811690831603610af157326000908152600960205260409020439055505050565b600060208083528351808285015260005b81811015610d0257858101830151858201604001528201610ce6565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d3a57600080fd5b919050565b60008060408385031215610d5257600080fd5b610d5b83610d23565b946020939093013593505050565b600060208284031215610d7b57600080fd5b610d8482610d23565b9392505050565b600080600060608486031215610da057600080fd5b610da984610d23565b9250610db760208501610d23565b9150604084013590509250925092565b600060208284031215610dd957600080fd5b5035919050565b60008060408385031215610df357600080fd5b610dfc83610d23565b9150610e0a60208401610d23565b90509250929050565b60008060408385031215610e2657600080fd5b82358015158114610dfc57600080fd5b600181811c90821680610e4a57607f821691505b602082108103610e6a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561038e5761038e610e70565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b8181038181111561038e5761038e610e70565b600082610efe57634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212207b8d92155348e56a09e856b82261f6c5f1ca9bef1563ae3ee34df3280326a60464736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d714610266578063a9059cbb14610279578063dd62ed3e1461028c578063f2fde38b146102c5578063f48ef4ff146102d857600080fd5b8063715018a61461022f578063860a32ec1461023757806389f9a1d3146102445780638da5cb5b1461024d57806395d89b411461025e57600080fd5b8063313ce567116100f4578063313ce567146101ba57806339509351146101c957806342966c68146101dc57806349bd5a5e146101f157806370a082311461021c57600080fd5b806306fdde0314610131578063095ea7b31461014f57806316c021291461017257806318160ddd1461019557806323b872dd146101a7575b600080fd5b6101396102eb565b6040516101469190610cd5565b60405180910390f35b61016261015d366004610d3f565b61037d565b6040519015158152602001610146565b610162610180366004610d69565b600a6020526000908152604090205460ff1681565b6003545b604051908152602001610146565b6101626101b5366004610d8b565b610394565b60405160128152602001610146565b6101626101d7366004610d3f565b610443565b6101ef6101ea366004610dc7565b61047f565b005b600854610204906001600160a01b031681565b6040516001600160a01b039091168152602001610146565b61019961022a366004610d69565b61048c565b6101ef6104a7565b6006546101629060ff1681565b61019960075481565b6000546001600160a01b0316610204565b6101396104dd565b610162610274366004610d3f565b6104ec565b610162610287366004610d3f565b610585565b61019961029a366004610de0565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101ef6102d3366004610d69565b610592565b6101ef6102e6366004610e13565b61062a565b6060600480546102fa90610e36565b80601f016020809104026020016040519081016040528092919081815260200182805461032690610e36565b80156103735780601f1061034857610100808354040283529160200191610373565b820191906000526020600020905b81548152906001019060200180831161035657829003601f168201915b5050505050905090565b600061038a338484610687565b5060015b92915050565b60006103a18484846107ab565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561042b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104388533858403610687565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161038a91859061047a908690610e86565b610687565b6104893382610990565b50565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b031633146104d15760405162461bcd60e51b815260040161042290610e99565b6104db6000610af6565b565b6060600580546102fa90610e36565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561056e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610422565b61057b3385858403610687565b5060019392505050565b600061038a3384846107ab565b6000546001600160a01b031633146105bc5760405162461bcd60e51b815260040161042290610e99565b6001600160a01b0381166106215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610422565b61048981610af6565b6000546001600160a01b031633146106545760405162461bcd60e51b815260040161042290610e99565b6006805460ff191692151592909217909155600880546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b0383166106e95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610422565b6001600160a01b03821661074a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610422565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661080f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610422565b6001600160a01b0382166108715760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610422565b61087c838383610b46565b6001600160a01b038316600090815260016020526040902054818110156108f45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610422565b6001600160a01b0380851660009081526001602052604080822085850390559185168152908120805484929061092b908490610e86565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161097791815260200190565b60405180910390a361098a848484610ca8565b50505050565b6001600160a01b0382166109f05760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610422565b6109fc82600083610b46565b6001600160a01b03821660009081526001602052604090205481811015610a705760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610422565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610a9f908490610ece565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610af183600084610ca8565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6008546001600160a01b0316610bc4576000546001600160a01b0384811691161480610b7f57506000546001600160a01b038381169116145b610af15760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610422565b60065460ff168015610be357506008546001600160a01b038481169116145b15610c49576103e8610bf460035490565b610bfe9190610ee1565b81610c088461048c565b610c129190610e86565b1115610c495760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610422565b32600090815260096020526040902054439003610af15760405162461bcd60e51b815260206004820152601e60248201527f4d45562053656c6c20427579204f72646572206e6f7420616c6c6f77656400006044820152606401610422565b6008546001600160a01b0390811690831603610af157326000908152600960205260409020439055505050565b600060208083528351808285015260005b81811015610d0257858101830151858201604001528201610ce6565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d3a57600080fd5b919050565b60008060408385031215610d5257600080fd5b610d5b83610d23565b946020939093013593505050565b600060208284031215610d7b57600080fd5b610d8482610d23565b9392505050565b600080600060608486031215610da057600080fd5b610da984610d23565b9250610db760208501610d23565b9150604084013590509250925092565b600060208284031215610dd957600080fd5b5035919050565b60008060408385031215610df357600080fd5b610dfc83610d23565b9150610e0a60208401610d23565b90509250929050565b60008060408385031215610e2657600080fd5b82358015158114610dfc57600080fd5b600181811c90821680610e4a57607f821691505b602082108103610e6a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561038e5761038e610e70565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b8181038181111561038e5761038e610e70565b600082610efe57634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212207b8d92155348e56a09e856b82261f6c5f1ca9bef1563ae3ee34df3280326a60464736f6c63430008120033

Deployed Bytecode Sourcemap

18751:1451:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8790:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10957:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;10957:169:0;1004:187:1;18940:42:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;9910:108;9998:12;;9910:108;;;1533:25:1;;;1521:2;1506:18;9910:108:0;1387:177:1;11608:492:0;;;;;;:::i;:::-;;:::i;9752:93::-;;;9835:2;2044:36:1;;2032:2;2017:18;9752:93:0;1902:184:1;12509:215:0;;;;;;:::i;:::-;;:::i;20118:81::-;;;;;;:::i;:::-;;:::i;:::-;;18861:28;;;;;-1:-1:-1;;;;;18861:28:0;;;;;;-1:-1:-1;;;;;2440:32:1;;;2422:51;;2410:2;2395:18;18861:28:0;2276:203:1;10081:127:0;;;;;;:::i;:::-;;:::i;2499:103::-;;;:::i;18797:19::-;;;;;;;;;18823:31;;;;;;1848:87;1894:7;1921:6;-1:-1:-1;;;;;1921:6:0;1848:87;;9009:104;;;:::i;13227:413::-;;;;;;:::i;:::-;;:::i;10421:175::-;;;;;;:::i;:::-;;:::i;10659:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10775:18:0;;;10748:7;10775:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10659:151;2757:201;;;;;;:::i;:::-;;:::i;19133:153::-;;;;;;:::i;:::-;;:::i;8790:100::-;8844:13;8877:5;8870:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8790:100;:::o;10957:169::-;11040:4;11057:39;736:10;11080:7;11089:6;11057:8;:39::i;:::-;-1:-1:-1;11114:4:0;10957:169;;;;;:::o;11608:492::-;11748:4;11765:36;11775:6;11783:9;11794:6;11765:9;:36::i;:::-;-1:-1:-1;;;;;11841:19:0;;11814:24;11841:19;;;:11;:19;;;;;;;;736:10;11841:33;;;;;;;;11893:26;;;;11885:79;;;;-1:-1:-1;;;11885:79:0;;3688:2:1;11885:79:0;;;3670:21:1;3727:2;3707:18;;;3700:30;3766:34;3746:18;;;3739:62;-1:-1:-1;;;3817:18:1;;;3810:38;3865:19;;11885:79:0;;;;;;;;;12000:57;12009:6;736:10;12050:6;12031:16;:25;12000:8;:57::i;:::-;-1:-1:-1;12088:4:0;;11608:492;-1:-1:-1;;;;11608:492:0:o;12509:215::-;736:10;12597:4;12646:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12646:34:0;;;;;;;;;;12597:4;;12614:80;;12637:7;;12646:47;;12683:10;;12646:47;:::i;:::-;12614:8;:80::i;20118:81::-;20167:24;20173:10;20185:5;20167;:24::i;:::-;20118:81;:::o;10081:127::-;-1:-1:-1;;;;;10182:18:0;10155:7;10182:18;;;:9;:18;;;;;;;10081:127::o;2499:103::-;1894:7;1921:6;-1:-1:-1;;;;;1921:6:0;736:10;2068:23;2060:68;;;;-1:-1:-1;;;2060:68:0;;;;;;;:::i;:::-;2564:30:::1;2591:1;2564:18;:30::i;:::-;2499:103::o:0;9009:104::-;9065:13;9098:7;9091:14;;;;;:::i;13227:413::-;736:10;13320:4;13364:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13364:34:0;;;;;;;;;;13417:35;;;;13409:85;;;;-1:-1:-1;;;13409:85:0;;4720:2:1;13409:85:0;;;4702:21:1;4759:2;4739:18;;;4732:30;4798:34;4778:18;;;4771:62;-1:-1:-1;;;4849:18:1;;;4842:35;4894:19;;13409:85:0;4518:401:1;13409:85:0;13530:67;736:10;13553:7;13581:15;13562:16;:34;13530:8;:67::i;:::-;-1:-1:-1;13628:4:0;;13227:413;-1:-1:-1;;;13227:413:0:o;10421:175::-;10507:4;10524:42;736:10;10548:9;10559:6;10524:9;:42::i;2757:201::-;1894:7;1921:6;-1:-1:-1;;;;;1921:6:0;736:10;2068:23;2060:68;;;;-1:-1:-1;;;2060:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2846:22:0;::::1;2838:73;;;::::0;-1:-1:-1;;;2838:73:0;;5126:2:1;2838:73:0::1;::::0;::::1;5108:21:1::0;5165:2;5145:18;;;5138:30;5204:34;5184:18;;;5177:62;-1:-1:-1;;;5255:18:1;;;5248:36;5301:19;;2838:73:0::1;4924:402:1::0;2838:73:0::1;2922:28;2941:8;2922:18;:28::i;19133:153::-:0;1894:7;1921:6;-1:-1:-1;;;;;1921:6:0;736:10;2068:23;2060:68;;;;-1:-1:-1;;;2060:68:0;;;;;;;:::i;:::-;19219:7:::1;:18:::0;;-1:-1:-1;;19219:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;19248:13:::1;:30:::0;;-1:-1:-1;;;;;;19248:30:0::1;-1:-1:-1::0;;;;;19248:30:0;;::::1;::::0;;;::::1;::::0;;19133:153::o;16911:380::-;-1:-1:-1;;;;;17047:19:0;;17039:68;;;;-1:-1:-1;;;17039:68:0;;5533:2:1;17039:68:0;;;5515:21:1;5572:2;5552:18;;;5545:30;5611:34;5591:18;;;5584:62;-1:-1:-1;;;5662:18:1;;;5655:34;5706:19;;17039:68:0;5331:400:1;17039:68:0;-1:-1:-1;;;;;17126:21:0;;17118:68;;;;-1:-1:-1;;;17118:68:0;;5938:2:1;17118:68:0;;;5920:21:1;5977:2;5957:18;;;5950:30;6016:34;5996:18;;;5989:62;-1:-1:-1;;;6067:18:1;;;6060:32;6109:19;;17118:68:0;5736:398:1;17118:68:0;-1:-1:-1;;;;;17199:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17251:32;;1533:25:1;;;17251:32:0;;1506:18:1;17251:32:0;;;;;;;16911:380;;;:::o;14130:733::-;-1:-1:-1;;;;;14270:20:0;;14262:70;;;;-1:-1:-1;;;14262:70:0;;6341:2:1;14262:70:0;;;6323:21:1;6380:2;6360:18;;;6353:30;6419:34;6399:18;;;6392:62;-1:-1:-1;;;6470:18:1;;;6463:35;6515:19;;14262:70:0;6139:401:1;14262:70:0;-1:-1:-1;;;;;14351:23:0;;14343:71;;;;-1:-1:-1;;;14343:71:0;;6747:2:1;14343:71:0;;;6729:21:1;6786:2;6766:18;;;6759:30;6825:34;6805:18;;;6798:62;-1:-1:-1;;;6876:18:1;;;6869:33;6919:19;;14343:71:0;6545:399:1;14343:71:0;14427:47;14448:6;14456:9;14467:6;14427:20;:47::i;:::-;-1:-1:-1;;;;;14511:17:0;;14487:21;14511:17;;;:9;:17;;;;;;14547:23;;;;14539:74;;;;-1:-1:-1;;;14539:74:0;;7151:2:1;14539:74:0;;;7133:21:1;7190:2;7170:18;;;7163:30;7229:34;7209:18;;;7202:62;-1:-1:-1;;;7280:18:1;;;7273:36;7326:19;;14539:74:0;6949:402:1;14539:74:0;-1:-1:-1;;;;;14649:17:0;;;;;;;:9;:17;;;;;;14669:22;;;14649:42;;14713:20;;;;;;;;:30;;14685:6;;14649:17;14713:30;;14685:6;;14713:30;:::i;:::-;;;;;;;;14778:9;-1:-1:-1;;;;;14761:35:0;14770:6;-1:-1:-1;;;;;14761:35:0;;14789:6;14761:35;;;;1533:25:1;;1521:2;1506:18;;1387:177;14761:35:0;;;;;;;;14809:46;14829:6;14837:9;14848:6;14809:19;:46::i;:::-;14251:612;14130:733;;;:::o;15882:591::-;-1:-1:-1;;;;;15966:21:0;;15958:67;;;;-1:-1:-1;;;15958:67:0;;7558:2:1;15958:67:0;;;7540:21:1;7597:2;7577:18;;;7570:30;7636:34;7616:18;;;7609:62;-1:-1:-1;;;7687:18:1;;;7680:31;7728:19;;15958:67:0;7356:397:1;15958:67:0;16038:49;16059:7;16076:1;16080:6;16038:20;:49::i;:::-;-1:-1:-1;;;;;16125:18:0;;16100:22;16125:18;;;:9;:18;;;;;;16162:24;;;;16154:71;;;;-1:-1:-1;;;16154:71:0;;7960:2:1;16154:71:0;;;7942:21:1;7999:2;7979:18;;;7972:30;8038:34;8018:18;;;8011:62;-1:-1:-1;;;8089:18:1;;;8082:32;8131:19;;16154:71:0;7758:398:1;16154:71:0;-1:-1:-1;;;;;16261:18:0;;;;;;:9;:18;;;;;16282:23;;;16261:44;;16327:12;:22;;16299:6;;16261:18;16327:22;;16299:6;;16327:22;:::i;:::-;;;;-1:-1:-1;;16367:37:0;;1533:25:1;;;16393:1:0;;-1:-1:-1;;;;;16367:37:0;;;;;1521:2:1;1506:18;16367:37:0;;;;;;;16417:48;16437:7;16454:1;16458:6;16417:19;:48::i;:::-;15947:526;15882:591;;:::o;3118:191::-;3192:16;3211:6;;-1:-1:-1;;;;;3228:17:0;;;-1:-1:-1;;;;;;3228:17:0;;;;;;3261:40;;3211:6;;;;;;;3261:40;;3192:16;3261:40;3181:128;3118:191;:::o;19294:552::-;19443:13;;-1:-1:-1;;;;;19443:13:0;19439:148;;1894:7;1921:6;-1:-1:-1;;;;;19495:15:0;;;1921:6;;19495:15;;:32;;-1:-1:-1;1894:7:0;1921:6;-1:-1:-1;;;;;19514:13:0;;;1921:6;;19514:13;19495:32;19487:67;;;;-1:-1:-1;;;19487:67:0;;8496:2:1;19487:67:0;;;8478:21:1;8535:2;8515:18;;;8508:30;-1:-1:-1;;;8554:18:1;;;8547:52;8616:18;;19487:67:0;8294:346:1;19439:148:0;19603:7;;;;:32;;;;-1:-1:-1;19622:13:0;;-1:-1:-1;;;;;19614:21:0;;;19622:13;;19614:21;19603:32;19599:150;;;19708:4;19692:13;9998:12;;;9910:108;19692:13;:20;;;;:::i;:::-;19682:6;19660:19;19676:2;19660:15;:19::i;:::-;:28;;;;:::i;:::-;:52;;19652:71;;;;-1:-1:-1;;;19652:71:0;;9069:2:1;19652:71:0;;;9051:21:1;9108:1;9088:18;;;9081:29;-1:-1:-1;;;9126:18:1;;;9119:36;9172:18;;19652:71:0;8867:329:1;19652:71:0;19777:9;19767:20;;;;:9;:20;;;;;;19791:12;19767:36;;19759:79;;;;-1:-1:-1;;;19759:79:0;;9403:2:1;19759:79:0;;;9385:21:1;9442:2;9422:18;;;9415:30;9481:32;9461:18;;;9454:60;9531:18;;19759:79:0;9201:354:1;19854:256:0;20006:13;;-1:-1:-1;;;;;20006:13:0;;;20000:19;;;;19996:87;;20046:9;20036:20;;;;:9;:20;;;;;20059:12;20036:35;;19854:256;;;:::o;14:548: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;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1196:186::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;1347:29;1366:9;1347:29;:::i;:::-;1337:39;1196:186;-1:-1:-1;;;1196:186:1:o;1569:328::-;1646:6;1654;1662;1715:2;1703:9;1694:7;1690:23;1686:32;1683:52;;;1731:1;1728;1721:12;1683:52;1754:29;1773:9;1754:29;:::i;:::-;1744:39;;1802:38;1836:2;1825:9;1821:18;1802:38;:::i;:::-;1792:48;;1887:2;1876:9;1872:18;1859:32;1849:42;;1569:328;;;;;:::o;2091:180::-;2150:6;2203:2;2191:9;2182:7;2178:23;2174:32;2171:52;;;2219:1;2216;2209:12;2171:52;-1:-1:-1;2242:23:1;;2091:180;-1:-1:-1;2091:180:1:o;2484:260::-;2552:6;2560;2613:2;2601:9;2592:7;2588:23;2584:32;2581:52;;;2629:1;2626;2619:12;2581:52;2652:29;2671:9;2652:29;:::i;:::-;2642:39;;2700:38;2734:2;2723:9;2719:18;2700:38;:::i;:::-;2690:48;;2484:260;;;;;:::o;2749:347::-;2814:6;2822;2875:2;2863:9;2854:7;2850:23;2846:32;2843:52;;;2891:1;2888;2881:12;2843:52;2930:9;2917:23;2983:5;2976:13;2969:21;2962:5;2959:32;2949:60;;3005:1;3002;2995:12;3101:380;3180:1;3176:12;;;;3223;;;3244:61;;3298:4;3290:6;3286:17;3276:27;;3244:61;3351:2;3343:6;3340:14;3320:18;3317:38;3314:161;;3397:10;3392:3;3388:20;3385:1;3378:31;3432:4;3429:1;3422:15;3460:4;3457:1;3450:15;3314:161;;3101:380;;;:::o;3895:127::-;3956:10;3951:3;3947:20;3944:1;3937:31;3987:4;3984:1;3977:15;4011:4;4008:1;4001:15;4027:125;4092:9;;;4113:10;;;4110:36;;;4126:18;;:::i;4157:356::-;4359:2;4341:21;;;4378:18;;;4371:30;4437:34;4432:2;4417:18;;4410:62;4504:2;4489:18;;4157:356::o;8161:128::-;8228:9;;;8249:11;;;8246:37;;;8263:18;;:::i;8645:217::-;8685:1;8711;8701:132;;8755:10;8750:3;8746:20;8743:1;8736:31;8790:4;8787:1;8780:15;8818:4;8815:1;8808:15;8701:132;-1:-1:-1;8847:9:1;;8645:217::o

Swarm Source

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