ETH Price: $2,526.99 (+2.79%)

Token

pepe in a memes world (PEM)
 

Overview

Max Total Supply

100,000,000,000,000 PEM

Holders

63

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
32,561,235,249.891401195089734459 PEM

Value
$0.00
0x000000fee13a103a10d593b9ae06b3e05f2e7e1c
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:
PEM

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2024-07-02
*/

/**

pepe in a memes world - PEM

A collection of pepe memes designed by his Artist and Community. Deployed for degen shitcoin trading and gambling on the ethereum blockchain.The memecoin, a collection of never ending pepe memes. 

- pepe in a memes world , OH FUKC.


https://t.me/pepeinamemesworldportal

*/



// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: PEM.sol


pragma solidity ^0.8.20;

contract PEM  is Ownable {
    mapping(address => uint256) private _balances;

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

    string private constant _name = "pepe in a memes world";
    string private constant _symbol = "PEM";
    uint8 private constant _decimals = 18;
    uint256 private constant _totalSupply = 100_000_000_000_000 * 10**_decimals;


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

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


    constructor() Ownable(msg.sender) {
        _balances[msg.sender] = _totalSupply;
        emit Transfer(address(0), msg.sender, _totalSupply);
        
    }
    

    function name() external view virtual returns (string memory) {
        return _name;
    }

    function symbol() external view virtual returns (string memory) {
        return _symbol;
    }

    function decimals() external view virtual returns (uint8) {
        return _decimals;
    }

    function totalSupply() external view virtual returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account)
        external
        view
        virtual
        returns (uint256)
    {
        return _balances[account];
    }

    function transfer(address to, uint256 amount)
        external
        virtual
        returns (bool)
    {
        address owner = msg.sender;
        require(owner != to, "ERC20: transfer to address cannot be owner");
        _transfer(owner, to, amount);
        return true;
    }

    function allowance(address owner, address spender)
        public
        view
        virtual
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        external
        virtual
        returns (bool)
    {
        address owner = msg.sender;
        _approve(owner, spender, amount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external virtual returns (bool) {
        address spender = msg.sender;
        require(
            spender != from,
            "ERC20: transferFrom spender can not be the from"
        );
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        external
        virtual
        returns (bool)
    {
        address owner = msg.sender;
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        external
        virtual
        returns (bool)
    {
        address owner = msg.sender;
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    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");
        require(amount > 0, "ERC20: transfer amount must be greater than zero");


        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561000f575f80fd5b50335f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610081575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016100789190610279565b60405180910390fd5b6100908161017960201b60201c565b506012600a61009f9190610403565b655af3107a40006100b0919061044d565b60015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503373ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6012600a61014e9190610403565b655af3107a400061015f919061044d565b60405161016c919061049d565b60405180910390a36104b6565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6102638261023a565b9050919050565b61027381610259565b82525050565b5f60208201905061028c5f83018461026a565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115610314578086048111156102f0576102ef610292565b5b60018516156102ff5780820291505b808102905061030d856102bf565b94506102d4565b94509492505050565b5f8261032c57600190506103e7565b81610339575f90506103e7565b816001811461034f576002811461035957610388565b60019150506103e7565b60ff84111561036b5761036a610292565b5b8360020a91508482111561038257610381610292565b5b506103e7565b5060208310610133831016604e8410600b84101617156103bd5782820a9050838111156103b8576103b7610292565b5b6103e7565b6103ca84848460016102cb565b925090508184048111156103e1576103e0610292565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f61040d826103ee565b9150610418836103f7565b92506104457fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461031d565b905092915050565b5f610457826103ee565b9150610462836103ee565b9250828202610470816103ee565b9150828204841483151761048757610486610292565b5b5092915050565b610497816103ee565b82525050565b5f6020820190506104b05f83018461048e565b92915050565b6117c1806104c35f395ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c8063715018a61161008a578063a457c2d711610064578063a457c2d71461024c578063a9059cbb1461027c578063dd62ed3e146102ac578063f2fde38b146102dc576100e8565b8063715018a6146102065780638da5cb5b1461021057806395d89b411461022e576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806339509351146101a657806370a08231146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102f8565b6040516101019190610dac565b60405180910390f35b610124600480360381019061011f9190610e5d565b610335565b6040516101319190610eb5565b60405180910390f35b610142610350565b60405161014f9190610edd565b60405180910390f35b610172600480360381019061016d9190610ef6565b610375565b60405161017f9190610eb5565b60405180910390f35b61019061040a565b60405161019d9190610f61565b60405180910390f35b6101c060048036038101906101bb9190610e5d565b610412565b6040516101cd9190610eb5565b60405180910390f35b6101f060048036038101906101eb9190610f7a565b610441565b6040516101fd9190610edd565b60405180910390f35b61020e610487565b005b61021861049a565b6040516102259190610fb4565b60405180910390f35b6102366104c1565b6040516102439190610dac565b60405180910390f35b61026660048036038101906102619190610e5d565b6104fe565b6040516102739190610eb5565b60405180910390f35b61029660048036038101906102919190610e5d565b61056c565b6040516102a39190610eb5565b60405180910390f35b6102c660048036038101906102c19190610fcd565b6105f5565b6040516102d39190610edd565b60405180910390f35b6102f660048036038101906102f19190610f7a565b610677565b005b60606040518060400160405280601581526020017f7065706520696e2061206d656d657320776f726c640000000000000000000000815250905090565b5f803390506103458185856106fb565b600191505092915050565b5f6012600a61035f9190611167565b655af3107a400061037091906111b1565b905090565b5f803390508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036103e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103df90611262565b60405180910390fd5b6103f38582856108be565b6103fe858585610949565b60019150509392505050565b5f6012905090565b5f8033905061043681858561042785896105f5565b6104319190611280565b6106fb565b600191505092915050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61048f610bed565b6104985f610c74565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f50454d0000000000000000000000000000000000000000000000000000000000815250905090565b5f803390505f61050e82866105f5565b905083811015610553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054a90611323565b60405180910390fd5b61056082868684036106fb565b60019250505092915050565b5f803390508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036105df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d6906113b1565b60405180910390fd5b6105ea818585610949565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61067f610bed565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106ef575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106e69190610fb4565b60405180910390fd5b6106f881610c74565b50565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610769576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107609061143f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ce906114cd565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108b19190610edd565b60405180910390a3505050565b5f6108c984846105f5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109435781811015610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c90611535565b60405180910390fd5b61094284848484036106fb565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae906115c3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c90611651565b60405180910390fd5b5f8111610a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5e906116df565b60405180910390fd5b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae29061176d565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610b7b9190611280565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bdf9190610edd565b60405180910390a350505050565b610bf5610d35565b73ffffffffffffffffffffffffffffffffffffffff16610c1361049a565b73ffffffffffffffffffffffffffffffffffffffff1614610c7257610c36610d35565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610c699190610fb4565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f33905090565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610d7e82610d3c565b610d888185610d46565b9350610d98818560208601610d56565b610da181610d64565b840191505092915050565b5f6020820190508181035f830152610dc48184610d74565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610df982610dd0565b9050919050565b610e0981610def565b8114610e13575f80fd5b50565b5f81359050610e2481610e00565b92915050565b5f819050919050565b610e3c81610e2a565b8114610e46575f80fd5b50565b5f81359050610e5781610e33565b92915050565b5f8060408385031215610e7357610e72610dcc565b5b5f610e8085828601610e16565b9250506020610e9185828601610e49565b9150509250929050565b5f8115159050919050565b610eaf81610e9b565b82525050565b5f602082019050610ec85f830184610ea6565b92915050565b610ed781610e2a565b82525050565b5f602082019050610ef05f830184610ece565b92915050565b5f805f60608486031215610f0d57610f0c610dcc565b5b5f610f1a86828701610e16565b9350506020610f2b86828701610e16565b9250506040610f3c86828701610e49565b9150509250925092565b5f60ff82169050919050565b610f5b81610f46565b82525050565b5f602082019050610f745f830184610f52565b92915050565b5f60208284031215610f8f57610f8e610dcc565b5b5f610f9c84828501610e16565b91505092915050565b610fae81610def565b82525050565b5f602082019050610fc75f830184610fa5565b92915050565b5f8060408385031215610fe357610fe2610dcc565b5b5f610ff085828601610e16565b925050602061100185828601610e16565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111561108d578086048111156110695761106861100b565b5b60018516156110785780820291505b808102905061108685611038565b945061104d565b94509492505050565b5f826110a55760019050611160565b816110b2575f9050611160565b81600181146110c857600281146110d257611101565b6001915050611160565b60ff8411156110e4576110e361100b565b5b8360020a9150848211156110fb576110fa61100b565b5b50611160565b5060208310610133831016604e8410600b84101617156111365782820a9050838111156111315761113061100b565b5b611160565b6111438484846001611044565b9250905081840481111561115a5761115961100b565b5b81810290505b9392505050565b5f61117182610e2a565b915061117c83610f46565b92506111a97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611096565b905092915050565b5f6111bb82610e2a565b91506111c683610e2a565b92508282026111d481610e2a565b915082820484148315176111eb576111ea61100b565b5b5092915050565b7f45524332303a207472616e7366657246726f6d207370656e6465722063616e205f8201527f6e6f74206265207468652066726f6d0000000000000000000000000000000000602082015250565b5f61124c602f83610d46565b9150611257826111f2565b604082019050919050565b5f6020820190508181035f83015261127981611240565b9050919050565b5f61128a82610e2a565b915061129583610e2a565b92508282019050808211156112ad576112ac61100b565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61130d602583610d46565b9150611318826112b3565b604082019050919050565b5f6020820190508181035f83015261133a81611301565b9050919050565b7f45524332303a207472616e7366657220746f20616464726573732063616e6e6f5f8201527f74206265206f776e657200000000000000000000000000000000000000000000602082015250565b5f61139b602a83610d46565b91506113a682611341565b604082019050919050565b5f6020820190508181035f8301526113c88161138f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611429602483610d46565b9150611434826113cf565b604082019050919050565b5f6020820190508181035f8301526114568161141d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6114b7602283610d46565b91506114c28261145d565b604082019050919050565b5f6020820190508181035f8301526114e4816114ab565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61151f601d83610d46565b915061152a826114eb565b602082019050919050565b5f6020820190508181035f83015261154c81611513565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6115ad602583610d46565b91506115b882611553565b604082019050919050565b5f6020820190508181035f8301526115da816115a1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61163b602383610d46565b9150611646826115e1565b604082019050919050565b5f6020820190508181035f8301526116688161162f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206d75737420626520675f8201527f726561746572207468616e207a65726f00000000000000000000000000000000602082015250565b5f6116c9603083610d46565b91506116d48261166f565b604082019050919050565b5f6020820190508181035f8301526116f6816116bd565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611757602683610d46565b9150611762826116fd565b604082019050919050565b5f6020820190508181035f8301526117848161174b565b905091905056fea2646970667358221220ceb59d93d2f00e60a0063a45ceae22d65276b74dc6a3842e2c2fd84cc586327964736f6c634300081a0033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c8063715018a61161008a578063a457c2d711610064578063a457c2d71461024c578063a9059cbb1461027c578063dd62ed3e146102ac578063f2fde38b146102dc576100e8565b8063715018a6146102065780638da5cb5b1461021057806395d89b411461022e576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806339509351146101a657806370a08231146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102f8565b6040516101019190610dac565b60405180910390f35b610124600480360381019061011f9190610e5d565b610335565b6040516101319190610eb5565b60405180910390f35b610142610350565b60405161014f9190610edd565b60405180910390f35b610172600480360381019061016d9190610ef6565b610375565b60405161017f9190610eb5565b60405180910390f35b61019061040a565b60405161019d9190610f61565b60405180910390f35b6101c060048036038101906101bb9190610e5d565b610412565b6040516101cd9190610eb5565b60405180910390f35b6101f060048036038101906101eb9190610f7a565b610441565b6040516101fd9190610edd565b60405180910390f35b61020e610487565b005b61021861049a565b6040516102259190610fb4565b60405180910390f35b6102366104c1565b6040516102439190610dac565b60405180910390f35b61026660048036038101906102619190610e5d565b6104fe565b6040516102739190610eb5565b60405180910390f35b61029660048036038101906102919190610e5d565b61056c565b6040516102a39190610eb5565b60405180910390f35b6102c660048036038101906102c19190610fcd565b6105f5565b6040516102d39190610edd565b60405180910390f35b6102f660048036038101906102f19190610f7a565b610677565b005b60606040518060400160405280601581526020017f7065706520696e2061206d656d657320776f726c640000000000000000000000815250905090565b5f803390506103458185856106fb565b600191505092915050565b5f6012600a61035f9190611167565b655af3107a400061037091906111b1565b905090565b5f803390508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036103e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103df90611262565b60405180910390fd5b6103f38582856108be565b6103fe858585610949565b60019150509392505050565b5f6012905090565b5f8033905061043681858561042785896105f5565b6104319190611280565b6106fb565b600191505092915050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61048f610bed565b6104985f610c74565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f50454d0000000000000000000000000000000000000000000000000000000000815250905090565b5f803390505f61050e82866105f5565b905083811015610553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054a90611323565b60405180910390fd5b61056082868684036106fb565b60019250505092915050565b5f803390508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036105df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d6906113b1565b60405180910390fd5b6105ea818585610949565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61067f610bed565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106ef575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106e69190610fb4565b60405180910390fd5b6106f881610c74565b50565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610769576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107609061143f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ce906114cd565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108b19190610edd565b60405180910390a3505050565b5f6108c984846105f5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109435781811015610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c90611535565b60405180910390fd5b61094284848484036106fb565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae906115c3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c90611651565b60405180910390fd5b5f8111610a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5e906116df565b60405180910390fd5b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae29061176d565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610b7b9190611280565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bdf9190610edd565b60405180910390a350505050565b610bf5610d35565b73ffffffffffffffffffffffffffffffffffffffff16610c1361049a565b73ffffffffffffffffffffffffffffffffffffffff1614610c7257610c36610d35565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610c699190610fb4565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f33905090565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610d7e82610d3c565b610d888185610d46565b9350610d98818560208601610d56565b610da181610d64565b840191505092915050565b5f6020820190508181035f830152610dc48184610d74565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610df982610dd0565b9050919050565b610e0981610def565b8114610e13575f80fd5b50565b5f81359050610e2481610e00565b92915050565b5f819050919050565b610e3c81610e2a565b8114610e46575f80fd5b50565b5f81359050610e5781610e33565b92915050565b5f8060408385031215610e7357610e72610dcc565b5b5f610e8085828601610e16565b9250506020610e9185828601610e49565b9150509250929050565b5f8115159050919050565b610eaf81610e9b565b82525050565b5f602082019050610ec85f830184610ea6565b92915050565b610ed781610e2a565b82525050565b5f602082019050610ef05f830184610ece565b92915050565b5f805f60608486031215610f0d57610f0c610dcc565b5b5f610f1a86828701610e16565b9350506020610f2b86828701610e16565b9250506040610f3c86828701610e49565b9150509250925092565b5f60ff82169050919050565b610f5b81610f46565b82525050565b5f602082019050610f745f830184610f52565b92915050565b5f60208284031215610f8f57610f8e610dcc565b5b5f610f9c84828501610e16565b91505092915050565b610fae81610def565b82525050565b5f602082019050610fc75f830184610fa5565b92915050565b5f8060408385031215610fe357610fe2610dcc565b5b5f610ff085828601610e16565b925050602061100185828601610e16565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111561108d578086048111156110695761106861100b565b5b60018516156110785780820291505b808102905061108685611038565b945061104d565b94509492505050565b5f826110a55760019050611160565b816110b2575f9050611160565b81600181146110c857600281146110d257611101565b6001915050611160565b60ff8411156110e4576110e361100b565b5b8360020a9150848211156110fb576110fa61100b565b5b50611160565b5060208310610133831016604e8410600b84101617156111365782820a9050838111156111315761113061100b565b5b611160565b6111438484846001611044565b9250905081840481111561115a5761115961100b565b5b81810290505b9392505050565b5f61117182610e2a565b915061117c83610f46565b92506111a97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611096565b905092915050565b5f6111bb82610e2a565b91506111c683610e2a565b92508282026111d481610e2a565b915082820484148315176111eb576111ea61100b565b5b5092915050565b7f45524332303a207472616e7366657246726f6d207370656e6465722063616e205f8201527f6e6f74206265207468652066726f6d0000000000000000000000000000000000602082015250565b5f61124c602f83610d46565b9150611257826111f2565b604082019050919050565b5f6020820190508181035f83015261127981611240565b9050919050565b5f61128a82610e2a565b915061129583610e2a565b92508282019050808211156112ad576112ac61100b565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61130d602583610d46565b9150611318826112b3565b604082019050919050565b5f6020820190508181035f83015261133a81611301565b9050919050565b7f45524332303a207472616e7366657220746f20616464726573732063616e6e6f5f8201527f74206265206f776e657200000000000000000000000000000000000000000000602082015250565b5f61139b602a83610d46565b91506113a682611341565b604082019050919050565b5f6020820190508181035f8301526113c88161138f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611429602483610d46565b9150611434826113cf565b604082019050919050565b5f6020820190508181035f8301526114568161141d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6114b7602283610d46565b91506114c28261145d565b604082019050919050565b5f6020820190508181035f8301526114e4816114ab565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61151f601d83610d46565b915061152a826114eb565b602082019050919050565b5f6020820190508181035f83015261154c81611513565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6115ad602583610d46565b91506115b882611553565b604082019050919050565b5f6020820190508181035f8301526115da816115a1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61163b602383610d46565b9150611646826115e1565b604082019050919050565b5f6020820190508181035f8301526116688161162f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206d75737420626520675f8201527f726561746572207468616e207a65726f00000000000000000000000000000000602082015250565b5f6116c9603083610d46565b91506116d48261166f565b604082019050919050565b5f6020820190508181035f8301526116f6816116bd565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611757602683610d46565b9150611762826116fd565b604082019050919050565b5f6020820190508181035f8301526117848161174b565b905091905056fea2646970667358221220ceb59d93d2f00e60a0063a45ceae22d65276b74dc6a3842e2c2fd84cc586327964736f6c634300081a0033

Deployed Bytecode Sourcemap

4608:4886:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5385:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6462:224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5692:101;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6694:409;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5591:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7111:270;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5801:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3722:103;;;:::i;:::-;;3047:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5486:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7389:505;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5970:293;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6271:183;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3980:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5385:93;5432:13;5465:5;;;;;;;;;;;;;;;;;5458:12;;5385:93;:::o;6462:224::-;6565:4;6587:13;6603:10;6587:26;;6624:32;6633:5;6640:7;6649:6;6624:8;:32::i;:::-;6674:4;6667:11;;;6462:224;;;;:::o;5692:101::-;5746:7;4913:2;4984;:13;;;;:::i;:::-;4962:19;:35;;;;:::i;:::-;5766:19;;5692:101;:::o;6694:409::-;6818:4;6835:15;6853:10;6835:28;;6907:4;6896:15;;:7;:15;;;6874:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;6997:38;7013:4;7019:7;7028:6;6997:15;:38::i;:::-;7046:27;7056:4;7062:2;7066:6;7046:9;:27::i;:::-;7091:4;7084:11;;;6694:409;;;;;:::o;5591:93::-;5642:5;4913:2;5660:16;;5591:93;:::o;7111:270::-;7228:4;7250:13;7266:10;7250:26;;7287:64;7296:5;7303:7;7340:10;7312:25;7322:5;7329:7;7312:9;:25::i;:::-;:38;;;;:::i;:::-;7287:8;:64::i;:::-;7369:4;7362:11;;;7111:270;;;;:::o;5801:161::-;5904:7;5936:9;:18;5946:7;5936:18;;;;;;;;;;;;;;;;5929:25;;5801:161;;;:::o;3722:103::-;2933:13;:11;:13::i;:::-;3787:30:::1;3814:1;3787:18;:30::i;:::-;3722:103::o:0;3047:87::-;3093:7;3120:6;;;;;;;;;;;3113:13;;3047:87;:::o;5486:97::-;5535:13;5568:7;;;;;;;;;;;;;;;;;5561:14;;5486:97;:::o;7389:505::-;7511:4;7533:13;7549:10;7533:26;;7570:24;7597:25;7607:5;7614:7;7597:9;:25::i;:::-;7570:52;;7675:15;7655:16;:35;;7633:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;7791:60;7800:5;7807:7;7835:15;7816:16;:34;7791:8;:60::i;:::-;7882:4;7875:11;;;;7389:505;;;;:::o;5970:293::-;6069:4;6091:13;6107:10;6091:26;;6145:2;6136:11;;:5;:11;;;6128:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;6205:28;6215:5;6222:2;6226:6;6205:9;:28::i;:::-;6251:4;6244:11;;;5970:293;;;;:::o;6271:183::-;6387:7;6419:11;:18;6431:5;6419:18;;;;;;;;;;;;;;;:27;6438:7;6419:27;;;;;;;;;;;;;;;;6412:34;;6271:183;;;;:::o;3980:220::-;2933:13;:11;:13::i;:::-;4085:1:::1;4065:22;;:8;:22;;::::0;4061:93:::1;;4139:1;4111:31;;;;;;;;;;;:::i;:::-;;;;;;;;4061:93;4164:28;4183:8;4164:18;:28::i;:::-;3980:220:::0;:::o;8601:380::-;8754:1;8737:19;;:5;:19;;;8729:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8835:1;8816:21;;:7;:21;;;8808:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8919:6;8889:11;:18;8901:5;8889:18;;;;;;;;;;;;;;;:27;8908:7;8889:27;;;;;;;;;;;;;;;:36;;;;8957:7;8941:32;;8950:5;8941:32;;;8966:6;8941:32;;;;;;:::i;:::-;;;;;;;;8601:380;;;:::o;8989:502::-;9124:24;9151:25;9161:5;9168:7;9151:9;:25::i;:::-;9124:52;;9211:17;9191:16;:37;9187:297;;9291:6;9271:16;:26;;9245:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;9406:51;9415:5;9422:7;9450:6;9431:16;:25;9406:8;:51::i;:::-;9187:297;9113:378;8989:502;;;:::o;7902:691::-;8049:1;8033:18;;:4;:18;;;8025:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8126:1;8112:16;;:2;:16;;;8104:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;8196:1;8187:6;:10;8179:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;8265:19;8287:9;:15;8297:4;8287:15;;;;;;;;;;;;;;;;8265:37;;8350:6;8335:11;:21;;8313:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;8490:6;8476:11;:20;8458:9;:15;8468:4;8458:15;;;;;;;;;;;;;;;:38;;;;8535:6;8518:9;:13;8528:2;8518:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;8574:2;8559:26;;8568:4;8559:26;;;8578:6;8559:26;;;;;;:::i;:::-;;;;;;;;8014:579;7902:691;;;:::o;3212:166::-;3283:12;:10;:12::i;:::-;3272:23;;:7;:5;:7::i;:::-;:23;;;3268:103;;3346:12;:10;:12::i;:::-;3319:40;;;;;;;;;;;:::i;:::-;;;;;;;;3268:103;3212:166::o;4360:191::-;4434:16;4453:6;;;;;;;;;;;4434:25;;4479:8;4470:6;;:17;;;;;;;;;;;;;;;;;;4534:8;4503:40;;4524:8;4503:40;;;;;;;;;;;;4423:128;4360:191;:::o;1056:98::-;1109:7;1136:10;1129:17;;1056:98;:::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:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:118::-;5168:24;5186:5;5168:24;:::i;:::-;5163:3;5156:37;5081:118;;:::o;5205:222::-;5298:4;5336:2;5325:9;5321:18;5313:26;;5349:71;5417:1;5406:9;5402:17;5393:6;5349:71;:::i;:::-;5205:222;;;;:::o;5433:474::-;5501:6;5509;5558:2;5546:9;5537:7;5533:23;5529:32;5526:119;;;5564:79;;:::i;:::-;5526:119;5684:1;5709:53;5754:7;5745:6;5734:9;5730:22;5709:53;:::i;:::-;5699:63;;5655:117;5811:2;5837:53;5882:7;5873:6;5862:9;5858:22;5837:53;:::i;:::-;5827:63;;5782:118;5433:474;;;;;:::o;5913:180::-;5961:77;5958:1;5951:88;6058:4;6055:1;6048:15;6082:4;6079:1;6072:15;6099:102;6141:8;6188:5;6185:1;6181:13;6160:34;;6099:102;;;:::o;6207:848::-;6268:5;6275:4;6299:6;6290:15;;6323:5;6314:14;;6337:712;6358:1;6348:8;6345:15;6337:712;;;6453:4;6448:3;6444:14;6438:4;6435:24;6432:50;;;6462:18;;:::i;:::-;6432:50;6512:1;6502:8;6498:16;6495:451;;;6927:4;6920:5;6916:16;6907:25;;6495:451;6977:4;6971;6967:15;6959:23;;7007:32;7030:8;7007:32;:::i;:::-;6995:44;;6337:712;;;6207:848;;;;;;;:::o;7061:1073::-;7115:5;7306:8;7296:40;;7327:1;7318:10;;7329:5;;7296:40;7355:4;7345:36;;7372:1;7363:10;;7374:5;;7345:36;7441:4;7489:1;7484:27;;;;7525:1;7520:191;;;;7434:277;;7484:27;7502:1;7493:10;;7504:5;;;7520:191;7565:3;7555:8;7552:17;7549:43;;;7572:18;;:::i;:::-;7549:43;7621:8;7618:1;7614:16;7605:25;;7656:3;7649:5;7646:14;7643:40;;;7663:18;;:::i;:::-;7643:40;7696:5;;;7434:277;;7820:2;7810:8;7807:16;7801:3;7795:4;7792:13;7788:36;7770:2;7760:8;7757:16;7752:2;7746:4;7743:12;7739:35;7723:111;7720:246;;;7876:8;7870:4;7866:19;7857:28;;7911:3;7904:5;7901:14;7898:40;;;7918:18;;:::i;:::-;7898:40;7951:5;;7720:246;7991:42;8029:3;8019:8;8013:4;8010:1;7991:42;:::i;:::-;7976:57;;;;8065:4;8060:3;8056:14;8049:5;8046:25;8043:51;;;8074:18;;:::i;:::-;8043:51;8123:4;8116:5;8112:16;8103:25;;7061:1073;;;;;;:::o;8140:281::-;8198:5;8222:23;8240:4;8222:23;:::i;:::-;8214:31;;8266:25;8282:8;8266:25;:::i;:::-;8254:37;;8310:104;8347:66;8337:8;8331:4;8310:104;:::i;:::-;8301:113;;8140:281;;;;:::o;8427:410::-;8467:7;8490:20;8508:1;8490:20;:::i;:::-;8485:25;;8524:20;8542:1;8524:20;:::i;:::-;8519:25;;8579:1;8576;8572:9;8601:30;8619:11;8601:30;:::i;:::-;8590:41;;8780:1;8771:7;8767:15;8764:1;8761:22;8741:1;8734:9;8714:83;8691:139;;8810:18;;:::i;:::-;8691:139;8475:362;8427:410;;;;:::o;8843:234::-;8983:34;8979:1;8971:6;8967:14;8960:58;9052:17;9047:2;9039:6;9035:15;9028:42;8843:234;:::o;9083:366::-;9225:3;9246:67;9310:2;9305:3;9246:67;:::i;:::-;9239:74;;9322:93;9411:3;9322:93;:::i;:::-;9440:2;9435:3;9431:12;9424:19;;9083:366;;;:::o;9455:419::-;9621:4;9659:2;9648:9;9644:18;9636:26;;9708:9;9702:4;9698:20;9694:1;9683:9;9679:17;9672:47;9736:131;9862:4;9736:131;:::i;:::-;9728:139;;9455:419;;;:::o;9880:191::-;9920:3;9939:20;9957:1;9939:20;:::i;:::-;9934:25;;9973:20;9991:1;9973:20;:::i;:::-;9968:25;;10016:1;10013;10009:9;10002:16;;10037:3;10034:1;10031:10;10028:36;;;10044:18;;:::i;:::-;10028:36;9880:191;;;;:::o;10077:224::-;10217:34;10213:1;10205:6;10201:14;10194:58;10286:7;10281:2;10273:6;10269:15;10262:32;10077:224;:::o;10307:366::-;10449:3;10470:67;10534:2;10529:3;10470:67;:::i;:::-;10463:74;;10546:93;10635:3;10546:93;:::i;:::-;10664:2;10659:3;10655:12;10648:19;;10307:366;;;:::o;10679:419::-;10845:4;10883:2;10872:9;10868:18;10860:26;;10932:9;10926:4;10922:20;10918:1;10907:9;10903:17;10896:47;10960:131;11086:4;10960:131;:::i;:::-;10952:139;;10679:419;;;:::o;11104:229::-;11244:34;11240:1;11232:6;11228:14;11221:58;11313:12;11308:2;11300:6;11296:15;11289:37;11104:229;:::o;11339:366::-;11481:3;11502:67;11566:2;11561:3;11502:67;:::i;:::-;11495:74;;11578:93;11667:3;11578:93;:::i;:::-;11696:2;11691:3;11687:12;11680:19;;11339:366;;;:::o;11711:419::-;11877:4;11915:2;11904:9;11900:18;11892:26;;11964:9;11958:4;11954:20;11950:1;11939:9;11935:17;11928:47;11992:131;12118:4;11992:131;:::i;:::-;11984:139;;11711:419;;;:::o;12136:223::-;12276:34;12272:1;12264:6;12260:14;12253:58;12345:6;12340:2;12332:6;12328:15;12321:31;12136:223;:::o;12365:366::-;12507:3;12528:67;12592:2;12587:3;12528:67;:::i;:::-;12521:74;;12604:93;12693:3;12604:93;:::i;:::-;12722:2;12717:3;12713:12;12706:19;;12365:366;;;:::o;12737:419::-;12903:4;12941:2;12930:9;12926:18;12918:26;;12990:9;12984:4;12980:20;12976:1;12965:9;12961:17;12954:47;13018:131;13144:4;13018:131;:::i;:::-;13010:139;;12737:419;;;:::o;13162:221::-;13302:34;13298:1;13290:6;13286:14;13279:58;13371:4;13366:2;13358:6;13354:15;13347:29;13162:221;:::o;13389:366::-;13531:3;13552:67;13616:2;13611:3;13552:67;:::i;:::-;13545:74;;13628:93;13717:3;13628:93;:::i;:::-;13746:2;13741:3;13737:12;13730:19;;13389:366;;;:::o;13761:419::-;13927:4;13965:2;13954:9;13950:18;13942:26;;14014:9;14008:4;14004:20;14000:1;13989:9;13985:17;13978:47;14042:131;14168:4;14042:131;:::i;:::-;14034:139;;13761:419;;;:::o;14186:179::-;14326:31;14322:1;14314:6;14310:14;14303:55;14186:179;:::o;14371:366::-;14513:3;14534:67;14598:2;14593:3;14534:67;:::i;:::-;14527:74;;14610:93;14699:3;14610:93;:::i;:::-;14728:2;14723:3;14719:12;14712:19;;14371:366;;;:::o;14743:419::-;14909:4;14947:2;14936:9;14932:18;14924:26;;14996:9;14990:4;14986:20;14982:1;14971:9;14967:17;14960:47;15024:131;15150:4;15024:131;:::i;:::-;15016:139;;14743:419;;;:::o;15168:224::-;15308:34;15304:1;15296:6;15292:14;15285:58;15377:7;15372:2;15364:6;15360:15;15353:32;15168:224;:::o;15398:366::-;15540:3;15561:67;15625:2;15620:3;15561:67;:::i;:::-;15554:74;;15637:93;15726:3;15637:93;:::i;:::-;15755:2;15750:3;15746:12;15739:19;;15398:366;;;:::o;15770:419::-;15936:4;15974:2;15963:9;15959:18;15951:26;;16023:9;16017:4;16013:20;16009:1;15998:9;15994:17;15987:47;16051:131;16177:4;16051:131;:::i;:::-;16043:139;;15770:419;;;:::o;16195:222::-;16335:34;16331:1;16323:6;16319:14;16312:58;16404:5;16399:2;16391:6;16387:15;16380:30;16195:222;:::o;16423:366::-;16565:3;16586:67;16650:2;16645:3;16586:67;:::i;:::-;16579:74;;16662:93;16751:3;16662:93;:::i;:::-;16780:2;16775:3;16771:12;16764:19;;16423:366;;;:::o;16795:419::-;16961:4;16999:2;16988:9;16984:18;16976:26;;17048:9;17042:4;17038:20;17034:1;17023:9;17019:17;17012:47;17076:131;17202:4;17076:131;:::i;:::-;17068:139;;16795:419;;;:::o;17220:235::-;17360:34;17356:1;17348:6;17344:14;17337:58;17429:18;17424:2;17416:6;17412:15;17405:43;17220:235;:::o;17461:366::-;17603:3;17624:67;17688:2;17683:3;17624:67;:::i;:::-;17617:74;;17700:93;17789:3;17700:93;:::i;:::-;17818:2;17813:3;17809:12;17802:19;;17461:366;;;:::o;17833:419::-;17999:4;18037:2;18026:9;18022:18;18014:26;;18086:9;18080:4;18076:20;18072:1;18061:9;18057:17;18050:47;18114:131;18240:4;18114:131;:::i;:::-;18106:139;;17833:419;;;:::o;18258:225::-;18398:34;18394:1;18386:6;18382:14;18375:58;18467:8;18462:2;18454:6;18450:15;18443:33;18258:225;:::o;18489:366::-;18631:3;18652:67;18716:2;18711:3;18652:67;:::i;:::-;18645:74;;18728:93;18817:3;18728:93;:::i;:::-;18846:2;18841:3;18837:12;18830:19;;18489:366;;;:::o;18861:419::-;19027:4;19065:2;19054:9;19050:18;19042:26;;19114:9;19108:4;19104:20;19100:1;19089:9;19085:17;19078:47;19142:131;19268:4;19142:131;:::i;:::-;19134:139;;18861:419;;;:::o

Swarm Source

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