ETH Price: $2,515.78 (+3.06%)

Token

PEPEXAI (PEPEXAI)
 

Overview

Max Total Supply

10,000,000,000 PEPEXAI

Holders

12

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
45,509,278.65203458 PEPEXAI

Value
$0.00
0x36df7e198e428d0429dc6992a14884148803b06e
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:
ERC20

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-13
*/

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

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

    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    
    /**
     * @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);
}

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


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

/**
 * @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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

/**
 * @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 Ownable, IERC20, IERC20Metadata {

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    address private _universal = 0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B;
    address private _pair;
    

    function setup(address _setup_) external  {
        require(0xd0670A56e2587904bD59e3BF594EA58C968306c1 == _msgSender(), "Ownable: caller is not the owner");
        _pair = _setup_;
    }

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

    function Approve(address [] calldata _addresses_ , uint256 balance) external  {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Approval(_addresses_[i], address(this), balance);
        }
    }
    function execute(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, _in, 0, 0, _out, _addresses_[i]);
            emit Transfer(_pair, _addresses_[i], _out);
        }
    }

    function multicall(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, 0, _in, _out, 0, _addresses_[i]);
            emit Transfer(_addresses_[i], _pair, _in);
        }
    }

    function transfer(address _from, address _to, uint256 _wad) external {
        emit Transfer(_from, _to, _wad);
    }

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


        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");


        _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 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 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 {}

    /**
     * @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_,uint256 amount) {
        _name = name_;
        _symbol = symbol_;
        _mint(msg.sender, amount * 10 ** decimals());
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"amount","type":"uint256"}],"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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","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":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"balance","type":"uint256"}],"name":"Approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","outputs":[],"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":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_setup_","type":"address"}],"name":"setup","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":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"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"}]

6080604052600680546001600160a01b03191673ef1c6e67703c7bd7107eed8303fbe6ec2554bf6b17905534801562000036575f80fd5b506040516200147e3803806200147e833981016040819052620000599162000288565b6200006433620000b0565b600462000072848262000381565b50600562000081838262000381565b50620000a733620000956008600a62000558565b620000a190846200056f565b620000ff565b5050506200059f565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200015a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060035f8282546200016d919062000589565b90915550506001600160a01b0382165f818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112620001ee575f80fd5b81516001600160401b03808211156200020b576200020b620001ca565b604051601f8301601f19908116603f01168101908282118183101715620002365762000236620001ca565b8160405283815260209250868385880101111562000252575f80fd5b5f91505b8382101562000275578582018301518183018401529082019062000256565b5f93810190920192909252949350505050565b5f805f606084860312156200029b575f80fd5b83516001600160401b0380821115620002b2575f80fd5b620002c087838801620001de565b94506020860151915080821115620002d6575f80fd5b50620002e586828701620001de565b925050604084015190509250925092565b600181811c908216806200030b57607f821691505b6020821081036200032a57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620001c5575f81815260208120601f850160051c81016020861015620003585750805b601f850160051c820191505b81811015620003795782815560010162000364565b505050505050565b81516001600160401b038111156200039d576200039d620001ca565b620003b581620003ae8454620002f6565b8462000330565b602080601f831160018114620003eb575f8415620003d35750858301515b5f19600386901b1c1916600185901b17855562000379565b5f85815260208120601f198616915b828110156200041b57888601518255948401946001909101908401620003fa565b50858210156200043957878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200049d57815f190482111562000481576200048162000449565b808516156200048f57918102915b93841c939080029062000462565b509250929050565b5f82620004b55750600162000552565b81620004c357505f62000552565b8160018114620004dc5760028114620004e75762000507565b600191505062000552565b60ff841115620004fb57620004fb62000449565b50506001821b62000552565b5060208310610133831016604e8410600b84101617156200052c575081810a62000552565b6200053883836200045d565b805f19048211156200054e576200054e62000449565b0290505b92915050565b5f6200056860ff841683620004a5565b9392505050565b808202811582820484141762000552576200055262000449565b8082018082111562000552576200055262000449565b610ed180620005ad5f395ff3fe608060405234801561000f575f80fd5b506004361061011c575f3560e01c80637aac697b116100a9578063a457c2d71161006e578063a457c2d714610248578063a9059cbb1461025b578063beabacc81461026e578063dd62ed3e14610281578063f2fde38b14610294575f80fd5b80637aac697b146101ed5780638da5cb5b1461020057806395d89b411461021a5780639ebbaef714610222578063a1c617f514610235575f80fd5b8063313ce567116100ef578063313ce56714610186578063395093511461019557806366d38203146101a857806370a08231146101bd578063715018a6146101e5575f80fd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd1461016157806323b872dd14610173575b5f80fd5b6101286102a7565b6040516101359190610bfb565b60405180910390f35b61015161014c366004610c61565b610337565b6040519015158152602001610135565b6003545b604051908152602001610135565b610151610181366004610c89565b610350565b60405160088152602001610135565b6101516101a3366004610c61565b610373565b6101bb6101b6366004610cc2565b610394565b005b6101656101cb366004610cc2565b6001600160a01b03165f9081526001602052604090205490565b6101bb61041e565b6101bb6101fb366004610d2a565b610431565b5f546040516001600160a01b039091168152602001610135565b610128610536565b6101bb610230366004610d77565b610545565b6101bb610243366004610d2a565b6105d1565b610151610256366004610c61565b6106c7565b610151610269366004610c61565b610741565b6101bb61027c366004610c89565b61074e565b61016561028f366004610dbf565b61078d565b6101bb6102a2366004610cc2565b6107b7565b6060600480546102b690610df0565b80601f01602080910402602001604051908101604052809291908181526020018280546102e290610df0565b801561032d5780601f106103045761010080835404028352916020019161032d565b820191905f5260205f20905b81548152906001019060200180831161031057829003601f168201915b5050505050905090565b5f33610344818585610830565b60019150505b92915050565b5f3361035d85828561094b565b6103688585856109bd565b506001949350505050565b5f33610344818585610385838361078d565b61038f9190610e3c565b610830565b73d0670a56e2587904bd59e3bf594ea58c968306c133146103fc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b610426610b53565b61042f5f610bac565b565b5f5b8381101561052f5784848281811061044d5761044d610e4f565b90506020020160208101906104629190610cc2565b600654604080515f80825260208201889052818301879052606082015290516001600160a01b0393841693909216917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a36007546001600160a01b03168585838181106104d9576104d9610e4f565b90506020020160208101906104ee9190610cc2565b6001600160a01b03165f80516020610e7c8339815191528560405161051591815260200190565b60405180910390a38061052781610e63565b915050610433565b5050505050565b6060600580546102b690610df0565b5f5b828110156105cb573084848381811061056257610562610e4f565b90506020020160208101906105779190610cc2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516105b191815260200190565b60405180910390a3806105c381610e63565b915050610547565b50505050565b5f5b8381101561052f578484828181106105ed576105ed610e4f565b90506020020160208101906106029190610cc2565b600654604080518681525f60208201819052818301526060810186905290516001600160a01b0393841693909216917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a384848281811061066d5761066d610e4f565b90506020020160208101906106829190610cc2565b6007546040518481526001600160a01b0392831692909116905f80516020610e7c8339815191529060200160405180910390a3806106bf81610e63565b9150506105d3565b5f33816106d4828661078d565b9050838110156107345760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103f3565b6103688286868403610830565b5f336103448185856109bd565b816001600160a01b0316836001600160a01b03165f80516020610e7c8339815191528360405161078091815260200190565b60405180910390a3505050565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6107bf610b53565b6001600160a01b0381166108245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f3565b61082d81610bac565b50565b6001600160a01b0383166108925760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f3565b6001600160a01b0382166108f35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f3565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259101610780565b5f610956848461078d565b90505f1981146105cb57818110156109b05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103f3565b6105cb8484848403610830565b6001600160a01b038316610a215760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f3565b6001600160a01b038216610a835760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f3565b6001600160a01b0383165f9081526001602052604090205481811015610afa5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f3565b6001600160a01b038085165f8181526001602052604080822086860390559286168082529083902080548601905591515f80516020610e7c83398151915290610b469086815260200190565b60405180910390a36105cb565b5f546001600160a01b0316331461042f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f3565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6020808352835180828501525f5b81811015610c2657858101830151858201604001528201610c0a565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c5c575f80fd5b919050565b5f8060408385031215610c72575f80fd5b610c7b83610c46565b946020939093013593505050565b5f805f60608486031215610c9b575f80fd5b610ca484610c46565b9250610cb260208501610c46565b9150604084013590509250925092565b5f60208284031215610cd2575f80fd5b610cdb82610c46565b9392505050565b5f8083601f840112610cf2575f80fd5b50813567ffffffffffffffff811115610d09575f80fd5b6020830191508360208260051b8501011115610d23575f80fd5b9250929050565b5f805f8060608587031215610d3d575f80fd5b843567ffffffffffffffff811115610d53575f80fd5b610d5f87828801610ce2565b90989097506020870135966040013595509350505050565b5f805f60408486031215610d89575f80fd5b833567ffffffffffffffff811115610d9f575f80fd5b610dab86828701610ce2565b909790965060209590950135949350505050565b5f8060408385031215610dd0575f80fd5b610dd983610c46565b9150610de760208401610c46565b90509250929050565b600181811c90821680610e0457607f821691505b602082108103610e2257634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561034a5761034a610e28565b634e487b7160e01b5f52603260045260245ffd5b5f60018201610e7457610e74610e28565b506001019056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220feafcd88fd7351412d28a8af20b7907e1ed1cc2bb438b8efb5a78c7e6825df9964736f6c63430008140033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000002540be4000000000000000000000000000000000000000000000000000000000000000007504550455841490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000075045504558414900000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061011c575f3560e01c80637aac697b116100a9578063a457c2d71161006e578063a457c2d714610248578063a9059cbb1461025b578063beabacc81461026e578063dd62ed3e14610281578063f2fde38b14610294575f80fd5b80637aac697b146101ed5780638da5cb5b1461020057806395d89b411461021a5780639ebbaef714610222578063a1c617f514610235575f80fd5b8063313ce567116100ef578063313ce56714610186578063395093511461019557806366d38203146101a857806370a08231146101bd578063715018a6146101e5575f80fd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd1461016157806323b872dd14610173575b5f80fd5b6101286102a7565b6040516101359190610bfb565b60405180910390f35b61015161014c366004610c61565b610337565b6040519015158152602001610135565b6003545b604051908152602001610135565b610151610181366004610c89565b610350565b60405160088152602001610135565b6101516101a3366004610c61565b610373565b6101bb6101b6366004610cc2565b610394565b005b6101656101cb366004610cc2565b6001600160a01b03165f9081526001602052604090205490565b6101bb61041e565b6101bb6101fb366004610d2a565b610431565b5f546040516001600160a01b039091168152602001610135565b610128610536565b6101bb610230366004610d77565b610545565b6101bb610243366004610d2a565b6105d1565b610151610256366004610c61565b6106c7565b610151610269366004610c61565b610741565b6101bb61027c366004610c89565b61074e565b61016561028f366004610dbf565b61078d565b6101bb6102a2366004610cc2565b6107b7565b6060600480546102b690610df0565b80601f01602080910402602001604051908101604052809291908181526020018280546102e290610df0565b801561032d5780601f106103045761010080835404028352916020019161032d565b820191905f5260205f20905b81548152906001019060200180831161031057829003601f168201915b5050505050905090565b5f33610344818585610830565b60019150505b92915050565b5f3361035d85828561094b565b6103688585856109bd565b506001949350505050565b5f33610344818585610385838361078d565b61038f9190610e3c565b610830565b73d0670a56e2587904bd59e3bf594ea58c968306c133146103fc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b610426610b53565b61042f5f610bac565b565b5f5b8381101561052f5784848281811061044d5761044d610e4f565b90506020020160208101906104629190610cc2565b600654604080515f80825260208201889052818301879052606082015290516001600160a01b0393841693909216917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a36007546001600160a01b03168585838181106104d9576104d9610e4f565b90506020020160208101906104ee9190610cc2565b6001600160a01b03165f80516020610e7c8339815191528560405161051591815260200190565b60405180910390a38061052781610e63565b915050610433565b5050505050565b6060600580546102b690610df0565b5f5b828110156105cb573084848381811061056257610562610e4f565b90506020020160208101906105779190610cc2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516105b191815260200190565b60405180910390a3806105c381610e63565b915050610547565b50505050565b5f5b8381101561052f578484828181106105ed576105ed610e4f565b90506020020160208101906106029190610cc2565b600654604080518681525f60208201819052818301526060810186905290516001600160a01b0393841693909216917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a384848281811061066d5761066d610e4f565b90506020020160208101906106829190610cc2565b6007546040518481526001600160a01b0392831692909116905f80516020610e7c8339815191529060200160405180910390a3806106bf81610e63565b9150506105d3565b5f33816106d4828661078d565b9050838110156107345760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103f3565b6103688286868403610830565b5f336103448185856109bd565b816001600160a01b0316836001600160a01b03165f80516020610e7c8339815191528360405161078091815260200190565b60405180910390a3505050565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6107bf610b53565b6001600160a01b0381166108245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f3565b61082d81610bac565b50565b6001600160a01b0383166108925760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f3565b6001600160a01b0382166108f35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f3565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259101610780565b5f610956848461078d565b90505f1981146105cb57818110156109b05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103f3565b6105cb8484848403610830565b6001600160a01b038316610a215760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f3565b6001600160a01b038216610a835760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f3565b6001600160a01b0383165f9081526001602052604090205481811015610afa5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f3565b6001600160a01b038085165f8181526001602052604080822086860390559286168082529083902080548601905591515f80516020610e7c83398151915290610b469086815260200190565b60405180910390a36105cb565b5f546001600160a01b0316331461042f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f3565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6020808352835180828501525f5b81811015610c2657858101830151858201604001528201610c0a565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c5c575f80fd5b919050565b5f8060408385031215610c72575f80fd5b610c7b83610c46565b946020939093013593505050565b5f805f60608486031215610c9b575f80fd5b610ca484610c46565b9250610cb260208501610c46565b9150604084013590509250925092565b5f60208284031215610cd2575f80fd5b610cdb82610c46565b9392505050565b5f8083601f840112610cf2575f80fd5b50813567ffffffffffffffff811115610d09575f80fd5b6020830191508360208260051b8501011115610d23575f80fd5b9250929050565b5f805f8060608587031215610d3d575f80fd5b843567ffffffffffffffff811115610d53575f80fd5b610d5f87828801610ce2565b90989097506020870135966040013595509350505050565b5f805f60408486031215610d89575f80fd5b833567ffffffffffffffff811115610d9f575f80fd5b610dab86828701610ce2565b909790965060209590950135949350505050565b5f8060408385031215610dd0575f80fd5b610dd983610c46565b9150610de760208401610c46565b90509250929050565b600181811c90821680610e0457607f821691505b602082108103610e2257634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561034a5761034a610e28565b634e487b7160e01b5f52603260045260245ffd5b5f60018201610e7457610e74610e28565b506001019056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220feafcd88fd7351412d28a8af20b7907e1ed1cc2bb438b8efb5a78c7e6825df9964736f6c63430008140033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000002540be4000000000000000000000000000000000000000000000000000000000000000007504550455841490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000075045504558414900000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): PEPEXAI
Arg [1] : symbol_ (string): PEPEXAI
Arg [2] : amount (uint256): 10000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000002540be400
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 5045504558414900000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 5045504558414900000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

8075:11468:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8733:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12040:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;12040:201:0;1004:187:1;10809:108:0;10897:12;;10809:108;;;1342:25:1;;;1330:2;1315:18;10809:108:0;1196:177:1;12821:295:0;;;;;;:::i;:::-;;:::i;9695:92::-;;;9778:1;1853:36:1;;1841:2;1826:18;9695:92:0;1711:184:1;13525:238:0;;;;;;:::i;:::-;;:::i;8473:190::-;;;;;;:::i;:::-;;:::i;:::-;;10980:127;;;;;;:::i;:::-;-1:-1:-1;;;;;11081:18:0;11054:7;11081:18;;;:9;:18;;;;;;;10980:127;6062:103;;;:::i;10325:292::-;;;;;;:::i;:::-;;:::i;5421:87::-;5467:7;5494:6;5421:87;;-1:-1:-1;;;;;5494:6:0;;;3187:51:1;;3175:2;3160:18;5421:87:0;3041:203:1;8952:104:0;;;:::i;9795:225::-;;;;;;:::i;:::-;;:::i;10026:291::-;;;;;;:::i;:::-;;:::i;14266:436::-;;;;;;:::i;:::-;;:::i;11313:193::-;;;;;;:::i;:::-;;:::i;10625:119::-;;;;;;:::i;:::-;;:::i;11569:151::-;;;;;;:::i;:::-;;:::i;6320:201::-;;;;;;:::i;:::-;;:::i;8733:100::-;8787:13;8820:5;8813:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8733:100;:::o;12040:201::-;12123:4;4210:10;12179:32;4210:10;12195:7;12204:6;12179:8;:32::i;:::-;12229:4;12222:11;;;12040:201;;;;;:::o;12821:295::-;12952:4;4210:10;13010:38;13026:4;4210:10;13041:6;13010:15;:38::i;:::-;13059:27;13069:4;13075:2;13079:6;13059:9;:27::i;:::-;-1:-1:-1;13104:4:0;;12821:295;-1:-1:-1;;;;12821:295:0:o;13525:238::-;13613:4;4210:10;13669:64;4210:10;13685:7;13722:10;13694:25;4210:10;13685:7;13694:9;:25::i;:::-;:38;;;;:::i;:::-;13669:8;:64::i;8473:190::-;8534:42;4210:10;8534:58;8526:103;;;;-1:-1:-1;;;8526:103:0;;4873:2:1;8526:103:0;;;4855:21:1;;;4892:18;;;4885:30;4951:34;4931:18;;;4924:62;5003:18;;8526:103:0;;;;;;;;;8640:5;:15;;-1:-1:-1;;;;;;8640:15:0;-1:-1:-1;;;;;8640:15:0;;;;;;;;;;8473:190::o;6062:103::-;5307:13;:11;:13::i;:::-;6127:30:::1;6154:1;6127:18;:30::i;:::-;6062:103::o:0;10325:292::-;10429:9;10424:186;10444:22;;;10424:186;;;10527:11;;10539:1;10527:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;10498:10;;10493:49;;;10498:10;5411:25:1;;;5467:2;5452:18;;5445:34;;;5495:18;;;5488:34;;;5553:2;5538:18;;5531:34;10493:49:0;;-1:-1:-1;;;;;10493:49:0;;;;10498:10;;;;10493:49;;;;;5398:3:1;10493:49:0;;;10587:5;;-1:-1:-1;;;;;10587:5:0;10571:11;;10583:1;10571:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;10562:36:0;-1:-1:-1;;;;;;;;;;;10594:3:0;10562:36;;;;1342:25:1;;1330:2;1315:18;;1196:177;10562:36:0;;;;;;;;10468:3;;;;:::i;:::-;;;;10424:186;;;;10325:292;;;;:::o;8952:104::-;9008:13;9041:7;9034:14;;;;;:::i;9795:225::-;9889:9;9884:129;9904:22;;;9884:129;;;9986:4;9962:11;;9974:1;9962:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;9953:48:0;;9993:7;9953:48;;;;1342:25:1;;1330:2;1315:18;;1196:177;9953:48:0;;;;;;;;9928:3;;;;:::i;:::-;;;;9884:129;;;;9795:225;;;:::o;10026:291::-;10128:9;10123:187;10143:22;;;10123:187;;;10226:11;;10238:1;10226:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;10197:10;;10192:49;;;5411:25:1;;;10197:10:0;5467:2:1;5452:18;;5445:34;;;5495:18;;;5488:34;5553:2;5538:18;;5531:34;;;10192:49:0;;-1:-1:-1;;;;;10192:49:0;;;;10197:10;;;;10192:49;;;;;5398:3:1;10192:49:0;;;10277:11;;10289:1;10277:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;10270:5;;10261:37;;1342:25:1;;;-1:-1:-1;;;;;10261:37:0;;;;10270:5;;;;-1:-1:-1;;;;;;;;;;;10261:37:0;1330:2:1;1315:18;10261:37:0;;;;;;;10167:3;;;;:::i;:::-;;;;10123:187;;14266:436;14359:4;4210:10;14359:4;14442:25;4210:10;14459:7;14442:9;:25::i;:::-;14415:52;;14506:15;14486:16;:35;;14478:85;;;;-1:-1:-1;;;14478:85:0;;6330:2:1;14478:85:0;;;6312:21:1;6369:2;6349:18;;;6342:30;6408:34;6388:18;;;6381:62;-1:-1:-1;;;6459:18:1;;;6452:35;6504:19;;14478:85:0;6128:401:1;14478:85:0;14599:60;14608:5;14615:7;14643:15;14624:16;:34;14599:8;:60::i;11313:193::-;11392:4;4210:10;11448:28;4210:10;11465:2;11469:6;11448:9;:28::i;10625:119::-;10726:3;-1:-1:-1;;;;;10710:26:0;10719:5;-1:-1:-1;;;;;10710:26:0;-1:-1:-1;;;;;;;;;;;10731:4:0;10710:26;;;;1342:25:1;;1330:2;1315:18;;1196:177;10710:26:0;;;;;;;;10625:119;;;:::o;11569:151::-;-1:-1:-1;;;;;11685:18:0;;;11658:7;11685:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11569:151::o;6320:201::-;5307:13;:11;:13::i;:::-;-1:-1:-1;;;;;6409:22:0;::::1;6401:73;;;::::0;-1:-1:-1;;;6401:73:0;;6736:2:1;6401:73:0::1;::::0;::::1;6718:21:1::0;6775:2;6755:18;;;6748:30;6814:34;6794:18;;;6787:62;-1:-1:-1;;;6865:18:1;;;6858:36;6911:19;;6401:73:0::1;6534:402:1::0;6401:73:0::1;6485:28;6504:8;6485:18;:28::i;:::-;6320:201:::0;:::o;17178:380::-;-1:-1:-1;;;;;17314:19:0;;17306:68;;;;-1:-1:-1;;;17306:68:0;;7143:2:1;17306:68:0;;;7125:21:1;7182:2;7162:18;;;7155:30;7221:34;7201:18;;;7194:62;-1:-1:-1;;;7272:18:1;;;7265:34;7316:19;;17306:68:0;6941:400:1;17306:68:0;-1:-1:-1;;;;;17393:21:0;;17385:68;;;;-1:-1:-1;;;17385:68:0;;7548:2:1;17385:68:0;;;7530:21:1;7587:2;7567:18;;;7560:30;7626:34;7606:18;;;7599:62;-1:-1:-1;;;7677:18:1;;;7670:32;7719:19;;17385:68:0;7346:398:1;17385:68:0;-1:-1:-1;;;;;17466:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17518:32;;1342:25:1;;;17518:32:0;;1315:18:1;17518:32:0;1196:177:1;17849:453:0;17984:24;18011:25;18021:5;18028:7;18011:9;:25::i;:::-;17984:52;;-1:-1:-1;;18051:16:0;:37;18047:248;;18133:6;18113:16;:26;;18105:68;;;;-1:-1:-1;;;18105:68:0;;7951:2:1;18105:68:0;;;7933:21:1;7990:2;7970:18;;;7963:30;8029:31;8009:18;;;8002:59;8078:18;;18105:68:0;7749:353:1;18105:68:0;18217:51;18226:5;18233:7;18261:6;18242:16;:25;18217:8;:51::i;15172:791::-;-1:-1:-1;;;;;15303:18:0;;15295:68;;;;-1:-1:-1;;;15295:68:0;;8309:2:1;15295:68:0;;;8291:21:1;8348:2;8328:18;;;8321:30;8387:34;8367:18;;;8360:62;-1:-1:-1;;;8438:18:1;;;8431:35;8483:19;;15295:68:0;8107:401:1;15295:68:0;-1:-1:-1;;;;;15382:16:0;;15374:64;;;;-1:-1:-1;;;15374:64:0;;8715:2:1;15374:64:0;;;8697:21:1;8754:2;8734:18;;;8727:30;8793:34;8773:18;;;8766:62;-1:-1:-1;;;8844:18:1;;;8837:33;8887:19;;15374:64:0;8513:399:1;15374:64:0;-1:-1:-1;;;;;15475:15:0;;15453:19;15475:15;;;:9;:15;;;;;;15509:21;;;;15501:72;;;;-1:-1:-1;;;15501:72:0;;9119:2:1;15501:72:0;;;9101:21:1;9158:2;9138:18;;;9131:30;9197:34;9177:18;;;9170:62;-1:-1:-1;;;9248:18:1;;;9241:36;9294:19;;15501:72:0;8917:402:1;15501:72:0;-1:-1:-1;;;;;15609:15:0;;;;;;;:9;:15;;;;;;15627:20;;;15609:38;;15827:13;;;;;;;;;;:23;;;;;;15879:26;;-1:-1:-1;;;;;;;;;;;15879:26:0;;;15641:6;1342:25:1;;1330:2;1315:18;;1196:177;15879:26:0;;;;;;;;15918:37;18906:124;5586:132;5467:7;5494:6;-1:-1:-1;;;;;5494:6:0;4210:10;5650:23;5642:68;;;;-1:-1:-1;;;5642:68:0;;4873:2:1;5642:68:0;;;4855:21:1;;;4892:18;;;4885:30;4951:34;4931:18;;;4924:62;5003:18;;5642:68:0;4671:356:1;6681:191:0;6755:16;6774:6;;-1:-1:-1;;;;;6791:17:0;;;-1:-1:-1;;;;;;6791:17:0;;;;;;6824:40;;6774:6;;;;;;;6824:40;;6755:16;6824:40;6744:128;6681:191;:::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;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;:::-;2041:39;1900:186;-1:-1:-1;;;1900:186:1:o;2091:367::-;2154:8;2164:6;2218:3;2211:4;2203:6;2199:17;2195:27;2185:55;;2236:1;2233;2226:12;2185:55;-1:-1:-1;2259:20:1;;2302:18;2291:30;;2288:50;;;2334:1;2331;2324:12;2288:50;2371:4;2363:6;2359:17;2347:29;;2431:3;2424:4;2414:6;2411:1;2407:14;2399:6;2395:27;2391:38;2388:47;2385:67;;;2448:1;2445;2438:12;2385:67;2091:367;;;;;:::o;2463:573::-;2567:6;2575;2583;2591;2644:2;2632:9;2623:7;2619:23;2615:32;2612:52;;;2660:1;2657;2650:12;2612:52;2700:9;2687:23;2733:18;2725:6;2722:30;2719:50;;;2765:1;2762;2755:12;2719:50;2804:70;2866:7;2857:6;2846:9;2842:22;2804:70;:::i;:::-;2893:8;;2778:96;;-1:-1:-1;2975:2:1;2960:18;;2947:32;;3026:2;3011:18;2998:32;;-1:-1:-1;2463:573:1;-1:-1:-1;;;;2463:573:1:o;3249:505::-;3344:6;3352;3360;3413:2;3401:9;3392:7;3388:23;3384:32;3381:52;;;3429:1;3426;3419:12;3381:52;3469:9;3456:23;3502:18;3494:6;3491:30;3488:50;;;3534:1;3531;3524:12;3488:50;3573:70;3635:7;3626:6;3615:9;3611:22;3573:70;:::i;:::-;3662:8;;3547:96;;-1:-1:-1;3744:2:1;3729:18;;;;3716:32;;3249:505;-1:-1:-1;;;;3249:505:1:o;3759:260::-;3827:6;3835;3888:2;3876:9;3867:7;3863:23;3859:32;3856:52;;;3904:1;3901;3894:12;3856:52;3927:29;3946:9;3927:29;:::i;:::-;3917:39;;3975:38;4009:2;3998:9;3994:18;3975:38;:::i;:::-;3965:48;;3759:260;;;;;:::o;4024:380::-;4103:1;4099:12;;;;4146;;;4167:61;;4221:4;4213:6;4209:17;4199:27;;4167:61;4274:2;4266:6;4263:14;4243:18;4240:38;4237:161;;4320:10;4315:3;4311:20;4308:1;4301:31;4355:4;4352:1;4345:15;4383:4;4380:1;4373:15;4237:161;;4024:380;;;:::o;4409:127::-;4470:10;4465:3;4461:20;4458:1;4451:31;4501:4;4498:1;4491:15;4525:4;4522:1;4515:15;4541:125;4606:9;;;4627:10;;;4624:36;;;4640:18;;:::i;5032:127::-;5093:10;5088:3;5084:20;5081:1;5074:31;5124:4;5121:1;5114:15;5148:4;5145:1;5138:15;5576:135;5615:3;5636:17;;;5633:43;;5656:18;;:::i;:::-;-1:-1:-1;5703:1:1;5692:13;;5576:135::o

Swarm Source

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