ETH Price: $3,296.53 (-3.60%)
Gas: 10 Gwei

Token

I am Jeet (JEET)
 

Overview

Max Total Supply

100,000,000,000 JEET

Holders

55

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
schmittyissosexyandhot.eth
Balance
0.89413392 JEET

Value
$0.00
0xdd45747fe07dc9d8e16ff81d41c49bbbf2be9dae
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:
JEET

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * 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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        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);
    }
}

File 2 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract 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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-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 {}
}

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

pragma solidity ^0.8.0;

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

File 4 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

File 5 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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

File 6 of 7 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

File 7 of 7 : Jeet.sol
// website: https://www.jeetnation.com
// Telegram: https://t.me/I_am_jeet_Portal

// SPDX-License-Identifier: MIT
pragma solidity >=0.8.17;


import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

    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,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

// contract Jeet.sol 2023. reach out to dev for more info.

contract JEET is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address private constant deadAddress = address(0xdead);
    address public marketingWallet = address(0x096E6a588A2292c2C0df36C4F1cA9C22dDDF0378);
    address public ownerWallet = address(0x096E6a588A2292c2C0df36C4F1cA9C22dDDF0378);

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public automatedMarketMakerPairs;
    mapping(address => bool) public JEETS;
    mapping (address => uint256) public antiJeetSellTime; // this is the limit after your first ever buy, one-time limit 
    mapping(address => uint256) public latestBuyTime; 
    mapping(address => uint256) public latestSellTime; // this is the limit after your first sell.

    uint8 private _decimals = 9;
    uint256 private _totalSupply = 1_00_000_000_000 * 10**_decimals;
    uint256 public swapTokensAtAmount;
    uint256 public maxTxnAmount;
    uint256 public maxWalletSize;
    uint256 public sellDelayDuration;
    uint256 public antiJeetSellDelayDuration;

    uint256 public buyMarketingFee;
    uint256 public sellMarketingFee;
    uint256 public antiJeetSellFee;

    uint256 private tokensFromTax;

    bool private swapping;
    bool public sizeLimitsEnabled;
    bool public sellDelayEnabled;
    bool public antiJeetEnabled;
    bool public tradingEnabled;

    event TransferForeignToken(address token, uint256 amount);
    event UpdatedMarketingAddress(address marketing);
    event excludedFromFees(address excludeAccount, bool status);
    event OwnerForcedSwapBack(uint256 timestamp);
    event sellDelayDurationAt(uint256 value, uint256 _value);
    event UpdatedFees(uint256 buyingFee, uint256 sellingFees, uint256 antiJeetSellFee);
    event UpdatedSwapParameter(
        uint256 _maxTxnAmount,
        uint256 _maxWalletSize,
        uint256 percent
    );

    constructor() ERC20("I am Jeet", "JEET") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        uniswapV2Router = _uniswapV2Router;

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

        swapTokensAtAmount = (_totalSupply * 5) / 10000; // 0.05%
        maxTxnAmount = (_totalSupply * 3) / 1000; // 0.3%
        maxWalletSize = (_totalSupply * 5) / 1000; // 0.5%
        buyMarketingFee = 5; // 5%
        sellMarketingFee = 5; // 5%
        antiJeetSellFee = 20; // 20%

        transferOwnership(ownerWallet);
        sizeLimitsEnabled = true;
        sellDelayDuration = 86400 seconds;
        antiJeetSellDelayDuration = 86400 seconds;
        sellDelayEnabled = true;
        antiJeetEnabled = true;
        tradingEnabled = false;

        // exclude from paying fees
        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[marketingWallet] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[address(0xdead)] = true;

        /*function that is only called here, and CANNOT be called ever again*/
        _mint(owner(), _totalSupply);
    }

    receive() external payable {}

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
    }

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

    function setExcludeFromFees(address account, bool value) public onlyOwner {
        _isExcludedFromFees[account] = value;
        emit excludedFromFees(account, value);
    }

    function enableTrading() public onlyOwner {
        tradingEnabled = true;
    }

    function disableSizeLimits() public onlyOwner {
        sizeLimitsEnabled = false;
    }

    function disableAntiJeet() public onlyOwner{
        antiJeetEnabled = false;
    }

    function disableSellDelay() public onlyOwner {
        sellDelayEnabled = false;
    }

    function setSellDelayDuration(uint256 _sellDelayDuration, uint256 _antiJeetSellDelayDuration)
        external
        onlyOwner
    {
        sellDelayDuration = _sellDelayDuration;
        antiJeetSellDelayDuration = _antiJeetSellDelayDuration;
        emit sellDelayDurationAt(_sellDelayDuration, _antiJeetSellDelayDuration);
    }

    function updateSizeParameters(
        uint256 _maxTxnAmount,
        uint256 _maxWalletSize,
        uint256 percent
    ) public onlyOwner {
        maxTxnAmount = (_maxTxnAmount * _totalSupply) / percent;
        maxWalletSize = (_maxWalletSize * _totalSupply) / percent;
        emit UpdatedSwapParameter(_maxTxnAmount, _maxWalletSize, percent);
    }

    function updateSwapAmount(uint256 _value, uint256 _percent)
        public
        onlyOwner
    {
        swapTokensAtAmount = (_value * _totalSupply) / _percent;
    }

    function updateFees(uint256 _buy, uint256 _sell, uint256 _jeetFee) public onlyOwner {
        uint256 totalFees = _buy + _sell;
        require(totalFees <= 20, "Total Buy and Sell fees must be less than or equal to 20");
        require(_jeetFee <= 20, "Jeet fee must be less than or equals to 20");
        buyMarketingFee = _buy;
        sellMarketingFee = _sell;
        antiJeetSellFee = _jeetFee;
        emit UpdatedFees(_buy, _sell, _jeetFee);
    }

    function updateMarketingWallet(address _marketingWallet) public onlyOwner {
        marketingWallet = _marketingWallet;
        emit UpdatedMarketingAddress(_marketingWallet);
    }

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

        if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            require(tradingEnabled, "Trading is not yet Enabled");
        }

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
        // maxTxnAmount and maxWalletSize Limits 
        if (sizeLimitsEnabled) {
            if (automatedMarketMakerPairs[from] && !_isExcludedFromFees[to]) {
                require(
                    amount <= maxTxnAmount,
                    "Buy transfer amount exceeds the maxTransactionAmount."
                );
            } else if (
                automatedMarketMakerPairs[to] && !_isExcludedFromFees[from]
            ) {
                require(
                    amount <= maxTxnAmount,
                    "Sell transfer amount exceeds the maxTransactionAmount."
                );
            }

            if (
                !_isExcludedFromFees[from] && to != address(uniswapV2Router) && to != address(uniswapV2Pair)
                && !_isExcludedFromFees[to]
            ) {
                require(
                    balanceOf(to) + amount <= maxWalletSize,
                    "Transfer amount exceeds the maxWalletSize."
                );
            }
        }

        // sell Delay
        if (sellDelayEnabled) {

            //Delay on normal transfer
            if (!_isExcludedFromFees[from] && to != address(uniswapV2Router) && to != address(uniswapV2Pair)
                && !_isExcludedFromFees[to] && from != address(uniswapV2Pair) && from != address(uniswapV2Router)) {
                JEETS[to] = true;
                latestSellTime[to] = block.timestamp.add(sellDelayDuration);
            }
            
            //selltime required on each msg.sender uniswap sells
            if (to == uniswapV2Pair && JEETS[from] == true && !_isExcludedFromFees[from]) {
                require(
                    block.timestamp >= latestSellTime[from],
                    "Not yet time to sell tokens, JEET!"
                );
                latestSellTime[from] = block.timestamp.add(sellDelayDuration);
            
            // map paperhand as Jeet and add sell delay to msgsender
            } else if (
                to == uniswapV2Pair && !JEETS[from]  && !_isExcludedFromFees[from]
            ) {
                JEETS[from] = true;
                latestSellTime[from] = block.timestamp.add(sellDelayDuration);
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {

            // First Buy, Anti Jeet
            if (antiJeetEnabled) {
                // record buytime on uniswap if it is a new buyer address
                if (from == uniswapV2Pair  && !_isExcludedFromFees[to] && latestBuyTime[to] == 0) {
                    latestBuyTime[to] = block.timestamp;
                    antiJeetSellTime[to] = block.timestamp.add(antiJeetSellDelayDuration);
                }

                // on sell
                if (antiJeetSellTime[from] >= block.timestamp && to == uniswapV2Pair  && !_isExcludedFromFees[from] && antiJeetSellFee > 0) {
                    fees = amount.mul(antiJeetSellFee).div(100);
                    tokensFromTax += fees;
                }
            }

            // on sell
            if (automatedMarketMakerPairs[to] && sellMarketingFee > 0 && antiJeetSellTime[from] < block.timestamp) {
                fees = amount.mul(sellMarketingFee).div(100);
                tokensFromTax += fees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyMarketingFee > 0) {
                fees = amount.mul(buyMarketingFee).div(100);
                tokensFromTax += fees;
            }

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

            amount -= fees;
        }

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

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;

        if (contractBalance == 0 || tokensFromTax == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        uint256 amountToSwapForETH = contractBalance;

        swapTokensForEth(amountToSwapForETH);

        tokensFromTax = 0;

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

    // force Swap back if slippage above 49% for launch.
    function forceSwapBack() external {
        uint256 contractBalance = balanceOf(address(this));
        require(
            contractBalance >= _totalSupply / 100,
            "Can only swap back if more than 1% of tokens stuck on contract"
        );
        swapBack();
        emit OwnerForcedSwapBack(block.timestamp);
    }

    // withdraw foreign tokens in ca
    function transferForeignToken(address _token)
        external
        returns (bool _sent)
    {
        require(_token != address(0), "_token address cannot be 0");
        require(
            _token != address(this),
            "_token address cannot be native token"
        );
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        _sent = IERC20(_token).transfer(
            address(marketingWallet),
            _contractBalance
        );
        emit TransferForeignToken(_token, _contractBalance);
    }

    // withdraw in token contract ETH if stuck
    function withdrawStuckETH() external {
        bool success;
        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "london",
  "remappings": [],
  "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":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"OwnerForcedSwapBack","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferForeignToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyingFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellingFees","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"antiJeetSellFee","type":"uint256"}],"name":"UpdatedFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"marketing","type":"address"}],"name":"UpdatedMarketingAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_maxTxnAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_maxWalletSize","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"percent","type":"uint256"}],"name":"UpdatedSwapParameter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"excludeAccount","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"excludedFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"sellDelayDurationAt","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"JEETS","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiJeetEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiJeetSellDelayDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiJeetSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"antiJeetSellTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableAntiJeet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableSellDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableSizeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSwapBack","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"","type":"address"}],"name":"latestBuyTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"latestSellTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxnAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDelayDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setExcludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellDelayDuration","type":"uint256"},{"internalType":"uint256","name":"_antiJeetSellDelayDuration","type":"uint256"}],"name":"setSellDelayDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sizeLimitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"tradingEnabled","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":"_token","type":"address"}],"name":"transferForeignToken","outputs":[{"internalType":"bool","name":"_sent","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":[{"internalType":"uint256","name":"_buy","type":"uint256"},{"internalType":"uint256","name":"_sell","type":"uint256"},{"internalType":"uint256","name":"_jeetFee","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxnAmount","type":"uint256"},{"internalType":"uint256","name":"_maxWalletSize","type":"uint256"},{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"updateSizeParameters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"updateSwapAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600680546001600160a01b031990811673096e6a588a2292c2c0df36c4f1ca9c22dddf0378908117909255600780549091169091179055600e805460ff191660099081179091556200005890600a6200070c565b620000699064174876e80062000724565b600f553480156200007957600080fd5b50604051806040016040528060098152602001681248185b481299595d60ba1b815250604051806040016040528060048152602001631291515560e21b8152508160039081620000ca9190620007e2565b506004620000d98282620007e2565b505050620000f6620000f0620003f860201b60201c565b620003fc565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b81529051829163c45a01559160048083019260209291908290030181865afa1580156200014d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001739190620008ae565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e79190620008ae565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000235573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025b9190620008ae565b6001600160a01b031660a08190526000908152600960205260409020805460ff19166001179055612710600f54600562000296919062000724565b620002a29190620008d9565b601055600f546103e890620002b990600362000724565b620002c59190620008d9565b601155600f546103e890620002dc90600562000724565b620002e89190620008d9565b60125560056015819055601655601460175560075462000311906001600160a01b03166200044e565b6019805462015180601381905560145564ffffffff00191663010101001790556001600860006200034a6005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905560065490911681526008909252808220805484166001908117909155308352908220805484168217905561dead9091527f046fee3d77c34a6c5e10c3be6dc4b132c30449dbf4f0bc07684896dd093342998054909216179055620003f1620003e86005546001600160a01b031690565b600f54620004d1565b5062000912565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200045862000594565b6001600160a01b038116620004c35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b620004ce81620003fc565b50565b6001600160a01b038216620005295760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004ba565b80600260008282546200053d9190620008fc565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620005f05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620004ba565b565b505050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200064e578160001904821115620006325762000632620005f7565b808516156200064057918102915b93841c939080029062000612565b509250929050565b600082620006675750600162000706565b81620006765750600062000706565b81600181146200068f57600281146200069a57620006ba565b600191505062000706565b60ff841115620006ae57620006ae620005f7565b50506001821b62000706565b5060208310610133831016604e8410600b8410161715620006df575081810a62000706565b620006eb83836200060d565b8060001904821115620007025762000702620005f7565b0290505b92915050565b60006200071d60ff84168362000656565b9392505050565b8082028115828204841417620007065762000706620005f7565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200076957607f821691505b6020821081036200078a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005f257600081815260208120601f850160051c81016020861015620007b95750805b601f850160051c820191505b81811015620007da57828155600101620007c5565b505050505050565b81516001600160401b03811115620007fe57620007fe6200073e565b62000816816200080f845462000754565b8462000790565b602080601f8311600181146200084e5760008415620008355750858301515b600019600386901b1c1916600185901b178555620007da565b600085815260208120601f198616915b828110156200087f578886015182559484019460019091019084016200085e565b50858210156200089e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620008c157600080fd5b81516001600160a01b03811681146200071d57600080fd5b600082620008f757634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620007065762000706620005f7565b60805160a0516127076200099360003960008181610487015281816116a7015281816118090152818161186c0152818161193101528181611a5801528181611c4c0152611d3401526000818161034d01528181611669015281816117cb015281816118aa015281816121af0152818161226801526122a401526127076000f3fe6080604052600436106102b25760003560e01c80638f3fa86011610175578063c9289b7d116100dc578063dd62ed3e11610095578063f2fde38b1161006f578063f2fde38b146108aa578063f5648a4f146108ca578063fd56f88b146108df578063fe5f5b57146108f457600080fd5b8063dd62ed3e14610855578063e2f4560514610875578063e99849581461088b57600080fd5b8063c9289b7d146107a4578063c9c09448146107ba578063cf46f24c146107cf578063d63cad22146107e5578063d912780814610805578063dc93cf701461083557600080fd5b8063a457c2d71161012e578063a457c2d7146106de578063a9059cbb146106fe578063a9e114ac1461071e578063aacebbe314610734578063b62496f514610754578063c586b1771461078457600080fd5b80638f3fa86014610647578063921369131461065d5780639335dcb71461067357806395d89b41146106935780639fbdd96d146106a85780639fc423ce146106bd57600080fd5b80634ada218b11610219578063715018a6116101d2578063715018a6146105a957806375f0a874146105be5780637bce5a04146105de57806384cdcc33146105f45780638a8c523c146106145780638da5cb5b1461062957600080fd5b80634ada218b146104a95780634fbee193146104cb57806351f205e4146105045780635f3a0675146105195780635fa2db7a1461054657806370a082311461057357600080fd5b806323b872dd1161026b57806323b872dd146103c6578063313ce567146103e657806331a31f8214610408578063395093511461043557806349335e6c1461045557806349bd5a5e1461047557600080fd5b806306fdde03146102be578063095ea7b3146102e957806312ec9d3b146103195780631694505e1461033b57806318160ddd1461038757806322429085146103a657600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d361090a565b6040516102e09190612310565b60405180910390f35b3480156102f557600080fd5b50610309610304366004612373565b61099c565b60405190151581526020016102e0565b34801561032557600080fd5b5061033961033436600461239f565b6109b6565b005b34801561034757600080fd5b5061036f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102e0565b34801561039357600080fd5b50600f545b6040519081526020016102e0565b3480156103b257600080fd5b506103396103c13660046123c1565b6109de565b3480156103d257600080fd5b506103096103e13660046123ed565b610b2a565b3480156103f257600080fd5b50600e5460405160ff90911681526020016102e0565b34801561041457600080fd5b5061039861042336600461242e565b600d6020526000908152604090205481565b34801561044157600080fd5b50610309610450366004612373565b610b4e565b34801561046157600080fd5b506019546103099062010000900460ff1681565b34801561048157600080fd5b5061036f7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104b557600080fd5b5060195461030990640100000000900460ff1681565b3480156104d757600080fd5b506103096104e636600461242e565b6001600160a01b031660009081526008602052604090205460ff1690565b34801561051057600080fd5b50610339610b70565b34801561052557600080fd5b5061039861053436600461242e565b600c6020526000908152604090205481565b34801561055257600080fd5b5061039861056136600461242e565b600b6020526000908152604090205481565b34801561057f57600080fd5b5061039861058e36600461242e565b6001600160a01b031660009081526020819052604090205490565b3480156105b557600080fd5b50610339610c43565b3480156105ca57600080fd5b5060065461036f906001600160a01b031681565b3480156105ea57600080fd5b5061039860155481565b34801561060057600080fd5b5061033961060f36600461239f565b610c57565b34801561062057600080fd5b50610339610ca7565b34801561063557600080fd5b506005546001600160a01b031661036f565b34801561065357600080fd5b5061039860125481565b34801561066957600080fd5b5061039860165481565b34801561067f57600080fd5b5060075461036f906001600160a01b031681565b34801561069f57600080fd5b506102d3610cc6565b3480156106b457600080fd5b50610339610cd5565b3480156106c957600080fd5b50601954610309906301000000900460ff1681565b3480156106ea57600080fd5b506103096106f9366004612373565b610cea565b34801561070a57600080fd5b50610309610719366004612373565b610d65565b34801561072a57600080fd5b5061039860135481565b34801561074057600080fd5b5061033961074f36600461242e565b610d73565b34801561076057600080fd5b5061030961076f36600461242e565b60096020526000908152604090205460ff1681565b34801561079057600080fd5b5061033961079f3660046123c1565b610dc9565b3480156107b057600080fd5b5061039860175481565b3480156107c657600080fd5b50610339610e4f565b3480156107db57600080fd5b5061039860115481565b3480156107f157600080fd5b50610339610800366004612459565b610e65565b34801561081157600080fd5b5061030961082036600461242e565b600a6020526000908152604090205460ff1681565b34801561084157600080fd5b5061030961085036600461242e565b610ec9565b34801561086157600080fd5b50610398610870366004612492565b6110b6565b34801561088157600080fd5b5061039860105481565b34801561089757600080fd5b5060195461030990610100900460ff1681565b3480156108b657600080fd5b506103396108c536600461242e565b6110e1565b3480156108d657600080fd5b5061033961115a565b3480156108eb57600080fd5b506103396111b2565b34801561090057600080fd5b5061039860145481565b606060038054610919906124c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610945906124c0565b80156109925780601f1061096757610100808354040283529160200191610992565b820191906000526020600020905b81548152906001019060200180831161097557829003601f168201915b5050505050905090565b6000336109aa8185856111c9565b60019150505b92915050565b6109be6112ed565b80600f54836109cd9190612510565b6109d79190612527565b6010555050565b6109e66112ed565b60006109f28385612549565b90506014811115610a705760405162461bcd60e51b815260206004820152603860248201527f546f74616c2042757920616e642053656c6c2066656573206d7573742062652060448201527f6c657373207468616e206f7220657175616c20746f203230000000000000000060648201526084015b60405180910390fd5b6014821115610ad45760405162461bcd60e51b815260206004820152602a60248201527f4a65657420666565206d757374206265206c657373207468616e206f72206571604482015269075616c7320746f2032360b41b6064820152608401610a67565b60158490556016839055601782905560408051858152602081018590529081018390527fdee9e37af3ea8d668829450175b129f10d826c482d4a23993888ebdd011b98139060600160405180910390a150505050565b600033610b38858285611347565b610b438585856113bb565b506001949350505050565b6000336109aa818585610b6183836110b6565b610b6b9190612549565b6111c9565b30600090815260208190526040902054600f54610b8f90606490612527565b811015610c045760405162461bcd60e51b815260206004820152603e60248201527f43616e206f6e6c792073776170206261636b206966206d6f7265207468616e2060448201527f3125206f6620746f6b656e7320737475636b206f6e20636f6e747261637400006064820152608401610a67565b610c0c611efa565b6040514281527f1b56c383f4f48fc992e45667ea4eabae777b9cca68b516a9562d8cda78f1bb32906020015b60405180910390a150565b610c4b6112ed565b610c556000611fb1565b565b610c5f6112ed565b6013829055601481905560408051838152602081018390527f22633dec0acfce224119c97243c0138c17b7798ed7e03fde7e05b898e02fba2d91015b60405180910390a15050565b610caf6112ed565b6019805464ff000000001916640100000000179055565b606060048054610919906124c0565b610cdd6112ed565b6019805461ff0019169055565b60003381610cf882866110b6565b905083811015610d585760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a67565b610b4382868684036111c9565b6000336109aa8185856113bb565b610d7b6112ed565b600680546001600160a01b0319166001600160a01b0383169081179091556040519081527fd1e7d6a3390dd5008bd1c57798817b9f806e4c417264e7d3d67e42e784dc24a990602001610c38565b610dd16112ed565b80600f5484610de09190612510565b610dea9190612527565b601155600f548190610dfc9084612510565b610e069190612527565b60125560408051848152602081018490529081018290527fa36c97d6d1444a4b8c629874ea08d234068ceb1e004edfeaeb9c1ebae2ac6a8e9060600160405180910390a1505050565b610e576112ed565b6019805462ff000019169055565b610e6d6112ed565b6001600160a01b038216600081815260086020908152604091829020805460ff19168515159081179091558251938452908301527f16697fc5d74ba1183c0255b806761a2df7e83f7289ceed87bfb7b4f588f00cc69101610c9b565b60006001600160a01b038216610f215760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a67565b306001600160a01b03831603610f875760405162461bcd60e51b815260206004820152602560248201527f5f746f6b656e20616464726573732063616e6e6f74206265206e6174697665206044820152643a37b5b2b760d91b6064820152608401610a67565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015610fce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff2919061255c565b60065460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810183905291925084169063a9059cbb906044016020604051808303816000875af1158015611047573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106b9190612575565b604080516001600160a01b0386168152602081018490529193507fdeda980967fcead7b61e78ac46a4da14274af29e894d4d61e8b81ec38ab3e438910160405180910390a150919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6110e96112ed565b6001600160a01b03811661114e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a67565b61115781611fb1565b50565b6006546040516000916001600160a01b03169047908381818185875af1925050503d80600081146111a7576040519150601f19603f3d011682016040523d82523d6000602084013e6111ac565b606091505b50505050565b6111ba6112ed565b6019805463ff00000019169055565b6001600160a01b03831661122b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a67565b6001600160a01b03821661128c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a67565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610c555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a67565b600061135384846110b6565b905060001981146111ac57818110156113ae5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a67565b6111ac84848484036111c9565b6001600160a01b0383166113e15760405162461bcd60e51b8152600401610a6790612592565b6001600160a01b0382166114075760405162461bcd60e51b8152600401610a67906125d7565b6001600160a01b03831660009081526008602052604090205460ff1615801561144957506001600160a01b03821660009081526008602052604090205460ff16155b156114a857601954640100000000900460ff166114a85760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f742079657420456e61626c65640000000000006044820152606401610a67565b806000036114c1576114bc83836000612003565b505050565b601954610100900460ff1615611794576001600160a01b03831660009081526009602052604090205460ff16801561151257506001600160a01b03821660009081526008602052604090205460ff16155b1561158c576011548111156115875760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a67565b611643565b6001600160a01b03821660009081526009602052604090205460ff1680156115cd57506001600160a01b03831660009081526008602052604090205460ff16155b15611643576011548111156116435760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610a67565b6001600160a01b03831660009081526008602052604090205460ff1615801561169e57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156116dc57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561170157506001600160a01b03821660009081526008602052604090205460ff16155b156117945760125481611729846001600160a01b031660009081526020819052604090205490565b6117339190612549565b11156117945760405162461bcd60e51b815260206004820152602a60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785760448201526930b63632ba29b4bd329760b11b6064820152608401610a67565b60195462010000900460ff1615611b25576001600160a01b03831660009081526008602052604090205460ff1615801561180057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561183e57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561186357506001600160a01b03821660009081526008602052604090205460ff16155b80156118a157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614155b80156118df57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614155b1561192f576001600160a01b0382166000908152600a60205260409020805460ff1916600117905560135461191590429061212d565b6001600160a01b0383166000908152600d60205260409020555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614801561198d57506001600160a01b0383166000908152600a602052604090205460ff1615156001145b80156119b257506001600160a01b03831660009081526008602052604090205460ff16155b15611a56576001600160a01b0383166000908152600d6020526040902054421015611a2a5760405162461bcd60e51b815260206004820152602260248201527f4e6f74207965742074696d6520746f2073656c6c20746f6b656e732c204a4545604482015261542160f01b6064820152608401610a67565b601354611a3890429061212d565b6001600160a01b0384166000908152600d6020526040902055611b25565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316148015611ab057506001600160a01b0383166000908152600a602052604090205460ff16155b8015611ad557506001600160a01b03831660009081526008602052604090205460ff16155b15611b25576001600160a01b0383166000908152600a60205260409020805460ff19166001179055601354611b0b90429061212d565b6001600160a01b0384166000908152600d60205260409020555b3060009081526020819052604090205460105481108015908190611b4c575060195460ff16155b8015611b7157506001600160a01b03851660009081526009602052604090205460ff16155b8015611b9657506001600160a01b03851660009081526008602052604090205460ff16155b8015611bbb57506001600160a01b03841660009081526008602052604090205460ff16155b15611be0576019805460ff19166001179055611bd5611efa565b6019805460ff191690555b6019546001600160a01b03861660009081526008602052604090205460ff91821615911680611c2757506001600160a01b03851660009081526008602052604090205460ff165b15611c30575060005b60008115611ee6576019546301000000900460ff1615611dda577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b0316148015611ca457506001600160a01b03861660009081526008602052604090205460ff16155b8015611cc657506001600160a01b0386166000908152600c6020526040902054155b15611d0f576001600160a01b0386166000908152600c602052604090204290819055601454611cf5919061212d565b6001600160a01b0387166000908152600b60205260409020555b6001600160a01b0387166000908152600b60205260409020544211801590611d6857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b0316145b8015611d8d57506001600160a01b03871660009081526008602052604090205460ff16155b8015611d9b57506000601754115b15611dda57611dc06064611dba6017548861214090919063ffffffff16565b9061214c565b90508060186000828254611dd49190612549565b90915550505b6001600160a01b03861660009081526009602052604090205460ff168015611e0457506000601654115b8015611e2757506001600160a01b0387166000908152600b602052604090205442115b15611e6557611e466064611dba6016548861214090919063ffffffff16565b90508060186000828254611e5a9190612549565b90915550611ec89050565b6001600160a01b03871660009081526009602052604090205460ff168015611e8f57506000601554115b15611ec857611eae6064611dba6015548861214090919063ffffffff16565b90508060186000828254611ec29190612549565b90915550505b8015611ed957611ed9873083612003565b611ee3818661261a565b94505b611ef1878787612003565b50505050505050565b3060009081526020819052604081205490811580611f185750601854155b15611f21575050565b601054611f2f906014612510565b821115611f4757601054611f44906014612510565b91505b81611f5181612158565b600060188190556006546040516001600160a01b039091169147919081818185875af1925050503d8060008114611fa4576040519150601f19603f3d011682016040523d82523d6000602084013e611fa9565b606091505b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166120295760405162461bcd60e51b8152600401610a6790612592565b6001600160a01b03821661204f5760405162461bcd60e51b8152600401610a67906125d7565b6001600160a01b038316600090815260208190526040902054818110156120c75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a67565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36111ac565b60006121398284612549565b9392505050565b60006121398284612510565b60006121398284612527565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061218d5761218d61262d565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561220b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061222f9190612643565b816001815181106122425761224261262d565b60200260200101906001600160a01b031690816001600160a01b03168152505061228d307f0000000000000000000000000000000000000000000000000000000000000000846111c9565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906122e2908590600090869030904290600401612660565b600060405180830381600087803b1580156122fc57600080fd5b505af1158015611fa9573d6000803e3d6000fd5b600060208083528351808285015260005b8181101561233d57858101830151858201604001528201612321565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461115757600080fd5b6000806040838503121561238657600080fd5b82356123918161235e565b946020939093013593505050565b600080604083850312156123b257600080fd5b50508035926020909101359150565b6000806000606084860312156123d657600080fd5b505081359360208301359350604090920135919050565b60008060006060848603121561240257600080fd5b833561240d8161235e565b9250602084013561241d8161235e565b929592945050506040919091013590565b60006020828403121561244057600080fd5b81356121398161235e565b801515811461115757600080fd5b6000806040838503121561246c57600080fd5b82356124778161235e565b915060208301356124878161244b565b809150509250929050565b600080604083850312156124a557600080fd5b82356124b08161235e565b915060208301356124878161235e565b600181811c908216806124d457607f821691505b6020821081036124f457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176109b0576109b06124fa565b60008261254457634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156109b0576109b06124fa565b60006020828403121561256e57600080fd5b5051919050565b60006020828403121561258757600080fd5b81516121398161244b565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156109b0576109b06124fa565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561265557600080fd5b81516121398161235e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156126b05784516001600160a01b03168352938301939183019160010161268b565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122010793484dbb558cde8d3c6e8e535858daa880833b63fb5f7fd2a67776843bd3b64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102b25760003560e01c80638f3fa86011610175578063c9289b7d116100dc578063dd62ed3e11610095578063f2fde38b1161006f578063f2fde38b146108aa578063f5648a4f146108ca578063fd56f88b146108df578063fe5f5b57146108f457600080fd5b8063dd62ed3e14610855578063e2f4560514610875578063e99849581461088b57600080fd5b8063c9289b7d146107a4578063c9c09448146107ba578063cf46f24c146107cf578063d63cad22146107e5578063d912780814610805578063dc93cf701461083557600080fd5b8063a457c2d71161012e578063a457c2d7146106de578063a9059cbb146106fe578063a9e114ac1461071e578063aacebbe314610734578063b62496f514610754578063c586b1771461078457600080fd5b80638f3fa86014610647578063921369131461065d5780639335dcb71461067357806395d89b41146106935780639fbdd96d146106a85780639fc423ce146106bd57600080fd5b80634ada218b11610219578063715018a6116101d2578063715018a6146105a957806375f0a874146105be5780637bce5a04146105de57806384cdcc33146105f45780638a8c523c146106145780638da5cb5b1461062957600080fd5b80634ada218b146104a95780634fbee193146104cb57806351f205e4146105045780635f3a0675146105195780635fa2db7a1461054657806370a082311461057357600080fd5b806323b872dd1161026b57806323b872dd146103c6578063313ce567146103e657806331a31f8214610408578063395093511461043557806349335e6c1461045557806349bd5a5e1461047557600080fd5b806306fdde03146102be578063095ea7b3146102e957806312ec9d3b146103195780631694505e1461033b57806318160ddd1461038757806322429085146103a657600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d361090a565b6040516102e09190612310565b60405180910390f35b3480156102f557600080fd5b50610309610304366004612373565b61099c565b60405190151581526020016102e0565b34801561032557600080fd5b5061033961033436600461239f565b6109b6565b005b34801561034757600080fd5b5061036f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102e0565b34801561039357600080fd5b50600f545b6040519081526020016102e0565b3480156103b257600080fd5b506103396103c13660046123c1565b6109de565b3480156103d257600080fd5b506103096103e13660046123ed565b610b2a565b3480156103f257600080fd5b50600e5460405160ff90911681526020016102e0565b34801561041457600080fd5b5061039861042336600461242e565b600d6020526000908152604090205481565b34801561044157600080fd5b50610309610450366004612373565b610b4e565b34801561046157600080fd5b506019546103099062010000900460ff1681565b34801561048157600080fd5b5061036f7f0000000000000000000000003bb7f50b9339b96bcb890628a94295ddee6517c081565b3480156104b557600080fd5b5060195461030990640100000000900460ff1681565b3480156104d757600080fd5b506103096104e636600461242e565b6001600160a01b031660009081526008602052604090205460ff1690565b34801561051057600080fd5b50610339610b70565b34801561052557600080fd5b5061039861053436600461242e565b600c6020526000908152604090205481565b34801561055257600080fd5b5061039861056136600461242e565b600b6020526000908152604090205481565b34801561057f57600080fd5b5061039861058e36600461242e565b6001600160a01b031660009081526020819052604090205490565b3480156105b557600080fd5b50610339610c43565b3480156105ca57600080fd5b5060065461036f906001600160a01b031681565b3480156105ea57600080fd5b5061039860155481565b34801561060057600080fd5b5061033961060f36600461239f565b610c57565b34801561062057600080fd5b50610339610ca7565b34801561063557600080fd5b506005546001600160a01b031661036f565b34801561065357600080fd5b5061039860125481565b34801561066957600080fd5b5061039860165481565b34801561067f57600080fd5b5060075461036f906001600160a01b031681565b34801561069f57600080fd5b506102d3610cc6565b3480156106b457600080fd5b50610339610cd5565b3480156106c957600080fd5b50601954610309906301000000900460ff1681565b3480156106ea57600080fd5b506103096106f9366004612373565b610cea565b34801561070a57600080fd5b50610309610719366004612373565b610d65565b34801561072a57600080fd5b5061039860135481565b34801561074057600080fd5b5061033961074f36600461242e565b610d73565b34801561076057600080fd5b5061030961076f36600461242e565b60096020526000908152604090205460ff1681565b34801561079057600080fd5b5061033961079f3660046123c1565b610dc9565b3480156107b057600080fd5b5061039860175481565b3480156107c657600080fd5b50610339610e4f565b3480156107db57600080fd5b5061039860115481565b3480156107f157600080fd5b50610339610800366004612459565b610e65565b34801561081157600080fd5b5061030961082036600461242e565b600a6020526000908152604090205460ff1681565b34801561084157600080fd5b5061030961085036600461242e565b610ec9565b34801561086157600080fd5b50610398610870366004612492565b6110b6565b34801561088157600080fd5b5061039860105481565b34801561089757600080fd5b5060195461030990610100900460ff1681565b3480156108b657600080fd5b506103396108c536600461242e565b6110e1565b3480156108d657600080fd5b5061033961115a565b3480156108eb57600080fd5b506103396111b2565b34801561090057600080fd5b5061039860145481565b606060038054610919906124c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610945906124c0565b80156109925780601f1061096757610100808354040283529160200191610992565b820191906000526020600020905b81548152906001019060200180831161097557829003601f168201915b5050505050905090565b6000336109aa8185856111c9565b60019150505b92915050565b6109be6112ed565b80600f54836109cd9190612510565b6109d79190612527565b6010555050565b6109e66112ed565b60006109f28385612549565b90506014811115610a705760405162461bcd60e51b815260206004820152603860248201527f546f74616c2042757920616e642053656c6c2066656573206d7573742062652060448201527f6c657373207468616e206f7220657175616c20746f203230000000000000000060648201526084015b60405180910390fd5b6014821115610ad45760405162461bcd60e51b815260206004820152602a60248201527f4a65657420666565206d757374206265206c657373207468616e206f72206571604482015269075616c7320746f2032360b41b6064820152608401610a67565b60158490556016839055601782905560408051858152602081018590529081018390527fdee9e37af3ea8d668829450175b129f10d826c482d4a23993888ebdd011b98139060600160405180910390a150505050565b600033610b38858285611347565b610b438585856113bb565b506001949350505050565b6000336109aa818585610b6183836110b6565b610b6b9190612549565b6111c9565b30600090815260208190526040902054600f54610b8f90606490612527565b811015610c045760405162461bcd60e51b815260206004820152603e60248201527f43616e206f6e6c792073776170206261636b206966206d6f7265207468616e2060448201527f3125206f6620746f6b656e7320737475636b206f6e20636f6e747261637400006064820152608401610a67565b610c0c611efa565b6040514281527f1b56c383f4f48fc992e45667ea4eabae777b9cca68b516a9562d8cda78f1bb32906020015b60405180910390a150565b610c4b6112ed565b610c556000611fb1565b565b610c5f6112ed565b6013829055601481905560408051838152602081018390527f22633dec0acfce224119c97243c0138c17b7798ed7e03fde7e05b898e02fba2d91015b60405180910390a15050565b610caf6112ed565b6019805464ff000000001916640100000000179055565b606060048054610919906124c0565b610cdd6112ed565b6019805461ff0019169055565b60003381610cf882866110b6565b905083811015610d585760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a67565b610b4382868684036111c9565b6000336109aa8185856113bb565b610d7b6112ed565b600680546001600160a01b0319166001600160a01b0383169081179091556040519081527fd1e7d6a3390dd5008bd1c57798817b9f806e4c417264e7d3d67e42e784dc24a990602001610c38565b610dd16112ed565b80600f5484610de09190612510565b610dea9190612527565b601155600f548190610dfc9084612510565b610e069190612527565b60125560408051848152602081018490529081018290527fa36c97d6d1444a4b8c629874ea08d234068ceb1e004edfeaeb9c1ebae2ac6a8e9060600160405180910390a1505050565b610e576112ed565b6019805462ff000019169055565b610e6d6112ed565b6001600160a01b038216600081815260086020908152604091829020805460ff19168515159081179091558251938452908301527f16697fc5d74ba1183c0255b806761a2df7e83f7289ceed87bfb7b4f588f00cc69101610c9b565b60006001600160a01b038216610f215760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a67565b306001600160a01b03831603610f875760405162461bcd60e51b815260206004820152602560248201527f5f746f6b656e20616464726573732063616e6e6f74206265206e6174697665206044820152643a37b5b2b760d91b6064820152608401610a67565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015610fce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff2919061255c565b60065460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810183905291925084169063a9059cbb906044016020604051808303816000875af1158015611047573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106b9190612575565b604080516001600160a01b0386168152602081018490529193507fdeda980967fcead7b61e78ac46a4da14274af29e894d4d61e8b81ec38ab3e438910160405180910390a150919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6110e96112ed565b6001600160a01b03811661114e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a67565b61115781611fb1565b50565b6006546040516000916001600160a01b03169047908381818185875af1925050503d80600081146111a7576040519150601f19603f3d011682016040523d82523d6000602084013e6111ac565b606091505b50505050565b6111ba6112ed565b6019805463ff00000019169055565b6001600160a01b03831661122b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a67565b6001600160a01b03821661128c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a67565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610c555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a67565b600061135384846110b6565b905060001981146111ac57818110156113ae5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a67565b6111ac84848484036111c9565b6001600160a01b0383166113e15760405162461bcd60e51b8152600401610a6790612592565b6001600160a01b0382166114075760405162461bcd60e51b8152600401610a67906125d7565b6001600160a01b03831660009081526008602052604090205460ff1615801561144957506001600160a01b03821660009081526008602052604090205460ff16155b156114a857601954640100000000900460ff166114a85760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f742079657420456e61626c65640000000000006044820152606401610a67565b806000036114c1576114bc83836000612003565b505050565b601954610100900460ff1615611794576001600160a01b03831660009081526009602052604090205460ff16801561151257506001600160a01b03821660009081526008602052604090205460ff16155b1561158c576011548111156115875760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a67565b611643565b6001600160a01b03821660009081526009602052604090205460ff1680156115cd57506001600160a01b03831660009081526008602052604090205460ff16155b15611643576011548111156116435760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610a67565b6001600160a01b03831660009081526008602052604090205460ff1615801561169e57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156116dc57507f0000000000000000000000003bb7f50b9339b96bcb890628a94295ddee6517c06001600160a01b0316826001600160a01b031614155b801561170157506001600160a01b03821660009081526008602052604090205460ff16155b156117945760125481611729846001600160a01b031660009081526020819052604090205490565b6117339190612549565b11156117945760405162461bcd60e51b815260206004820152602a60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785760448201526930b63632ba29b4bd329760b11b6064820152608401610a67565b60195462010000900460ff1615611b25576001600160a01b03831660009081526008602052604090205460ff1615801561180057507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b801561183e57507f0000000000000000000000003bb7f50b9339b96bcb890628a94295ddee6517c06001600160a01b0316826001600160a01b031614155b801561186357506001600160a01b03821660009081526008602052604090205460ff16155b80156118a157507f0000000000000000000000003bb7f50b9339b96bcb890628a94295ddee6517c06001600160a01b0316836001600160a01b031614155b80156118df57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316836001600160a01b031614155b1561192f576001600160a01b0382166000908152600a60205260409020805460ff1916600117905560135461191590429061212d565b6001600160a01b0383166000908152600d60205260409020555b7f0000000000000000000000003bb7f50b9339b96bcb890628a94295ddee6517c06001600160a01b0316826001600160a01b031614801561198d57506001600160a01b0383166000908152600a602052604090205460ff1615156001145b80156119b257506001600160a01b03831660009081526008602052604090205460ff16155b15611a56576001600160a01b0383166000908152600d6020526040902054421015611a2a5760405162461bcd60e51b815260206004820152602260248201527f4e6f74207965742074696d6520746f2073656c6c20746f6b656e732c204a4545604482015261542160f01b6064820152608401610a67565b601354611a3890429061212d565b6001600160a01b0384166000908152600d6020526040902055611b25565b7f0000000000000000000000003bb7f50b9339b96bcb890628a94295ddee6517c06001600160a01b0316826001600160a01b0316148015611ab057506001600160a01b0383166000908152600a602052604090205460ff16155b8015611ad557506001600160a01b03831660009081526008602052604090205460ff16155b15611b25576001600160a01b0383166000908152600a60205260409020805460ff19166001179055601354611b0b90429061212d565b6001600160a01b0384166000908152600d60205260409020555b3060009081526020819052604090205460105481108015908190611b4c575060195460ff16155b8015611b7157506001600160a01b03851660009081526009602052604090205460ff16155b8015611b9657506001600160a01b03851660009081526008602052604090205460ff16155b8015611bbb57506001600160a01b03841660009081526008602052604090205460ff16155b15611be0576019805460ff19166001179055611bd5611efa565b6019805460ff191690555b6019546001600160a01b03861660009081526008602052604090205460ff91821615911680611c2757506001600160a01b03851660009081526008602052604090205460ff165b15611c30575060005b60008115611ee6576019546301000000900460ff1615611dda577f0000000000000000000000003bb7f50b9339b96bcb890628a94295ddee6517c06001600160a01b0316876001600160a01b0316148015611ca457506001600160a01b03861660009081526008602052604090205460ff16155b8015611cc657506001600160a01b0386166000908152600c6020526040902054155b15611d0f576001600160a01b0386166000908152600c602052604090204290819055601454611cf5919061212d565b6001600160a01b0387166000908152600b60205260409020555b6001600160a01b0387166000908152600b60205260409020544211801590611d6857507f0000000000000000000000003bb7f50b9339b96bcb890628a94295ddee6517c06001600160a01b0316866001600160a01b0316145b8015611d8d57506001600160a01b03871660009081526008602052604090205460ff16155b8015611d9b57506000601754115b15611dda57611dc06064611dba6017548861214090919063ffffffff16565b9061214c565b90508060186000828254611dd49190612549565b90915550505b6001600160a01b03861660009081526009602052604090205460ff168015611e0457506000601654115b8015611e2757506001600160a01b0387166000908152600b602052604090205442115b15611e6557611e466064611dba6016548861214090919063ffffffff16565b90508060186000828254611e5a9190612549565b90915550611ec89050565b6001600160a01b03871660009081526009602052604090205460ff168015611e8f57506000601554115b15611ec857611eae6064611dba6015548861214090919063ffffffff16565b90508060186000828254611ec29190612549565b90915550505b8015611ed957611ed9873083612003565b611ee3818661261a565b94505b611ef1878787612003565b50505050505050565b3060009081526020819052604081205490811580611f185750601854155b15611f21575050565b601054611f2f906014612510565b821115611f4757601054611f44906014612510565b91505b81611f5181612158565b600060188190556006546040516001600160a01b039091169147919081818185875af1925050503d8060008114611fa4576040519150601f19603f3d011682016040523d82523d6000602084013e611fa9565b606091505b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166120295760405162461bcd60e51b8152600401610a6790612592565b6001600160a01b03821661204f5760405162461bcd60e51b8152600401610a67906125d7565b6001600160a01b038316600090815260208190526040902054818110156120c75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a67565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36111ac565b60006121398284612549565b9392505050565b60006121398284612510565b60006121398284612527565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061218d5761218d61262d565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561220b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061222f9190612643565b816001815181106122425761224261262d565b60200260200101906001600160a01b031690816001600160a01b03168152505061228d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846111c9565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906122e2908590600090869030904290600401612660565b600060405180830381600087803b1580156122fc57600080fd5b505af1158015611fa9573d6000803e3d6000fd5b600060208083528351808285015260005b8181101561233d57858101830151858201604001528201612321565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461115757600080fd5b6000806040838503121561238657600080fd5b82356123918161235e565b946020939093013593505050565b600080604083850312156123b257600080fd5b50508035926020909101359150565b6000806000606084860312156123d657600080fd5b505081359360208301359350604090920135919050565b60008060006060848603121561240257600080fd5b833561240d8161235e565b9250602084013561241d8161235e565b929592945050506040919091013590565b60006020828403121561244057600080fd5b81356121398161235e565b801515811461115757600080fd5b6000806040838503121561246c57600080fd5b82356124778161235e565b915060208301356124878161244b565b809150509250929050565b600080604083850312156124a557600080fd5b82356124b08161235e565b915060208301356124878161235e565b600181811c908216806124d457607f821691505b6020821081036124f457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176109b0576109b06124fa565b60008261254457634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156109b0576109b06124fa565b60006020828403121561256e57600080fd5b5051919050565b60006020828403121561258757600080fd5b81516121398161244b565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156109b0576109b06124fa565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561265557600080fd5b81516121398161235e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156126b05784516001600160a01b03168352938301939183019160010161268b565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122010793484dbb558cde8d3c6e8e535858daa880833b63fb5f7fd2a67776843bd3b64736f6c63430008110033

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.