ERC-20
Overview
Max Total Supply
10,000 01
Holders
39
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
zeroAndOne
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-12-12 */ // SPDX-License-Identifier: MIT /* name: 01 ticker: 01 supply: 10_000 ################## # Tokenomics # # Vitalik: %25 # # Team: %5 # # Liquidity: %70 # ################## ,a8888a, 88 ,8P"' `"Y8, ,d88 ,8P Y8, 888888 88 88 88 88 88 88 `8b d8' 88 `8ba, ,ad8' 88 "Y8888P" 88 Bridge Hash: 0xa92204909ea5b5725f6e3902a01ded9ff0cfdbf5e0ec8eb60868cefcd195123e Salt: 102653338761031551818786531242112633679114763502598305017124047935064237388009 Init Code Hash: 0x55def8cf89609b4d99310c2d0c16ebe362cba13d5e8733e24359b3412a57da5f Factory: 0xe2F3Bb1335Ce2B102E2064D825c41D4116A73141 01 Contract Address: 0x0000000000dec1295E1663E7E1916D0e80905D9D */ pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ 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); } // 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/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal virtual { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } 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); } } pragma solidity ^0.8.28; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function WETH() external pure returns (address); } contract zeroAndOne is ERC20, Ownable { IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; mapping(address => bool) public blacklist; uint256 private t = 10_000 * 10 ** decimals(); uint256 public maxWalletLimit = (t / 100) * 1; constructor() ERC20("01", "01") Ownable(tx.origin) { _mint(tx.origin, ( t / 4 ) * 3); _mint(address(0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045), ( t / 4 )); // for vitalik.eth } function _transfer(address from, address to, uint256 value) internal override{ require(blacklist[to] == false , "blacklist"); require(blacklist[from] == false , "blacklist"); if (from != owner() && to != uniswapV2Pair && to != address(uniswapV2Router)) { require(balanceOf(to) + value <= maxWalletLimit, "maximum wallet error #1"); } super._transfer(from, to, value); } function addBlacklistMultiple(address[] calldata vals) external onlyOwner { for (uint256 i = 0; i < vals.length; i++) { blacklist[vals[i]] = true; } } function delBlacklistMultiple(address[] calldata vals) external onlyOwner { for (uint256 i = 0; i < vals.length; i++) { blacklist[vals[i]] = false; } } function removeMaxWallet() external onlyOwner{ maxWalletLimit = t; } function initialize(address _uniswapV2Router, address _uniswapV2Factory) external onlyOwner{ uniswapV2Router = IUniswapV2Router02(_uniswapV2Router); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Factory).createPair(address(this), uniswapV2Router.WETH()); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":"vals","type":"address[]"}],"name":"addBlacklistMultiple","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":"value","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":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"vals","type":"address[]"}],"name":"delBlacklistMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Router","type":"address"},{"internalType":"address","name":"_uniswapV2Factory","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxWalletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeMaxWallet","outputs":[],"stateMutability":"nonpayable","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":"value","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":"value","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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526100106012600a6103c0565b61001c906127106103d5565b600955606460095461002e91906103ec565b6100399060016103d5565b600a55348015610047575f5ffd5b50604080518082018252600280825261303160f01b60208084018290528451808601909552918452908301523291600361008183826104a3565b50600461008e82826104a3565b5050506001600160a01b0381166100bf57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6100c881610118565b506100ec3260046009546100dc91906103ec565b6100e79060036103d5565b610169565b61011373d8da6bf26964af9d7eed9e03e53415d37aa9604560046009546100e791906103ec565b610570565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166101925760405163ec442f0560e01b81525f60048201526024016100b6565b61019d5f83836101a1565b5050565b6001600160a01b0383166101cb578060025f8282546101c0919061055d565b9091555061023b9050565b6001600160a01b0383165f908152602081905260409020548181101561021d5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016100b6565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661025757600280548290039055610275565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516102ba91815260200190565b60405180910390a3505050565b634e487b7160e01b5f52601160045260245ffd5b6001815b6001841115610316578085048111156102fa576102fa6102c7565b600184161561030857908102905b60019390931c9280026102df565b935093915050565b5f8261032c575060016103ba565b8161033857505f6103ba565b816001811461034e576002811461035857610374565b60019150506103ba565b60ff841115610369576103696102c7565b50506001821b6103ba565b5060208310610133831016604e8410600b8410161715610397575081810a6103ba565b6103a35f1984846102db565b805f19048211156103b6576103b66102c7565b0290505b92915050565b5f6103ce60ff84168361031e565b9392505050565b80820281158282048414176103ba576103ba6102c7565b5f8261040657634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061043357607f821691505b60208210810361045157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561049e57805f5260205f20601f840160051c8101602085101561047c5750805b601f840160051c820191505b8181101561049b575f8155600101610488565b50505b505050565b81516001600160401b038111156104bc576104bc61040b565b6104d0816104ca845461041f565b84610457565b6020601f821160018114610502575f83156104eb5750848201515b5f19600385901b1c1916600184901b17845561049b565b5f84815260208120601f198516915b828110156105315787850151825560209485019460019092019101610511565b508482101561054e57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b808201808211156103ba576103ba6102c7565b610d478061057d5f395ff3fe608060405234801561000f575f5ffd5b5060043610610127575f3560e01c806370a08231116100a9578063dc07b6171161006e578063dc07b6171461026b578063dd62ed3e14610273578063e42497a6146102ab578063f2fde38b146102be578063f9f92be4146102d1575f5ffd5b806370a082311461020f578063715018a6146102375780638da5cb5b1461023f57806395d89b4114610250578063a9059cbb14610258575f5ffd5b806323b872dd116100ef57806323b872dd146101be578063313ce567146101d1578063485cc955146101e057806349bd5a5e146101f357806366a88d9614610206575f5ffd5b806306fdde031461012b578063095ea7b3146101495780631694505e1461016c57806318160ddd1461019757806321b5129d146101a9575b5f5ffd5b6101336102f3565b6040516101409190610b10565b60405180910390f35b61015c610157366004610b59565b610383565b6040519015158152602001610140565b60065461017f906001600160a01b031681565b6040516001600160a01b039091168152602001610140565b6002545b604051908152602001610140565b6101bc6101b7366004610b83565b61039c565b005b61015c6101cc366004610bf4565b61040e565b60405160128152602001610140565b6101bc6101ee366004610c32565b610431565b60075461017f906001600160a01b031681565b61019b600a5481565b61019b61021d366004610c69565b6001600160a01b03165f9081526020819052604090205490565b6101bc610555565b6005546001600160a01b031661017f565b610133610568565b61015c610266366004610b59565b610577565b6101bc610584565b61019b610281366004610c32565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101bc6102b9366004610b83565b610594565b6101bc6102cc366004610c69565b610600565b61015c6102df366004610c69565b60086020525f908152604090205460ff1681565b60606003805461030290610c8b565b80601f016020809104026020016040519081016040528092919081815260200182805461032e90610c8b565b80156103795780601f1061035057610100808354040283529160200191610379565b820191905f5260205f20905b81548152906001019060200180831161035c57829003601f168201915b5050505050905090565b5f33610390818585610642565b60019150505b92915050565b6103a461064f565b5f5b8181101561040957600160085f8585858181106103c5576103c5610cc3565b90506020020160208101906103da9190610c69565b6001600160a01b0316815260208101919091526040015f20805460ff19169115159190911790556001016103a6565b505050565b5f3361041b85828561067c565b6104268585856106f7565b506001949350505050565b61043961064f565b600680546001600160a01b0319166001600160a01b03848116918217909255604080516315ab88c960e31b815290519284169263c9c65396923092909163ad5c4648916004808201926020929091908290030181865afa15801561049f573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104c39190610cd7565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801561050d573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105319190610cd7565b600780546001600160a01b0319166001600160a01b03929092169190911790555050565b61055d61064f565b6105665f61086f565b565b60606004805461030290610c8b565b5f336103908185856106f7565b61058c61064f565b600954600a55565b61059c61064f565b5f5b81811015610409575f60085f8585858181106105bc576105bc610cc3565b90506020020160208101906105d19190610c69565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905560010161059e565b61060861064f565b6001600160a01b03811661063657604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61063f8161086f565b50565b61040983838360016108c0565b6005546001600160a01b031633146105665760405163118cdaa760e01b815233600482015260240161062d565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146106f157818110156106e357604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161062d565b6106f184848484035f6108c0565b50505050565b6001600160a01b0382165f9081526008602052604090205460ff161561074b5760405162461bcd60e51b8152602060048201526009602482015268189b1858dadb1a5cdd60ba1b604482015260640161062d565b6001600160a01b0383165f9081526008602052604090205460ff161561079f5760405162461bcd60e51b8152602060048201526009602482015268189b1858dadb1a5cdd60ba1b604482015260640161062d565b6005546001600160a01b038481169116148015906107cb57506007546001600160a01b03838116911614155b80156107e557506006546001600160a01b03838116911614155b1561086457600a548161080c846001600160a01b03165f9081526020819052604090205490565b6108169190610cf2565b11156108645760405162461bcd60e51b815260206004820152601760248201527f6d6178696d756d2077616c6c6574206572726f72202331000000000000000000604482015260640161062d565b610409838383610992565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166108e95760405163e602df0560e01b81525f600482015260240161062d565b6001600160a01b03831661091257604051634a1406b160e11b81525f600482015260240161062d565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156106f157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161098491815260200190565b60405180910390a350505050565b6001600160a01b0383166109bb57604051634b637e8f60e11b81525f600482015260240161062d565b6001600160a01b0382166109e45760405163ec442f0560e01b81525f600482015260240161062d565b6104098383836001600160a01b038316610a14578060025f828254610a099190610cf2565b90915550610a849050565b6001600160a01b0383165f9081526020819052604090205481811015610a665760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161062d565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610aa057600280548290039055610abe565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b0391815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461063f575f5ffd5b5f5f60408385031215610b6a575f5ffd5b8235610b7581610b45565b946020939093013593505050565b5f5f60208385031215610b94575f5ffd5b823567ffffffffffffffff811115610baa575f5ffd5b8301601f81018513610bba575f5ffd5b803567ffffffffffffffff811115610bd0575f5ffd5b8560208260051b8401011115610be4575f5ffd5b6020919091019590945092505050565b5f5f5f60608486031215610c06575f5ffd5b8335610c1181610b45565b92506020840135610c2181610b45565b929592945050506040919091013590565b5f5f60408385031215610c43575f5ffd5b8235610c4e81610b45565b91506020830135610c5e81610b45565b809150509250929050565b5f60208284031215610c79575f5ffd5b8135610c8481610b45565b9392505050565b600181811c90821680610c9f57607f821691505b602082108103610cbd57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215610ce7575f5ffd5b8151610c8481610b45565b8082018082111561039657634e487b7160e01b5f52601160045260245ffdfea2646970667358221220fa5acf9a969dc7a0eb3f4a498c2d782915efcdaf658abd09d7e71d510111fbde64736f6c634300081c0033
Deployed Bytecode
0x608060405234801561000f575f5ffd5b5060043610610127575f3560e01c806370a08231116100a9578063dc07b6171161006e578063dc07b6171461026b578063dd62ed3e14610273578063e42497a6146102ab578063f2fde38b146102be578063f9f92be4146102d1575f5ffd5b806370a082311461020f578063715018a6146102375780638da5cb5b1461023f57806395d89b4114610250578063a9059cbb14610258575f5ffd5b806323b872dd116100ef57806323b872dd146101be578063313ce567146101d1578063485cc955146101e057806349bd5a5e146101f357806366a88d9614610206575f5ffd5b806306fdde031461012b578063095ea7b3146101495780631694505e1461016c57806318160ddd1461019757806321b5129d146101a9575b5f5ffd5b6101336102f3565b6040516101409190610b10565b60405180910390f35b61015c610157366004610b59565b610383565b6040519015158152602001610140565b60065461017f906001600160a01b031681565b6040516001600160a01b039091168152602001610140565b6002545b604051908152602001610140565b6101bc6101b7366004610b83565b61039c565b005b61015c6101cc366004610bf4565b61040e565b60405160128152602001610140565b6101bc6101ee366004610c32565b610431565b60075461017f906001600160a01b031681565b61019b600a5481565b61019b61021d366004610c69565b6001600160a01b03165f9081526020819052604090205490565b6101bc610555565b6005546001600160a01b031661017f565b610133610568565b61015c610266366004610b59565b610577565b6101bc610584565b61019b610281366004610c32565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101bc6102b9366004610b83565b610594565b6101bc6102cc366004610c69565b610600565b61015c6102df366004610c69565b60086020525f908152604090205460ff1681565b60606003805461030290610c8b565b80601f016020809104026020016040519081016040528092919081815260200182805461032e90610c8b565b80156103795780601f1061035057610100808354040283529160200191610379565b820191905f5260205f20905b81548152906001019060200180831161035c57829003601f168201915b5050505050905090565b5f33610390818585610642565b60019150505b92915050565b6103a461064f565b5f5b8181101561040957600160085f8585858181106103c5576103c5610cc3565b90506020020160208101906103da9190610c69565b6001600160a01b0316815260208101919091526040015f20805460ff19169115159190911790556001016103a6565b505050565b5f3361041b85828561067c565b6104268585856106f7565b506001949350505050565b61043961064f565b600680546001600160a01b0319166001600160a01b03848116918217909255604080516315ab88c960e31b815290519284169263c9c65396923092909163ad5c4648916004808201926020929091908290030181865afa15801561049f573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104c39190610cd7565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801561050d573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105319190610cd7565b600780546001600160a01b0319166001600160a01b03929092169190911790555050565b61055d61064f565b6105665f61086f565b565b60606004805461030290610c8b565b5f336103908185856106f7565b61058c61064f565b600954600a55565b61059c61064f565b5f5b81811015610409575f60085f8585858181106105bc576105bc610cc3565b90506020020160208101906105d19190610c69565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905560010161059e565b61060861064f565b6001600160a01b03811661063657604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61063f8161086f565b50565b61040983838360016108c0565b6005546001600160a01b031633146105665760405163118cdaa760e01b815233600482015260240161062d565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146106f157818110156106e357604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161062d565b6106f184848484035f6108c0565b50505050565b6001600160a01b0382165f9081526008602052604090205460ff161561074b5760405162461bcd60e51b8152602060048201526009602482015268189b1858dadb1a5cdd60ba1b604482015260640161062d565b6001600160a01b0383165f9081526008602052604090205460ff161561079f5760405162461bcd60e51b8152602060048201526009602482015268189b1858dadb1a5cdd60ba1b604482015260640161062d565b6005546001600160a01b038481169116148015906107cb57506007546001600160a01b03838116911614155b80156107e557506006546001600160a01b03838116911614155b1561086457600a548161080c846001600160a01b03165f9081526020819052604090205490565b6108169190610cf2565b11156108645760405162461bcd60e51b815260206004820152601760248201527f6d6178696d756d2077616c6c6574206572726f72202331000000000000000000604482015260640161062d565b610409838383610992565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166108e95760405163e602df0560e01b81525f600482015260240161062d565b6001600160a01b03831661091257604051634a1406b160e11b81525f600482015260240161062d565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156106f157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161098491815260200190565b60405180910390a350505050565b6001600160a01b0383166109bb57604051634b637e8f60e11b81525f600482015260240161062d565b6001600160a01b0382166109e45760405163ec442f0560e01b81525f600482015260240161062d565b6104098383836001600160a01b038316610a14578060025f828254610a099190610cf2565b90915550610a849050565b6001600160a01b0383165f9081526020819052604090205481811015610a665760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161062d565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610aa057600280548290039055610abe565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b0391815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461063f575f5ffd5b5f5f60408385031215610b6a575f5ffd5b8235610b7581610b45565b946020939093013593505050565b5f5f60208385031215610b94575f5ffd5b823567ffffffffffffffff811115610baa575f5ffd5b8301601f81018513610bba575f5ffd5b803567ffffffffffffffff811115610bd0575f5ffd5b8560208260051b8401011115610be4575f5ffd5b6020919091019590945092505050565b5f5f5f60608486031215610c06575f5ffd5b8335610c1181610b45565b92506020840135610c2181610b45565b929592945050506040919091013590565b5f5f60408385031215610c43575f5ffd5b8235610c4e81610b45565b91506020830135610c5e81610b45565b809150509250929050565b5f60208284031215610c79575f5ffd5b8135610c8481610b45565b9392505050565b600181811c90821680610c9f57607f821691505b602082108103610cbd57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215610ce7575f5ffd5b8151610c8481610b45565b8082018082111561039657634e487b7160e01b5f52601160045260245ffdfea2646970667358221220fa5acf9a969dc7a0eb3f4a498c2d782915efcdaf658abd09d7e71d510111fbde64736f6c634300081c0033
Deployed Bytecode Sourcemap
26624:1705:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13991:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16284:190;;;;;;:::i;:::-;;:::i;:::-;;;1110:14:1;;1103:22;1085:41;;1073:2;1058:18;16284:190:0;945:187:1;26669:41:0;;;;;-1:-1:-1;;;;;26669:41:0;;;;;;-1:-1:-1;;;;;1327:32:1;;;1309:51;;1297:2;1282:18;26669:41:0;1137:229:1;15093:99:0;15172:12;;15093:99;;;1517:25:1;;;1505:2;1490:18;15093:99:0;1371:177:1;27572:186:0;;;;;;:::i;:::-;;:::i;:::-;;17052:249;;;;;;:::i;:::-;;:::i;14944:84::-;;;15018:2;2823:36:1;;2811:2;2796:18;14944:84:0;2681:184:1;28049:277:0;;;;;;:::i;:::-;;:::i;26717:28::-;;;;;-1:-1:-1;;;;;26717:28:0;;;26852:45;;;;;;15255:118;;;;;;:::i;:::-;-1:-1:-1;;;;;15347:18:0;15320:7;15347:18;;;;;;;;;;;;15255:118;25543:103;;;:::i;24868:87::-;24941:6;;-1:-1:-1;;;;;24941:6:0;24868:87;;14201:95;;;:::i;15578:182::-;;;;;;:::i;:::-;;:::i;27957:82::-;;;:::i;15823:142::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15930:18:0;;;15903:7;15930:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15823:142;27764:187;;;;;;:::i;:::-;;:::i;25801:220::-;;;;;;:::i;:::-;;:::i;26752:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;13991:91;14036:13;14069:5;14062:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13991:91;:::o;16284:190::-;16357:4;5076:10;16413:31;5076:10;16429:7;16438:5;16413:8;:31::i;:::-;16462:4;16455:11;;;16284:190;;;;;:::o;27572:186::-;24754:13;:11;:13::i;:::-;27662:9:::1;27657:94;27677:15:::0;;::::1;27657:94;;;27735:4;27714:9;:18;27724:4;;27729:1;27724:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27714:18:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;27714:18:0;:25;;-1:-1:-1;;27714:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;27694:3:0::1;27657:94;;;;27572:186:::0;;:::o;17052:249::-;17139:4;5076:10;17197:37;17213:4;5076:10;17228:5;17197:15;:37::i;:::-;17245:26;17255:4;17261:2;17265:5;17245:9;:26::i;:::-;-1:-1:-1;17289:4:0;;17052:249;-1:-1:-1;;;;17052:249:0:o;28049:277::-;24754:13;:11;:13::i;:::-;28151:15:::1;:54:::0;;-1:-1:-1;;;;;;28151:54:0::1;-1:-1:-1::0;;;;;28151:54:0;;::::1;::::0;;::::1;::::0;;;28295:22:::1;::::0;;-1:-1:-1;;;28295:22:0;;;;28232:47;;::::1;::::0;::::1;::::0;28288:4:::1;::::0;28151:54;;28295:20:::1;::::0;:22:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;28151:54;28295:22:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28232:86;::::0;-1:-1:-1;;;;;;28232:86:0::1;::::0;;;;;;-1:-1:-1;;;;;4688:32:1;;;28232:86:0::1;::::0;::::1;4670:51:1::0;4757:32;;4737:18;;;4730:60;4643:18;;28232:86:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28216:13;:102:::0;;-1:-1:-1;;;;;;28216:102:0::1;-1:-1:-1::0;;;;;28216:102:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;28049:277:0:o;25543:103::-;24754:13;:11;:13::i;:::-;25608:30:::1;25635:1;25608:18;:30::i;:::-;25543:103::o:0;14201:95::-;14248:13;14281:7;14274:14;;;;;:::i;15578:182::-;15647:4;5076:10;15703:27;5076:10;15720:2;15724:5;15703:9;:27::i;27957:82::-;24754:13;:11;:13::i;:::-;28030:1:::1;::::0;28013:14:::1;:18:::0;27957:82::o;27764:187::-;24754:13;:11;:13::i;:::-;27854:9:::1;27849:95;27869:15:::0;;::::1;27849:95;;;27927:5;27906:9;:18;27916:4;;27921:1;27916:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27906:18:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;27906:18:0;:26;;-1:-1:-1;;27906:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;27886:3:0::1;27849:95;;25801:220:::0;24754:13;:11;:13::i;:::-;-1:-1:-1;;;;;25886:22:0;::::1;25882:93;;25932:31;::::0;-1:-1:-1;;;25932:31:0;;25960:1:::1;25932:31;::::0;::::1;1309:51:1::0;1282:18;;25932:31:0::1;;;;;;;;25882:93;25985:28;26004:8;25985:18;:28::i;:::-;25801:220:::0;:::o;21119:130::-;21204:37;21213:5;21220:7;21229:5;21236:4;21204:8;:37::i;25033:166::-;24941:6;;-1:-1:-1;;;;;24941:6:0;5076:10;25093:23;25089:103;;25140:40;;-1:-1:-1;;;25140:40:0;;5076:10;25140:40;;;1309:51:1;1282:18;;25140:40:0;1137:229:1;22835:487:0;-1:-1:-1;;;;;15930:18:0;;;22935:24;15930:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;23002:37:0;;22998:317;;23079:5;23060:16;:24;23056:132;;;23112:60;;-1:-1:-1;;;23112:60:0;;-1:-1:-1;;;;;5021:32:1;;23112:60:0;;;5003:51:1;5070:18;;;5063:34;;;5113:18;;;5106:34;;;4976:18;;23112:60:0;4801:345:1;23056:132:0;23231:57;23240:5;23247:7;23275:5;23256:16;:24;23282:5;23231:8;:57::i;:::-;22924:398;22835:487;;;:::o;27134:432::-;-1:-1:-1;;;;;27230:13:0;;;;;;:9;:13;;;;;;;;:22;27222:45;;;;-1:-1:-1;;;27222:45:0;;5353:2:1;27222:45:0;;;5335:21:1;5392:1;5372:18;;;5365:29;-1:-1:-1;;;5410:18:1;;;5403:39;5459:18;;27222:45:0;5151:332:1;27222:45:0;-1:-1:-1;;;;;27286:15:0;;;;;;:9;:15;;;;;;;;:24;27278:47;;;;-1:-1:-1;;;27278:47:0;;5353:2:1;27278:47:0;;;5335:21:1;5392:1;5372:18;;;5365:29;-1:-1:-1;;;5410:18:1;;;5403:39;5459:18;;27278:47:0;5151:332:1;27278:47:0;24941:6;;-1:-1:-1;;;;;27340:15:0;;;24941:6;;27340:15;;;;:38;;-1:-1:-1;27365:13:0;;-1:-1:-1;;;;;27359:19:0;;;27365:13;;27359:19;;27340:38;:72;;;;-1:-1:-1;27396:15:0;;-1:-1:-1;;;;;27382:30:0;;;27396:15;;27382:30;;27340:72;27336:180;;;27462:14;;27453:5;27437:13;27447:2;-1:-1:-1;;;;;15347:18:0;15320:7;15347:18;;;;;;;;;;;;15255:118;27437:13;:21;;;;:::i;:::-;:39;;27429:75;;;;-1:-1:-1;;;27429:75:0;;5917:2:1;27429:75:0;;;5899:21:1;5956:2;5936:18;;;5929:30;5995:25;5975:18;;;5968:53;6038:18;;27429:75:0;5715:347:1;27429:75:0;27526:32;27542:4;27548:2;27552:5;27526:15;:32::i;26181:191::-;26274:6;;;-1:-1:-1;;;;;26291:17:0;;;-1:-1:-1;;;;;;26291:17:0;;;;;;;26324:40;;26274:6;;;26291:17;26274:6;;26324:40;;26255:16;;26324:40;26244:128;26181:191;:::o;22100:443::-;-1:-1:-1;;;;;22213:19:0;;22209:91;;22256:32;;-1:-1:-1;;;22256:32:0;;22285:1;22256:32;;;1309:51:1;1282:18;;22256:32:0;1137:229:1;22209:91:0;-1:-1:-1;;;;;22314:21:0;;22310:92;;22359:31;;-1:-1:-1;;;22359:31:0;;22387:1;22359:31;;;1309:51:1;1282:18;;22359:31:0;1137:229:1;22310:92:0;-1:-1:-1;;;;;22412:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;22458:78;;;;22509:7;-1:-1:-1;;;;;22493:31:0;22502:5;-1:-1:-1;;;;;22493:31:0;;22518:5;22493:31;;;;1517:25:1;;1505:2;1490:18;;1371:177;22493:31:0;;;;;;;;22100:443;;;;:::o;17686:316::-;-1:-1:-1;;;;;17778:18:0;;17774:88;;17820:30;;-1:-1:-1;;;17820:30:0;;17847:1;17820:30;;;1309:51:1;1282:18;;17820:30:0;1137:229:1;17774:88:0;-1:-1:-1;;;;;17876:16:0;;17872:88;;17916:32;;-1:-1:-1;;;17916:32:0;;17945:1;17916:32;;;1309:51:1;1282:18;;17916:32:0;1137:229:1;17872:88:0;17970:24;17978:4;17984:2;17988:5;-1:-1:-1;;;;;18416:18:0;;18412:552;;18570:5;18554:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;18412:552:0;;-1:-1:-1;18412:552:0;;-1:-1:-1;;;;;18630:15:0;;18608:19;18630:15;;;;;;;;;;;18664:19;;;18660:117;;;18711:50;;-1:-1:-1;;;18711:50:0;;-1:-1:-1;;;;;5021:32:1;;18711:50:0;;;5003:51:1;5070:18;;;5063:34;;;5113:18;;;5106:34;;;4976:18;;18711:50:0;4801:345:1;18660:117:0;-1:-1:-1;;;;;18900:15:0;;:9;:15;;;;;;;;;;18918:19;;;;18900:37;;18412:552;-1:-1:-1;;;;;18980:16:0;;18976:435;;19146:12;:21;;;;;;;18976:435;;;-1:-1:-1;;;;;19362:13:0;;:9;:13;;;;;;;;;;:22;;;;;;18976:435;19443:2;-1:-1:-1;;;;;19428:25:0;19437:4;-1:-1:-1;;;;;19428:25:0;;19447:5;19428:25;;;;1517::1;;1505:2;1490:18;;1371:177;19428:25:0;;;;;;;;18326:1135;;;:::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:131::-;-1:-1:-1;;;;;512:31:1;;502:42;;492:70;;558:1;555;548:12;573:367;641:6;649;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;:::-;826:5;904:2;889:18;;;;876:32;;-1:-1:-1;;;573:367:1:o;1553:610::-;1639:6;1647;1700:2;1688:9;1679:7;1675:23;1671:32;1668:52;;;1716:1;1713;1706:12;1668:52;1756:9;1743:23;1789:18;1781:6;1778:30;1775:50;;;1821:1;1818;1811:12;1775:50;1844:22;;1897:4;1889:13;;1885:27;-1:-1:-1;1875:55:1;;1926:1;1923;1916:12;1875:55;1966:2;1953:16;1992:18;1984:6;1981:30;1978:50;;;2024:1;2021;2014:12;1978:50;2077:7;2072:2;2062:6;2059:1;2055:14;2051:2;2047:23;2043:32;2040:45;2037:65;;;2098:1;2095;2088:12;2037:65;2129:2;2121:11;;;;;2151:6;;-1:-1:-1;1553:610:1;-1:-1:-1;;;1553:610:1:o;2168:508::-;2245:6;2253;2261;2314:2;2302:9;2293:7;2289:23;2285:32;2282:52;;;2330:1;2327;2320:12;2282:52;2369:9;2356:23;2388:31;2413:5;2388:31;:::i;:::-;2438:5;-1:-1:-1;2495:2:1;2480:18;;2467:32;2508:33;2467:32;2508:33;:::i;:::-;2168:508;;2560:7;;-1:-1:-1;;;2640:2:1;2625:18;;;;2612:32;;2168:508::o;2870:388::-;2938:6;2946;2999:2;2987:9;2978:7;2974:23;2970:32;2967:52;;;3015:1;3012;3005:12;2967:52;3054:9;3041:23;3073:31;3098:5;3073:31;:::i;:::-;3123:5;-1:-1:-1;3180:2:1;3165:18;;3152:32;3193:33;3152:32;3193:33;:::i;:::-;3245:7;3235:17;;;2870:388;;;;;:::o;3471:247::-;3530:6;3583:2;3571:9;3562:7;3558:23;3554:32;3551:52;;;3599:1;3596;3589:12;3551:52;3638:9;3625:23;3657:31;3682:5;3657:31;:::i;:::-;3707:5;3471:247;-1:-1:-1;;;3471:247:1:o;3723:380::-;3802:1;3798:12;;;;3845;;;3866:61;;3920:4;3912:6;3908:17;3898:27;;3866:61;3973:2;3965:6;3962:14;3942:18;3939:38;3936:161;;4019:10;4014:3;4010:20;4007:1;4000:31;4054:4;4051:1;4044:15;4082:4;4079:1;4072:15;3936:161;;3723:380;;;:::o;4108:127::-;4169:10;4164:3;4160:20;4157:1;4150:31;4200:4;4197:1;4190:15;4224:4;4221:1;4214:15;4240:251;4310:6;4363:2;4351:9;4342:7;4338:23;4334:32;4331:52;;;4379:1;4376;4369:12;4331:52;4411:9;4405:16;4430:31;4455:5;4430:31;:::i;5488:222::-;5553:9;;;5574:10;;;5571:133;;;5626:10;5621:3;5617:20;5614:1;5607:31;5661:4;5658:1;5651:15;5689:4;5686:1;5679:15
Swarm Source
ipfs://fa5acf9a969dc7a0eb3f4a498c2d782915efcdaf658abd09d7e71d510111fbde
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.