ETH Price: $3,103.18 (-0.81%)

Token

Pizama token (PZM)
 

Overview

Max Total Supply

60,000,000,000,000 PZM

Holders

43

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
439,022,764,626.364105882777580284 PZM

Value
$0.00
0x6C24c081eb72e18908DB7C514A16Bee4Ed07cdd7
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:
Pizama

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-05-07
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

interface IERC20 {
    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(address indexed owner, address indexed spender, uint256 value);

    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function transfer(address to, uint256 amount) external returns (bool);

    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function decimals() external view returns(uint256);
    function symbol() external view returns(string memory);
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

contract ERC20 is Context, IERC20 {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual 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 default value returned by this function, unless
     * it's 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() external view virtual override returns (uint256) {
        return 18;
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

contract Pizama is ERC20{
    address internal _owner;

    constructor() ERC20("Pizama token", "PZM"){
        _owner = msg.sender;
        _mint(_owner, 60000000000000000000000000000000);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600c81526020017f50697a616d6120746f6b656e00000000000000000000000000000000000000008152506040518060400160405280600381526020017f505a4d000000000000000000000000000000000000000000000000000000000081525081600390816200008f91906200051e565b508060049081620000a191906200051e565b50505033600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000127600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166d02f54e74c0d08367c2e7000000006200012d60201b60201c565b62000720565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200019f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001969062000666565b60405180910390fd5b620001b3600083836200029a60201b60201c565b8060026000828254620001c79190620006b7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200027a919062000703565b60405180910390a362000296600083836200029f60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200032657607f821691505b6020821081036200033c576200033b620002de565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003a67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000367565b620003b2868362000367565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003ff620003f9620003f384620003ca565b620003d4565b620003ca565b9050919050565b6000819050919050565b6200041b83620003de565b620004336200042a8262000406565b84845462000374565b825550505050565b600090565b6200044a6200043b565b6200045781848462000410565b505050565b5b818110156200047f576200047360008262000440565b6001810190506200045d565b5050565b601f821115620004ce57620004988162000342565b620004a38462000357565b81016020851015620004b3578190505b620004cb620004c28562000357565b8301826200045c565b50505b505050565b600082821c905092915050565b6000620004f360001984600802620004d3565b1980831691505092915050565b60006200050e8383620004e0565b9150826002028217905092915050565b6200052982620002a4565b67ffffffffffffffff811115620005455762000544620002af565b5b6200055182546200030d565b6200055e82828562000483565b600060209050601f83116001811462000596576000841562000581578287015190505b6200058d858262000500565b865550620005fd565b601f198416620005a68662000342565b60005b82811015620005d057848901518255600182019150602085019450602081019050620005a9565b86831015620005f05784890151620005ec601f891682620004e0565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200064e601f8362000605565b91506200065b8262000616565b602082019050919050565b6000602082019050818103600083015262000681816200063f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620006c482620003ca565b9150620006d183620003ca565b9250828201905080821115620006ec57620006eb62000688565b5b92915050565b620006fd81620003ca565b82525050565b60006020820190506200071a6000830184620006f2565b92915050565b610fdf80620007306000396000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c8063313ce56711610066578063313ce5671461013457806370a082311461015257806395d89b4114610182578063a9059cbb146101a0578063dd62ed3e146101d057610093565b806306fdde0314610098578063095ea7b3146100b657806318160ddd146100e657806323b872dd14610104575b600080fd5b6100a0610200565b6040516100ad91906109e8565b60405180910390f35b6100d060048036038101906100cb9190610aa3565b610292565b6040516100dd9190610afe565b60405180910390f35b6100ee6102b5565b6040516100fb9190610b28565b60405180910390f35b61011e60048036038101906101199190610b43565b6102bf565b60405161012b9190610afe565b60405180910390f35b61013c6102ee565b6040516101499190610b28565b60405180910390f35b61016c60048036038101906101679190610b96565b6102f7565b6040516101799190610b28565b60405180910390f35b61018a61033f565b60405161019791906109e8565b60405180910390f35b6101ba60048036038101906101b59190610aa3565b6103d1565b6040516101c79190610afe565b60405180910390f35b6101ea60048036038101906101e59190610bc3565b6103f4565b6040516101f79190610b28565b60405180910390f35b60606003805461020f90610c32565b80601f016020809104026020016040519081016040528092919081815260200182805461023b90610c32565b80156102885780601f1061025d57610100808354040283529160200191610288565b820191906000526020600020905b81548152906001019060200180831161026b57829003601f168201915b5050505050905090565b60008061029d61047b565b90506102aa818585610483565b600191505092915050565b6000600254905090565b6000806102ca61047b565b90506102d785828561064c565b6102e28585856106d8565b60019150509392505050565b60006012905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461034e90610c32565b80601f016020809104026020016040519081016040528092919081815260200182805461037a90610c32565b80156103c75780601f1061039c576101008083540402835291602001916103c7565b820191906000526020600020905b8154815290600101906020018083116103aa57829003601f168201915b5050505050905090565b6000806103dc61047b565b90506103e98185856106d8565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036104f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e990610cd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055890610d67565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161063f9190610b28565b60405180910390a3505050565b600061065884846103f4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106d257818110156106c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106bb90610dd3565b60405180910390fd5b6106d18484848403610483565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073e90610e65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ad90610ef7565b60405180910390fd5b6107c183838361094e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083e90610f89565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109359190610b28565b60405180910390a3610948848484610953565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610992578082015181840152602081019050610977565b60008484015250505050565b6000601f19601f8301169050919050565b60006109ba82610958565b6109c48185610963565b93506109d4818560208601610974565b6109dd8161099e565b840191505092915050565b60006020820190508181036000830152610a0281846109af565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610a3a82610a0f565b9050919050565b610a4a81610a2f565b8114610a5557600080fd5b50565b600081359050610a6781610a41565b92915050565b6000819050919050565b610a8081610a6d565b8114610a8b57600080fd5b50565b600081359050610a9d81610a77565b92915050565b60008060408385031215610aba57610ab9610a0a565b5b6000610ac885828601610a58565b9250506020610ad985828601610a8e565b9150509250929050565b60008115159050919050565b610af881610ae3565b82525050565b6000602082019050610b136000830184610aef565b92915050565b610b2281610a6d565b82525050565b6000602082019050610b3d6000830184610b19565b92915050565b600080600060608486031215610b5c57610b5b610a0a565b5b6000610b6a86828701610a58565b9350506020610b7b86828701610a58565b9250506040610b8c86828701610a8e565b9150509250925092565b600060208284031215610bac57610bab610a0a565b5b6000610bba84828501610a58565b91505092915050565b60008060408385031215610bda57610bd9610a0a565b5b6000610be885828601610a58565b9250506020610bf985828601610a58565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610c4a57607f821691505b602082108103610c5d57610c5c610c03565b5b50919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000610cbf602483610963565b9150610cca82610c63565b604082019050919050565b60006020820190508181036000830152610cee81610cb2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000610d51602283610963565b9150610d5c82610cf5565b604082019050919050565b60006020820190508181036000830152610d8081610d44565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000610dbd601d83610963565b9150610dc882610d87565b602082019050919050565b60006020820190508181036000830152610dec81610db0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000610e4f602583610963565b9150610e5a82610df3565b604082019050919050565b60006020820190508181036000830152610e7e81610e42565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000610ee1602383610963565b9150610eec82610e85565b604082019050919050565b60006020820190508181036000830152610f1081610ed4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000610f73602683610963565b9150610f7e82610f17565b604082019050919050565b60006020820190508181036000830152610fa281610f66565b905091905056fea2646970667358221220f66a427c0b7cc39cb7e0e59bbe4e666b7ddd193e1c406e1621022bf618a36fce64736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100935760003560e01c8063313ce56711610066578063313ce5671461013457806370a082311461015257806395d89b4114610182578063a9059cbb146101a0578063dd62ed3e146101d057610093565b806306fdde0314610098578063095ea7b3146100b657806318160ddd146100e657806323b872dd14610104575b600080fd5b6100a0610200565b6040516100ad91906109e8565b60405180910390f35b6100d060048036038101906100cb9190610aa3565b610292565b6040516100dd9190610afe565b60405180910390f35b6100ee6102b5565b6040516100fb9190610b28565b60405180910390f35b61011e60048036038101906101199190610b43565b6102bf565b60405161012b9190610afe565b60405180910390f35b61013c6102ee565b6040516101499190610b28565b60405180910390f35b61016c60048036038101906101679190610b96565b6102f7565b6040516101799190610b28565b60405180910390f35b61018a61033f565b60405161019791906109e8565b60405180910390f35b6101ba60048036038101906101b59190610aa3565b6103d1565b6040516101c79190610afe565b60405180910390f35b6101ea60048036038101906101e59190610bc3565b6103f4565b6040516101f79190610b28565b60405180910390f35b60606003805461020f90610c32565b80601f016020809104026020016040519081016040528092919081815260200182805461023b90610c32565b80156102885780601f1061025d57610100808354040283529160200191610288565b820191906000526020600020905b81548152906001019060200180831161026b57829003601f168201915b5050505050905090565b60008061029d61047b565b90506102aa818585610483565b600191505092915050565b6000600254905090565b6000806102ca61047b565b90506102d785828561064c565b6102e28585856106d8565b60019150509392505050565b60006012905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461034e90610c32565b80601f016020809104026020016040519081016040528092919081815260200182805461037a90610c32565b80156103c75780601f1061039c576101008083540402835291602001916103c7565b820191906000526020600020905b8154815290600101906020018083116103aa57829003601f168201915b5050505050905090565b6000806103dc61047b565b90506103e98185856106d8565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036104f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e990610cd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055890610d67565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161063f9190610b28565b60405180910390a3505050565b600061065884846103f4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106d257818110156106c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106bb90610dd3565b60405180910390fd5b6106d18484848403610483565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073e90610e65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ad90610ef7565b60405180910390fd5b6107c183838361094e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083e90610f89565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109359190610b28565b60405180910390a3610948848484610953565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610992578082015181840152602081019050610977565b60008484015250505050565b6000601f19601f8301169050919050565b60006109ba82610958565b6109c48185610963565b93506109d4818560208601610974565b6109dd8161099e565b840191505092915050565b60006020820190508181036000830152610a0281846109af565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610a3a82610a0f565b9050919050565b610a4a81610a2f565b8114610a5557600080fd5b50565b600081359050610a6781610a41565b92915050565b6000819050919050565b610a8081610a6d565b8114610a8b57600080fd5b50565b600081359050610a9d81610a77565b92915050565b60008060408385031215610aba57610ab9610a0a565b5b6000610ac885828601610a58565b9250506020610ad985828601610a8e565b9150509250929050565b60008115159050919050565b610af881610ae3565b82525050565b6000602082019050610b136000830184610aef565b92915050565b610b2281610a6d565b82525050565b6000602082019050610b3d6000830184610b19565b92915050565b600080600060608486031215610b5c57610b5b610a0a565b5b6000610b6a86828701610a58565b9350506020610b7b86828701610a58565b9250506040610b8c86828701610a8e565b9150509250925092565b600060208284031215610bac57610bab610a0a565b5b6000610bba84828501610a58565b91505092915050565b60008060408385031215610bda57610bd9610a0a565b5b6000610be885828601610a58565b9250506020610bf985828601610a58565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610c4a57607f821691505b602082108103610c5d57610c5c610c03565b5b50919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000610cbf602483610963565b9150610cca82610c63565b604082019050919050565b60006020820190508181036000830152610cee81610cb2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000610d51602283610963565b9150610d5c82610cf5565b604082019050919050565b60006020820190508181036000830152610d8081610d44565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000610dbd601d83610963565b9150610dc882610d87565b602082019050919050565b60006020820190508181036000830152610dec81610db0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000610e4f602583610963565b9150610e5a82610df3565b604082019050919050565b60006020820190508181036000830152610e7e81610e42565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000610ee1602383610963565b9150610eec82610e85565b604082019050919050565b60006020820190508181036000830152610f1081610ed4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000610f73602683610963565b9150610f7e82610f17565b604082019050919050565b60006020820190508181036000830152610fa281610f66565b905091905056fea2646970667358221220f66a427c0b7cc39cb7e0e59bbe4e666b7ddd193e1c406e1621022bf618a36fce64736f6c63430008120033

Deployed Bytecode Sourcemap

10237:204:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1843:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4198:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2967:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4979:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2805:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3138:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2053:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3471:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3727:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1843:91;1888:13;1921:5;1914:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1843:91;:::o;4198:201::-;4281:4;4298:13;4314:12;:10;:12::i;:::-;4298:28;;4337:32;4346:5;4353:7;4362:6;4337:8;:32::i;:::-;4387:4;4380:11;;;4198:201;;;;:::o;2967:108::-;3028:7;3055:12;;3048:19;;2967:108;:::o;4979:261::-;5076:4;5093:15;5111:12;:10;:12::i;:::-;5093:30;;5134:38;5150:4;5156:7;5165:6;5134:15;:38::i;:::-;5183:27;5193:4;5199:2;5203:6;5183:9;:27::i;:::-;5228:4;5221:11;;;4979:261;;;;;:::o;2805:97::-;2865:7;2892:2;2885:9;;2805:97;:::o;3138:127::-;3212:7;3239:9;:18;3249:7;3239:18;;;;;;;;;;;;;;;;3232:25;;3138:127;;;:::o;2053:104::-;2109:13;2142:7;2135:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2053:104;:::o;3471:193::-;3550:4;3567:13;3583:12;:10;:12::i;:::-;3567:28;;3606;3616:5;3623:2;3627:6;3606:9;:28::i;:::-;3652:4;3645:11;;;3471:193;;;;:::o;3727:151::-;3816:7;3843:11;:18;3855:5;3843:18;;;;;;;;;;;;;;;:27;3862:7;3843:27;;;;;;;;;;;;;;;;3836:34;;3727:151;;;;:::o;995:98::-;1048:7;1075:10;1068:17;;995:98;:::o;7789:346::-;7908:1;7891:19;;:5;:19;;;7883:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7989:1;7970:21;;:7;:21;;;7962:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8073:6;8043:11;:18;8055:5;8043:18;;;;;;;;;;;;;;;:27;8062:7;8043:27;;;;;;;;;;;;;;;:36;;;;8111:7;8095:32;;8104:5;8095:32;;;8120:6;8095:32;;;;;;:::i;:::-;;;;;;;;7789:346;;;:::o;8426:419::-;8527:24;8554:25;8564:5;8571:7;8554:9;:25::i;:::-;8527:52;;8614:17;8594:16;:37;8590:248;;8676:6;8656:16;:26;;8648:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8760:51;8769:5;8776:7;8804:6;8785:16;:25;8760:8;:51::i;:::-;8590:248;8516:329;8426:419;;;:::o;5710:806::-;5823:1;5807:18;;:4;:18;;;5799:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5900:1;5886:16;;:2;:16;;;5878:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;5955:38;5976:4;5982:2;5986:6;5955:20;:38::i;:::-;6006:19;6028:9;:15;6038:4;6028:15;;;;;;;;;;;;;;;;6006:37;;6077:6;6062:11;:21;;6054:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;6194:6;6180:11;:20;6162:9;:15;6172:4;6162:15;;;;;;;;;;;;;;;:38;;;;6397:6;6380:9;:13;6390:2;6380:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;6447:2;6432:26;;6441:4;6432:26;;;6451:6;6432:26;;;;;;:::i;:::-;;;;;;;;6471:37;6491:4;6497:2;6501:6;6471:19;:37::i;:::-;5788:728;5710:806;;;:::o;9445:91::-;;;;:::o;10140:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:329::-;4482:6;4531:2;4519:9;4510:7;4506:23;4502:32;4499:119;;;4537:79;;:::i;:::-;4499:119;4657:1;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4628:117;4423:329;;;;:::o;4758:474::-;4826:6;4834;4883:2;4871:9;4862:7;4858:23;4854:32;4851:119;;;4889:79;;:::i;:::-;4851:119;5009:1;5034:53;5079:7;5070:6;5059:9;5055:22;5034:53;:::i;:::-;5024:63;;4980:117;5136:2;5162:53;5207:7;5198:6;5187:9;5183:22;5162:53;:::i;:::-;5152:63;;5107:118;4758:474;;;;;:::o;5238:180::-;5286:77;5283:1;5276:88;5383:4;5380:1;5373:15;5407:4;5404:1;5397:15;5424:320;5468:6;5505:1;5499:4;5495:12;5485:22;;5552:1;5546:4;5542:12;5573:18;5563:81;;5629:4;5621:6;5617:17;5607:27;;5563:81;5691:2;5683:6;5680:14;5660:18;5657:38;5654:84;;5710:18;;:::i;:::-;5654:84;5475:269;5424:320;;;:::o;5750:223::-;5890:34;5886:1;5878:6;5874:14;5867:58;5959:6;5954:2;5946:6;5942:15;5935:31;5750:223;:::o;5979:366::-;6121:3;6142:67;6206:2;6201:3;6142:67;:::i;:::-;6135:74;;6218:93;6307:3;6218:93;:::i;:::-;6336:2;6331:3;6327:12;6320:19;;5979:366;;;:::o;6351:419::-;6517:4;6555:2;6544:9;6540:18;6532:26;;6604:9;6598:4;6594:20;6590:1;6579:9;6575:17;6568:47;6632:131;6758:4;6632:131;:::i;:::-;6624:139;;6351:419;;;:::o;6776:221::-;6916:34;6912:1;6904:6;6900:14;6893:58;6985:4;6980:2;6972:6;6968:15;6961:29;6776:221;:::o;7003:366::-;7145:3;7166:67;7230:2;7225:3;7166:67;:::i;:::-;7159:74;;7242:93;7331:3;7242:93;:::i;:::-;7360:2;7355:3;7351:12;7344:19;;7003:366;;;:::o;7375:419::-;7541:4;7579:2;7568:9;7564:18;7556:26;;7628:9;7622:4;7618:20;7614:1;7603:9;7599:17;7592:47;7656:131;7782:4;7656:131;:::i;:::-;7648:139;;7375:419;;;:::o;7800:179::-;7940:31;7936:1;7928:6;7924:14;7917:55;7800:179;:::o;7985:366::-;8127:3;8148:67;8212:2;8207:3;8148:67;:::i;:::-;8141:74;;8224:93;8313:3;8224:93;:::i;:::-;8342:2;8337:3;8333:12;8326:19;;7985:366;;;:::o;8357:419::-;8523:4;8561:2;8550:9;8546:18;8538:26;;8610:9;8604:4;8600:20;8596:1;8585:9;8581:17;8574:47;8638:131;8764:4;8638:131;:::i;:::-;8630:139;;8357:419;;;:::o;8782:224::-;8922:34;8918:1;8910:6;8906:14;8899:58;8991:7;8986:2;8978:6;8974:15;8967:32;8782:224;:::o;9012:366::-;9154:3;9175:67;9239:2;9234:3;9175:67;:::i;:::-;9168:74;;9251:93;9340:3;9251:93;:::i;:::-;9369:2;9364:3;9360:12;9353:19;;9012:366;;;:::o;9384:419::-;9550:4;9588:2;9577:9;9573:18;9565:26;;9637:9;9631:4;9627:20;9623:1;9612:9;9608:17;9601:47;9665:131;9791:4;9665:131;:::i;:::-;9657:139;;9384:419;;;:::o;9809:222::-;9949:34;9945:1;9937:6;9933:14;9926:58;10018:5;10013:2;10005:6;10001:15;9994:30;9809:222;:::o;10037:366::-;10179:3;10200:67;10264:2;10259:3;10200:67;:::i;:::-;10193:74;;10276:93;10365:3;10276:93;:::i;:::-;10394:2;10389:3;10385:12;10378:19;;10037:366;;;:::o;10409:419::-;10575:4;10613:2;10602:9;10598:18;10590:26;;10662:9;10656:4;10652:20;10648:1;10637:9;10633:17;10626:47;10690:131;10816:4;10690:131;:::i;:::-;10682:139;;10409:419;;;:::o;10834:225::-;10974:34;10970:1;10962:6;10958:14;10951:58;11043:8;11038:2;11030:6;11026:15;11019:33;10834:225;:::o;11065:366::-;11207:3;11228:67;11292:2;11287:3;11228:67;:::i;:::-;11221:74;;11304:93;11393:3;11304:93;:::i;:::-;11422:2;11417:3;11413:12;11406:19;;11065:366;;;:::o;11437:419::-;11603:4;11641:2;11630:9;11626:18;11618:26;;11690:9;11684:4;11680:20;11676:1;11665:9;11661:17;11654:47;11718:131;11844:4;11718:131;:::i;:::-;11710:139;;11437:419;;;:::o

Swarm Source

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