ETH Price: $3,271.39 (-4.23%)
Gas: 8 Gwei

Token

Sandworm (WORM)
 

Overview

Max Total Supply

100,000,000 WORM

Holders

54

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
24,800 WORM

Value
$0.00
0x35a84ddacefdf2162b50df824e585e289df665ce
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:
Sandworm

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

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

File 2 of 7 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 3 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

File 4 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

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

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

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

File 5 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

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

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}

File 6 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 7 of 7 : Sandworm.sol
// SPDX-License-Identifier: MIT

/**

    ######     ###    ##    ## ########  ##      ##  #######  ########  ##     ## 
   ##    ##   ## ##   ###   ## ##     ## ##  ##  ## ##     ## ##     ## ###   ### 
   ##        ##   ##  ####  ## ##     ## ##  ##  ## ##     ## ##     ## #### #### 
    ######  ##     ## ## ## ## ##     ## ##  ##  ## ##     ## ########  ## ### ## 
         ## ######### ##  #### ##     ## ##  ##  ## ##     ## ##   ##   ##     ## 
   ##    ## ##     ## ##   ### ##     ## ##  ##  ## ##     ## ##    ##  ##     ## 
    ######  ##     ## ##    ## ########   ###  ###   #######  ##     ## ##     ##



    Sandworm is a meme coin with no inherent value or financial projections. 
    There is no established team or roadmap. 
    The token serves no practical purpose and is intended solely for entertainment.


    Arrakis 2024

    > https://sandworm.world
    > https://t.me/sandworm_eth
    > https://twitter.com/sandworm_erc
    
 */

pragma solidity ^0.8.24;

import {ERC20, IERC20, Context} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

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

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    )
        external
        payable
        returns (uint amountToken, uint amountETH, uint liquidity);
}

contract Sandworm is ERC20, Ownable {
    uint256 public constant MAX_TOTAL_SUPPLY = 1e8 * 1e18;

    uint256 public maxTxAmount = 2000000 * 10 ** 18;
    uint256 public maxWalletSize = 2000000 * 10 ** 18;
    uint256 public maxFeeSwap = 2000000 * 10 ** 18;
    uint256 public feeSwapThreshold = 1000000 * 10 ** 18;

    address public lp;

    IUniswapV2Router02 public uniswapV2Router;

    mapping(address => bool) private _isExcludedFromFee;

    address payable private _opsWallet;

    uint256 private _initialBuyFee = 23;
    uint256 private _initialSellFee = 23;
    uint256 private _finalBuyFee = 0;
    uint256 private _finalSellFee = 0;
    uint256 private _countToReduce = 24;
    uint256 private _blockForSwapFee = 26;
    uint256 private _totalBuy = 0;
    uint256 private _sellCountPerBlock = 0;
    uint256 private _lastSellBlock = 0;

    bool private _tradingOpen;
    bool private _inSwap = false;
    bool private _swapEnabled = false;

    error OpsUnauthorizedAccount(address account);
    error SellLimitPerBlock(string msg);
    error TradingAlready();

    event MaxTxAmountUpdated(uint _maxTxAmount);

    modifier _lock() {
        _inSwap = true;
        _;
        _inSwap = false;
    }

    modifier onlyOps() {
        if (_opsWallet != _msgSender()) {
            revert OpsUnauthorizedAccount(_msgSender());
        }
        _;
    }

    constructor(
        address router
    ) ERC20("Sandworm", "WORM") Ownable(_msgSender()) {
        address owner = _msgSender();

        _opsWallet = payable(owner);
        _isExcludedFromFee[owner] = true;
        _isExcludedFromFee[address(this)] = true;

        uniswapV2Router = IUniswapV2Router02(router);

        super._update(address(0), owner, MAX_TOTAL_SUPPLY);
    }

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(amount > 0, "Transfer amount must be greater than zero");
        uint256 fee = 0;
        address owner = owner();

        if (from != owner && to != owner) {
            fee =
                (amount *
                    (
                        (_totalBuy > _countToReduce)
                            ? _finalBuyFee
                            : _initialBuyFee
                    )) /
                100;

            if (
                from == lp &&
                to != address(uniswapV2Router) &&
                !_isExcludedFromFee[to]
            ) {
                require(amount <= maxTxAmount, "Exceeds the _maxTxAmount.");
                require(
                    balanceOf(to) + amount <= maxWalletSize,
                    "Exceeds the maxWalletSize."
                );
                _totalBuy++;
            }

            if (to == lp && from != address(this)) {
                fee =
                    (amount *
                        (
                            (_totalBuy > _countToReduce)
                                ? _finalSellFee
                                : _initialSellFee
                        )) /
                    100;
            }

            if (
                !_inSwap &&
                _swapEnabled &&
                _totalBuy > _blockForSwapFee &&
                to == lp
            ) {
                uint256 balance = balanceOf(address(this));

                if (balance > feeSwapThreshold) {
                    if (block.number > _lastSellBlock) {
                        _sellCountPerBlock = 0;
                    } else if (_sellCountPerBlock > 2) {
                        revert SellLimitPerBlock("Only 3 sells per block!");
                    }

                    _swapTokensForEth(_min(balance, maxFeeSwap));
                    uint256 contractETHBalance = address(this).balance;
                    if (contractETHBalance > 0) {
                        _sendETHToFee(address(this).balance);
                    }
                    _sellCountPerBlock++;
                    _lastSellBlock = block.number;
                }
            }

            if (fee > 0) {
                amount -= fee;
                super._update(from, address(this), fee);
            }
        }

        super._update(from, to, amount);
    }

    function _min(uint256 a, uint256 b) private pure returns (uint256) {
        return (a > b) ? b : a;
    }

    function _sendETHToFee(uint256 amount) private {
        _opsWallet.transfer(amount);
    }

    function _swapTokensForEth(uint256 tokenAmount) private _lock {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function removeLimits() external onlyOps {
        maxTxAmount = MAX_TOTAL_SUPPLY;
        maxWalletSize = MAX_TOTAL_SUPPLY;
        emit MaxTxAmountUpdated(MAX_TOTAL_SUPPLY);
    }

    function openTrading() external payable onlyOwner {
        if (_tradingOpen) {
            revert TradingAlready();
        }

        _approve(address(this), address(uniswapV2Router), MAX_TOTAL_SUPPLY);

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

        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );

        IERC20(lp).approve(address(uniswapV2Router), type(uint).max);
        _swapEnabled = true;
        _tradingOpen = true;

        renounceOwnership();
    }

    receive() external payable {}
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"router","type":"address"}],"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":"account","type":"address"}],"name":"OpsUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"string","name":"msg","type":"string"}],"name":"SellLimitPerBlock","type":"error"},{"inputs":[],"name":"TradingAlready","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","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":[],"name":"MAX_TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lp","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFeeSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526a01a784379d99db420000006006819055600781905560085569d3c21bcecceda10000006009556017600e819055600f8190556000601081905560118190556018601255601a60135560148190556015819055601655805462ffff00191690553480156200007157600080fd5b50604051620019ef380380620019ef833981016040819052620000949162000330565b336040518060400160405280600881526020016753616e64776f726d60c01b81525060405180604001604052806004815260200163574f524d60e01b8152508160039081620000e4919062000409565b506004620000f3828262000409565b5050506001600160a01b0381166200012657604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6200013181620001ab565b50600d80546001600160a01b0319908116339081179092556000828152600c6020526040808220805460ff1990811660019081179092553084529183208054909216179055600b80549092166001600160a01b03851617909155620001a390826a52b7d2dcc80cd2e4000000620001fd565b5050620004fd565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166200022c578060026000828254620002209190620004d5565b90915550620002a09050565b6001600160a01b03831660009081526020819052604090205481811015620002815760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016200011d565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216620002be57600280548290039055620002dd565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200032391815260200190565b60405180910390a3505050565b6000602082840312156200034357600080fd5b81516001600160a01b03811681146200035b57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200038d57607f821691505b602082108103620003ae57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000404576000816000526020600020601f850160051c81016020861015620003df5750805b601f850160051c820191505b818110156200040057828155600101620003eb565b5050505b505050565b81516001600160401b0381111562000425576200042562000362565b6200043d8162000436845462000378565b84620003b4565b602080601f8311600181146200047557600084156200045c5750858301515b600019600386901b1c1916600185901b17855562000400565b600085815260208120601f198616915b82811015620004a65788860151825594840194600190910190840162000485565b5085821015620004c55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620004f757634e487b7160e01b600052601160045260246000fd5b92915050565b6114e2806200050d6000396000f3fe60806040526004361061012e5760003560e01c8063715018a6116100ab57806395d89b411161006f57806395d89b4114610329578063a9059cbb1461033e578063c9567bf91461035e578063dd62ed3e14610366578063de287071146103ac578063f2fde38b146103c257600080fd5b8063715018a6146102b3578063751039fc146102ca5780638c0b5e22146102df5780638da5cb5b146102f55780638f3fa8601461031357600080fd5b80632e3f418c116100f25780632e3f418c1461020c578063313c06a014610222578063313ce5671461024257806333039d3d1461025e57806370a082311461027d57600080fd5b806306fdde031461013a578063095ea7b3146101655780631694505e1461019557806318160ddd146101cd57806323b872dd146101ec57600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061014f6103e2565b60405161015c91906111c7565b60405180910390f35b34801561017157600080fd5b5061018561018036600461122b565b610474565b604051901515815260200161015c565b3480156101a157600080fd5b50600b546101b5906001600160a01b031681565b6040516001600160a01b03909116815260200161015c565b3480156101d957600080fd5b506002545b60405190815260200161015c565b3480156101f857600080fd5b50610185610207366004611257565b61048e565b34801561021857600080fd5b506101de60085481565b34801561022e57600080fd5b50600a546101b5906001600160a01b031681565b34801561024e57600080fd5b506040516012815260200161015c565b34801561026a57600080fd5b506101de6a52b7d2dcc80cd2e400000081565b34801561028957600080fd5b506101de610298366004611298565b6001600160a01b031660009081526020819052604090205490565b3480156102bf57600080fd5b506102c86104b2565b005b3480156102d657600080fd5b506102c86104c6565b3480156102eb57600080fd5b506101de60065481565b34801561030157600080fd5b506005546001600160a01b03166101b5565b34801561031f57600080fd5b506101de60075481565b34801561033557600080fd5b5061014f610543565b34801561034a57600080fd5b5061018561035936600461122b565b610552565b6102c8610560565b34801561037257600080fd5b506101de6103813660046112b5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156103b857600080fd5b506101de60095481565b3480156103ce57600080fd5b506102c86103dd366004611298565b61089e565b6060600380546103f1906112ee565b80601f016020809104026020016040519081016040528092919081815260200182805461041d906112ee565b801561046a5780601f1061043f5761010080835404028352916020019161046a565b820191906000526020600020905b81548152906001019060200180831161044d57829003601f168201915b5050505050905090565b6000336104828185856108dc565b60019150505b92915050565b60003361049c8582856108ee565b6104a785858561096c565b506001949350505050565b6104ba6109cb565b6104c460006109f8565b565b600d546001600160a01b031633146104f857604051637f59d8ef60e01b81523360048201526024015b60405180910390fd5b6a52b7d2dcc80cd2e4000000600681905560078190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf9060200160405180910390a1565b6060600480546103f1906112ee565b60003361048281858561096c565b6105686109cb565b60175460ff161561058c5760405163309d72a560e21b815260040160405180910390fd5b600b546105af9030906001600160a01b03166a52b7d2dcc80cd2e40000006108dc565b600b60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610602573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106269190611328565b6001600160a01b031663c9c6539630600b60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610688573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ac9190611328565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156106f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061071d9190611328565b600a80546001600160a01b039283166001600160a01b0319909116179055600b541663f305d7194730610765816001600160a01b031660009081526020819052604090205490565b60008061077a6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156107e2573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906108079190611345565b5050600a54600b5460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015610860573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108849190611373565b506017805462ff00ff1916620100011790556104c46104b2565b6108a66109cb565b6001600160a01b0381166108d057604051631e4fbdf760e01b8152600060048201526024016104ef565b6108d9816109f8565b50565b6108e98383836001610a4a565b505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610966578181101561095757604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016104ef565b61096684848484036000610a4a565b50505050565b6001600160a01b03831661099657604051634b637e8f60e11b8152600060048201526024016104ef565b6001600160a01b0382166109c05760405163ec442f0560e01b8152600060048201526024016104ef565b6108e9838383610b1f565b6005546001600160a01b031633146104c45760405163118cdaa760e01b81523360048201526024016104ef565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416610a745760405163e602df0560e01b8152600060048201526024016104ef565b6001600160a01b038316610a9e57604051634a1406b160e11b8152600060048201526024016104ef565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561096657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b1191815260200190565b60405180910390a350505050565b60008111610b815760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104ef565b600080610b966005546001600160a01b031690565b9050806001600160a01b0316856001600160a01b031614158015610bcc5750806001600160a01b0316846001600160a01b031614155b15610ec157606460125460145411610be657600e54610bea565b6010545b610bf490856113ab565b610bfe91906113c2565b600a549092506001600160a01b038681169116148015610c2c5750600b546001600160a01b03858116911614155b8015610c5157506001600160a01b0384166000908152600c602052604090205460ff16155b15610d3957600654831115610ca85760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016104ef565b60075483610ccb866001600160a01b031660009081526020819052604090205490565b610cd591906113e4565b1115610d235760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104ef565b60148054906000610d33836113f7565b91905055505b600a546001600160a01b038581169116148015610d5f57506001600160a01b0385163014155b15610d9457606460125460145411610d7957600f54610d7d565b6011545b610d8790856113ab565b610d9191906113c2565b91505b601754610100900460ff16158015610db4575060175462010000900460ff165b8015610dc35750601354601454115b8015610ddc5750600a546001600160a01b038581169116145b15610ea45730600090815260208190526040902054600954811115610ea257601654431115610e0f576000601555610e63565b60026015541115610e63576040516303fb440b60e11b815260206004820152601760248201527f4f6e6c7920332073656c6c732070657220626c6f636b2100000000000000000060448201526064016104ef565b610e77610e7282600854610ed3565b610eeb565b478015610e8757610e874761105f565b60158054906000610e97836113f7565b909155505043601655505b505b8115610ec157610eb48284611410565b9250610ec185308461109d565b610ecc85858561109d565b5050505050565b6000818311610ee25782610ee4565b815b9392505050565b6017805461ff0019166101001790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610f2f57610f2f611423565b6001600160a01b03928316602091820292909201810191909152600b54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610f88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fac9190611328565b81600181518110610fbf57610fbf611423565b6001600160a01b039283166020918202929092010152600b54610fe591309116846108dc565b600b5460405163791ac94760e01b81526001600160a01b039091169063791ac9479061101e908590600090869030904290600401611439565b600060405180830381600087803b15801561103857600080fd5b505af115801561104c573d6000803e3d6000fd5b50506017805461ff001916905550505050565b600d546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611099573d6000803e3d6000fd5b5050565b6001600160a01b0383166110c85780600260008282546110bd91906113e4565b9091555061113a9050565b6001600160a01b0383166000908152602081905260409020548181101561111b5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016104ef565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821661115657600280548290039055611175565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111ba91815260200190565b60405180910390a3505050565b60006020808352835180602085015260005b818110156111f5578581018301518582016040015282016111d9565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146108d957600080fd5b6000806040838503121561123e57600080fd5b823561124981611216565b946020939093013593505050565b60008060006060848603121561126c57600080fd5b833561127781611216565b9250602084013561128781611216565b929592945050506040919091013590565b6000602082840312156112aa57600080fd5b8135610ee481611216565b600080604083850312156112c857600080fd5b82356112d381611216565b915060208301356112e381611216565b809150509250929050565b600181811c9082168061130257607f821691505b60208210810361132257634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561133a57600080fd5b8151610ee481611216565b60008060006060848603121561135a57600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561138557600080fd5b81518015158114610ee457600080fd5b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761048857610488611395565b6000826113df57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561048857610488611395565b60006001820161140957611409611395565b5060010190565b8181038181111561048857610488611395565b634e487b7160e01b600052603260045260246000fd5b600060a08201878352602087602085015260a0604085015281875180845260c08601915060208901935060005b8181101561148b5784516001600160a01b031683529383019391830191600101611466565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212208d5ec4921e15ca4db1f1dc1220d84970c8fd3fc0352bb9e943cacd1d5dc8f9cc64736f6c634300081800330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x60806040526004361061012e5760003560e01c8063715018a6116100ab57806395d89b411161006f57806395d89b4114610329578063a9059cbb1461033e578063c9567bf91461035e578063dd62ed3e14610366578063de287071146103ac578063f2fde38b146103c257600080fd5b8063715018a6146102b3578063751039fc146102ca5780638c0b5e22146102df5780638da5cb5b146102f55780638f3fa8601461031357600080fd5b80632e3f418c116100f25780632e3f418c1461020c578063313c06a014610222578063313ce5671461024257806333039d3d1461025e57806370a082311461027d57600080fd5b806306fdde031461013a578063095ea7b3146101655780631694505e1461019557806318160ddd146101cd57806323b872dd146101ec57600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061014f6103e2565b60405161015c91906111c7565b60405180910390f35b34801561017157600080fd5b5061018561018036600461122b565b610474565b604051901515815260200161015c565b3480156101a157600080fd5b50600b546101b5906001600160a01b031681565b6040516001600160a01b03909116815260200161015c565b3480156101d957600080fd5b506002545b60405190815260200161015c565b3480156101f857600080fd5b50610185610207366004611257565b61048e565b34801561021857600080fd5b506101de60085481565b34801561022e57600080fd5b50600a546101b5906001600160a01b031681565b34801561024e57600080fd5b506040516012815260200161015c565b34801561026a57600080fd5b506101de6a52b7d2dcc80cd2e400000081565b34801561028957600080fd5b506101de610298366004611298565b6001600160a01b031660009081526020819052604090205490565b3480156102bf57600080fd5b506102c86104b2565b005b3480156102d657600080fd5b506102c86104c6565b3480156102eb57600080fd5b506101de60065481565b34801561030157600080fd5b506005546001600160a01b03166101b5565b34801561031f57600080fd5b506101de60075481565b34801561033557600080fd5b5061014f610543565b34801561034a57600080fd5b5061018561035936600461122b565b610552565b6102c8610560565b34801561037257600080fd5b506101de6103813660046112b5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156103b857600080fd5b506101de60095481565b3480156103ce57600080fd5b506102c86103dd366004611298565b61089e565b6060600380546103f1906112ee565b80601f016020809104026020016040519081016040528092919081815260200182805461041d906112ee565b801561046a5780601f1061043f5761010080835404028352916020019161046a565b820191906000526020600020905b81548152906001019060200180831161044d57829003601f168201915b5050505050905090565b6000336104828185856108dc565b60019150505b92915050565b60003361049c8582856108ee565b6104a785858561096c565b506001949350505050565b6104ba6109cb565b6104c460006109f8565b565b600d546001600160a01b031633146104f857604051637f59d8ef60e01b81523360048201526024015b60405180910390fd5b6a52b7d2dcc80cd2e4000000600681905560078190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf9060200160405180910390a1565b6060600480546103f1906112ee565b60003361048281858561096c565b6105686109cb565b60175460ff161561058c5760405163309d72a560e21b815260040160405180910390fd5b600b546105af9030906001600160a01b03166a52b7d2dcc80cd2e40000006108dc565b600b60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610602573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106269190611328565b6001600160a01b031663c9c6539630600b60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610688573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ac9190611328565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156106f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061071d9190611328565b600a80546001600160a01b039283166001600160a01b0319909116179055600b541663f305d7194730610765816001600160a01b031660009081526020819052604090205490565b60008061077a6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156107e2573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906108079190611345565b5050600a54600b5460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015610860573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108849190611373565b506017805462ff00ff1916620100011790556104c46104b2565b6108a66109cb565b6001600160a01b0381166108d057604051631e4fbdf760e01b8152600060048201526024016104ef565b6108d9816109f8565b50565b6108e98383836001610a4a565b505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610966578181101561095757604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016104ef565b61096684848484036000610a4a565b50505050565b6001600160a01b03831661099657604051634b637e8f60e11b8152600060048201526024016104ef565b6001600160a01b0382166109c05760405163ec442f0560e01b8152600060048201526024016104ef565b6108e9838383610b1f565b6005546001600160a01b031633146104c45760405163118cdaa760e01b81523360048201526024016104ef565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416610a745760405163e602df0560e01b8152600060048201526024016104ef565b6001600160a01b038316610a9e57604051634a1406b160e11b8152600060048201526024016104ef565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561096657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b1191815260200190565b60405180910390a350505050565b60008111610b815760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104ef565b600080610b966005546001600160a01b031690565b9050806001600160a01b0316856001600160a01b031614158015610bcc5750806001600160a01b0316846001600160a01b031614155b15610ec157606460125460145411610be657600e54610bea565b6010545b610bf490856113ab565b610bfe91906113c2565b600a549092506001600160a01b038681169116148015610c2c5750600b546001600160a01b03858116911614155b8015610c5157506001600160a01b0384166000908152600c602052604090205460ff16155b15610d3957600654831115610ca85760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016104ef565b60075483610ccb866001600160a01b031660009081526020819052604090205490565b610cd591906113e4565b1115610d235760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104ef565b60148054906000610d33836113f7565b91905055505b600a546001600160a01b038581169116148015610d5f57506001600160a01b0385163014155b15610d9457606460125460145411610d7957600f54610d7d565b6011545b610d8790856113ab565b610d9191906113c2565b91505b601754610100900460ff16158015610db4575060175462010000900460ff165b8015610dc35750601354601454115b8015610ddc5750600a546001600160a01b038581169116145b15610ea45730600090815260208190526040902054600954811115610ea257601654431115610e0f576000601555610e63565b60026015541115610e63576040516303fb440b60e11b815260206004820152601760248201527f4f6e6c7920332073656c6c732070657220626c6f636b2100000000000000000060448201526064016104ef565b610e77610e7282600854610ed3565b610eeb565b478015610e8757610e874761105f565b60158054906000610e97836113f7565b909155505043601655505b505b8115610ec157610eb48284611410565b9250610ec185308461109d565b610ecc85858561109d565b5050505050565b6000818311610ee25782610ee4565b815b9392505050565b6017805461ff0019166101001790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610f2f57610f2f611423565b6001600160a01b03928316602091820292909201810191909152600b54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610f88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fac9190611328565b81600181518110610fbf57610fbf611423565b6001600160a01b039283166020918202929092010152600b54610fe591309116846108dc565b600b5460405163791ac94760e01b81526001600160a01b039091169063791ac9479061101e908590600090869030904290600401611439565b600060405180830381600087803b15801561103857600080fd5b505af115801561104c573d6000803e3d6000fd5b50506017805461ff001916905550505050565b600d546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611099573d6000803e3d6000fd5b5050565b6001600160a01b0383166110c85780600260008282546110bd91906113e4565b9091555061113a9050565b6001600160a01b0383166000908152602081905260409020548181101561111b5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016104ef565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821661115657600280548290039055611175565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111ba91815260200190565b60405180910390a3505050565b60006020808352835180602085015260005b818110156111f5578581018301518582016040015282016111d9565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146108d957600080fd5b6000806040838503121561123e57600080fd5b823561124981611216565b946020939093013593505050565b60008060006060848603121561126c57600080fd5b833561127781611216565b9250602084013561128781611216565b929592945050506040919091013590565b6000602082840312156112aa57600080fd5b8135610ee481611216565b600080604083850312156112c857600080fd5b82356112d381611216565b915060208301356112e381611216565b809150509250929050565b600181811c9082168061130257607f821691505b60208210810361132257634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561133a57600080fd5b8151610ee481611216565b60008060006060848603121561135a57600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561138557600080fd5b81518015158114610ee457600080fd5b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761048857610488611395565b6000826113df57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561048857610488611395565b60006001820161140957611409611395565b5060010190565b8181038181111561048857610488611395565b634e487b7160e01b600052603260045260246000fd5b600060a08201878352602087602085015260a0604085015281875180845260c08601915060208901935060005b8181101561148b5784516001600160a01b031683529383019391830191600101611466565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212208d5ec4921e15ca4db1f1dc1220d84970c8fd3fc0352bb9e943cacd1d5dc8f9cc64736f6c63430008180033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


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.