ETH Price: $2,638.10 (+0.64%)

Token

DonaldTrump2024 (DWAC)
 

Overview

Max Total Supply

420,000,000,000 DWAC

Holders

50

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

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DWAC

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-02-16
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;

interface IUniswapV2Factory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

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

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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);
}

/**
 * @dev Interface for the optional metadata functions from the ERC-20 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);
}

/**
 * @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 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 ERC-20
 * 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 ERC 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 ERC. 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 {
        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 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);
            }
        }
    }
}

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

/**
 * @title DWAC Token Contract
 * @dev Extends ERC20 and Ownable contracts with additional functionality.
 */
contract DWAC is ERC20, Ownable {
    mapping(address => bool) public isExcludedFromMaxWallet;
    uint256 public constant maxWalletLimit = 21_000_000_000 * 10 ** 18;

    bool public maxWalletStatus = true;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    event AddressExcludedFromMaxWallet(address indexed account);
    event AddressIncludedInMaxWallet(address indexed account);
    event MaxWalletStatusChanged(bool newStatus);

    /**
     * @dev Constructor initializes the token with a name, symbol, and initial supply.
     * Also sets up the Uniswap V2 router and pair contracts, and excludes owner and pair from max wallet limit.
     */
    constructor() ERC20("DonaldTrump2024", "DWAC") Ownable(msg.sender) {
        _mint(msg.sender, 420_000_000_000 * 10 ** 18);

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        uniswapV2Router = _uniswapV2Router;

        isExcludedFromMaxWallet[owner()] = true;
        isExcludedFromMaxWallet[uniswapV2Pair] = true;
    }

    /**
     * @dev Internal function to update token balances while enforcing the maximum wallet limit.
     * @param from The address from which the tokens are being transferred.
     * @param to The address to which the tokens are being transferred.
     * @param value The amount of tokens being transferred.
     *
     * This function ensures that the updated balance, after the transfer, adheres to the maximum wallet limit.
     * Exceptions are made for addresses excluded from the limit and the contract owner.
     * If the condition is not met, the function reverts with an error message.
     */
    function _update(address from, address to, uint256 value) internal override {
        require((value + balanceOf(to)) <= maxWalletLimit || isExcludedFromMaxWallet[to] || _msgSender() == owner() || !maxWalletStatus,
            "DWAC: balance amount exceeded max wallet amount limit");
        super._update(from, to, value);
    }

    /**
     * @dev Function to exclude an address from the maximum wallet limit. Only callable by the owner.
     */
    function excludeFromMaxWalletLimit(address account) external onlyOwner {
        isExcludedFromMaxWallet[account] = true;
        emit AddressExcludedFromMaxWallet(account);
    }

    /**
     * @dev Function to include an address in the maximum wallet limit. Only callable by the owner.
     */
    function includeInMaxWalletLimit(address account) external onlyOwner {
        isExcludedFromMaxWallet[account] = false;
        emit AddressIncludedInMaxWallet(account);
    }

    /**
     * @dev Allows the owner to change the maximum wallet status.
     * @param flag New status to set for the maximum wallet.
     * Requirements:
     * - Only the owner of the contract can call this function.
     */
    function changeMaxWalletStatus(bool flag) external onlyOwner {
        maxWalletStatus = flag;
        emit MaxWalletStatusChanged(flag);
    }
}

Contract Security Audit

Contract ABI

[{"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":"account","type":"address"}],"name":"AddressExcludedFromMaxWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"AddressIncludedInMaxWallet","type":"event"},{"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":false,"internalType":"bool","name":"newStatus","type":"bool"}],"name":"MaxWalletStatusChanged","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":"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":"bool","name":"flag","type":"bool"}],"name":"changeMaxWalletStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromMaxWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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"}]

60c06040526007805460ff191660011790553480156200001d575f80fd5b50336040518060400160405280600f81526020016e111bdb985b19151c9d5b5c0c8c0c8d608a1b815250604051806040016040528060048152602001634457414360e01b815250816003908162000075919062000612565b50600462000084828262000612565b5050506001600160a01b038116620000b657604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b620000c181620002b1565b50620000db336c054d17db76321263eca000000062000302565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000130573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001569190620006de565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001c89190620006de565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000213573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002399190620006de565b6001600160a01b0390811660a0528116608052600160065f620002646005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff1996871617905560a051909116815260069092529020805490911660011790555062000733565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166200032d5760405163ec442f0560e01b81525f6004820152602401620000ad565b6200033a5f83836200033e565b5050565b6b43dacaf91c1a84ff080000006200036a836001600160a01b03165f9081526020819052604090205490565b6200037690836200070d565b1115806200039b57506001600160a01b0382165f9081526006602052604090205460ff165b80620003b157506005546001600160a01b031633145b80620003c0575060075460ff16155b620004345760405162461bcd60e51b815260206004820152603560248201527f445741433a2062616c616e636520616d6f756e74206578636565646564206d6160448201527f782077616c6c657420616d6f756e74206c696d697400000000000000000000006064820152608401620000ad565b6200044183838362000446565b505050565b6001600160a01b03831662000474578060025f8282546200046891906200070d565b90915550620004e69050565b6001600160a01b0383165f9081526020819052604090205481811015620004c85760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620000ad565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216620005045760028054829003905562000522565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200056891815260200190565b60405180910390a3505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200059e57607f821691505b602082108103620005bd57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200044157805f5260205f20601f840160051c81016020851015620005ea5750805b601f840160051c820191505b818110156200060b575f8155600101620005f6565b5050505050565b81516001600160401b038111156200062e576200062e62000575565b62000646816200063f845462000589565b84620005c3565b602080601f8311600181146200067c575f8415620006645750858301515b5f19600386901b1c1916600185901b178555620006d6565b5f85815260208120601f198616915b82811015620006ac578886015182559484019460019091019084016200068b565b5085821015620006ca57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f60208284031215620006ef575f80fd5b81516001600160a01b038116811462000706575f80fd5b9392505050565b808201808211156200072d57634e487b7160e01b5f52601160045260245ffd5b92915050565b60805160a051610b6a620007555f395f6101f901525f6101710152610b6a5ff3fe608060405234801561000f575f80fd5b5060043610610127575f3560e01c80636dd3d39f116100a95780639f71146d1161006e5780639f71146d146102a6578063a9059cbb146102b9578063b1b3d5a5146102cc578063dd62ed3e146102df578063f2fde38b14610317575f80fd5b80636dd3d39f1461023b57806370a082311461025d578063715018a6146102855780638da5cb5b1461028d57806395d89b411461029e575f80fd5b8063313ce567116100ef578063313ce567146101d05780633722355c146101df57806349bd5a5e146101f457806364753fc11461021b57806366a88d9614610228575f80fd5b806306fdde031461012b578063095ea7b3146101495780631694505e1461016c57806318160ddd146101ab57806323b872dd146101bd575b5f80fd5b61013361032a565b60405161014091906109a5565b60405180910390f35b61015c610157366004610a0c565b6103ba565b6040519015158152602001610140565b6101937f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610140565b6002545b604051908152602001610140565b61015c6101cb366004610a34565b6103d3565b60405160128152602001610140565b6101f26101ed366004610a6d565b6103f6565b005b6101937f000000000000000000000000000000000000000000000000000000000000000081565b60075461015c9060ff1681565b6101af6b43dacaf91c1a84ff0800000081565b61015c610249366004610a6d565b60066020525f908152604090205460ff1681565b6101af61026b366004610a6d565b6001600160a01b03165f9081526020819052604090205490565b6101f2610449565b6005546001600160a01b0316610193565b61013361045c565b6101f26102b4366004610a6d565b61046b565b61015c6102c7366004610a0c565b6104bb565b6101f26102da366004610a8d565b6104c8565b6101af6102ed366004610aac565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101f2610325366004610a6d565b610517565b60606003805461033990610add565b80601f016020809104026020016040519081016040528092919081815260200182805461036590610add565b80156103b05780601f10610387576101008083540402835291602001916103b0565b820191905f5260205f20905b81548152906001019060200180831161039357829003601f168201915b5050505050905090565b5f336103c7818585610559565b60019150505b92915050565b5f336103e085828561056b565b6103eb8585856105e6565b506001949350505050565b6103fe610643565b6001600160a01b0381165f81815260066020526040808220805460ff19166001179055517f0a18c507d6abde6c9b58e6b5efa299155275201da940579dbcf1e2be823dd3f99190a250565b610451610643565b61045a5f610670565b565b60606004805461033990610add565b610473610643565b6001600160a01b0381165f81815260066020526040808220805460ff19169055517f6d52ea90b53520ded80cbaff7471d8dc8fe1a0ec5bec867629926d04cfa6fa1b9190a250565b5f336103c78185856105e6565b6104d0610643565b6007805460ff19168215159081179091556040519081527fc2909e0a3770f4a719597ff4fe89a48a4651a8fffee6a7b10d53bae4bf27bd689060200160405180910390a150565b61051f610643565b6001600160a01b03811661054d57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61055681610670565b50565b61056683838360016106c1565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146105e057818110156105d257604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610544565b6105e084848484035f6106c1565b50505050565b6001600160a01b03831661060f57604051634b637e8f60e11b81525f6004820152602401610544565b6001600160a01b0382166106385760405163ec442f0560e01b81525f6004820152602401610544565b610566838383610793565b6005546001600160a01b0316331461045a5760405163118cdaa760e01b8152336004820152602401610544565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166106ea5760405163e602df0560e01b81525f6004820152602401610544565b6001600160a01b03831661071357604051634a1406b160e11b81525f6004820152602401610544565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156105e057826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161078591815260200190565b60405180910390a350505050565b6b43dacaf91c1a84ff080000006107be836001600160a01b03165f9081526020819052604090205490565b6107c89083610b15565b1115806107ec57506001600160a01b0382165f9081526006602052604090205460ff165b8061080157506005546001600160a01b031633145b8061080f575060075460ff16155b6108795760405162461bcd60e51b815260206004820152603560248201527f445741433a2062616c616e636520616d6f756e74206578636565646564206d616044820152741e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d605a1b6064820152608401610544565b6105668383836001600160a01b0383166108a9578060025f82825461089e9190610b15565b909155506109199050565b6001600160a01b0383165f90815260208190526040902054818110156108fb5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610544565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661093557600280548290039055610953565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161099891815260200190565b60405180910390a3505050565b5f602080835283518060208501525f5b818110156109d1578581018301518582016040015282016109b5565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a07575f80fd5b919050565b5f8060408385031215610a1d575f80fd5b610a26836109f1565b946020939093013593505050565b5f805f60608486031215610a46575f80fd5b610a4f846109f1565b9250610a5d602085016109f1565b9150604084013590509250925092565b5f60208284031215610a7d575f80fd5b610a86826109f1565b9392505050565b5f60208284031215610a9d575f80fd5b81358015158114610a86575f80fd5b5f8060408385031215610abd575f80fd5b610ac6836109f1565b9150610ad4602084016109f1565b90509250929050565b600181811c90821680610af157607f821691505b602082108103610b0f57634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156103cd57634e487b7160e01b5f52601160045260245ffdfea2646970667358221220653a746ec52762f6a9c6d77b9171e78debc54c20c5585158bb6510d43e86fadb64736f6c63430008180033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610127575f3560e01c80636dd3d39f116100a95780639f71146d1161006e5780639f71146d146102a6578063a9059cbb146102b9578063b1b3d5a5146102cc578063dd62ed3e146102df578063f2fde38b14610317575f80fd5b80636dd3d39f1461023b57806370a082311461025d578063715018a6146102855780638da5cb5b1461028d57806395d89b411461029e575f80fd5b8063313ce567116100ef578063313ce567146101d05780633722355c146101df57806349bd5a5e146101f457806364753fc11461021b57806366a88d9614610228575f80fd5b806306fdde031461012b578063095ea7b3146101495780631694505e1461016c57806318160ddd146101ab57806323b872dd146101bd575b5f80fd5b61013361032a565b60405161014091906109a5565b60405180910390f35b61015c610157366004610a0c565b6103ba565b6040519015158152602001610140565b6101937f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610140565b6002545b604051908152602001610140565b61015c6101cb366004610a34565b6103d3565b60405160128152602001610140565b6101f26101ed366004610a6d565b6103f6565b005b6101937f000000000000000000000000451fc7d37d6bc37f65519107ac2b7a53b7885f5681565b60075461015c9060ff1681565b6101af6b43dacaf91c1a84ff0800000081565b61015c610249366004610a6d565b60066020525f908152604090205460ff1681565b6101af61026b366004610a6d565b6001600160a01b03165f9081526020819052604090205490565b6101f2610449565b6005546001600160a01b0316610193565b61013361045c565b6101f26102b4366004610a6d565b61046b565b61015c6102c7366004610a0c565b6104bb565b6101f26102da366004610a8d565b6104c8565b6101af6102ed366004610aac565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101f2610325366004610a6d565b610517565b60606003805461033990610add565b80601f016020809104026020016040519081016040528092919081815260200182805461036590610add565b80156103b05780601f10610387576101008083540402835291602001916103b0565b820191905f5260205f20905b81548152906001019060200180831161039357829003601f168201915b5050505050905090565b5f336103c7818585610559565b60019150505b92915050565b5f336103e085828561056b565b6103eb8585856105e6565b506001949350505050565b6103fe610643565b6001600160a01b0381165f81815260066020526040808220805460ff19166001179055517f0a18c507d6abde6c9b58e6b5efa299155275201da940579dbcf1e2be823dd3f99190a250565b610451610643565b61045a5f610670565b565b60606004805461033990610add565b610473610643565b6001600160a01b0381165f81815260066020526040808220805460ff19169055517f6d52ea90b53520ded80cbaff7471d8dc8fe1a0ec5bec867629926d04cfa6fa1b9190a250565b5f336103c78185856105e6565b6104d0610643565b6007805460ff19168215159081179091556040519081527fc2909e0a3770f4a719597ff4fe89a48a4651a8fffee6a7b10d53bae4bf27bd689060200160405180910390a150565b61051f610643565b6001600160a01b03811661054d57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61055681610670565b50565b61056683838360016106c1565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146105e057818110156105d257604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610544565b6105e084848484035f6106c1565b50505050565b6001600160a01b03831661060f57604051634b637e8f60e11b81525f6004820152602401610544565b6001600160a01b0382166106385760405163ec442f0560e01b81525f6004820152602401610544565b610566838383610793565b6005546001600160a01b0316331461045a5760405163118cdaa760e01b8152336004820152602401610544565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166106ea5760405163e602df0560e01b81525f6004820152602401610544565b6001600160a01b03831661071357604051634a1406b160e11b81525f6004820152602401610544565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156105e057826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161078591815260200190565b60405180910390a350505050565b6b43dacaf91c1a84ff080000006107be836001600160a01b03165f9081526020819052604090205490565b6107c89083610b15565b1115806107ec57506001600160a01b0382165f9081526006602052604090205460ff165b8061080157506005546001600160a01b031633145b8061080f575060075460ff16155b6108795760405162461bcd60e51b815260206004820152603560248201527f445741433a2062616c616e636520616d6f756e74206578636565646564206d616044820152741e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d605a1b6064820152608401610544565b6105668383836001600160a01b0383166108a9578060025f82825461089e9190610b15565b909155506109199050565b6001600160a01b0383165f90815260208190526040902054818110156108fb5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610544565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661093557600280548290039055610953565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161099891815260200190565b60405180910390a3505050565b5f602080835283518060208501525f5b818110156109d1578581018301518582016040015282016109b5565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a07575f80fd5b919050565b5f8060408385031215610a1d575f80fd5b610a26836109f1565b946020939093013593505050565b5f805f60608486031215610a46575f80fd5b610a4f846109f1565b9250610a5d602085016109f1565b9150604084013590509250925092565b5f60208284031215610a7d575f80fd5b610a86826109f1565b9392505050565b5f60208284031215610a9d575f80fd5b81358015158114610a86575f80fd5b5f8060408385031215610abd575f80fd5b610ac6836109f1565b9150610ad4602084016109f1565b90509250929050565b600181811c90821680610af157607f821691505b602082108103610b0f57634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156103cd57634e487b7160e01b5f52601160045260245ffdfea2646970667358221220653a746ec52762f6a9c6d77b9171e78debc54c20c5585158bb6510d43e86fadb64736f6c63430008180033

Deployed Bytecode Sourcemap

20563:3218:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8365:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10683:215;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;10683:215:0;1004:187:1;20782:51:0;;;;;;;;-1:-1:-1;;;;;1385:32:1;;;1367:51;;1355:2;1340:18;20782:51:0;1196:228:1;9467:99:0;9546:12;;9467:99;;;1575:25:1;;;1563:2;1548:18;9467:99:0;1429:177:1;11476:283:0;;;;;;:::i;:::-;;:::i;9318:84::-;;;9392:2;2086:36:1;;2074:2;2059:18;9318:84:0;1944:184:1;22902:182:0;;;;;;:::i;:::-;;:::i;:::-;;20840:38;;;;;20739:34;;;;;;;;;20664:66;;20705:25;20664:66;;20602:55;;;;;;:::i;:::-;;;;;;;;;;;;;;;;9629:118;;;;;;:::i;:::-;-1:-1:-1;;;;;9721:18:0;9694:7;9721:18;;;;;;;;;;;;9629:118;19610:103;;;:::i;18935:87::-;19008:6;;-1:-1:-1;;;;;19008:6:0;18935:87;;8575:95;;;:::i;23211:179::-;;;;;;:::i;:::-;;:::i;9952:182::-;;;;;;:::i;:::-;;:::i;23632:146::-;;;;;;:::i;:::-;;:::i;10197:167::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10329:18:0;;;10302:7;10329:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10197:167;19868:220;;;;;;:::i;:::-;;:::i;8365:91::-;8410:13;8443:5;8436:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8365:91;:::o;10683:215::-;10781:4;1205:10;10837:31;1205:10;10853:7;10862:5;10837:8;:31::i;:::-;10886:4;10879:11;;;10683:215;;;;;:::o;11476:283::-;11597:4;1205:10;11655:37;11671:4;1205:10;11686:5;11655:15;:37::i;:::-;11703:26;11713:4;11719:2;11723:5;11703:9;:26::i;:::-;-1:-1:-1;11747:4:0;;11476:283;-1:-1:-1;;;;11476:283:0:o;22902:182::-;18821:13;:11;:13::i;:::-;-1:-1:-1;;;;;22984:32:0;::::1;;::::0;;;:23:::1;:32;::::0;;;;;:39;;-1:-1:-1;;22984:39:0::1;23019:4;22984:39;::::0;;23039:37;::::1;::::0;22984:32;23039:37:::1;22902:182:::0;:::o;19610:103::-;18821:13;:11;:13::i;:::-;19675:30:::1;19702:1;19675:18;:30::i;:::-;19610:103::o:0;8575:95::-;8622:13;8655:7;8648:14;;;;;:::i;23211:179::-;18821:13;:11;:13::i;:::-;-1:-1:-1;;;;;23291:32:0;::::1;23326:5;23291:32:::0;;;:23:::1;:32;::::0;;;;;:40;;-1:-1:-1;;23291:40:0::1;::::0;;23347:35;::::1;::::0;23326:5;23347:35:::1;23211:179:::0;:::o;9952:182::-;10021:4;1205:10;10077:27;1205:10;10094:2;10098:5;10077:9;:27::i;23632:146::-;18821:13;:11;:13::i;:::-;23704:15:::1;:22:::0;;-1:-1:-1;;23704:22:0::1;::::0;::::1;;::::0;;::::1;::::0;;;23742:28:::1;::::0;1144:41:1;;;23742:28:0::1;::::0;1132:2:1;1117:18;23742:28:0::1;;;;;;;23632:146:::0;:::o;19868:220::-;18821:13;:11;:13::i;:::-;-1:-1:-1;;;;;19953:22:0;::::1;19949:93;;19999:31;::::0;-1:-1:-1;;;19999:31:0;;20027:1:::1;19999:31;::::0;::::1;1367:51:1::0;1340:18;;19999:31:0::1;;;;;;;;19949:93;20052:28;20071:8;20052:18;:28::i;:::-;19868:220:::0;:::o;15030:130::-;15115:37;15124:5;15131:7;15140:5;15147:4;15115:8;:37::i;:::-;15030:130;;;:::o;16789:603::-;-1:-1:-1;;;;;10329:18:0;;;16923:24;10329:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;16990:37:0;;16986:399;;17067:5;17048:16;:24;17044:214;;;17100:142;;-1:-1:-1;;;17100:142:0;;-1:-1:-1;;;;;3680:32:1;;17100:142:0;;;3662:51:1;3729:18;;;3722:34;;;3772:18;;;3765:34;;;3635:18;;17100:142:0;3460:345:1;17044:214:0;17301:57;17310:5;17317:7;17345:5;17326:16;:24;17352:5;17301:8;:57::i;:::-;16912:480;16789:603;;;:::o;12144:308::-;-1:-1:-1;;;;;12228:18:0;;12224:88;;12270:30;;-1:-1:-1;;;12270:30:0;;12297:1;12270:30;;;1367:51:1;1340:18;;12270:30:0;1196:228:1;12224:88:0;-1:-1:-1;;;;;12326:16:0;;12322:88;;12366:32;;-1:-1:-1;;;12366:32:0;;12395:1;12366:32;;;1367:51:1;1340:18;;12366:32:0;1196:228:1;12322:88:0;12420:24;12428:4;12434:2;12438:5;12420:7;:24::i;19100:166::-;19008:6;;-1:-1:-1;;;;;19008:6:0;1205:10;19160:23;19156:103;;19207:40;;-1:-1:-1;;;19207:40:0;;1205:10;19207:40;;;1367:51:1;1340:18;;19207:40:0;1196:228:1;20248:191:0;20341:6;;;-1:-1:-1;;;;;20358:17:0;;;-1:-1:-1;;;;;;20358:17:0;;;;;;;20391:40;;20341:6;;;20358:17;20341:6;;20391:40;;20322:16;;20391:40;20311:128;20248:191;:::o;16011:486::-;-1:-1:-1;;;;;16167:19:0;;16163:91;;16210:32;;-1:-1:-1;;;16210:32:0;;16239:1;16210:32;;;1367:51:1;1340:18;;16210:32:0;1196:228:1;16163:91:0;-1:-1:-1;;;;;16268:21:0;;16264:92;;16313:31;;-1:-1:-1;;;16313:31:0;;16341:1;16313:31;;;1367:51:1;1340:18;;16313:31:0;1196:228:1;16264:92:0;-1:-1:-1;;;;;16366:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;16412:78;;;;16463:7;-1:-1:-1;;;;;16447:31:0;16456:5;-1:-1:-1;;;;;16447:31:0;;16472:5;16447:31;;;;1575:25:1;;1563:2;1548:18;;1429:177;16447:31:0;;;;;;;;16011:486;;;;:::o;22439:334::-;20705:25;22543:13;22553:2;-1:-1:-1;;;;;9721:18:0;9694:7;9721:18;;;;;;;;;;;;9629:118;22543:13;22535:21;;:5;:21;:::i;:::-;22534:41;;:72;;;-1:-1:-1;;;;;;22579:27:0;;;;;;:23;:27;;;;;;;;22534:72;:99;;;-1:-1:-1;19008:6:0;;-1:-1:-1;;;;;19008:6:0;1205:10;22610:23;22534:99;:119;;;-1:-1:-1;22638:15:0;;;;22637:16;22534:119;22526:198;;;;-1:-1:-1;;;22526:198:0;;4239:2:1;22526:198:0;;;4221:21:1;4278:2;4258:18;;;4251:30;4317:34;4297:18;;;4290:62;-1:-1:-1;;;4368:18:1;;;4361:51;4429:19;;22526:198:0;4037:417:1;22526:198:0;22735:30;22749:4;22755:2;22759:5;-1:-1:-1;;;;;12866:18:0;;12862:552;;13020:5;13004:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;12862:552:0;;-1:-1:-1;12862:552:0;;-1:-1:-1;;;;;13080:15:0;;13058:19;13080:15;;;;;;;;;;;13114:19;;;13110:117;;;13161:50;;-1:-1:-1;;;13161:50:0;;-1:-1:-1;;;;;3680:32:1;;13161:50:0;;;3662:51:1;3729:18;;;3722:34;;;3772:18;;;3765:34;;;3635:18;;13161:50:0;3460:345:1;13110:117:0;-1:-1:-1;;;;;13350:15:0;;:9;:15;;;;;;;;;;13368:19;;;;13350:37;;12862:552;-1:-1:-1;;;;;13430:16:0;;13426:435;;13596:12;:21;;;;;;;13426:435;;;-1:-1:-1;;;;;13812:13:0;;:9;:13;;;;;;;;;;:22;;;;;;13426:435;13893:2;-1:-1:-1;;;;;13878:25:0;13887:4;-1:-1:-1;;;;;13878:25:0;;13897:5;13878:25;;;;1575::1;;1563:2;1548:18;;1429:177;13878:25:0;;;;;;;;12776:1135;;;:::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;1611:328::-;1688:6;1696;1704;1757:2;1745:9;1736:7;1732:23;1728:32;1725:52;;;1773:1;1770;1763:12;1725:52;1796:29;1815:9;1796:29;:::i;:::-;1786:39;;1844:38;1878:2;1867:9;1863:18;1844:38;:::i;:::-;1834:48;;1929:2;1918:9;1914:18;1901:32;1891:42;;1611:328;;;;;:::o;2133:186::-;2192:6;2245:2;2233:9;2224:7;2220:23;2216:32;2213:52;;;2261:1;2258;2251:12;2213:52;2284:29;2303:9;2284:29;:::i;:::-;2274:39;2133:186;-1:-1:-1;;;2133:186:1:o;2532:273::-;2588:6;2641:2;2629:9;2620:7;2616:23;2612:32;2609:52;;;2657:1;2654;2647:12;2609:52;2696:9;2683:23;2749:5;2742:13;2735:21;2728:5;2725:32;2715:60;;2771:1;2768;2761:12;2810:260;2878:6;2886;2939:2;2927:9;2918:7;2914:23;2910:32;2907:52;;;2955:1;2952;2945:12;2907:52;2978:29;2997:9;2978:29;:::i;:::-;2968:39;;3026:38;3060:2;3049:9;3045:18;3026:38;:::i;:::-;3016:48;;2810:260;;;;;:::o;3075:380::-;3154:1;3150:12;;;;3197;;;3218:61;;3272:4;3264:6;3260:17;3250:27;;3218:61;3325:2;3317:6;3314:14;3294:18;3291:38;3288:161;;3371:10;3366:3;3362:20;3359:1;3352:31;3406:4;3403:1;3396:15;3434:4;3431:1;3424:15;3288:161;;3075:380;;;:::o;3810:222::-;3875:9;;;3896:10;;;3893:133;;;3948:10;3943:3;3939:20;3936:1;3929:31;3983:4;3980:1;3973:15;4011:4;4008:1;4001:15

Swarm Source

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