ETH Price: $2,505.09 (-0.11%)

Token

Shitlord (LORD)
 

Overview

Max Total Supply

1,000,000,000 LORD

Holders

218

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
111,086.074818528767426941 LORD

Value
$0.00
0x000000fee13a103a10d593b9ae06b3e05f2e7e1c
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:
Shitlord

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Shitlord.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

/**
 * @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 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 in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) 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);
}

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint);

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

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

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

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

    function transferFrom(address from, address to, uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    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 (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

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

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

    function swap(uint amount0Out, uint 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,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @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 symbol of the token.
     */
    function symbol() external view returns (string memory);

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

/**
 * @dev 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].
 *
 * 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 ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @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 _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");
        _beforeTokenTransfer(from, to, amount);

        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);

        _afterTokenTransfer(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");

        _beforeTokenTransfer(address(0), account, amount);

        _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);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), 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);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

contract Shitlord is ERC20, Ownable {
    using SafeMath for uint256;
    address public uniswapV2Pair;
    bool public tradingActive = false;

    IUniswapV2Router02 public uniswapV2Router;
    address private routerAddress;
    bool private swapping;
    address public marketingWallet;
    uint256 public swapTokensAtAmount;
    uint256 public swapMinimum;
    bool public swapEnabled = true;

    mapping(address => bool) public excludedFromMaxTx;
    uint256 public maxTxAmount;
    uint256 public maxWalletAmount;
    uint256 private launchBlock;
    bool public limitsEnabled = true;
    bool public antiContractDumpEnabled = true;
    mapping(uint256 => uint256) private _swapBlocks;

    bool public blacklistDisabled = false;
    mapping(address => bool) public blacklistedWallets;


    uint256 public buyFees;
    uint256 public buyMarketingFee;
    uint256 public sellFees;
    uint256 private tokensForMarketing;
    mapping(address => bool) private _excludedFromFees;


    mapping(address => bool) public ammPairs;


    constructor() ERC20("Shitlord", "LORD") {
        uint256 totalSupply = 1000000000 * 1e18;

        routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            routerAddress
        );
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        ammPairs[uniswapV2Pair] = true;
        swapTokensAtAmount = (totalSupply * 5) / 1000;
        swapMinimum = (totalSupply * 5) / 1000;
        buyFees = 10;
        sellFees = 10;
        marketingWallet = address(0x7690F9058c7FB5E0145c974AF180CA62380Ee59D);

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        limitsEnabled = true;
        maxTxAmount = 10000000 * 1e18;
        maxWalletAmount = 10000000 * 1e18;
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);

        _mint(owner(), totalSupply);
    }

    receive() external payable {}

    function launch() public onlyOwner {
        require(!tradingActive);
        launchBlock = block.number;
        tradingActive = true;
    }

    function changeSwapBackRestriction(bool newVal) public onlyOwner {
        antiContractDumpEnabled = newVal;
    }


    function disableLimits() external onlyOwner returns (bool) {
        limitsEnabled = false;
        return true;
    }


    function setSwapTokensAtAmount(uint256 newAmount)
    external
    onlyOwner
    returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 4) / 100,
            "Swap amount cannot be higher than 4% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function setSwapMinimum(uint256 newAmount)
    external
    onlyOwner
    returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 4) / 100,
            "Swap amount cannot be higher than 4% total supply."
        );
        swapMinimum = newAmount;
        return true;
    }

    function setSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function setMaxTxAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18
        );
        maxTxAmount = newNum * (10 ** 18);
    }

    function setMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18
        );
        maxWalletAmount = newNum * (10 ** 18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
    public
    onlyOwner
    {
        excludedFromMaxTx[updAds] = isEx;
    }

    function setBuyFees(
        uint256 _marketingFee
    ) external onlyOwner {
        buyFees = _marketingFee;
        require(buyFees <= 20);
    }

    function setSellFees(
        uint256 _marketingFee
    ) external onlyOwner {
        sellFees = _marketingFee;
        require(sellFees <= 60);
    }


    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _excludedFromFees[account] = excluded;
    }

    function addPair(address pair, bool value)
    public
    onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAMMPair(pair, value);
    }

    function _setAMMPair(address pair, bool value) private {
        ammPairs[pair] = value;
    }

    function setFeesWallet(address _wallet)
    external
    onlyOwner
    {
        marketingWallet = _wallet;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _excludedFromFees[account];
    }


    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!blacklistedWallets[from], "Blacklisted");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsEnabled) {
            if (
                from != owner() &&
                to != owner() &&
                !swapping &&
                to != address(0) &&
                to != address(0xdead)

            ) {
                if (!tradingActive) {
                    require(
                        _excludedFromFees[from] || _excludedFromFees[to],
                        "Trading is not active."
                    );
                }


                if (
                    ammPairs[from] &&
                    !excludedFromMaxTx[to]
                ) {
                    require(
                        amount <= maxTxAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWalletAmount,
                        "Max wallet exceeded"
                    );
                }

                else if (
                    ammPairs[to] &&
                    !excludedFromMaxTx[from]
                ) {
                    require(
                        amount <= maxTxAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!excludedFromMaxTx[to]) {
                    require(
                        amount + balanceOf(to) <= maxWalletAmount,
                        "Max wallet exceeded"
                    );
                }

            }


        }
        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapMinimum;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !ammPairs[from] &&
            !_excludedFromFees[from] &&
            !_excludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        if (_excludedFromFees[from] || _excludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        if (takeFee) {
            uint256 _sellFees = sellFees;
            if (block.number == launchBlock) {
                _sellFees = 50;
            }
            if (ammPairs[to] && _sellFees > 0) {
                fees = amount.mul(_sellFees).div(100);
                tokensForMarketing += fees;
            }
            else if (ammPairs[from] && buyFees > 0) {
                fees = amount.mul(buyFees).div(100);
                tokensForMarketing += fees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

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



    function swapTokensForEth(uint256 tokenAmount) private {
        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 addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            marketingWallet,
            block.timestamp
        );
    }

    function swapBack() private {

        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForMarketing;
        bool success;

        if (contractBalance == 0) {
            return;
        }
        if (totalTokensToSwap == 0) {
            totalTokensToSwap = 1;
        }

        uint256 amountToSwap = swapTokensAtAmount;
        _swapBlocks[block.number]++;
        if (antiContractDumpEnabled) {
            if(_swapBlocks[block.number] >= 2) {
                return;
            }
        }
        if (contractBalance > amountToSwap) {
            contractBalance = amountToSwap;
        }

        uint256 amountToSwapForETH = contractBalance;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
        uint256 ethForMarketing = ethBalance;
        if (totalTokensToSwap > 0) {
            ethForMarketing = ethBalance.mul(tokensForMarketing).div(
                totalTokensToSwap
            );
        }
        tokensForMarketing = 0;

        (success,) = address(marketingWallet).call{
                value: address(this).balance
            }("");
    }

    function withdrawTokens() external {
        require(owner() == _msgSender() || marketingWallet == _msgSender(), "Caller is not the owner or marketing wallet");
        super._transfer(address(this), address(marketingWallet), balanceOf(address(this)));
    }

    function swapTokens() public onlyOwner {
        bool success;
        swapTokensForEth(balanceOf(address(this)));
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }

    function withdrawEth() external {
        bool success;
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }
}

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

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":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":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ammPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiContractDumpEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"blacklistDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklistedWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"newVal","type":"bool"}],"name":"changeSwapBackRestriction","outputs":[],"stateMutability":"nonpayable","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":"disableLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"setFeesWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapMinimum","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapMinimum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526006805460ff60a01b19169055600c805460ff199081166001179091556011805461ffff19166101011790556013805490911690553480156200004657600080fd5b506040518060400160405280600881526020016714da1a5d1b1bdc9960c21b815250604051806040016040528060048152602001631313d49160e21b815250816003908162000096919062000669565b506004620000a5828262000669565b505050620000c2620000bc620003db60201b60201c565b620003df565b60088054737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0319918216811790925560078054909116821790556040805163c45a015560e01b815290516b033b2e3c9fd0803ce80000009291829163c45a0155916004808201926020929091908290030181865afa15801562000144573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016a919062000735565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001de919062000735565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200022c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000252919062000735565b600680546001600160a01b0319166001600160a01b039290921691821790556000908152601a60205260409020805460ff191660011790556103e86200029a8360056200077d565b620002a691906200079f565b600a556103e8620002b98360056200077d565b620002c591906200079f565b600b55600a6015819055601755600980546001600160a01b031916737690f9058c7fb5e0145c974af180ca62380ee59d179055620003176200030f6005546001600160a01b031690565b600162000431565b6200032430600162000431565b6200033361dead600162000431565b6011805460ff191660011790556a084595161401484a000000600e819055600f55620003736200036b6005546001600160a01b031690565b600162000466565b6200038030600162000466565b6200038f61dead600162000466565b6200039c81600162000466565b600654620003b5906001600160a01b0316600162000466565b620003d3620003cc6005546001600160a01b031690565b836200049b565b5050620007dd565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200043b62000562565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6200047062000562565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6001600160a01b038216620004f75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b80600260008282546200050b9190620007c2565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620005be5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620004ee565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005f057607f821691505b6020821081036200061157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005c057600081815260208120601f850160051c81016020861015620006405750805b601f850160051c820191505b8181101562000661578281556001016200064c565b505050505050565b81516001600160401b03811115620006855762000685620005c5565b6200069d81620006968454620005db565b8462000617565b602080601f831160018114620006d55760008415620006bc5750858301515b600019600386901b1c1916600185901b17855562000661565b600085815260208120601f198616915b828110156200070657888601518255948401946001909101908401620006e5565b5085821015620007255787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200074857600080fd5b81516001600160a01b03811681146200076057600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200079a576200079a62000767565b500290565b600082620007bd57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007d857620007d862000767565b500190565b61216d80620007ed6000396000f3fe6080604052600436106102cd5760003560e01c80638d8f2adb11610175578063bbc0c742116100dc578063e0f3ccf511610095578063ec28438a1161006f578063ec28438a14610880578063f2fde38b146108a0578063f8821a62146108c0578063f928364c146108d657600080fd5b8063e0f3ccf51461083e578063e2f4560514610854578063e4748b9e1461086a57600080fd5b8063bbc0c7421461077d578063c02466681461079e578063c20c43bf146107be578063dcf7aef3146107de578063dd62ed3e146107fe578063e01af92c1461081e57600080fd5b8063a2edb2c31161012e578063a2edb2c3146106bd578063a457c2d7146106d7578063a72905a2146106f7578063a9059cbb14610727578063aa4bde2814610747578063afa4f3b21461075d57600080fd5b80638d8f2adb146106215780638da5cb5b1461063657806395927c251461065457806395d89b4114610674578063a0ef91df14610689578063a2d83c421461069e57600080fd5b806343d4f92b11610234578063715018a6116101ed57806375f0a874116101c757806375f0a874146105b55780637bce5a04146105d55780637e26cafa146105eb5780638c0b5e221461060b57600080fd5b8063715018a61461056b57806373d00224146105805780637571336a1461059557600080fd5b806343d4f92b1461048857806349bd5a5e146104a85780634fbee193146104c857806354f9c98c146105015780636ddd17131461053157806370a082311461054b57600080fd5b806327a14fc21161028657806327a14fc2146103c25780632b5ba3b9146103e2578063313ce567146104125780633582ad231461042e5780633950935114610448578063418eeb291461046857600080fd5b806301339c21146102d957806306fdde03146102f0578063095ea7b31461031b5780631694505e1461034b57806318160ddd1461038357806323b872dd146103a257600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102ee6108eb565b005b3480156102fc57600080fd5b50610305610923565b6040516103129190611ce5565b60405180910390f35b34801561032757600080fd5b5061033b610336366004611d4f565b6109b5565b6040519015158152602001610312565b34801561035757600080fd5b5060075461036b906001600160a01b031681565b6040516001600160a01b039091168152602001610312565b34801561038f57600080fd5b506002545b604051908152602001610312565b3480156103ae57600080fd5b5061033b6103bd366004611d7b565b6109cd565b3480156103ce57600080fd5b506102ee6103dd366004611dbc565b6109f1565b3480156103ee57600080fd5b5061033b6103fd366004611dd5565b60146020526000908152604090205460ff1681565b34801561041e57600080fd5b5060405160128152602001610312565b34801561043a57600080fd5b5060115461033b9060ff1681565b34801561045457600080fd5b5061033b610463366004611d4f565b610a51565b34801561047457600080fd5b5061033b610483366004611dbc565b610a73565b34801561049457600080fd5b506102ee6104a3366004611dd5565b610b14565b3480156104b457600080fd5b5060065461036b906001600160a01b031681565b3480156104d457600080fd5b5061033b6104e3366004611dd5565b6001600160a01b031660009081526019602052604090205460ff1690565b34801561050d57600080fd5b5061033b61051c366004611dd5565b600d6020526000908152604090205460ff1681565b34801561053d57600080fd5b50600c5461033b9060ff1681565b34801561055757600080fd5b50610394610566366004611dd5565b610b3e565b34801561057757600080fd5b506102ee610b59565b34801561058c57600080fd5b506102ee610b6d565b3480156105a157600080fd5b506102ee6105b0366004611e02565b610be5565b3480156105c157600080fd5b5060095461036b906001600160a01b031681565b3480156105e157600080fd5b5061039460165481565b3480156105f757600080fd5b506102ee610606366004611e02565b610c18565b34801561061757600080fd5b50610394600e5481565b34801561062d57600080fd5b506102ee610ccc565b34801561064257600080fd5b506005546001600160a01b031661036b565b34801561066057600080fd5b506102ee61066f366004611dbc565b610d6f565b34801561068057600080fd5b50610305610d8d565b34801561069557600080fd5b506102ee610d9c565b3480156106aa57600080fd5b5060115461033b90610100900460ff1681565b3480156106c957600080fd5b5060135461033b9060ff1681565b3480156106e357600080fd5b5061033b6106f2366004611d4f565b610db6565b34801561070357600080fd5b5061033b610712366004611dd5565b601a6020526000908152604090205460ff1681565b34801561073357600080fd5b5061033b610742366004611d4f565b610e31565b34801561075357600080fd5b50610394600f5481565b34801561076957600080fd5b5061033b610778366004611dbc565b610e3f565b34801561078957600080fd5b5060065461033b90600160a01b900460ff1681565b3480156107aa57600080fd5b506102ee6107b9366004611e02565b610ed2565b3480156107ca57600080fd5b506102ee6107d9366004611e37565b610f05565b3480156107ea57600080fd5b506102ee6107f9366004611dbc565b610f27565b34801561080a57600080fd5b50610394610819366004611e52565b610f42565b34801561082a57600080fd5b506102ee610839366004611e37565b610f6d565b34801561084a57600080fd5b5061039460175481565b34801561086057600080fd5b50610394600a5481565b34801561087657600080fd5b5061039460155481565b34801561088c57600080fd5b506102ee61089b366004611dbc565b610f88565b3480156108ac57600080fd5b506102ee6108bb366004611dd5565b610fe8565b3480156108cc57600080fd5b50610394600b5481565b3480156108e257600080fd5b5061033b61105e565b6108f3611078565b600654600160a01b900460ff161561090a57600080fd5b436010556006805460ff60a01b1916600160a01b179055565b60606003805461093290611e8b565b80601f016020809104026020016040519081016040528092919081815260200182805461095e90611e8b565b80156109ab5780601f10610980576101008083540402835291602001916109ab565b820191906000526020600020905b81548152906001019060200180831161098e57829003601f168201915b5050505050905090565b6000336109c38185856110d2565b5060019392505050565b6000336109db8582856111f6565b6109e685858561126a565b506001949350505050565b6109f9611078565b670de0b6b3a76400006103e8610a0e60025490565b610a19906001611edb565b610a239190611efa565b610a2d9190611efa565b811015610a3957600080fd5b610a4b81670de0b6b3a7640000611edb565b600f5550565b6000336109c3818585610a648383610f42565b610a6e9190611f1c565b6110d2565b6000610a7d611078565b620186a0610a8a60025490565b610a95906001611edb565b610a9f9190611efa565b821015610ac75760405162461bcd60e51b8152600401610abe90611f34565b60405180910390fd5b6064610ad260025490565b610add906004611edb565b610ae79190611efa565b821115610b065760405162461bcd60e51b8152600401610abe90611f89565b50600b81905560015b919050565b610b1c611078565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526020819052604090205490565b610b61611078565b610b6b60006118bb565b565b610b75611078565b6000610b88610b8330610b3e565b61190d565b6009546040516001600160a01b039091169047905b60006040518083038185875af1925050503d8060008114610bda576040519150601f19603f3d011682016040523d82523d6000602084013e610bdf565b606091505b50505050565b610bed611078565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b610c20611078565b6006546001600160a01b0390811690831603610ca45760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610abe565b6001600160a01b0382166000908152601a60205260409020805460ff19168215151790555050565b6005546001600160a01b0316331480610cef57506009546001600160a01b031633145b610d4f5760405162461bcd60e51b815260206004820152602b60248201527f43616c6c6572206973206e6f7420746865206f776e6572206f72206d61726b6560448201526a1d1a5b99c81dd85b1b195d60aa1b6064820152608401610abe565b600954610b6b9030906001600160a01b0316610d6a82610b3e565b611a67565b610d77611078565b6017819055603c811115610d8a57600080fd5b50565b60606004805461093290611e8b565b6009546040516000916001600160a01b0316904790610b9d565b60003381610dc48286610f42565b905083811015610e245760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610abe565b6109e682868684036110d2565b6000336109c381858561126a565b6000610e49611078565b620186a0610e5660025490565b610e61906001611edb565b610e6b9190611efa565b821015610e8a5760405162461bcd60e51b8152600401610abe90611f34565b6064610e9560025490565b610ea0906004611edb565b610eaa9190611efa565b821115610ec95760405162461bcd60e51b8152600401610abe90611f89565b50600a55600190565b610eda611078565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b610f0d611078565b601180549115156101000261ff0019909216919091179055565b610f2f611078565b60158190556014811115610d8a57600080fd5b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610f75611078565b600c805460ff1916911515919091179055565b610f90611078565b670de0b6b3a76400006103e8610fa560025490565b610fb0906001611edb565b610fba9190611efa565b610fc49190611efa565b811015610fd057600080fd5b610fe281670de0b6b3a7640000611edb565b600e5550565b610ff0611078565b6001600160a01b0381166110555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610abe565b610d8a816118bb565b6000611068611078565b506011805460ff19169055600190565b6005546001600160a01b03163314610b6b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610abe565b6001600160a01b0383166111345760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610abe565b6001600160a01b0382166111955760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610abe565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006112028484610f42565b90506000198114610bdf578181101561125d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610abe565b610bdf84848484036110d2565b6001600160a01b0383166112905760405162461bcd60e51b8152600401610abe90611fdb565b6001600160a01b0382166112b65760405162461bcd60e51b8152600401610abe90612020565b6001600160a01b03831660009081526014602052604090205460ff161561130d5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610abe565b806000036113265761132183836000611a67565b505050565b60115460ff161561167e576005546001600160a01b0384811691161480159061135d57506005546001600160a01b03838116911614155b80156113735750600854600160a01b900460ff16155b801561138757506001600160a01b03821615155b801561139e57506001600160a01b03821661dead14155b1561167e57600654600160a01b900460ff16611438576001600160a01b03831660009081526019602052604090205460ff16806113f357506001600160a01b03821660009081526019602052604090205460ff165b6114385760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610abe565b6001600160a01b0383166000908152601a602052604090205460ff16801561147957506001600160a01b0382166000908152600d602052604090205460ff16155b1561154d57600e548111156114ee5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610abe565b600f546114fa83610b3e565b6115049083611f1c565b11156115485760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610abe565b61167e565b6001600160a01b0382166000908152601a602052604090205460ff16801561158e57506001600160a01b0383166000908152600d602052604090205460ff16155b1561160457600e548111156115485760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610abe565b6001600160a01b0382166000908152600d602052604090205460ff1661167e57600f5461163083610b3e565b61163a9083611f1c565b111561167e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610abe565b600061168930610b3e565b600b54909150811080159081906116a25750600c5460ff165b80156116b85750600854600160a01b900460ff16155b80156116dd57506001600160a01b0385166000908152601a602052604090205460ff16155b801561170257506001600160a01b03851660009081526019602052604090205460ff16155b801561172757506001600160a01b03841660009081526019602052604090205460ff16155b15611755576008805460ff60a01b1916600160a01b179055611747611b91565b6008805460ff60a01b191690555b6008546001600160a01b03861660009081526019602052604090205460ff600160a01b9092048216159116806117a357506001600160a01b03851660009081526019602052604090205460ff165b156117ac575060005b600081156118a75760175460105443036117c4575060325b6001600160a01b0387166000908152601a602052604090205460ff1680156117ec5750600081115b156118255761180660646118008884611cba565b90611ccd565b9150816018600082825461181a9190611f1c565b909155506118889050565b6001600160a01b0388166000908152601a602052604090205460ff16801561184f57506000601554115b156118885761186e606461180060155489611cba90919063ffffffff16565b915081601860008282546118829190611f1c565b90915550505b811561189957611899883084611a67565b6118a38287612063565b9550505b6118b2878787611a67565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106119425761194261207a565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561199b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119bf9190612090565b816001815181106119d2576119d261207a565b6001600160a01b0392831660209182029290920101526007546119f891309116846110d2565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac94790611a319085906000908690309042906004016120ad565b600060405180830381600087803b158015611a4b57600080fd5b505af1158015611a5f573d6000803e3d6000fd5b505050505050565b6001600160a01b038316611a8d5760405162461bcd60e51b8152600401610abe90611fdb565b6001600160a01b038216611ab35760405162461bcd60e51b8152600401610abe90612020565b6001600160a01b03831660009081526020819052604090205481811015611b2b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610abe565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610bdf565b6000611b9c30610b3e565b6018549091506000828103611bb057505050565b81600003611bbd57600191505b600a54436000908152601260205260408120805491611bdb8361211e565b9091555050601154610100900460ff1615611c0d5743600090815260126020526040902054600211611c0d5750505050565b80841115611c19578093505b8347611c248261190d565b6000611c304783611cd9565b9050808615611c5557611c528761180060185485611cba90919063ffffffff16565b90505b600060188190556009546040516001600160a01b039091169147919081818185875af1925050503d8060008114611ca8576040519150601f19603f3d011682016040523d82523d6000602084013e611cad565b606091505b5050505050505050505050565b6000611cc68284611edb565b9392505050565b6000611cc68284611efa565b6000611cc68284612063565b600060208083528351808285015260005b81811015611d1257858101830151858201604001528201611cf6565b81811115611d24576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610d8a57600080fd5b60008060408385031215611d6257600080fd5b8235611d6d81611d3a565b946020939093013593505050565b600080600060608486031215611d9057600080fd5b8335611d9b81611d3a565b92506020840135611dab81611d3a565b929592945050506040919091013590565b600060208284031215611dce57600080fd5b5035919050565b600060208284031215611de757600080fd5b8135611cc681611d3a565b80358015158114610b0f57600080fd5b60008060408385031215611e1557600080fd5b8235611e2081611d3a565b9150611e2e60208401611df2565b90509250929050565b600060208284031215611e4957600080fd5b611cc682611df2565b60008060408385031215611e6557600080fd5b8235611e7081611d3a565b91506020830135611e8081611d3a565b809150509250929050565b600181811c90821680611e9f57607f821691505b602082108103611ebf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611ef557611ef5611ec5565b500290565b600082611f1757634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611f2f57611f2f611ec5565b500190565b60208082526035908201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60408201527410181718181892903a37ba30b61039bab838363c9760591b606082015260800190565b60208082526032908201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160408201527137101a12903a37ba30b61039bab838363c9760711b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561207557612075611ec5565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156120a257600080fd5b8151611cc681611d3a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120fd5784516001600160a01b0316835293830193918301916001016120d8565b50506001600160a01b03969096166060850152505050608001529392505050565b60006001820161213057612130611ec5565b506001019056fea2646970667358221220d256608b4ee3d913530b132c40e17d15f5962f026ac8dac905cc9254b068d9b664736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c80638d8f2adb11610175578063bbc0c742116100dc578063e0f3ccf511610095578063ec28438a1161006f578063ec28438a14610880578063f2fde38b146108a0578063f8821a62146108c0578063f928364c146108d657600080fd5b8063e0f3ccf51461083e578063e2f4560514610854578063e4748b9e1461086a57600080fd5b8063bbc0c7421461077d578063c02466681461079e578063c20c43bf146107be578063dcf7aef3146107de578063dd62ed3e146107fe578063e01af92c1461081e57600080fd5b8063a2edb2c31161012e578063a2edb2c3146106bd578063a457c2d7146106d7578063a72905a2146106f7578063a9059cbb14610727578063aa4bde2814610747578063afa4f3b21461075d57600080fd5b80638d8f2adb146106215780638da5cb5b1461063657806395927c251461065457806395d89b4114610674578063a0ef91df14610689578063a2d83c421461069e57600080fd5b806343d4f92b11610234578063715018a6116101ed57806375f0a874116101c757806375f0a874146105b55780637bce5a04146105d55780637e26cafa146105eb5780638c0b5e221461060b57600080fd5b8063715018a61461056b57806373d00224146105805780637571336a1461059557600080fd5b806343d4f92b1461048857806349bd5a5e146104a85780634fbee193146104c857806354f9c98c146105015780636ddd17131461053157806370a082311461054b57600080fd5b806327a14fc21161028657806327a14fc2146103c25780632b5ba3b9146103e2578063313ce567146104125780633582ad231461042e5780633950935114610448578063418eeb291461046857600080fd5b806301339c21146102d957806306fdde03146102f0578063095ea7b31461031b5780631694505e1461034b57806318160ddd1461038357806323b872dd146103a257600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102ee6108eb565b005b3480156102fc57600080fd5b50610305610923565b6040516103129190611ce5565b60405180910390f35b34801561032757600080fd5b5061033b610336366004611d4f565b6109b5565b6040519015158152602001610312565b34801561035757600080fd5b5060075461036b906001600160a01b031681565b6040516001600160a01b039091168152602001610312565b34801561038f57600080fd5b506002545b604051908152602001610312565b3480156103ae57600080fd5b5061033b6103bd366004611d7b565b6109cd565b3480156103ce57600080fd5b506102ee6103dd366004611dbc565b6109f1565b3480156103ee57600080fd5b5061033b6103fd366004611dd5565b60146020526000908152604090205460ff1681565b34801561041e57600080fd5b5060405160128152602001610312565b34801561043a57600080fd5b5060115461033b9060ff1681565b34801561045457600080fd5b5061033b610463366004611d4f565b610a51565b34801561047457600080fd5b5061033b610483366004611dbc565b610a73565b34801561049457600080fd5b506102ee6104a3366004611dd5565b610b14565b3480156104b457600080fd5b5060065461036b906001600160a01b031681565b3480156104d457600080fd5b5061033b6104e3366004611dd5565b6001600160a01b031660009081526019602052604090205460ff1690565b34801561050d57600080fd5b5061033b61051c366004611dd5565b600d6020526000908152604090205460ff1681565b34801561053d57600080fd5b50600c5461033b9060ff1681565b34801561055757600080fd5b50610394610566366004611dd5565b610b3e565b34801561057757600080fd5b506102ee610b59565b34801561058c57600080fd5b506102ee610b6d565b3480156105a157600080fd5b506102ee6105b0366004611e02565b610be5565b3480156105c157600080fd5b5060095461036b906001600160a01b031681565b3480156105e157600080fd5b5061039460165481565b3480156105f757600080fd5b506102ee610606366004611e02565b610c18565b34801561061757600080fd5b50610394600e5481565b34801561062d57600080fd5b506102ee610ccc565b34801561064257600080fd5b506005546001600160a01b031661036b565b34801561066057600080fd5b506102ee61066f366004611dbc565b610d6f565b34801561068057600080fd5b50610305610d8d565b34801561069557600080fd5b506102ee610d9c565b3480156106aa57600080fd5b5060115461033b90610100900460ff1681565b3480156106c957600080fd5b5060135461033b9060ff1681565b3480156106e357600080fd5b5061033b6106f2366004611d4f565b610db6565b34801561070357600080fd5b5061033b610712366004611dd5565b601a6020526000908152604090205460ff1681565b34801561073357600080fd5b5061033b610742366004611d4f565b610e31565b34801561075357600080fd5b50610394600f5481565b34801561076957600080fd5b5061033b610778366004611dbc565b610e3f565b34801561078957600080fd5b5060065461033b90600160a01b900460ff1681565b3480156107aa57600080fd5b506102ee6107b9366004611e02565b610ed2565b3480156107ca57600080fd5b506102ee6107d9366004611e37565b610f05565b3480156107ea57600080fd5b506102ee6107f9366004611dbc565b610f27565b34801561080a57600080fd5b50610394610819366004611e52565b610f42565b34801561082a57600080fd5b506102ee610839366004611e37565b610f6d565b34801561084a57600080fd5b5061039460175481565b34801561086057600080fd5b50610394600a5481565b34801561087657600080fd5b5061039460155481565b34801561088c57600080fd5b506102ee61089b366004611dbc565b610f88565b3480156108ac57600080fd5b506102ee6108bb366004611dd5565b610fe8565b3480156108cc57600080fd5b50610394600b5481565b3480156108e257600080fd5b5061033b61105e565b6108f3611078565b600654600160a01b900460ff161561090a57600080fd5b436010556006805460ff60a01b1916600160a01b179055565b60606003805461093290611e8b565b80601f016020809104026020016040519081016040528092919081815260200182805461095e90611e8b565b80156109ab5780601f10610980576101008083540402835291602001916109ab565b820191906000526020600020905b81548152906001019060200180831161098e57829003601f168201915b5050505050905090565b6000336109c38185856110d2565b5060019392505050565b6000336109db8582856111f6565b6109e685858561126a565b506001949350505050565b6109f9611078565b670de0b6b3a76400006103e8610a0e60025490565b610a19906001611edb565b610a239190611efa565b610a2d9190611efa565b811015610a3957600080fd5b610a4b81670de0b6b3a7640000611edb565b600f5550565b6000336109c3818585610a648383610f42565b610a6e9190611f1c565b6110d2565b6000610a7d611078565b620186a0610a8a60025490565b610a95906001611edb565b610a9f9190611efa565b821015610ac75760405162461bcd60e51b8152600401610abe90611f34565b60405180910390fd5b6064610ad260025490565b610add906004611edb565b610ae79190611efa565b821115610b065760405162461bcd60e51b8152600401610abe90611f89565b50600b81905560015b919050565b610b1c611078565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526020819052604090205490565b610b61611078565b610b6b60006118bb565b565b610b75611078565b6000610b88610b8330610b3e565b61190d565b6009546040516001600160a01b039091169047905b60006040518083038185875af1925050503d8060008114610bda576040519150601f19603f3d011682016040523d82523d6000602084013e610bdf565b606091505b50505050565b610bed611078565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b610c20611078565b6006546001600160a01b0390811690831603610ca45760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610abe565b6001600160a01b0382166000908152601a60205260409020805460ff19168215151790555050565b6005546001600160a01b0316331480610cef57506009546001600160a01b031633145b610d4f5760405162461bcd60e51b815260206004820152602b60248201527f43616c6c6572206973206e6f7420746865206f776e6572206f72206d61726b6560448201526a1d1a5b99c81dd85b1b195d60aa1b6064820152608401610abe565b600954610b6b9030906001600160a01b0316610d6a82610b3e565b611a67565b610d77611078565b6017819055603c811115610d8a57600080fd5b50565b60606004805461093290611e8b565b6009546040516000916001600160a01b0316904790610b9d565b60003381610dc48286610f42565b905083811015610e245760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610abe565b6109e682868684036110d2565b6000336109c381858561126a565b6000610e49611078565b620186a0610e5660025490565b610e61906001611edb565b610e6b9190611efa565b821015610e8a5760405162461bcd60e51b8152600401610abe90611f34565b6064610e9560025490565b610ea0906004611edb565b610eaa9190611efa565b821115610ec95760405162461bcd60e51b8152600401610abe90611f89565b50600a55600190565b610eda611078565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b610f0d611078565b601180549115156101000261ff0019909216919091179055565b610f2f611078565b60158190556014811115610d8a57600080fd5b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610f75611078565b600c805460ff1916911515919091179055565b610f90611078565b670de0b6b3a76400006103e8610fa560025490565b610fb0906001611edb565b610fba9190611efa565b610fc49190611efa565b811015610fd057600080fd5b610fe281670de0b6b3a7640000611edb565b600e5550565b610ff0611078565b6001600160a01b0381166110555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610abe565b610d8a816118bb565b6000611068611078565b506011805460ff19169055600190565b6005546001600160a01b03163314610b6b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610abe565b6001600160a01b0383166111345760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610abe565b6001600160a01b0382166111955760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610abe565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006112028484610f42565b90506000198114610bdf578181101561125d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610abe565b610bdf84848484036110d2565b6001600160a01b0383166112905760405162461bcd60e51b8152600401610abe90611fdb565b6001600160a01b0382166112b65760405162461bcd60e51b8152600401610abe90612020565b6001600160a01b03831660009081526014602052604090205460ff161561130d5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610abe565b806000036113265761132183836000611a67565b505050565b60115460ff161561167e576005546001600160a01b0384811691161480159061135d57506005546001600160a01b03838116911614155b80156113735750600854600160a01b900460ff16155b801561138757506001600160a01b03821615155b801561139e57506001600160a01b03821661dead14155b1561167e57600654600160a01b900460ff16611438576001600160a01b03831660009081526019602052604090205460ff16806113f357506001600160a01b03821660009081526019602052604090205460ff165b6114385760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610abe565b6001600160a01b0383166000908152601a602052604090205460ff16801561147957506001600160a01b0382166000908152600d602052604090205460ff16155b1561154d57600e548111156114ee5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610abe565b600f546114fa83610b3e565b6115049083611f1c565b11156115485760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610abe565b61167e565b6001600160a01b0382166000908152601a602052604090205460ff16801561158e57506001600160a01b0383166000908152600d602052604090205460ff16155b1561160457600e548111156115485760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610abe565b6001600160a01b0382166000908152600d602052604090205460ff1661167e57600f5461163083610b3e565b61163a9083611f1c565b111561167e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610abe565b600061168930610b3e565b600b54909150811080159081906116a25750600c5460ff165b80156116b85750600854600160a01b900460ff16155b80156116dd57506001600160a01b0385166000908152601a602052604090205460ff16155b801561170257506001600160a01b03851660009081526019602052604090205460ff16155b801561172757506001600160a01b03841660009081526019602052604090205460ff16155b15611755576008805460ff60a01b1916600160a01b179055611747611b91565b6008805460ff60a01b191690555b6008546001600160a01b03861660009081526019602052604090205460ff600160a01b9092048216159116806117a357506001600160a01b03851660009081526019602052604090205460ff165b156117ac575060005b600081156118a75760175460105443036117c4575060325b6001600160a01b0387166000908152601a602052604090205460ff1680156117ec5750600081115b156118255761180660646118008884611cba565b90611ccd565b9150816018600082825461181a9190611f1c565b909155506118889050565b6001600160a01b0388166000908152601a602052604090205460ff16801561184f57506000601554115b156118885761186e606461180060155489611cba90919063ffffffff16565b915081601860008282546118829190611f1c565b90915550505b811561189957611899883084611a67565b6118a38287612063565b9550505b6118b2878787611a67565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106119425761194261207a565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561199b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119bf9190612090565b816001815181106119d2576119d261207a565b6001600160a01b0392831660209182029290920101526007546119f891309116846110d2565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac94790611a319085906000908690309042906004016120ad565b600060405180830381600087803b158015611a4b57600080fd5b505af1158015611a5f573d6000803e3d6000fd5b505050505050565b6001600160a01b038316611a8d5760405162461bcd60e51b8152600401610abe90611fdb565b6001600160a01b038216611ab35760405162461bcd60e51b8152600401610abe90612020565b6001600160a01b03831660009081526020819052604090205481811015611b2b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610abe565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610bdf565b6000611b9c30610b3e565b6018549091506000828103611bb057505050565b81600003611bbd57600191505b600a54436000908152601260205260408120805491611bdb8361211e565b9091555050601154610100900460ff1615611c0d5743600090815260126020526040902054600211611c0d5750505050565b80841115611c19578093505b8347611c248261190d565b6000611c304783611cd9565b9050808615611c5557611c528761180060185485611cba90919063ffffffff16565b90505b600060188190556009546040516001600160a01b039091169147919081818185875af1925050503d8060008114611ca8576040519150601f19603f3d011682016040523d82523d6000602084013e611cad565b606091505b5050505050505050505050565b6000611cc68284611edb565b9392505050565b6000611cc68284611efa565b6000611cc68284612063565b600060208083528351808285015260005b81811015611d1257858101830151858201604001528201611cf6565b81811115611d24576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610d8a57600080fd5b60008060408385031215611d6257600080fd5b8235611d6d81611d3a565b946020939093013593505050565b600080600060608486031215611d9057600080fd5b8335611d9b81611d3a565b92506020840135611dab81611d3a565b929592945050506040919091013590565b600060208284031215611dce57600080fd5b5035919050565b600060208284031215611de757600080fd5b8135611cc681611d3a565b80358015158114610b0f57600080fd5b60008060408385031215611e1557600080fd5b8235611e2081611d3a565b9150611e2e60208401611df2565b90509250929050565b600060208284031215611e4957600080fd5b611cc682611df2565b60008060408385031215611e6557600080fd5b8235611e7081611d3a565b91506020830135611e8081611d3a565b809150509250929050565b600181811c90821680611e9f57607f821691505b602082108103611ebf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611ef557611ef5611ec5565b500290565b600082611f1757634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611f2f57611f2f611ec5565b500190565b60208082526035908201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60408201527410181718181892903a37ba30b61039bab838363c9760591b606082015260800190565b60208082526032908201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160408201527137101a12903a37ba30b61039bab838363c9760711b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561207557612075611ec5565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156120a257600080fd5b8151611cc681611d3a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120fd5784516001600160a01b0316835293830193918301916001016120d8565b50506001600160a01b03969096166060850152505050608001529392505050565b60006001820161213057612130611ec5565b506001019056fea2646970667358221220d256608b4ee3d913530b132c40e17d15f5962f026ac8dac905cc9254b068d9b664736f6c634300080f0033

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.