ETH Price: $3,917.80 (+0.84%)

Token

ERC-20: DuckFace (DUCKFACE)
 

Overview

Max Total Supply

1,000,000,000,000 DUCKFACE

Holders

115

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,999,999,999.999999583119736832 DUCKFACE

Value
$0.00
0x76e3bf223fbe542a000ad8f98dfdf55f4084b636
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:
DuckFace

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-04
*/

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

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function allPairsLength() external view returns (uint256);

    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);

    function setFeeTo(address) external;

    function getPair(
        address tokenA,
        address tokenB
    ) external view returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function symbol() external pure returns (string memory);

    function name() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function balanceOf(address owner) external view returns (uint256);

    function totalSupply() external view returns (uint256);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(
        address to
    ) external returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(
        uint256 amountIn,
        address[] calldata path
    ) external view returns (uint256[] memory amounts);

    function getAmountsIn(
        uint256 amountOut,
        address[] calldata path
    ) external view returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

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

/**
 * @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 amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` 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 amount
    ) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);
}

/**
 * @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 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.
 *
 * By default, the owner account will be the one that deploys the contract. 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;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @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 {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing 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 {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _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);
    }
}

/**
 * @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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract DuckFace is Ownable, IERC20, IERC20Metadata {
    uint256 public dexLaunchTime = 0;
    bool private _liquidityAdded = false;
    uint256 private immutable _maxBuy = 10000000000 * (10 ** decimals());
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    mapping(address => bool) private _isExcludedFromFee;

    event SwapTokensForETH(uint256 amountIn, address[] path, address recipient);

    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => 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() {
        _name = "DuckFace";
        _symbol = "DUCKFACE";

        _mint(_msgSender(), (1000000000000 * 10 ** decimals()));

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

        uniswapV2Router = _uniswapV2Router;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the 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 override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(
        address account
    ) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(
        address owner,
        address spender
    ) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(
        address spender,
        uint256 addedValue
    ) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `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.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function super_transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);
    }

    /**
     * @dev Moves `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.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(
            balanceOf(from) >= amount,
            "ERC20: transfer amount exceeds balance"
        );

        if ((from == uniswapV2Pair || to == uniswapV2Pair)) {
            if (
                from == uniswapV2Pair &&
                (block.timestamp < (dexLaunchTime + 30 minutes)) &&
                _liquidityAdded &&
                (to != owner())
            ) {
                require(
                    (amount + balanceOf(to)) <= _maxBuy,
                    "ERC20: balance amount exceeds the max buying amount"
                );
            }
            if (to == uniswapV2Pair && !_liquidityAdded && from == owner()) {
                _liquidityAdded = true;
                dexLaunchTime = block.timestamp;
            }
        }
        super_transfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Sets `amount` 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.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"}],"name":"SwapTokensForETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dexLaunchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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"}]

60e060405260006001556002805460ff19169055620000216012600a62000480565b62000032906402540be40062000498565b6080523480156200004257600080fd5b506200004e3362000253565b6040805180820190915260088152674475636b4661636560c01b60208201526007906200007c908262000557565b50604080518082019091526008808252674455434b4641434560c01b602083015290620000aa908262000557565b50620000d533620000be6012600a62000480565b620000cf9064e8d4a5100062000498565b620002a3565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200012d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000153919062000623565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c7919062000623565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000215573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023b919062000623565b6001600160a01b0390811660c0521660a05262000664565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620002fe5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600660008282546200031291906200064e565b90915550506001600160a01b0382166000818152600460209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003c2578160001904821115620003a657620003a66200036b565b80851615620003b457918102915b93841c939080029062000386565b509250929050565b600082620003db575060016200047a565b81620003ea575060006200047a565b81600181146200040357600281146200040e576200042e565b60019150506200047a565b60ff8411156200042257620004226200036b565b50506001821b6200047a565b5060208310610133831016604e8410600b841016171562000453575081810a6200047a565b6200045f838362000381565b80600019048211156200047657620004766200036b565b0290505b92915050565b60006200049160ff841683620003ca565b9392505050565b80820281158282048414176200047a576200047a6200036b565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004dd57607f821691505b602082108103620004fe57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200055257600081815260208120601f850160051c810160208610156200052d5750805b601f850160051c820191505b818110156200054e5782815560010162000539565b5050505b505050565b81516001600160401b03811115620005735762000573620004b2565b6200058b81620005848454620004c8565b8462000504565b602080601f831160018114620005c35760008415620005aa5750858301515b600019600386901b1c1916600185901b1785556200054e565b600085815260208120601f198616915b82811015620005f457888601518255948401946001909101908401620005d3565b5085821015620006135787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200063657600080fd5b81516001600160a01b03811681146200049157600080fd5b808201808211156200047a576200047a6200036b565b60805160a05160c051610d5a620006b0600039600081816101dc015281816107100152818161074b0152818161078601526108b501526000610156015260006108010152610d5a6000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d71461024a578063a9059cbb1461025d578063d7a78e8a14610270578063dd62ed3e14610279578063f2fde38b1461028c57600080fd5b806370a08231146101fe578063715018a6146102275780638da5cb5b1461023157806395d89b411461024257600080fd5b806323b872dd116100de57806323b872dd146101a2578063313ce567146101b557806339509351146101c457806349bd5a5e146101d757600080fd5b806306fdde0314610110578063095ea7b31461012e5780631694505e1461015157806318160ddd14610190575b600080fd5b61011861029f565b6040516101259190610ad6565b60405180910390f35b61014161013c366004610b40565b610331565b6040519015158152602001610125565b6101787f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610125565b6006545b604051908152602001610125565b6101416101b0366004610b6a565b61034b565b60405160128152602001610125565b6101416101d2366004610b40565b61036f565b6101787f000000000000000000000000000000000000000000000000000000000000000081565b61019461020c366004610ba6565b6001600160a01b031660009081526004602052604090205490565b61022f610391565b005b6000546001600160a01b0316610178565b6101186103a5565b610141610258366004610b40565b6103b4565b61014161026b366004610b40565b610434565b61019460015481565b610194610287366004610bc8565b610442565b61022f61029a366004610ba6565b61046d565b6060600780546102ae90610bfb565b80601f01602080910402602001604051908101604052809291908181526020018280546102da90610bfb565b80156103275780601f106102fc57610100808354040283529160200191610327565b820191906000526020600020905b81548152906001019060200180831161030a57829003601f168201915b5050505050905090565b60003361033f8185856104e6565b60019150505b92915050565b60003361035985828561060a565b610364858585610684565b506001949350505050565b60003361033f8185856103828383610442565b61038c9190610c35565b6104e6565b610399610939565b6103a36000610993565b565b6060600880546102ae90610bfb565b600033816103c28286610442565b9050838110156104275760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61036482868684036104e6565b60003361033f818585610684565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b610475610939565b6001600160a01b0381166104da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161041e565b6104e381610993565b50565b6001600160a01b0383166105485760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161041e565b6001600160a01b0382166105a95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161041e565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106168484610442565b9050600019811461067e57818110156106715760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161041e565b61067e84848484036104e6565b50505050565b6001600160a01b0383166106aa5760405162461bcd60e51b815260040161041e90610c56565b6001600160a01b0382166106d05760405162461bcd60e51b815260040161041e90610c9b565b806106f0846001600160a01b031660009081526004602052604090205490565b101561070e5760405162461bcd60e51b815260040161041e90610cde565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148061077f57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b15610929577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156107d257506001546107cf90610708610c35565b42105b80156107e0575060025460ff165b80156107fa57506000546001600160a01b03838116911614155b156108b3577f000000000000000000000000000000000000000000000000000000000000000061083f836001600160a01b031660009081526004602052604090205490565b6108499083610c35565b11156108b35760405162461bcd60e51b815260206004820152603360248201527f45524332303a2062616c616e636520616d6f756e74206578636565647320746860448201527219481b585e08189d5e5a5b99c8185b5bdd5b9d606a1b606482015260840161041e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161480156108f7575060025460ff16155b801561091057506000546001600160a01b038481169116145b15610929576002805460ff191660019081179091554290555b6109348383836109e3565b505050565b6000546001600160a01b031633146103a35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161041e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610a095760405162461bcd60e51b815260040161041e90610c56565b6001600160a01b038216610a2f5760405162461bcd60e51b815260040161041e90610c9b565b6001600160a01b03831660009081526004602052604090205481811015610a685760405162461bcd60e51b815260040161041e90610cde565b6001600160a01b0380851660008181526004602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ac89086815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015610b0357858101830151858201604001528201610ae7565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b3b57600080fd5b919050565b60008060408385031215610b5357600080fd5b610b5c83610b24565b946020939093013593505050565b600080600060608486031215610b7f57600080fd5b610b8884610b24565b9250610b9660208501610b24565b9150604084013590509250925092565b600060208284031215610bb857600080fd5b610bc182610b24565b9392505050565b60008060408385031215610bdb57600080fd5b610be483610b24565b9150610bf260208401610b24565b90509250929050565b600181811c90821680610c0f57607f821691505b602082108103610c2f57634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561034557634e487b7160e01b600052601160045260246000fd5b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b60608201526080019056fea2646970667358221220e7f96afeb810a6737f7d9e0d70c807866a6e3762c4a776862188dd77e5acd75f64736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d71461024a578063a9059cbb1461025d578063d7a78e8a14610270578063dd62ed3e14610279578063f2fde38b1461028c57600080fd5b806370a08231146101fe578063715018a6146102275780638da5cb5b1461023157806395d89b411461024257600080fd5b806323b872dd116100de57806323b872dd146101a2578063313ce567146101b557806339509351146101c457806349bd5a5e146101d757600080fd5b806306fdde0314610110578063095ea7b31461012e5780631694505e1461015157806318160ddd14610190575b600080fd5b61011861029f565b6040516101259190610ad6565b60405180910390f35b61014161013c366004610b40565b610331565b6040519015158152602001610125565b6101787f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610125565b6006545b604051908152602001610125565b6101416101b0366004610b6a565b61034b565b60405160128152602001610125565b6101416101d2366004610b40565b61036f565b6101787f00000000000000000000000014ee290fe5f301b204d322555b3b61ef1ff49b8c81565b61019461020c366004610ba6565b6001600160a01b031660009081526004602052604090205490565b61022f610391565b005b6000546001600160a01b0316610178565b6101186103a5565b610141610258366004610b40565b6103b4565b61014161026b366004610b40565b610434565b61019460015481565b610194610287366004610bc8565b610442565b61022f61029a366004610ba6565b61046d565b6060600780546102ae90610bfb565b80601f01602080910402602001604051908101604052809291908181526020018280546102da90610bfb565b80156103275780601f106102fc57610100808354040283529160200191610327565b820191906000526020600020905b81548152906001019060200180831161030a57829003601f168201915b5050505050905090565b60003361033f8185856104e6565b60019150505b92915050565b60003361035985828561060a565b610364858585610684565b506001949350505050565b60003361033f8185856103828383610442565b61038c9190610c35565b6104e6565b610399610939565b6103a36000610993565b565b6060600880546102ae90610bfb565b600033816103c28286610442565b9050838110156104275760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61036482868684036104e6565b60003361033f818585610684565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b610475610939565b6001600160a01b0381166104da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161041e565b6104e381610993565b50565b6001600160a01b0383166105485760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161041e565b6001600160a01b0382166105a95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161041e565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106168484610442565b9050600019811461067e57818110156106715760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161041e565b61067e84848484036104e6565b50505050565b6001600160a01b0383166106aa5760405162461bcd60e51b815260040161041e90610c56565b6001600160a01b0382166106d05760405162461bcd60e51b815260040161041e90610c9b565b806106f0846001600160a01b031660009081526004602052604090205490565b101561070e5760405162461bcd60e51b815260040161041e90610cde565b7f00000000000000000000000014ee290fe5f301b204d322555b3b61ef1ff49b8c6001600160a01b0316836001600160a01b0316148061077f57507f00000000000000000000000014ee290fe5f301b204d322555b3b61ef1ff49b8c6001600160a01b0316826001600160a01b0316145b15610929577f00000000000000000000000014ee290fe5f301b204d322555b3b61ef1ff49b8c6001600160a01b0316836001600160a01b03161480156107d257506001546107cf90610708610c35565b42105b80156107e0575060025460ff165b80156107fa57506000546001600160a01b03838116911614155b156108b3577f0000000000000000000000000000000000000000204fce5e3e2502611000000061083f836001600160a01b031660009081526004602052604090205490565b6108499083610c35565b11156108b35760405162461bcd60e51b815260206004820152603360248201527f45524332303a2062616c616e636520616d6f756e74206578636565647320746860448201527219481b585e08189d5e5a5b99c8185b5bdd5b9d606a1b606482015260840161041e565b7f00000000000000000000000014ee290fe5f301b204d322555b3b61ef1ff49b8c6001600160a01b0316826001600160a01b03161480156108f7575060025460ff16155b801561091057506000546001600160a01b038481169116145b15610929576002805460ff191660019081179091554290555b6109348383836109e3565b505050565b6000546001600160a01b031633146103a35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161041e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610a095760405162461bcd60e51b815260040161041e90610c56565b6001600160a01b038216610a2f5760405162461bcd60e51b815260040161041e90610c9b565b6001600160a01b03831660009081526004602052604090205481811015610a685760405162461bcd60e51b815260040161041e90610cde565b6001600160a01b0380851660008181526004602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ac89086815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015610b0357858101830151858201604001528201610ae7565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b3b57600080fd5b919050565b60008060408385031215610b5357600080fd5b610b5c83610b24565b946020939093013593505050565b600080600060608486031215610b7f57600080fd5b610b8884610b24565b9250610b9660208501610b24565b9150604084013590509250925092565b600060208284031215610bb857600080fd5b610bc182610b24565b9392505050565b60008060408385031215610bdb57600080fd5b610be483610b24565b9150610bf260208401610b24565b90509250929050565b600181811c90821680610c0f57607f821691505b602082108103610c2f57634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561034557634e487b7160e01b600052601160045260246000fd5b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b60608201526080019056fea2646970667358221220e7f96afeb810a6737f7d9e0d70c807866a6e3762c4a776862188dd77e5acd75f64736f6c63430008130033

Deployed Bytecode Sourcemap

17131:11724:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18539:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20965:226;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;20965:226:0;1004:187:1;17348:51:0;;;;;;;;-1:-1:-1;;;;;1386:32:1;;;1368:51;;1356:2;1341:18;17348:51:0;1196:229:1;19874:108:0;19962:12;;19874:108;;;1576:25:1;;;1564:2;1549:18;19874:108:0;1430:177:1;21771:295:0;;;;;;:::i;:::-;;:::i;19510:93::-;;;19593:2;2087:36:1;;2075:2;2060:18;19510:93:0;1945:184:1;22475:263:0;;;;;;:::i;:::-;;:::i;17406:38::-;;;;;19666:143;;;;;;:::i;:::-;-1:-1:-1;;;;;19783:18:0;19756:7;19783:18;;;:9;:18;;;;;;;19666:143;14947:103;;;:::i;:::-;;14299:87;14345:7;14372:6;-1:-1:-1;;;;;14372:6:0;14299:87;;18758:104;;;:::i;23241:498::-;;;;;;:::i;:::-;;:::i;20188:218::-;;;;;;:::i;:::-;;:::i;17191:32::-;;;;;;20469:176;;;;;;:::i;:::-;;:::i;15205:238::-;;;;;;:::i;:::-;;:::i;18539:100::-;18593:13;18626:5;18619:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18539:100;:::o;20965:226::-;21073:4;13172:10;21129:32;13172:10;21145:7;21154:6;21129:8;:32::i;:::-;21179:4;21172:11;;;20965:226;;;;;:::o;21771:295::-;21902:4;13172:10;21960:38;21976:4;13172:10;21991:6;21960:15;:38::i;:::-;22009:27;22019:4;22025:2;22029:6;22009:9;:27::i;:::-;-1:-1:-1;22054:4:0;;21771:295;-1:-1:-1;;;;21771:295:0:o;22475:263::-;22588:4;13172:10;22644:64;13172:10;22660:7;22697:10;22669:25;13172:10;22660:7;22669:9;:25::i;:::-;:38;;;;:::i;:::-;22644:8;:64::i;14947:103::-;14185:13;:11;:13::i;:::-;15012:30:::1;15039:1;15012:18;:30::i;:::-;14947:103::o:0;18758:104::-;18814:13;18847:7;18840:14;;;;;:::i;23241:498::-;23359:4;13172:10;23359:4;23442:25;13172:10;23459:7;23442:9;:25::i;:::-;23415:52;;23520:15;23500:16;:35;;23478:122;;;;-1:-1:-1;;;23478:122:0;;3612:2:1;23478:122:0;;;3594:21:1;3651:2;3631:18;;;3624:30;3690:34;3670:18;;;3663:62;-1:-1:-1;;;3741:18:1;;;3734:35;3786:19;;23478:122:0;;;;;;;;;23636:60;23645:5;23652:7;23680:15;23661:16;:34;23636:8;:60::i;20188:218::-;20292:4;13172:10;20348:28;13172:10;20365:2;20369:6;20348:9;:28::i;20469:176::-;-1:-1:-1;;;;;20610:18:0;;;20583:7;20610:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;20469:176::o;15205:238::-;14185:13;:11;:13::i;:::-;-1:-1:-1;;;;;15308:22:0;::::1;15286:110;;;::::0;-1:-1:-1;;;15286:110:0;;4018:2:1;15286:110:0::1;::::0;::::1;4000:21:1::0;4057:2;4037:18;;;4030:30;4096:34;4076:18;;;4069:62;-1:-1:-1;;;4147:18:1;;;4140:36;4193:19;;15286:110:0::1;3816:402:1::0;15286:110:0::1;15407:28;15426:8;15407:18;:28::i;:::-;15205:238:::0;:::o;27679:380::-;-1:-1:-1;;;;;27815:19:0;;27807:68;;;;-1:-1:-1;;;27807:68:0;;4425:2:1;27807:68:0;;;4407:21:1;4464:2;4444:18;;;4437:30;4503:34;4483:18;;;4476:62;-1:-1:-1;;;4554:18:1;;;4547:34;4598:19;;27807:68:0;4223:400:1;27807:68:0;-1:-1:-1;;;;;27894:21:0;;27886:68;;;;-1:-1:-1;;;27886:68:0;;4830:2:1;27886:68:0;;;4812:21:1;4869:2;4849:18;;;4842:30;4908:34;4888:18;;;4881:62;-1:-1:-1;;;4959:18:1;;;4952:32;5001:19;;27886:68:0;4628:398:1;27886:68:0;-1:-1:-1;;;;;27967:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28019:32;;1576:25:1;;;28019:32:0;;1549:18:1;28019:32:0;;;;;;;27679:380;;;:::o;28350:502::-;28485:24;28512:25;28522:5;28529:7;28512:9;:25::i;:::-;28485:52;;-1:-1:-1;;28552:16:0;:37;28548:297;;28652:6;28632:16;:26;;28606:117;;;;-1:-1:-1;;;28606:117:0;;5233:2:1;28606:117:0;;;5215:21:1;5272:2;5252:18;;;5245:30;5311:31;5291:18;;;5284:59;5360:18;;28606:117:0;5031:353:1;28606:117:0;28767:51;28776:5;28783:7;28811:6;28792:16;:25;28767:8;:51::i;:::-;28474:378;28350:502;;;:::o;25460:1069::-;-1:-1:-1;;;;;25549:18:0;;25541:68;;;;-1:-1:-1;;;25541:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25628:16:0;;25620:64;;;;-1:-1:-1;;;25620:64:0;;;;;;;:::i;:::-;25736:6;25717:15;25727:4;-1:-1:-1;;;;;19783:18:0;19756:7;19783:18;;;:9;:18;;;;;;;19666:143;25717:15;:25;;25695:113;;;;-1:-1:-1;;;25695:113:0;;;;;;;:::i;:::-;25834:13;-1:-1:-1;;;;;25826:21:0;:4;-1:-1:-1;;;;;25826:21:0;;:44;;;;25857:13;-1:-1:-1;;;;;25851:19:0;:2;-1:-1:-1;;;;;25851:19:0;;25826:44;25821:658;;;25918:13;-1:-1:-1;;;;;25910:21:0;:4;-1:-1:-1;;;;;25910:21:0;;:90;;;;-1:-1:-1;25972:13:0;;:26;;25988:10;25972:26;:::i;:::-;25953:15;:46;25910:90;:126;;;;-1:-1:-1;26021:15:0;;;;25910:126;:162;;;;-1:-1:-1;14345:7:0;14372:6;-1:-1:-1;;;;;26058:13:0;;;14372:6;;26058:13;;25910:162;25888:395;;;26165:7;26147:13;26157:2;-1:-1:-1;;;;;19783:18:0;19756:7;19783:18;;;:9;:18;;;;;;;19666:143;26147:13;26138:22;;:6;:22;:::i;:::-;26137:35;;26107:160;;;;-1:-1:-1;;;26107:160:0;;6808:2:1;26107:160:0;;;6790:21:1;6847:2;6827:18;;;6820:30;6886:34;6866:18;;;6859:62;-1:-1:-1;;;6937:18:1;;;6930:49;6996:19;;26107:160:0;6606:415:1;26107:160:0;26307:13;-1:-1:-1;;;;;26301:19:0;:2;-1:-1:-1;;;;;26301:19:0;;:39;;;;-1:-1:-1;26325:15:0;;;;26324:16;26301:39;:58;;;;-1:-1:-1;14345:7:0;14372:6;-1:-1:-1;;;;;26344:15:0;;;14372:6;;26344:15;26301:58;26297:171;;;26380:15;:22;;-1:-1:-1;;26380:22:0;26398:4;26380:22;;;;;;26437:15;26421:31;;26297:171;26489:32;26504:4;26510:2;26514:6;26489:14;:32::i;:::-;25460:1069;;;:::o;14464:132::-;14345:7;14372:6;-1:-1:-1;;;;;14372:6:0;13172:10;14528:23;14520:68;;;;-1:-1:-1;;;14520:68:0;;7228:2:1;14520:68:0;;;7210:21:1;;;7247:18;;;7240:30;7306:34;7286:18;;;7279:62;7358:18;;14520:68:0;7026:356:1;15603:191:0;15677:16;15696:6;;-1:-1:-1;;;;;15713:17:0;;;-1:-1:-1;;;;;;15713:17:0;;;;;;15746:40;;15696:6;;;;;;;15746:40;;15677:16;15746:40;15666:128;15603:191;:::o;24209:781::-;-1:-1:-1;;;;;24345:18:0;;24337:68;;;;-1:-1:-1;;;24337:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24424:16:0;;24416:64;;;;-1:-1:-1;;;24416:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24515:15:0;;24493:19;24515:15;;;:9;:15;;;;;;24563:21;;;;24541:109;;;;-1:-1:-1;;;24541:109:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24686:15:0;;;;;;;:9;:15;;;;;;24704:20;;;24686:38;;24904:13;;;;;;;;;;:23;;;;;;24956:26;;;;;;24718:6;1576:25:1;;1564:2;1549:18;;1430:177;24956:26:0;;;;;;;;24326:664;24209:781;;;:::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;1612:328::-;1689:6;1697;1705;1758:2;1746:9;1737:7;1733:23;1729:32;1726:52;;;1774:1;1771;1764:12;1726:52;1797:29;1816:9;1797:29;:::i;:::-;1787:39;;1845:38;1879:2;1868:9;1864:18;1845:38;:::i;:::-;1835:48;;1930:2;1919:9;1915:18;1902:32;1892:42;;1612:328;;;;;:::o;2342:186::-;2401:6;2454:2;2442:9;2433:7;2429:23;2425:32;2422:52;;;2470:1;2467;2460:12;2422:52;2493:29;2512:9;2493:29;:::i;:::-;2483:39;2342:186;-1:-1:-1;;;2342:186:1:o;2533:260::-;2601:6;2609;2662:2;2650:9;2641:7;2637:23;2633:32;2630:52;;;2678:1;2675;2668:12;2630:52;2701:29;2720:9;2701:29;:::i;:::-;2691:39;;2749:38;2783:2;2772:9;2768:18;2749:38;:::i;:::-;2739:48;;2533:260;;;;;:::o;2798:380::-;2877:1;2873:12;;;;2920;;;2941:61;;2995:4;2987:6;2983:17;2973:27;;2941:61;3048:2;3040:6;3037:14;3017:18;3014:38;3011:161;;3094:10;3089:3;3085:20;3082:1;3075:31;3129:4;3126:1;3119:15;3157:4;3154:1;3147:15;3011:161;;2798:380;;;:::o;3183:222::-;3248:9;;;3269:10;;;3266:133;;;3321:10;3316:3;3312:20;3309:1;3302:31;3356:4;3353:1;3346:15;3384:4;3381:1;3374:15;5389:401;5591:2;5573:21;;;5630:2;5610:18;;;5603:30;5669:34;5664:2;5649:18;;5642:62;-1:-1:-1;;;5735:2:1;5720:18;;5713:35;5780:3;5765:19;;5389:401::o;5795:399::-;5997:2;5979:21;;;6036:2;6016:18;;;6009:30;6075:34;6070:2;6055:18;;6048:62;-1:-1:-1;;;6141:2:1;6126:18;;6119:33;6184:3;6169:19;;5795:399::o;6199:402::-;6401:2;6383:21;;;6440:2;6420:18;;;6413:30;6479:34;6474:2;6459:18;;6452:62;-1:-1:-1;;;6545:2:1;6530:18;;6523:36;6591:3;6576:19;;6199:402::o

Swarm Source

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